commit 145364a8af6a1fec06556221e66d4b724a62fc9a Author: tpearson Date: Mon Mar 1 18:37:05 2010 +0000 Added old abandoned KDE3 version of the RoseGarden MIDI tool git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/rosegarden@1097595 283d02a7-25f6-0310-bc7c-ecb5cbfe19da diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..c94b810 --- /dev/null +++ b/AUTHORS @@ -0,0 +1,136 @@ +Lead developers: + +Chris Cannam +Richard Bown +Guillaume Laurent + +Developers: + +D. Michael McIntyre +Pedro Lopez-Cabanillas +Heikki Johannes Junes + + +Contributors: + +Ron Kuris + * cleanups + +Randall Farmer + * chord labelling code + +Hans Kieserman + * Lilypond output + * assorted other patches + * i18n-ization + +Levi Burton + * UI improvements + * other bug fixes + +Mark Hymers + * Segment colours + * Other UI and bug fixes + +Alexandre Prokoudine + * Russian translation + * i18n-ization + +Jörg Schumann +Eckhard Jokisch + * German translation + +Kevin Donnelly + * Welsh translation + +Didier Burli +Yves Guillemot + * French translation + * Bug fixes + +Daniele Medri +Alessandro Musesti + * Italian translation + +Stefan Asserh�l +Erik Magnus Johansson + * Swedish translation + +Hasso Tepper + * Estonian translation + +Jelmer Vernooij +Jasper Stein + * Dutch translation + +Oota Toshiya + * Japanese translation + +Kevin Liang + * HSpinBox class + +Arnout Engelen + * Transposition by interval + +Thorsten Wilms + * Original designs on which the Rosegarden rotary controllers are based + +William + * auto-scroll deceleration + * glyphs for rests outside staves and other bug fixes + +Liu Songhe + * Simplified Chinese translation + +Thomas Nagy + * SCons/bksys building system + +Vince Negri + * Initial MTC slave implementation (the bits without the bugs) + +Toni Arnold + * LIRC infrared remote-controller support + +Stephen Torri + * Initial guitar chord editing code + +Jan B�a + * Czech translation + +Vladimir Savic + * icons, icons, icons + +Lisandro Damián Nicanor Pérez Meyer +Javier Castrillo +Lucas Godoy +Marcos Guglielmetti + * Spanish translation + +Feliu Ferrer +Quim Perez i Noguer + * Catalan translation + +Carolyn McIntyre (deceased) + * 1.2.3 splash screen photo + * Gave birth to D. Michael McIntyre, bought him a good flute once upon a + time, and always humored him when he came over to play her some new + instrument, even though she really hated his playing. + Born October 19, 1951, died September 21, 2007, R. I. P. + +Piotr Sawicki + * Polish translation + +David García-Abad + * Basque translation + +Mikhail Yakshin + * Author of KGuitar, source of inspiration and bits of code for fretboards + +Joerg C. Koenig +Craig Drummond, Bernhard Rosenkränzer, Preston Brown, Than Ngo + * Klearlook theme + + +## +## Names in here should also be credited in gui/application/main.cpp, with aboutData.addCredit() +## diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..9a01977 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,396 @@ +# Rosegarden +# A MIDI and audio sequencer and musical notation editor. +# +# This program is Copyright 2000-2008 +# Guillaume Laurent , +# Chris Cannam , +# Richard Bown +# +# The moral rights of Guillaume Laurent, Chris Cannam, and Richard +# Bown to claim authorship of this work have been asserted. +# +# This file is Copyright 2006-2008 +# Pedro Lopez-Cabanillas +# +# Other copyrights also apply to some parts of this work. Please +# see the AUTHORS file and individual file headers for details. +# +# 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. See the file +# COPYING included with this distribution for more information. + +# The name of our project is "ROSEGARDEN". CMakeLists files in this project can +# refer to the root source directory of the project as ${ROSEGARDEN_SOURCE_DIR} +# and to the root binary directory of the project as ${ROSEGARDEN_BINARY_DIR} +PROJECT(ROSEGARDEN) + +# CMake supports KDE checks since this version number +CMAKE_MINIMUM_REQUIRED(VERSION 2.4.2) + +# Show full commands and messages. It generates a lot of console output. +# It is necessary for Eclipse warning/error parser, +# but it can be enabled anyway with "make VERBOSE=1" +SET(CMAKE_VERBOSE_MAKEFILE OFF) + +# Seems that relative paths break some scripts. Don't set it ON +SET(CMAKE_USE_RELATIVE_PATHS OFF) + +# Rebuild the object files if the rules have changed, but not the actual source +# files or headers (e.g. if you changed the some compiler switches) +SET(CMAKE_SKIP_RULE_DEPENDENCY OFF) + +# Misc settings +SET(CMAKE_COLOR_MAKEFILE ON) +SET(CMAKE_INCLUDE_CURRENT_DIR ON) +SET(CMAKE_BUILD_WITH_INSTALL_RPATH ON) + +# Additional CMake modules for 3rd party library checks reside here +SET(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake_admin") + +# Mark as advanced +MARK_AS_ADVANCED(EXECUTABLE_OUTPUT_PATH + LIBRARY_OUTPUT_PATH + CMAKE_BACKWARDS_COMPATIBILITY) + +# Rosegarden version string +SET (VERSION_MAJOR "1") +SET (VERSION_MINOR "7") +SET (VERSION_PATCH "0") +# comment out the next line for a public release +#SET (VERSION_SUFFIX "svn") +SET (VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}) +IF(VERSION_SUFFIX) + SET (VERSION "${VERSION}-${VERSION_SUFFIX}") +ENDIF(VERSION_SUFFIX) +ADD_DEFINITIONS(-D'VERSION="${VERSION}"') + +# User options +OPTION(WANT_DEBUG "Include debug support" OFF) +OPTION(WANT_FULLDBG "Full debug support (BIG executables!)" OFF) +OPTION(WANT_SOUND "Include Sound support" ON) +OPTION(WANT_JACK "Include Jack (Jack Audio Connection Kit) support" ON) +OPTION(WANT_DSSI "Include DSSI support" ON) +OPTION(WANT_LIRC "Include LIRC (Linux Infrared Remote Control) support" OFF) +OPTION(WANT_PCH "Use precompiled headers" OFF) +OPTION(WANT_TEST "Perform unit tests" OFF) + +IF(WANT_TEST) + ENABLE_TESTING() +ENDIF(WANT_TEST) + +IF(NOT WANT_SOUND) + SET(WANT_JACK OFF) + SET(WANT_DSSI OFF) + ADD_DEFINITIONS(-DNO_SOUND) +ENDIF(NOT WANT_SOUND) + +# Check for KDE3 +FIND_PACKAGE(KDE3 REQUIRED QUIET) +IF(QT_FOUND) + ADD_DEFINITIONS(${QT_DEFINITIONS}) + MESSAGE(STATUS "Found Qt3 (version ${qt_version_str})") + #MESSAGE("QT_LIBRARIES: ${QT_LIBRARIES}") +ELSE(QT_FOUND) + MESSAGE(FATAL_ERROR "Qt3 package not found") +ENDIF(QT_FOUND) +IF(KDE3_FOUND) + ADD_DEFINITIONS(${KDE3_DEFINITIONS}) + #MESSAGE("KDE3PREFIX: ${KDE3PREFIX}") + KDE3_PRINT_RESULTS() + #MESSAGE("QT_AND_KDECORE_LIBS: ${QT_AND_KDECORE_LIBS}") +ELSE(KDE3_FOUND) + MESSAGE(FATAL_ERROR "KDE3 Not found") +ENDIF(KDE3_FOUND) + +# Clear the flags set by FindKDE3 +SET(CMAKE_CXX_FLAGS "") +MARK_AS_ADVANCED(KDE3_BUILD_TESTS + KDE3_ENABLE_FINAL + KDE3_DCOPIDL_EXECUTABLE + KDE3_DCOPIDL2CPP_EXECUTABLE + KDE3_INCLUDE_DIR + KDE3_KCFGC_EXECUTABLE + KDE3_KDECORE_LIBRARY + KDECONFIG_EXECUTABLE ) + +# Provide the KDE3 prefix as a default prefix (if the user has CMake 2.4.4) +IF(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) + SET(CMAKE_INSTALL_PREFIX ${KDE3PREFIX} CACHE PATH + "Install path prefix, prepended onto install directories." FORCE) +ENDIF(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) + +# Check for PKG-CONFIG +FIND_PACKAGE(PkgConfig REQUIRED) +IF(PKG_CONFIG_FOUND) + MESSAGE(STATUS "Program pkg-config found (${PKG_CONFIG_EXECUTABLE})") +ELSE(PKG_CONFIG_FOUND) + MESSAGE(FATAL_ERROR "Program pkg-config not found") +ENDIF(PKG_CONFIG_FOUND) + +# Initialize some variables +SET(HAVE_XFT FALSE) +SET(HAVE_ALSA FALSE) +SET(HAVE_JACK FALSE) +SET(HAVE_DSSI FALSE) +SET(HAVE_LIBLO FALSE) +SET(HAVE_LIBLRDF FALSE) +SET(HAVE_LADSPA FALSE) +SET(HAVE_LIRC FALSE) +SET(HAVE_FFTW3F FALSE) + +# Check for Xft +PKG_CHECK_MODULES(XFT xft>=2.1.0) +IF(XFT_FOUND) + ADD_DEFINITIONS(-DHAVE_XFT) + SET(HAVE_XFT TRUE) + SET(XFT_LIBS ${XFT_LIBRARIES}) + #MESSAGE("XFT_LIBS: ${XFT_LIBS}") + LIST(APPEND XFT_LIB_DIR ${XFT_LIBRARY_DIRS} ${XFT_LIBDIR}) + #MESSAGE("XFT_LIB_DIR: ${XFT_LIB_DIR}") + LIST(APPEND XFT_INC_DIR ${XFT_INCLUDE_DIRS} ${XFT_INCLUDEDIR}) + #MESSAGE("XFT_INC_DIR: ${XFT_INC_DIR}") +ENDIF(XFT_FOUND) + +IF(WANT_SOUND) + + # Check for ALSA 1.0 + PKG_CHECK_MODULES(ALSA REQUIRED alsa>=1.0) + IF(ALSA_FOUND) + SET(HAVE_ALSA TRUE) + ADD_DEFINITIONS(-DHAVE_ALSA) + SET(ALSA_LIBS ${ALSA_LIBRARIES}) + #MESSAGE("ALSA_LIBS: ${ALSA_LIBS}") + LIST(APPEND ALSA_LIB_DIR ${ALSA_LIBRARY_DIRS} ${ALSA_LIBDIR} ) + #MESSAGE("ALSA_LIB_DIR: ${ALSA_LIB_DIR}") + LIST(APPEND ALSA_INC_DIR ${ALSA_INCLUDE_DIRS} ${ALSA_INCLUDEDIR}) + #MESSAGE("ALSA_INC_DIR: ${ALSA_INC_DIR}") + ELSE(ALSA_FOUND) + MESSAGE(FATAL_ERROR "Please install the required package. Aborting") + ENDIF(ALSA_FOUND) + + IF(WANT_JACK) + PKG_CHECK_MODULES(JACK jack>=0.77) + IF(JACK_FOUND) + ADD_DEFINITIONS(-DHAVE_LIBJACK) + SET(HAVE_JACK TRUE) + SET(JACK_LIBS ${JACK_LIBRARIES}) + #MESSAGE("JACK_LIBS: ${JACK_LIBS}") + LIST(APPEND JACK_LIB_DIR ${JACK_LIBDIR} ${JACK_LIBRARY_DIRS}) + #MESSAGE("JACK_LIB_DIR: ${JACK_LIB_DIR}") + LIST(APPEND JACK_INC_DIR ${JACK_INCLUDEDIR} ${JACK_INCLUDE_DIRS}) + #MESSAGE("JACK_INC_DIR: ${JACK_INC_DIR}") + ENDIF(JACK_FOUND) + ENDIF(WANT_JACK) + + IF(WANT_DSSI) + PKG_CHECK_MODULES(DSSI dssi>=0.4) + IF(DSSI_FOUND) + ADD_DEFINITIONS(-DHAVE_DSSI) + SET(HAVE_DSSI TRUE) + LIST(APPEND DSSI_INC_DIR ${DSSI_INCLUDE_DIRS} ${DSSI_INCLUDEDIR}) + #MESSAGE("DSSI_INC_DIR: ${DSSI_INC_DIR}") + ENDIF(DSSI_FOUND) + ENDIF(WANT_DSSI) + + PKG_CHECK_MODULES(LIBLO liblo>=0.7) + IF(LIBLO_FOUND) + ADD_DEFINITIONS(-DHAVE_LIBLO) + SET(HAVE_LIBLO TRUE) + SET(LIBLO_LIBS ${LIBLO_LIBRARIES}) + #MESSAGE("LIBLO_LIBS: ${LIBLO_LIBS}") + LIST(APPEND LIBLO_LIB_DIR ${LIBLO_LIBDIR} ${LIBLO_LIBRARY_DIRS}) + #MESSAGE("LIBLO_LIB_DIR: ${LIBLO_LIB_DIR}") + LIST(APPEND LIBLO_INC_DIR ${LIBLO_INCLUDEDIR} ${LIBLO_INCLUDE_DIRS}) + #MESSAGE("LIBLO_INC_DIR: ${LIBLO_INC_DIR}") + ENDIF(LIBLO_FOUND) + + PKG_CHECK_MODULES(LRDF lrdf>=0.3) + IF(LRDF_FOUND) + SET(HAVE_LIBLRDF TRUE) + ADD_DEFINITIONS(-DHAVE_LIBLRDF) + SET(LRDF_LIBS ${LRDF_LIBRARIES}) + #MESSAGE("LRDF_LIBS: ${LRDF_LIBS}") + LIST(APPEND LRDF_LIB_DIR ${LRDF_LIBDIR} ${LRDF_LIBRARY_DIRS}) + #MESSAGE("LRDF_LIB_DIR: ${LRDF_LIB_DIR}") + LIST(APPEND LRDF_INC_DIR ${LRDF_INCLUDEDIR} ${LRDF_INCLUDE_DIRS}) + #MESSAGE("LRDF_INC_DIR: ${LRDF_INC_DIR}") + ENDIF(LRDF_FOUND) + + FIND_PACKAGE(LADSPA QUIET) + IF(LADSPA_FOUND) + SET(HAVE_LADSPA TRUE) + ADD_DEFINITIONS(-DHAVE_LADSPA) + SET(LADSPA_INC_DIR ${LADSPA_INCLUDE_DIR}) + MESSAGE(STATUS "Found LADSPA (${LADSPA_INC_DIR})") + ENDIF(LADSPA_FOUND) + +ENDIF(WANT_SOUND) + +PKG_CHECK_MODULES(FFTW3F REQUIRED fftw3f>=3.0.0) +IF(FFTW3F_FOUND) + ADD_DEFINITIONS(-DHAVE_FFTW3F) + SET(HAVE_FFTW3F TRUE) + SET(FFTW3F_LIBS ${FFTW3F_LIBRARIES}) + #MESSAGE("FFTW3F_LIBS: ${FFTW3F_LIBS}") + LIST(APPEND FFTW3F_LIB_DIR ${FFTW3F_LIBDIR} ${FFTW3F_LIBRARY_DIRS}) + #MESSAGE("FFTW3F_LIB_DIR: ${FFTW3F_LIB_DIR}") + LIST(APPEND FFTW3F_INC_DIR ${FFTW3F_INCLUDEDIR} ${FFTW3F_INCLUDE_DIRS}) + #MESSAGE("FFTW3F_INC_DIR: ${FFTW3F_INC_DIR}") +ELSE(FFTW3F_FOUND) + MESSAGE(FATAL_ERROR "Please install the required package. Aborting") +ENDIF(FFTW3F_FOUND) + +IF(WANT_LIRC) + FIND_PACKAGE(LIRC QUIET) + IF(LIRC_FOUND) + SET(HAVE_LIRC TRUE) + ADD_DEFINITIONS(-DHAVE_LIRC) + MESSAGE(STATUS "Found LIRC (${LIRC_LIBRARY})") + SET(LIRC_LIBS ${LIRC_LIBRARY}) + SET(LIRC_INC_DIR ${LIRC_INCLUDE_DIR}) + SET(LIRC_LIB_DIR ${LIRC_LIBRARY_DIR}) + #MESSAGE("LIRC_LIBS: ${LIRC_LIBS}") + #MESSAGE("LIRC_LIB_DIR: ${LIRC_LIB_DIR}") + #MESSAGE("LIRC_INC_DIR: ${LIRC_INC_DIR}") + ENDIF(LIRC_FOUND) +ENDIF(WANT_LIRC) + +FIND_PACKAGE(MSGFMT REQUIRED) +IF(MSGFMT_FOUND) + MESSAGE(STATUS "Program msgfmt found (${MSGFMT_EXECUTABLE})") +ENDIF(MSGFMT_FOUND) + +FIND_PACKAGE(KDECONFIG) +IF(KDECONFIG_EXECUTABLE) + MESSAGE(STATUS "Program kde-config found (${KDECONFIG_EXECUTABLE})") + #MESSAGE("KDE3PREFIX: ${KDE3PREFIX}") +ENDIF(KDECONFIG_EXECUTABLE) + +FIND_PACKAGE(MEINPROC REQUIRED) +IF(MEINPROC_FOUND) + MESSAGE(STATUS "Program meinproc found (${MEINPROC_EXECUTABLE})") +ENDIF(MEINPROC_FOUND) + +# Check GCC for PCH support +SET(USE_PCH FALSE) +IF(WANT_PCH) + FIND_PACKAGE(PCHSupport) + IF(PCHSupport_FOUND) + SET(USE_PCH TRUE) + ADD_DEFINITIONS(-DUSE_PCH) + MESSAGE(STATUS "Enabling precompiled headers for GCC ${gcc_compiler_version}") + ENDIF(PCHSupport_FOUND) +ENDIF(WANT_PCH) + +# Check PTHREAD_MUTEX_RECURSIVE +INCLUDE(CheckCSourceCompiles) +CHECK_C_SOURCE_COMPILES( + "#include + int main(int argc, char **argv) { + pthread_mutexattr_t attr; + pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE); + return 0; + }" PTHREAD_HAS_MUTEX_RECURSIVE) +IF(PTHREAD_HAS_MUTEX_RECURSIVE) + ADD_DEFINITIONS(-DHAVE_PTHREAD_MUTEX_RECURSIVE) +ENDIF(PTHREAD_HAS_MUTEX_RECURSIVE) +# End of PTHREAD_MUTEX_RECURSIVE Test + +SET(CMAKE_CXX_FLAGS_RELEASE "-O2 -w -fexceptions -DNDEBUG") +SET(CMAKE_CXX_FLAGS_RELWITHDEBINFO "-O2 -g -Wall -fexceptions -DDEBUG") +SET(CMAKE_CXX_FLAGS_DEBUG "-O0 -g3 -Wall -fexceptions -DDEBUG") + +MESSAGE(STATUS "Rosegarden ${VERSION} will be built for install into ${CMAKE_INSTALL_PREFIX}") + +IF(WANT_DEBUG) + IF(WANT_FULLDBG) + MESSAGE(STATUS "Configured to compile including full debug information in the executables") + SET(CMAKE_BUILD_TYPE Debug CACHE STRING + "Choose the type of build, options are: Debug Release RelWithDebInfo" FORCE) + ELSE(WANT_FULLDBG) + MESSAGE(STATUS "Configured to compile including debug information in the executables") + SET(CMAKE_BUILD_TYPE RelWithDebInfo CACHE STRING + "Choose the type of build, options are: Debug Release RelWithDebInfo" FORCE) + ENDIF(WANT_FULLDBG) +ELSE(WANT_DEBUG) + MESSAGE(STATUS "Configured to compile for release without debug information") + SET(CMAKE_BUILD_TYPE Release CACHE STRING + "Choose the type of build, options are: Debug Release RelWithDebInfo" FORCE) +ENDIF(WANT_DEBUG) +MARK_AS_ADVANCED(CMAKE_BUILD_TYPE) + +# Warn the user if important libraries are missing +INCLUDE(UserWarnings) + +# Recurse into the "src" subdirectory. This does not actually +# cause another cmake executable to run. The same process will walk through +# the project's entire directory structure. +# Output directory will be "RGbuild/" +ADD_SUBDIRECTORY(src RGbuild) + +# Build and install the translations directory +ADD_SUBDIRECTORY(po RGbuild/po) + +# Build and install the documentation directory +ADD_SUBDIRECTORY(docs RGbuild/docs) + +# Install data files +ADD_SUBDIRECTORY(data RGbuild/data) + +# install some documents... +# INSTALL( FILES AUTHORS COPYING README TRANSLATORS INSTALL rosegarden.lsm +# DESTINATION share/doc/rosegarden-${VERSION} ) + +# create and install the version file +FILE(WRITE version.txt "${VERSION}\n") +INSTALL( FILES version.txt + DESTINATION ${KDE3DATADIR}/rosegarden ) + +# uninstall custom target +CONFIGURE_FILE( + "${CMAKE_SOURCE_DIR}/cmake_admin/cmake_uninstall.cmake.in" + "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake" + IMMEDIATE @ONLY) + +ADD_CUSTOM_TARGET(uninstall + "${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake") + +# Custom target trying to clean the CMake generated files +ADD_CUSTOM_TARGET ( distclean + COMMAND rm -f {,src/,po/,docs/,data/}CMakeCache.txt + COMMAND rm -f {,src/,po/,docs/,data/}cmake_install.cmake + COMMAND rm -f {,src/,po/,docs/,data/}cmake_uninstall.cmake + COMMAND rm -f {,src/,po/,docs/,data/}CPackConfig.cmake + COMMAND rm -f {,src/,po/,docs/,data/}CPackSourceConfig.cmake + COMMAND rm -f {,src/,po/,docs/,data/}install_manifest.txt + COMMAND rm -f {,src/,po/,docs/,data/}progress.make + COMMAND rm -f {,src/,po/,docs/,data/}rosegarden.spec + COMMAND rm -f {,src/,po/,docs/,data/}Makefile + COMMAND rm -rf {,src/,po/,docs/,data/}CMakeFiles + COMMAND rm -rf {,src/,po/,docs/,data/}_CPack_Packages + COMMAND rm -rf RGbuild/* + WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} +) +ADD_DEPENDENCIES(distclean clean) + +# configure the RPM spec +CONFIGURE_FILE( + "${CMAKE_SOURCE_DIR}/rosegarden.spec.in" + "${CMAKE_SOURCE_DIR}/rosegarden.spec" + IMMEDIATE @ONLY) + +# tarball target +ADD_CUSTOM_TARGET ( tarball + COMMAND mkdir -p rosegarden-${VERSION} + COMMAND cp -r cmake_admin rosegarden-${VERSION} + COMMAND cp -r data rosegarden-${VERSION} + COMMAND cp -r docs rosegarden-${VERSION} + COMMAND cp -r po rosegarden-${VERSION} + COMMAND cp -r src rosegarden-${VERSION} + COMMAND cp CMakeLists.txt AUTHORS COPYING Doxyfile INSTALL README rosegarden.* TRANSLATORS rosegarden-${VERSION} + COMMAND tar -cj --exclude .svn --exclude gettext-0.10.35-kde -f rosegarden-${VERSION}.tar.bz2 rosegarden-${VERSION} + COMMAND rm -rf rosegarden-${VERSION} + WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} +) diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..c7aea18 --- /dev/null +++ b/COPYING @@ -0,0 +1,280 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 675 Mass Ave, Cambridge, MA 02139, USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS diff --git a/Doxyfile b/Doxyfile new file mode 100644 index 0000000..1f2f6f0 --- /dev/null +++ b/Doxyfile @@ -0,0 +1,1232 @@ +# Doxyfile 1.4.4 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project +# +# All text after a hash (#) is considered a comment and will be ignored +# The format is: +# TAG = value [value, ...] +# For lists items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (" ") + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded +# by quotes) that should identify the project. + +PROJECT_NAME = Rosegarden + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. +# This could be handy for archiving the generated documentation or +# if some version control system is used. + +PROJECT_NUMBER = 1.7.0 + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) +# base path where the generated documentation will be put. +# If a relative path is entered, it will be relative to the location +# where doxygen was started. If left blank the current directory will be used. + +OUTPUT_DIRECTORY = /tmp + +# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create +# 4096 sub-directories (in 2 levels) under the output directory of each output +# format and will distribute the generated files over these directories. +# Enabling this option can be useful when feeding doxygen a huge amount of +# source files, where putting all generated files in the same directory would +# otherwise cause performance problems for the file system. + +CREATE_SUBDIRS = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# The default language is English, other supported languages are: +# Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, +# Dutch, Finnish, French, German, Greek, Hungarian, Italian, Japanese, +# Japanese-en (Japanese with English messages), Korean, Korean-en, Norwegian, +# Polish, Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, +# Swedish, and Ukrainian. + +OUTPUT_LANGUAGE = English + +# This tag can be used to specify the encoding used in the generated output. +# The encoding is not always determined by the language that is chosen, +# but also whether or not the output is meant for Windows or non-Windows users. +# In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES +# forces the Windows encoding (this is the default for the Windows binary), +# whereas setting the tag to NO uses a Unix-style encoding (the default for +# all platforms other than Windows). + +USE_WINDOWS_ENCODING = NO + +# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will +# include brief member descriptions after the members that are listed in +# the file and class documentation (similar to JavaDoc). +# Set to NO to disable this. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend +# the brief description of a member or function before the detailed description. +# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator +# that is used to form the text in various listings. Each string +# in this list, if found as the leading text of the brief description, will be +# stripped from the text and the result after processing the whole list, is +# used as the annotated text. Otherwise, the brief description is used as-is. +# If left blank, the following values are used ("$name" is automatically +# replaced with the name of the entity): "The $name class" "The $name widget" +# "The $name file" "is" "provides" "specifies" "contains" +# "represents" "a" "an" "the" + +ABBREVIATE_BRIEF = + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# Doxygen will generate a detailed section even if there is only a brief +# description. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. + +INLINE_INHERITED_MEMB = YES + +# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full +# path before files name in the file list and in the header files. If set +# to NO the shortest path that makes the file name unique will be used + +FULL_PATH_NAMES = YES + +# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag +# can be used to strip a user-defined part of the path. Stripping is +# only done if one of the specified strings matches the left-hand part of +# the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the +# path to strip. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of +# the path mentioned in the documentation of a class, which tells +# the reader which header file to include in order to use a class. +# If left blank only the name of the header file containing the class +# definition is used. Otherwise one should specify the include paths that +# are normally passed to the compiler using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter +# (but less readable) file names. This can be useful is your file systems +# doesn't support long names like on DOS, Mac, or CD-ROM. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen +# will interpret the first line (until the first dot) of a JavaDoc-style +# comment as the brief description. If set to NO, the JavaDoc +# comments will behave just like the Qt-style comments (thus requiring an +# explicit @brief command for a brief description. + +JAVADOC_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen +# treat a multi-line C++ special comment block (i.e. a block of //! or /// +# comments) as a brief description. This used to be the default behaviour. +# The new default is to treat a multi-line C++ comment block as a detailed +# description. Set this tag to YES if you prefer the old behaviour instead. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the DETAILS_AT_TOP tag is set to YES then Doxygen +# will output the detailed description near the top, like JavaDoc. +# If set to NO, the detailed description appears after the member +# documentation. + +DETAILS_AT_TOP = NO + +# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented +# member inherits the documentation from any documented member that it +# re-implements. + +INHERIT_DOCS = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES, then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. + +DISTRIBUTE_GROUP_DOC = NO + +# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce +# a new page for each member. If set to NO, the documentation of a member will +# be part of the file/class/namespace that contains it. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. +# Doxygen uses this value to replace tabs by spaces in code fragments. + +TAB_SIZE = 8 + +# This tag can be used to specify a number of aliases that acts +# as commands in the documentation. An alias has the form "name=value". +# For example adding "sideeffect=\par Side Effects:\n" will allow you to +# put the command \sideeffect (or @sideeffect) in the documentation, which +# will result in a user-defined paragraph with heading "Side Effects:". +# You can put \n's in the value part of an alias to insert newlines. + +ALIASES = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C +# sources only. Doxygen will then generate output that is more tailored for C. +# For instance, some of the names that are used will be different. The list +# of all members will be omitted, etc. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java sources +# only. Doxygen will then generate output that is more tailored for Java. +# For instance, namespaces will be presented as packages, qualified scopes +# will look different, etc. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the SUBGROUPING tag to YES (the default) to allow class member groups of +# the same type (for instance a group of public functions) to be put as a +# subgroup of that type (e.g. under the Public Functions section). Set it to +# NO to prevent subgrouping. Alternatively, this can be done per class using +# the \nosubgrouping command. + +SUBGROUPING = YES + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +# documentation are documented, even if no documentation was available. +# Private class members and static file members will be hidden unless +# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES + +EXTRACT_ALL = YES + +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class +# will be included in the documentation. + +EXTRACT_PRIVATE = YES + +# If the EXTRACT_STATIC tag is set to YES all static members of a file +# will be included in the documentation. + +EXTRACT_STATIC = YES + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) +# defined locally in source files will be included in the documentation. +# If set to NO only classes defined in header files are included. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. When set to YES local +# methods, which are defined in the implementation section but not in +# the interface are included in the documentation. +# If set to NO (the default) only methods in the interface are included. + +EXTRACT_LOCAL_METHODS = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all +# undocumented members of documented classes, files or namespaces. +# If set to NO (the default) these members will be included in the +# various overviews, but no documentation section is generated. +# This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. +# If set to NO (the default) these classes will be included in the various +# overviews. This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all +# friend (class|struct|union) declarations. +# If set to NO (the default) these declarations will be included in the +# documentation. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any +# documentation blocks found inside the body of a function. +# If set to NO (the default) these blocks will be appended to the +# function's detailed documentation block. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation +# that is typed after a \internal command is included. If the tag is set +# to NO (the default) then the documentation will be excluded. +# Set it to YES to include the internal documentation. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate +# file names in lower-case letters. If set to YES upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. + +CASE_SENSE_NAMES = YES + +# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen +# will show members with their full class and namespace scopes in the +# documentation. If set to YES the scope will be hidden. + +HIDE_SCOPE_NAMES = NO + +# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen +# will put a list of the files that are included by a file in the documentation +# of that file. + +SHOW_INCLUDE_FILES = YES + +# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] +# is inserted in the documentation for inline members. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen +# will sort the (detailed) documentation of file and class members +# alphabetically by member name. If set to NO the members will appear in +# declaration order. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the +# brief documentation of file, namespace and class members alphabetically +# by member name. If set to NO (the default) the members will appear in +# declaration order. + +SORT_BRIEF_DOCS = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be +# sorted by fully-qualified names, including namespaces. If set to +# NO (the default), the class list will be sorted only by class name, +# not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the +# alphabetical list. + +SORT_BY_SCOPE_NAME = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or +# disable (NO) the todo list. This list is created by putting \todo +# commands in the documentation. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or +# disable (NO) the test list. This list is created by putting \test +# commands in the documentation. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or +# disable (NO) the bug list. This list is created by putting \bug +# commands in the documentation. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or +# disable (NO) the deprecated list. This list is created by putting +# \deprecated commands in the documentation. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional +# documentation sections, marked by \if sectionname ... \endif. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines +# the initial value of a variable or define consists of for it to appear in +# the documentation. If the initializer consists of more lines than specified +# here it will be hidden. Use a value of 0 to hide initializers completely. +# The appearance of the initializer of individual variables and defines in the +# documentation can be controlled using \showinitializer or \hideinitializer +# command in the documentation regardless of this setting. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated +# at the bottom of the documentation of classes and structs. If set to YES the +# list will mention the files that were used to generate the documentation. + +SHOW_USED_FILES = YES + +# If the sources in your project are distributed over multiple directories +# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy +# in the documentation. The default is YES. + +SHOW_DIRECTORIES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from the +# version control system). Doxygen will invoke the program by executing (via +# popen()) the command , where is the value of +# the FILE_VERSION_FILTER tag, and is the name of an input file +# provided by doxygen. Whatever the progam writes to standard output +# is used as the file version. See the manual for examples. + +FILE_VERSION_FILTER = + +#--------------------------------------------------------------------------- +# configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated +# by doxygen. Possible values are YES and NO. If left blank NO is used. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated by doxygen. Possible values are YES and NO. If left blank +# NO is used. + +WARNINGS = YES + +# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings +# for undocumented members. If EXTRACT_ALL is set to YES then this flag will +# automatically be disabled. + +WARN_IF_UNDOCUMENTED = YES + +# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some +# parameters in a documented function, or documenting parameters that +# don't exist or using markup commands wrongly. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be abled to get warnings for +# functions that are documented, but have no documentation for their parameters +# or return value. If set to NO (the default) doxygen will only warn about +# wrong or incomplete parameter documentation, but not about the absence of +# documentation. + +WARN_NO_PARAMDOC = YES + +# The WARN_FORMAT tag determines the format of the warning messages that +# doxygen can produce. The string should contain the $file, $line, and $text +# tags, which will be replaced by the file and line number from which the +# warning originated and the warning text. Optionally the format may contain +# $version, which will be replaced by the version of the file (if it could +# be obtained via FILE_VERSION_FILTER) + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning +# and error messages should be written. If left blank the output is written +# to stderr. + +WARN_LOGFILE = docs/doxygen/warning.log + +#--------------------------------------------------------------------------- +# configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag can be used to specify the files and/or directories that contain +# documented source files. You may enter file names like "myfile.cpp" or +# directories like "/usr/src/myproject". Separate the files or directories +# with spaces. + +INPUT = src/base/ src/commands/ src/document/ src/gui/ src/helpers/ src/misc/ src/sequencer/ src/sound/ + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank the following patterns are tested: +# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx +# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm + +FILE_PATTERNS = *.h \ + *.C \ + *.cpp \ + *.cc + +# The RECURSIVE tag can be used to turn specify whether or not subdirectories +# should be searched for input files as well. Possible values are YES and NO. +# If left blank NO is used. + +RECURSIVE = YES + +# The EXCLUDE tag can be used to specify files and/or directories that should +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used select whether or not files or +# directories that are symbolic links (a Unix filesystem feature) are excluded +# from the input. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. Note that the wildcards are matched +# against the file with absolute path, so to exclude all test directories +# for example use the pattern */test/* + +EXCLUDE_PATTERNS = *.moc.cpp \ + *_skel.cpp + +# The EXAMPLE_PATH tag can be used to specify one or more files or +# directories that contain example code fragments that are included (see +# the \include command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank all files are included. + +EXAMPLE_PATTERNS = + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude +# commands irrespective of the value of the RECURSIVE tag. +# Possible values are YES and NO. If left blank NO is used. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or +# directories that contain image that are included in the documentation (see +# the \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command , where +# is the value of the INPUT_FILTER tag, and is the name of an +# input file. Doxygen will then use the output that the filter program writes +# to standard output. If FILTER_PATTERNS is specified, this tag will be +# ignored. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: +# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further +# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER +# is applied to all files. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will be used to filter the input files when producing source +# files to browse (i.e. when SOURCE_BROWSER is set to YES). + +FILTER_SOURCE_FILES = NO + +#--------------------------------------------------------------------------- +# configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will +# be generated. Documented entities will be cross-referenced with these sources. +# Note: To get rid of all source code in the generated output, make sure also +# VERBATIM_HEADERS is set to NO. + +SOURCE_BROWSER = YES + +# Setting the INLINE_SOURCES tag to YES will include the body +# of functions and classes directly in the documentation. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct +# doxygen to hide any special comment blocks from generated source code +# fragments. Normal C and C++ comments will always remain visible. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES (the default) +# then for each documented function all documented +# functions referencing it will be listed. + +REFERENCED_BY_RELATION = YES + +# If the REFERENCES_RELATION tag is set to YES (the default) +# then for each documented function all documented entities +# called/used by that function will be listed. + +REFERENCES_RELATION = YES + +# If the USE_HTAGS tag is set to YES then the references to source code +# will point to the HTML generated by the htags(1) tool instead of doxygen +# built-in source browser. The htags tool is part of GNU's global source +# tagging system (see http://www.gnu.org/software/global/global.html). You +# will need version 4.8.6 or higher. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen +# will generate a verbatim copy of the header file for each class for +# which an include is specified. Set to NO to disable this. + +VERBATIM_HEADERS = YES + +#--------------------------------------------------------------------------- +# configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index +# of all compounds will be generated. Enable this if the project +# contains a lot of classes, structs, unions or interfaces. + +ALPHABETICAL_INDEX = NO + +# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then +# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns +# in which this list will be split (can be a number in the range [1..20]) + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all +# classes will be put under the same header in the alphabetical index. +# The IGNORE_PREFIX tag can be used to specify one or more prefixes that +# should be ignored while generating the index headers. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES (the default) Doxygen will +# generate HTML output. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `html' will be used as the default path. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for +# each generated HTML page (for example: .htm,.php,.asp). If it is left blank +# doxygen will generate files with .html extension. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a personal HTML header for +# each generated HTML page. If it is left blank doxygen will generate a +# standard header. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a personal HTML footer for +# each generated HTML page. If it is left blank doxygen will generate a +# standard footer. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading +# style sheet that is used by each HTML page. It can be used to +# fine-tune the look of the HTML output. If the tag is left blank doxygen +# will generate a default style sheet. Note that doxygen will try to copy +# the style sheet file to the HTML output directory, so don't put your own +# stylesheet in the HTML output directory as well, or it will be erased! + +HTML_STYLESHEET = + +# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, +# files or namespaces will be aligned in HTML using tables. If set to +# NO a bullet list will be used. + +HTML_ALIGN_MEMBERS = YES + +# If the GENERATE_HTMLHELP tag is set to YES, additional index files +# will be generated that can be used as input for tools like the +# Microsoft HTML help workshop to generate a compressed HTML help file (.chm) +# of the generated HTML documentation. + +GENERATE_HTMLHELP = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can +# be used to specify the file name of the resulting .chm file. You +# can add a path in front of the file if the result should not be +# written to the html output directory. + +CHM_FILE = + +# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can +# be used to specify the location (absolute path including file name) of +# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run +# the HTML help compiler on the generated index.hhp. + +HHC_LOCATION = + +# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag +# controls if a separate .chi index file is generated (YES) or that +# it should be included in the master .chm file (NO). + +GENERATE_CHI = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag +# controls whether a binary table of contents is generated (YES) or a +# normal table of contents (NO) in the .chm file. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members +# to the contents of the HTML help documentation and to the tree view. + +TOC_EXPAND = NO + +# The DISABLE_INDEX tag can be used to turn on/off the condensed index at +# top of each HTML page. The value NO (the default) enables the index and +# the value YES disables it. + +DISABLE_INDEX = NO + +# This tag can be used to set the number of enum values (range [1..20]) +# that doxygen will group on one line in the generated HTML documentation. + +ENUM_VALUES_PER_LINE = 4 + +# If the GENERATE_TREEVIEW tag is set to YES, a side panel will be +# generated containing a tree-like index structure (just like the one that +# is generated for HTML Help). For this to work a browser that supports +# JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, +# Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are +# probably better off using the HTML help feature. + +GENERATE_TREEVIEW = NO + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be +# used to set the initial width (in pixels) of the frame in which the tree +# is shown. + +TREEVIEW_WIDTH = 250 + +#--------------------------------------------------------------------------- +# configuration options related to the LaTeX output +#--------------------------------------------------------------------------- + +# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will +# generate Latex output. + +GENERATE_LATEX = NO + +# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `latex' will be used as the default path. + +LATEX_OUTPUT = latex + +# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be +# invoked. If left blank `latex' will be used as the default command name. + +LATEX_CMD_NAME = latex + +# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to +# generate index for LaTeX. If left blank `makeindex' will be used as the +# default command name. + +MAKEINDEX_CMD_NAME = makeindex + +# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact +# LaTeX documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_LATEX = NO + +# The PAPER_TYPE tag can be used to set the paper type that is used +# by the printer. Possible values are: a4, a4wide, letter, legal and +# executive. If left blank a4wide will be used. + +PAPER_TYPE = a4wide + +# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX +# packages that should be included in the LaTeX output. + +EXTRA_PACKAGES = + +# The LATEX_HEADER tag can be used to specify a personal LaTeX header for +# the generated latex document. The header should contain everything until +# the first chapter. If it is left blank doxygen will generate a +# standard header. Notice: only use this tag if you know what you are doing! + +LATEX_HEADER = + +# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated +# is prepared for conversion to pdf (using ps2pdf). The pdf file will +# contain links (just like the HTML output) instead of page references +# This makes the output suitable for online browsing using a pdf viewer. + +PDF_HYPERLINKS = NO + +# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of +# plain latex in the generated Makefile. Set this option to YES to get a +# higher quality PDF documentation. + +USE_PDFLATEX = NO + +# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. +# command to the generated LaTeX files. This will instruct LaTeX to keep +# running if errors occur, instead of asking the user for help. +# This option is also used when generating formulas in HTML. + +LATEX_BATCHMODE = NO + +# If LATEX_HIDE_INDICES is set to YES then doxygen will not +# include the index chapters (such as File Index, Compound Index, etc.) +# in the output. + +LATEX_HIDE_INDICES = NO + +#--------------------------------------------------------------------------- +# configuration options related to the RTF output +#--------------------------------------------------------------------------- + +# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output +# The RTF output is optimized for Word 97 and may not look very pretty with +# other RTF readers or editors. + +GENERATE_RTF = NO + +# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `rtf' will be used as the default path. + +RTF_OUTPUT = rtf + +# If the COMPACT_RTF tag is set to YES Doxygen generates more compact +# RTF documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_RTF = NO + +# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated +# will contain hyperlink fields. The RTF file will +# contain links (just like the HTML output) instead of page references. +# This makes the output suitable for online browsing using WORD or other +# programs which support those fields. +# Note: wordpad (write) and others do not support links. + +RTF_HYPERLINKS = NO + +# Load stylesheet definitions from file. Syntax is similar to doxygen's +# config file, i.e. a series of assignments. You only have to provide +# replacements, missing definitions are set to their default value. + +RTF_STYLESHEET_FILE = + +# Set optional variables used in the generation of an rtf document. +# Syntax is similar to doxygen's config file. + +RTF_EXTENSIONS_FILE = + +#--------------------------------------------------------------------------- +# configuration options related to the man page output +#--------------------------------------------------------------------------- + +# If the GENERATE_MAN tag is set to YES (the default) Doxygen will +# generate man pages + +GENERATE_MAN = NO + +# The MAN_OUTPUT tag is used to specify where the man pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `man' will be used as the default path. + +MAN_OUTPUT = man + +# The MAN_EXTENSION tag determines the extension that is added to +# the generated man pages (default is the subroutine's section .3) + +MAN_EXTENSION = .3 + +# If the MAN_LINKS tag is set to YES and Doxygen generates man output, +# then it will generate one additional man file for each entity +# documented in the real man page(s). These additional files +# only source the real man page, but without them the man command +# would be unable to find the correct page. The default is NO. + +MAN_LINKS = NO + +#--------------------------------------------------------------------------- +# configuration options related to the XML output +#--------------------------------------------------------------------------- + +# If the GENERATE_XML tag is set to YES Doxygen will +# generate an XML file that captures the structure of +# the code including all documentation. + +GENERATE_XML = NO + +# The XML_OUTPUT tag is used to specify where the XML pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `xml' will be used as the default path. + +XML_OUTPUT = xml + +# The XML_SCHEMA tag can be used to specify an XML schema, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_SCHEMA = + +# The XML_DTD tag can be used to specify an XML DTD, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_DTD = + +# If the XML_PROGRAMLISTING tag is set to YES Doxygen will +# dump the program listings (including syntax highlighting +# and cross-referencing information) to the XML output. Note that +# enabling this will significantly increase the size of the XML output. + +XML_PROGRAMLISTING = YES + +#--------------------------------------------------------------------------- +# configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- + +# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will +# generate an AutoGen Definitions (see autogen.sf.net) file +# that captures the structure of the code including all +# documentation. Note that this feature is still experimental +# and incomplete at the moment. + +GENERATE_AUTOGEN_DEF = NO + +#--------------------------------------------------------------------------- +# configuration options related to the Perl module output +#--------------------------------------------------------------------------- + +# If the GENERATE_PERLMOD tag is set to YES Doxygen will +# generate a Perl module file that captures the structure of +# the code including all documentation. Note that this +# feature is still experimental and incomplete at the +# moment. + +GENERATE_PERLMOD = NO + +# If the PERLMOD_LATEX tag is set to YES Doxygen will generate +# the necessary Makefile rules, Perl scripts and LaTeX code to be able +# to generate PDF and DVI output from the Perl module output. + +PERLMOD_LATEX = NO + +# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be +# nicely formatted so it can be parsed by a human reader. This is useful +# if you want to understand what is going on. On the other hand, if this +# tag is set to NO the size of the Perl module output will be much smaller +# and Perl will parse it just the same. + +PERLMOD_PRETTY = YES + +# The names of the make variables in the generated doxyrules.make file +# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. +# This is useful so different doxyrules.make files included by the same +# Makefile don't overwrite each other's variables. + +PERLMOD_MAKEVAR_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- + +# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will +# evaluate all C-preprocessor directives found in the sources and include +# files. + +ENABLE_PREPROCESSING = YES + +# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro +# names in the source code. If set to NO (the default) only conditional +# compilation will be performed. Macro expansion can be done in a controlled +# way by setting EXPAND_ONLY_PREDEF to YES. + +MACRO_EXPANSION = NO + +# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES +# then the macro expansion is limited to the macros specified with the +# PREDEFINED and EXPAND_AS_PREDEFINED tags. + +EXPAND_ONLY_PREDEF = NO + +# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files +# in the INCLUDE_PATH (see below) will be search if a #include is found. + +SEARCH_INCLUDES = YES + +# The INCLUDE_PATH tag can be used to specify one or more directories that +# contain include files that are not input files but should be processed by +# the preprocessor. + +INCLUDE_PATH = + +# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard +# patterns (like *.h and *.hpp) to filter out the header-files in the +# directories. If left blank, the patterns specified with FILE_PATTERNS will +# be used. + +INCLUDE_FILE_PATTERNS = + +# The PREDEFINED tag can be used to specify one or more macro names that +# are defined before the preprocessor is started (similar to the -D option of +# gcc). The argument of the tag is a list of macros of the form: name +# or name=definition (no spaces). If the definition and the = are +# omitted =1 is assumed. To prevent a macro definition from being +# undefined via #undef or recursively expanded use the := operator +# instead of the = operator. + +PREDEFINED = HAVE_ALSA HAVE_LIBJACK HAVE_DSSI HAVE_LADSPA HAVE_LIBLO HAVE_LIBLRDF HAVE_XFT HAVE_LIRC + +# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then +# this tag can be used to specify a list of macro names that should be expanded. +# The macro definition that is found in the sources will be used. +# Use the PREDEFINED tag if you want to use a different macro definition. + +EXPAND_AS_DEFINED = + +# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then +# doxygen's preprocessor will remove all function-like macros that are alone +# on a line, have an all uppercase name, and do not end with a semicolon. Such +# function macros are typically used for boiler-plate code, and will confuse +# the parser if not removed. + +SKIP_FUNCTION_MACROS = YES + +#--------------------------------------------------------------------------- +# Configuration::additions related to external references +#--------------------------------------------------------------------------- + +# The TAGFILES option can be used to specify one or more tagfiles. +# Optionally an initial location of the external documentation +# can be added for each tagfile. The format of a tag file without +# this location is as follows: +# TAGFILES = file1 file2 ... +# Adding location for the tag files is done as follows: +# TAGFILES = file1=loc1 "file2 = loc2" ... +# where "loc1" and "loc2" can be relative or absolute paths or +# URLs. If a location is present for each tag, the installdox tool +# does not have to be run to correct the links. +# Note that each tag file must have a unique name +# (where the name does NOT include the path) +# If a tag file is not located in the directory in which doxygen +# is run, you must also specify the path to the tagfile here. + +TAGFILES = + +# When a file name is specified after GENERATE_TAGFILE, doxygen will create +# a tag file that is based on the input files it reads. + +GENERATE_TAGFILE = + +# If the ALLEXTERNALS tag is set to YES all external classes will be listed +# in the class index. If set to NO only the inherited external classes +# will be listed. + +ALLEXTERNALS = NO + +# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed +# in the modules index. If set to NO, only the current project's groups will +# be listed. + +EXTERNAL_GROUPS = YES + +# The PERL_PATH should be the absolute path and name of the perl script +# interpreter (i.e. the result of `which perl'). + +PERL_PATH = /usr/bin/perl + +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- + +# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will +# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base +# or super classes. Setting the tag to NO turns the diagrams off. Note that +# this option is superseded by the HAVE_DOT option below. This is only a +# fallback. It is recommended to install and use dot, since it yields more +# powerful graphs. + +CLASS_DIAGRAMS = YES + +# If set to YES, the inheritance and collaboration graphs will hide +# inheritance and usage relations if the target is undocumented +# or is not a class. + +HIDE_UNDOC_RELATIONS = YES + +# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is +# available from the path. This tool is part of Graphviz, a graph visualization +# toolkit from AT&T and Lucent Bell Labs. The other options in this section +# have no effect if this option is set to NO (the default) + +HAVE_DOT = NO + +# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect inheritance relations. Setting this tag to YES will force the +# the CLASS_DIAGRAMS tag to NO. + +CLASS_GRAPH = YES + +# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect implementation dependencies (inheritance, containment, and +# class references variables) of the class with other documented classes. + +COLLABORATION_GRAPH = YES + +# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for groups, showing the direct groups dependencies + +GROUP_GRAPHS = YES + +# If the UML_LOOK tag is set to YES doxygen will generate inheritance and +# collaboration diagrams in a style similar to the OMG's Unified Modeling +# Language. + +UML_LOOK = NO + +# If set to YES, the inheritance and collaboration graphs will show the +# relations between templates and their instances. + +TEMPLATE_RELATIONS = NO + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT +# tags are set to YES then doxygen will generate a graph for each documented +# file showing the direct and indirect include dependencies of the file with +# other documented files. + +INCLUDE_GRAPH = YES + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and +# HAVE_DOT tags are set to YES then doxygen will generate a graph for each +# documented header file showing the documented files that directly or +# indirectly include this file. + +INCLUDED_BY_GRAPH = YES + +# If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will +# generate a call dependency graph for every global function or class method. +# Note that enabling this option will significantly increase the time of a run. +# So in most cases it will be better to enable call graphs for selected +# functions only using the \callgraph command. + +CALL_GRAPH = NO + +# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen +# will graphical hierarchy of all classes instead of a textual one. + +GRAPHICAL_HIERARCHY = YES + +# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES +# then doxygen will show the dependencies a directory has on other directories +# in a graphical way. The dependency relations are determined by the #include +# relations between the files in the directories. + +DIRECTORY_GRAPH = YES + +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. Possible values are png, jpg, or gif +# If left blank png will be used. + +DOT_IMAGE_FORMAT = png + +# The tag DOT_PATH can be used to specify the path where the dot tool can be +# found. If left blank, it is assumed the dot tool can be found in the path. + +DOT_PATH = + +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the +# \dotfile command). + +DOTFILE_DIRS = + +# The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width +# (in pixels) of the graphs generated by dot. If a graph becomes larger than +# this value, doxygen will try to truncate the graph, so that it fits within +# the specified constraint. Beware that most browsers cannot cope with very +# large images. + +MAX_DOT_GRAPH_WIDTH = 1024 + +# The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height +# (in pixels) of the graphs generated by dot. If a graph becomes larger than +# this value, doxygen will try to truncate the graph, so that it fits within +# the specified constraint. Beware that most browsers cannot cope with very +# large images. + +MAX_DOT_GRAPH_HEIGHT = 1024 + +# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the +# graphs generated by dot. A depth value of 3 means that only nodes reachable +# from the root by following a path via at most 3 edges will be shown. Nodes +# that lay further from the root node will be omitted. Note that setting this +# option to 1 or 2 may greatly reduce the computation time needed for large +# code bases. Also note that a graph may be further truncated if the graph's +# image dimensions are not sufficient to fit the graph (see MAX_DOT_GRAPH_WIDTH +# and MAX_DOT_GRAPH_HEIGHT). If 0 is used for the depth value (the default), +# the graph is not depth-constrained. + +MAX_DOT_GRAPH_DEPTH = 0 + +# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent +# background. This is disabled by default, which results in a white background. +# Warning: Depending on the platform used, enabling this option may lead to +# badly anti-aliased labels on the edges of a graph (i.e. they become hard to +# read). + +DOT_TRANSPARENT = NO + +# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output +# files in one run (i.e. multiple -o and -T options on the command line). This +# makes dot run faster, but since only newer versions of dot (>1.8.10) +# support this, this feature is disabled by default. + +DOT_MULTI_TARGETS = NO + +# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will +# generate a legend page explaining the meaning of the various boxes and +# arrows in the dot generated graphs. + +GENERATE_LEGEND = YES + +# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will +# remove the intermediate dot files that are used to generate +# the various graphs. + +DOT_CLEANUP = YES + +#--------------------------------------------------------------------------- +# Configuration::additions related to the search engine +#--------------------------------------------------------------------------- + +# The SEARCHENGINE tag specifies whether or not a search engine should be +# used. If set to NO the values of all tags below this one will be ignored. + +SEARCHENGINE = NO diff --git a/INSTALL b/INSTALL new file mode 100644 index 0000000..49f7823 --- /dev/null +++ b/INSTALL @@ -0,0 +1,189 @@ + +How to compile Rosegarden +========================= + +Rosegarden has switched its build system to CMake. We hope this will +be the last time we change build systems. + +You will need CMake 2.4.2 or later. If your Linux distribution +doesn't provide CMake, or if it provides an older version, you can get +it here: + + http://cmake.org/HTML/Download.html + +There are ready to use binary packages available for Linux-i386 from +that page. They seem to work well -- use them! We advise you avoid +building CMake from source if possible. (If you must build it from +source, please read the instructions supplied with the CMake tarball, +and remember that it will install to /usr/local by default.) + + +A Typical Build with CMake +--------------------------- + +If you are a typical end user wanting to play with the latest +Rosegarden, and to install it in the same place the distro package you +are replacing came from, then the the following instructions are +probably all you need to do in order to get up and running: + +First, unpack the tarball or check out SVN. We'll assume you have the +source in ~/src/rosegarden and need to change to that directory: + +$ cd ~/src/rosegarden + +Now run CMake to generate the build files, and specify the location +where your system's KDE libraries are installed. A nice general way +to do this is: + +$ cmake . -DCMAKE_INSTALL_PREFIX=`kde-config --prefix` + +If you omit the install prefix and just run + +$ cmake . + +instead, cmake will prepare to install Rosegarden and its data files +beneath /usr/local. That may be fine if you have no existing +Rosegarden installation you want to replace (see also Advanced Build +Options below). + +Finally, run make, and then (sudo) make install, and you're all set: + +$ make +# make install + +To uninstall, use: + +# make uninstall + + +Advanced Build Options +---------------------- + +By default, make will output brief details of each build step. If you +prefer to see full command lines, use: + +$ make VERBOSE=1 + +By default, the install prefix will be /usr/local. If your KDE is +installed at some other prefix, you probably want to override this +setting, as suggested in "A Typical Build with CMake." You may +install to /usr/local or anywhere else, but if you do so, you must add +that location to your KDEDIRS environment variable before running +Rosegarden. For example: + +$ export KDEDIRS=/usr/local:$KDEDIRS +$ rosegarden + +Another option, useful for packagers, is setting DESTDIR at install +time. The DESTDIR directory will be prepended to the prefix when +copying the files: + +$ make install DESTDIR=~/rpmroot + +Some variables you may want to set: + + * CMAKE_INSTALL_PREFIX: + cmake . -DCMAKE_INSTALL_PREFIX=/opt/kde is the equivalent to + ./configure --prefix=/opt/kde for programs that use autotools + + * WANT_XXXX: there are several options, e.g. WANT_JACK or WANT_DSSI. + If you disable them, cmake will not even try to find the packages. + + WANT_DEBUG Include debug support (default OFF) + WANT_FULLDBG Full debug support (BIG executables!) (default OFF) + WANT_SOUND Include MIDI support using ALSA (default ON) + WANT_JACK Include audio support using JACK (default ON) + WANT_DSSI Include DSSI plugin support (default ON) + WANT_LIRC Include LIRC (Linux Infrared Remote Control) support (def. ON) + WANT_PCH Use precompiled headers (default OFF) + +The above options can take any of the following values: 0, 1, OFF, ON, +TRUE, FALSE, YES, NO (case insensitive). For example: + +$ cmake . -DWANT_DEBUG=YES -DWANT_LIRC=NO -DCMAKE_INSTALL_PREFIX=/opt/kde + +Disabling SOUND (eg. WANT_SOUND=OFF) also disables JACK and DSSI. To +enable FULLDBG you also need to enable DEBUG. + +If you would prefer to avoid all this typing, you can use ccmake to +view and change these options using a friendly curses-based interface: + +$ ccmake . + + +Dealing with Configuration Problems +----------------------------------- + +To locate Qt, CMake searches for qmake in your execute path +($PATH). CMake does not use the QTDIR environment variable. So make +sure that the first qmake found in the execution path is the one you +like to use. + +When CMake has finished, it will have created a file called +"CMakeCache.txt". This file contains all the settings CMake has +detected on your system. If you want to run CMake with another +generator or you want CMake to detect everything again, delete this +file. + +If CMake didn't find something, but you know it is somewhere on your +box, you can tell CMake where to find it manually. CMake uses +variables to store this information. These variables are cached in the +aforementioned file CMakeCache.txt. You have three options to adjust +these variables manually: + + * tell CMake the correct value via the command line: + $ cmake . -DNAME_OF_THE_VARIABLE=value + + * use ccmake, which provides a curses based GUI to adjust the + CMake variables (run: ccmake .) + + * edit the file CMakeCache.txt directly (not recommended) + +You should run "ccmake ." at least once so that you get an idea which +variables CMake uses. Press "T" to see also the "advanced" +variables. So, if CMake didn't find something, start ccmake and adjust +it manually. + + +Some other environment variables you may want to set +---------------------------------------------------- + +If you have headers and libraries installed in non-standard locations +that cmake cannot find (e.g., on /sw), then set the following as +environment variables. Despite the similar naming convention, these +will not work as arguments on the cmake command line: + + * CMAKE_INCLUDE_PATH: directory where headers reside + * CMAKE_LIBRARY_PATH: directory where shared libraries reside + +Example: +$ export CMAKE_INCLUDE_PATH=/sw/include +$ export CMAKE_LIBRARY_PATH=/sw/lib + +For more information on variables, see this cmake.org wiki page: + + http://www.cmake.org/Wiki/CMake_Useful_Variables + + + +How to proceed if something fails? +---------------------------------- + +If cmake finishes with "Generating done" then there was no errors, but +if it finishes with "Configuring done" then there was errors that you +have to fix. If you got a failure that says something like + +CMake Error: This project requires some variables to be set, +and cmake can not find them. +Please set the following variables: +X11_XTest_LIB (ADVANCED) + +So the missing library is Xtst. Perhaps you need to install a +libXtst-devel library. + +If you can't solve the problem, please subscribe and ask your question +on the rosegarden-user mailing list: + +http://lists.sourceforge.net/lists/listinfo/rosegarden-user +http://www.rosegardenmusic.com/support/ + diff --git a/README b/README new file mode 100644 index 0000000..630288a --- /dev/null +++ b/README @@ -0,0 +1,142 @@ + +Rosegarden v1.7.0 +================= + +Rosegarden is a MIDI and audio sequencer and musical notation editor. + + http://www.rosegardenmusic.com/ + +Please keep an eye on the FAQ for known problems and workarounds: + + http://rosegarden.wiki.sourceforge.net/Frequently+Asked+Questions + +When you find bugs, first check whether a newer version of Rosegarden +has been released yet; if not, please continue on to: + + http://rosegarden.sourceforge.net/tutorial/bug-guidelines.html + + +Build requirements +------------------ + +The big requirement is KDE 3.3, or later, or more specifically the KDE +3.3+ development libraries (you don't need the whole KDE environment). + +Our code compiles with gcc-3.x and gcc-4.x. + +For MIDI support on Linux, you need ALSA 0.9.x or 1.0; for audio you +need JACK 0.77 or newer; for synth plugins you need DSSI 0.9.x or +newer; for synth plugin GUI support you need liblo 0.7 or newer. + +We have recently switched to CMake for building (having previously +started out with autotools and then switched to scons -- sorry!). +Please read the INSTALL file for details of how to build and install +Rosegarden using CMake. + + +Running Rosegarden +------------------ + +Just run the "rosegarden" application (found in the KDE bin directory +after installation). The sequencer process is started automatically +when the gui is started, provided it has been correctly installed (by +"make install") in the global KDE directories. + +If you have any problems running the application, review the +instructions in the INSTALL file and consult the FAQ: + + http://rosegarden.wiki.sourceforge.net/Frequently+Asked+Questions + +If that doesn't answer your question, use the rosegarden-user mailing +list on SourceForge. + + +User documentation +------------------ + +There is a lot of documentation for Rosegarden available through the +Help menu. Go to Help -> Rosegarden Handbook for the reference +manual, and Help -> Online Tutorial for a tutorial. + + +SPECIAL NOTES FOR PACKAGE MAINTAINERS +------------------------------------- + +DSSI + +Many distros released their packages of Rosegarden v1.0 compiled +without the optional DSSI/synth plugin support. We received a lot of +complaints on our lists from your users and ours about your packages +being built without this feature. + +We would like to request that you please take whatever steps are +necessary within the framework of your particular distro to ensure +that Rosegarden is built with DSSI support, and ideally that some of +the currently available DSSI plugins are also packaged for your +distro. Thank you. For details on DSSI, see: + + http://dssi.sourceforge.net/ + + +Notes for developers +-------------------- + +We are actively seeking developers who are interested in coding new +parts of the application, adding features, and fixing bugs. See the +bug and feature request trackers at SourceForge for inspiration. If +you intend to do anything, please discuss it on the rosegarden-devel +mailing list (of course, providing working code will make your +argument extra persuasive). + +Be warned that we tend to be fairly strict about code quality... as +far as that's possible, given the not always superb standards of our +own code. + + +Developer documentation +----------------------- + +All the documentation we have (not enough) is in the docs/ +subdirectory, including: + + docs/code/global_design.txt -- which classes do what, more or less + docs/data_struct/units.txt -- how we store pitch and time + docs/data_struct/sets.txt -- some terminology explained + + docs/howtos/alsa-notes -- brief notes about getting and installing the + ALSA sound drivers (we recommend ALSA for use with Rosegarden) + docs/howtos/artsd-mcop-notes.txt -- notes on how to get sound with aRts + (not recommended!) + + +Authors and copyright +--------------------- + +* Rosegarden is Copyright 2000-2008 Guillaume Laurent, Chris Cannam + and Richard Bown. + +* The moral right of Guillaume Laurent, Chris Cannam and Richard Bown + to be identified as the authors of this work has been asserted. + +* Parts of Rosegarden are derived from X11 Rosegarden 2.1, which is + Copyright 1994 - 2001 Chris Cannam, Andrew Green, Richard Bown and + Guillaume Laurent. + +* For musical notation display Rosegarden uses pixmaps derived from + the Feta font, part of the Lilypond software (http://lilypond.org/) + which is Copyright 1997 - 2004 Jan Nieuwenhuizen and Han-Wen Nienhuys. + +* Other major contributors include Randall Farmer, Ron Kuris, Hans + Kieserman, Michael McIntyre, Pedro Lopez-Cabanillas, Heikki Junes, + Stephen Torri, Magnus Johansson, Vince Negri and Martin Shepherd. + See AUTHORS for more details, and the individual source files for + copyright attributions. + +* The Rosegarden splash-screen image is Copyright 2007 D Michael McIntyre. + +Rosegarden 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. See the file COPYING included with +this distribution for more information. + diff --git a/TRANSLATORS b/TRANSLATORS new file mode 100644 index 0000000..d716733 --- /dev/null +++ b/TRANSLATORS @@ -0,0 +1,4 @@ +Please see the AUTHORS file for a list of translators. + +If you'd like to translate Rosegarden into your language, contact us at + diff --git a/cmake_admin/FindKDECONFIG.cmake b/cmake_admin/FindKDECONFIG.cmake new file mode 100644 index 0000000..d610682 --- /dev/null +++ b/cmake_admin/FindKDECONFIG.cmake @@ -0,0 +1,114 @@ +# Rosegarden +# A MIDI and audio sequencer and musical notation editor. +# +# This program is Copyright 2000-2008 +# Guillaume Laurent , +# Chris Cannam , +# Richard Bown +# +# The moral rights of Guillaume Laurent, Chris Cannam, and Richard +# Bown to claim authorship of this work have been asserted. +# +# This file is Copyright 2006-2008 +# Pedro Lopez-Cabanillas +# +# Other copyrights also apply to some parts of this work. Please +# see the AUTHORS file and individual file headers for details. +# +# 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. See the file +# COPYING included with this distribution for more information. +# Find the kde-config program and retrieve the install dirs + +# Variables: +# HAVE_KDECONFIG +# KDECONFIG_EXECUTABLE +# KDE3PREFIX +# KDE3HTMLDIR +# KDE3DATADIR +# KDE3ICONDIR +# KDE3MIMEDIR +# KDE3MENUDIR +# KDE3EXECDIR +# KDE3L18NDIR + +IF(KDECONFIG_EXECUTABLE) + SET(HAVE_KDECONFIG TRUE) +ELSE(KDECONFIG_EXECUTABLE) + FIND_PROGRAM(KDECONFIG_EXECUTABLE NAMES kde-config PATHS + $ENV{KDEDIR}/bin + /opt/kde3/bin + /opt/kde/bin + NO_DEFAULT_PATH + ) + FIND_PROGRAM(KDECONFIG_EXECUTABLE kde-config) +ENDIF(KDECONFIG_EXECUTABLE) + +IF(NOT KDE3PREFIX) + EXECUTE_PROCESS(COMMAND ${KDECONFIG_EXECUTABLE} --version + OUTPUT_VARIABLE kde_config_version ) + STRING(REGEX MATCH "KDE: .\\." kde_version ${kde_config_version}) + IF (${kde_version} MATCHES "KDE: 3\\.") + EXECUTE_PROCESS(COMMAND ${KDECONFIG_EXECUTABLE} --prefix + OUTPUT_VARIABLE kdedir ) + STRING(REGEX REPLACE "\n" "" KDE3PREFIX "${kdedir}") + ENDIF (${kde_version} MATCHES "KDE: 3\\.") +ENDIF(NOT KDE3PREFIX) + +IF(NOT KDE3HTMLDIR) + EXECUTE_PROCESS(COMMAND ${KDECONFIG_EXECUTABLE} --expandvars --install html + OUTPUT_VARIABLE _htmlinstalldir) + STRING(REGEX REPLACE "\n" "" _htmlinstalldir "${_htmlinstalldir}") + STRING(REPLACE "${KDE3PREFIX}/" "" KDE3HTMLDIR "${_htmlinstalldir}") + MESSAGE(STATUS "KDE3HTMLDIR : ${KDE3HTMLDIR}") +ENDIF(NOT KDE3HTMLDIR) + +IF(NOT KDE3DATADIR) + EXECUTE_PROCESS(COMMAND ${KDECONFIG_EXECUTABLE} --expandvars --install data + OUTPUT_VARIABLE _datainstalldir) + STRING(REGEX REPLACE "\n" "" _datainstalldir "${_datainstalldir}") + STRING(REPLACE "${KDE3PREFIX}/" "" KDE3DATADIR "${_datainstalldir}") + MESSAGE(STATUS "KDE3DATADIR : ${KDE3DATADIR}") +ENDIF(NOT KDE3DATADIR) + +IF(NOT KDE3ICONDIR) + EXECUTE_PROCESS(COMMAND ${KDECONFIG_EXECUTABLE} --expandvars --install icon + OUTPUT_VARIABLE _iconinstalldir) + STRING(REGEX REPLACE "\n" "" _iconinstalldir "${_iconinstalldir}") + STRING(REPLACE "${KDE3PREFIX}/" "" KDE3ICONDIR "${_iconinstalldir}") + MESSAGE(STATUS "KDE3ICONDIR : ${KDE3ICONDIR}") +ENDIF(NOT KDE3ICONDIR) + +IF(NOT KDE3MIMEDIR) + EXECUTE_PROCESS(COMMAND ${KDECONFIG_EXECUTABLE} --expandvars --install mime + OUTPUT_VARIABLE _mimeinstalldir) + STRING(REGEX REPLACE "\n" "" _mimeinstalldir "${_mimeinstalldir}") + STRING(REPLACE "${KDE3PREFIX}/" "" KDE3MIMEDIR "${_mimeinstalldir}") + MESSAGE(STATUS "KDE3MIMEDIR : ${KDE3MIMEDIR}") +ENDIF(NOT KDE3MIMEDIR) + +IF(NOT KDE3MENUDIR) + EXECUTE_PROCESS(COMMAND ${KDECONFIG_EXECUTABLE} --expandvars --install xdgdata-apps + OUTPUT_VARIABLE _menuinstalldir) + STRING(REGEX REPLACE "\n" "" _menuinstalldir "${_menuinstalldir}") + STRING(REPLACE "${KDE3PREFIX}/" "" KDE3MENUDIR "${_menuinstalldir}") + MESSAGE(STATUS "KDE3MENUDIR : ${KDE3MENUDIR}") +ENDIF(NOT KDE3MENUDIR) + +IF(NOT KDE3L18NDIR) + EXECUTE_PROCESS(COMMAND ${KDECONFIG_EXECUTABLE} --expandvars --install locale + OUTPUT_VARIABLE _l18ninstalldir) + STRING(REGEX REPLACE "\n" "" _l18ninstalldir "${_l18ninstalldir}") + STRING(REPLACE "${KDE3PREFIX}/" "" KDE3L18NDIR "${_l18ninstalldir}") + MESSAGE(STATUS "KDE3L18NDIR : ${KDE3L18NDIR}") +ENDIF(NOT KDE3L18NDIR) + +IF(NOT KDE3EXECDIR) + EXECUTE_PROCESS(COMMAND ${KDECONFIG_EXECUTABLE} --expandvars --install exe + OUTPUT_VARIABLE _execinstalldir) + STRING(REGEX REPLACE "\n" "" _execinstalldir "${_execinstalldir}") + STRING(REPLACE "${KDE3PREFIX}/" "" KDE3EXECDIR "${_execinstalldir}") + MESSAGE(STATUS "KDE3EXECDIR : ${KDE3EXECDIR}") +ENDIF(NOT KDE3EXECDIR) diff --git a/cmake_admin/FindLADSPA.cmake b/cmake_admin/FindLADSPA.cmake new file mode 100644 index 0000000..d050f8f --- /dev/null +++ b/cmake_admin/FindLADSPA.cmake @@ -0,0 +1,56 @@ +# Rosegarden +# A MIDI and audio sequencer and musical notation editor. +# +# This program is Copyright 2000-2008 +# Guillaume Laurent , +# Chris Cannam , +# Richard Bown +# +# The moral rights of Guillaume Laurent, Chris Cannam, and Richard +# Bown to claim authorship of this work have been asserted. +# +# This file is Copyright 2006-2008 +# Pedro Lopez-Cabanillas +# +# Other copyrights also apply to some parts of this work. Please +# see the AUTHORS file and individual file headers for details. +# +# 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. See the file +# COPYING included with this distribution for more information. + +# - Try to find LADSPA header +# Once done this will define: +# +# LADSPA_FOUND - system has LADSPA +# LADSPA_INCLUDE_DIR - LADSPA header path + +IF(LADSPA_INCLUDE_DIR) + SET(LADSPA_FIND_QUIETLY TRUE) +ENDIF(LADSPA_INCLUDE_DIR) + +FIND_PATH(LADSPA_INCLUDE_DIR "ladspa.h" + /usr/include + /usr/local/include +) + +IF(LADSPA_INCLUDE_DIR) + SET(LADSPA_FOUND TRUE) +ELSE(LADSPA_INCLUDE_DIR) + SET(LADSPA_FOUND FALSE) + SET(LADSPA_INCLUDE_DIR "") +ENDIF(LADSPA_INCLUDE_DIR) + +IF(LADSPA_FOUND) + IF(NOT LADSPA_FIND_QUIETLY) + MESSAGE(STATUS "Found LADSPA: ${LADSPA_INCLUDE_DIR}") + ENDIF(NOT LADSPA_FIND_QUIETLY) +ELSE(LADSPA_FOUND) + IF(LADSPA_FIND_REQUIRED) + MESSAGE(FATAL_ERROR "Could not find LADSPA") + ENDIF(LADSPA_FIND_REQUIRED) +ENDIF(LADSPA_FOUND) + +MARK_AS_ADVANCED(LADSPA_INCLUDE_DIR) diff --git a/cmake_admin/FindLIRC.cmake b/cmake_admin/FindLIRC.cmake new file mode 100644 index 0000000..386ad38 --- /dev/null +++ b/cmake_admin/FindLIRC.cmake @@ -0,0 +1,64 @@ +# Rosegarden +# A MIDI and audio sequencer and musical notation editor. +# +# This program is Copyright 2000-2008 +# Guillaume Laurent , +# Chris Cannam , +# Richard Bown +# +# The moral rights of Guillaume Laurent, Chris Cannam, and Richard +# Bown to claim authorship of this work have been asserted. +# +# This file is Copyright 2006-2008 +# Pedro Lopez-Cabanillas +# +# Other copyrights also apply to some parts of this work. Please +# see the AUTHORS file and individual file headers for details. +# +# 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. See the file +# COPYING included with this distribution for more information. + +# - Try to find LIRC +# Once done this will define: +# +# LIRC_FOUND - system has LIRC +# LIRC_LIBRARY - LIRC library +# LIRC_INCLUDE_DIR - LIRC include path +# LIRC_LIBRARY_DIR - LIRC library path + +IF(LIRC_INCLUDE_DIR) + SET(LIRC_FIND_QUIETLY TRUE) +ENDIF(LIRC_INCLUDE_DIR) + +FIND_PATH(LIRC_INCLUDE_DIR "lirc/lirc_client.h" + /usr/include + /usr/local/include +) + +FIND_LIBRARY(LIRC_LIBRARY + NAMES lirc_client + PATHS /usr/lib /usr/local/lib +) + +IF(LIRC_INCLUDE_DIR AND LIRC_LIBRARY) + SET(LIRC_FOUND TRUE) + GET_FILENAME_COMPONENT(LIRC_LIBRARY_DIR ${LIRC_LIBRARY} PATH) +ELSE(LIRC_INCLUDE_DIR AND LIRC_LIBRARY) + SET(LIRC_FOUND FALSE) + SET(LIRC_LIBRARY_DIR) +ENDIF(LIRC_INCLUDE_DIR AND LIRC_LIBRARY) + +IF(LIRC_FOUND) + IF(NOT LIRC_FIND_QUIETLY) + MESSAGE(STATUS "Found LIRC: ${LIRC_LIBRARY}") + ENDIF(NOT LIRC_FIND_QUIETLY) +ELSE(LIRC_FOUND) + IF(LIRC_FIND_REQUIRED) + MESSAGE(FATAL_ERROR "Could not find LIRC library") + ENDIF(LIRC_FIND_REQUIRED) +ENDIF(LIRC_FOUND) + +MARK_AS_ADVANCED(LIRC_LIBRARY LIRC_INCLUDE_DIR) diff --git a/cmake_admin/FindMEINPROC.cmake b/cmake_admin/FindMEINPROC.cmake new file mode 100644 index 0000000..26c0f0b --- /dev/null +++ b/cmake_admin/FindMEINPROC.cmake @@ -0,0 +1,74 @@ +# Rosegarden +# A MIDI and audio sequencer and musical notation editor. +# +# This program is Copyright 2000-2008 +# Guillaume Laurent , +# Chris Cannam , +# Richard Bown +# +# The moral rights of Guillaume Laurent, Chris Cannam, and Richard +# Bown to claim authorship of this work have been asserted. +# +# This file is Copyright 2006-2008 +# Pedro Lopez-Cabanillas +# +# Other copyrights also apply to some parts of this work. Please +# see the AUTHORS file and individual file headers for details. +# +# 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. See the file +# COPYING included with this distribution for more information. + +# Find the MEINPROC program +# +# Defined variables: +# MEINPROC_FOUND +# MEINPROC_EXECUTABLE +# +# Macro: +# ADD_DOCS + +IF(MEINPROC_EXECUTABLE) + SET(MEINPROC_FOUND TRUE) +ELSE(MEINPROC_EXECUTABLE) + FIND_PROGRAM(MEINPROC_EXECUTABLE + NAME meinproc + PATHS ${KDE3_BIN_INSTALL_DIR} + $ENV{KDEDIR}/bin + /usr/bin + /usr/local/bin + /opt/kde/bin + /opt/kde3/bin ) + IF(MEINPROC_EXECUTABLE) + SET(MEINPROC_FOUND TRUE) + ELSE(MEINPROC_EXECUTABLE) + IF(NOT MEINPROC_FIND_QUIETLY) + IF(MEINPROC_FIND_REQUIRED) + MESSAGE(FATAL_ERROR "Program meinproc couldn't be found") + ENDIF(MEINPROC_FIND_REQUIRED) + ENDIF(NOT MEINPROC_FIND_QUIETLY) + ENDIF(MEINPROC_EXECUTABLE) + MARK_AS_ADVANCED(MEINPROC_EXECUTABLE) +ENDIF (MEINPROC_EXECUTABLE) + +MACRO(ADD_DOCS _baseName) + SET(_outputs) + FOREACH(_dir ${ARGN}) + SET(_out "${CMAKE_CURRENT_BINARY_DIR}/${_dir}_index.cache.bz2") + SET(_in "${CMAKE_CURRENT_SOURCE_DIR}/${_dir}/index.docbook") + FILE(GLOB _images ${_dir}/*.png) + ADD_CUSTOM_COMMAND(OUTPUT ${_out} + COMMAND ${MEINPROC_EXECUTABLE} + ARGS --check --cache ${_out} ${_in} + DEPENDS ${_in} ) + INSTALL(FILES ${_out} + DESTINATION ${KDE3HTMLDIR}/${_dir}/${_baseName} + RENAME index.cache.bz2) + INSTALL(FILES ${_in} ${_images} + DESTINATION ${KDE3HTMLDIR}/${_dir}/${_baseName}) + SET(_outputs ${_outputs} ${_out}) + ENDFOREACH(_dir) + ADD_CUSTOM_TARGET(documentation ALL DEPENDS ${_outputs}) +ENDMACRO(ADD_DOCS) diff --git a/cmake_admin/FindMSGFMT.cmake b/cmake_admin/FindMSGFMT.cmake new file mode 100644 index 0000000..b8419f8 --- /dev/null +++ b/cmake_admin/FindMSGFMT.cmake @@ -0,0 +1,68 @@ +# Rosegarden +# A MIDI and audio sequencer and musical notation editor. +# +# This program is Copyright 2000-2008 +# Guillaume Laurent , +# Chris Cannam , +# Richard Bown +# +# The moral rights of Guillaume Laurent, Chris Cannam, and Richard +# Bown to claim authorship of this work have been asserted. +# +# This file is Copyright 2006-2008 +# Pedro Lopez-Cabanillas +# +# Other copyrights also apply to some parts of this work. Please +# see the AUTHORS file and individual file headers for details. +# +# 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. See the file +# COPYING included with this distribution for more information. + +# Find the msgfmt program +# +# Defined variables: +# MSGFMT_FOUND +# MSGFMT_EXECUTABLE +# +# Macro: +# ADD_TRANSLATIONS +# + +IF(MSGFMT_EXECUTABLE) + SET(MSGFMT_FOUND TRUE) +ELSE(MSGFMT_EXECUTABLE) + FIND_PROGRAM(MSGFMT_EXECUTABLE + NAMES msgfmt gmsgfmt + PATHS /bin /usr/bin /usr/local/bin ) + IF(MSGFMT_EXECUTABLE) + SET(MSGFMT_FOUND TRUE) + ELSE(MSGFMT_EXECUTABLE) + IF(NOT MSGFMT_FIND_QUIETLY) + IF(MSGFMT_FIND_REQUIRED) + MESSAGE(FATAL_ERROR "msgfmt program couldn't be found") + ENDIF(MSGFMT_FIND_REQUIRED) + ENDIF(NOT MSGFMT_FIND_QUIETLY) + ENDIF(MSGFMT_EXECUTABLE) + MARK_AS_ADVANCED(MSGFMT_EXECUTABLE) +ENDIF (MSGFMT_EXECUTABLE) + +MACRO(ADD_TRANSLATIONS _baseName) + SET(_outputs) + FOREACH(_file ${ARGN}) + GET_FILENAME_COMPONENT(_file_we ${_file} NAME_WE) + SET(_out "${CMAKE_CURRENT_BINARY_DIR}/${_file_we}.gmo") + SET(_in "${CMAKE_CURRENT_SOURCE_DIR}/${_file_we}.po") + ADD_CUSTOM_COMMAND( + OUTPUT ${_out} + COMMAND ${MSGFMT_EXECUTABLE} -o ${_out} ${_in} + DEPENDS ${_in} ) + INSTALL(FILES ${_out} + DESTINATION ${KDE3L18NDIR}/${_file_we}/LC_MESSAGES/ + RENAME ${_baseName}.mo ) + SET(_outputs ${_outputs} ${_out}) + ENDFOREACH(_file) + ADD_CUSTOM_TARGET(translations ALL DEPENDS ${_outputs}) +ENDMACRO(ADD_TRANSLATIONS) diff --git a/cmake_admin/FindPCHSupport.cmake b/cmake_admin/FindPCHSupport.cmake new file mode 100644 index 0000000..d31a00d --- /dev/null +++ b/cmake_admin/FindPCHSupport.cmake @@ -0,0 +1,73 @@ +# Rosegarden +# A MIDI and audio sequencer and musical notation editor. +# +# This program is Copyright 2000-2008 +# Guillaume Laurent , +# Chris Cannam , +# Richard Bown +# +# The moral rights of Guillaume Laurent, Chris Cannam, and Richard +# Bown to claim authorship of this work have been asserted. +# +# This file is Copyright 2006-2008 +# Pedro Lopez-Cabanillas +# +# Other copyrights also apply to some parts of this work. Please +# see the AUTHORS file and individual file headers for details. +# +# 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. See the file +# COPYING included with this distribution for more information. + +# - Try to find precompiled headers support for GCC 3.4 and 4.x +# Once done this will define: +# +# Variable: +# PCHSupport_FOUND +# +# Macro: +# ADD_PRECOMPILED_HEADER + +IF(CMAKE_COMPILER_IS_GNUCXX) + EXEC_PROGRAM(${CMAKE_CXX_COMPILER} + ARGS -dumpversion + OUTPUT_VARIABLE gcc_compiler_version) +# STRING(REGEX REPLACE ".* ([0-9]\\.[0-9]\\.[0-9]) .*" "\\1" +# gcc_compiler_version ${_compiler_output}) +# MESSAGE("GCC Version: ${gcc_compiler_version}") + IF(gcc_compiler_version MATCHES "4\\.[0-9]\\.[0-9]") + SET(PCHSupport_FOUND TRUE) + ELSE(gcc_compiler_version MATCHES "4\\.[0-9]\\.[0-9]") + IF(gcc_compiler_version MATCHES "3\\.4\\.[0-9]") + SET(PCHSupport_FOUND TRUE) + ENDIF(gcc_compiler_version MATCHES "3\\.4\\.[0-9]") + ENDIF(gcc_compiler_version MATCHES "4\\.[0-9]\\.[0-9]") +ENDIF(CMAKE_COMPILER_IS_GNUCXX) + +MACRO(ADD_PRECOMPILED_HEADER _targetName _input) + GET_FILENAME_COMPONENT(_name ${_input} NAME) + SET(_source "${CMAKE_CURRENT_SOURCE_DIR}/${_input}") + SET(_outdir "${CMAKE_CURRENT_BINARY_DIR}/${_name}.gch") + MAKE_DIRECTORY(${_outdir}) + SET(_output "${_outdir}/${CMAKE_BUILD_TYPE}.c++") + STRING(TOUPPER "CMAKE_CXX_FLAGS_${CMAKE_BUILD_TYPE}" _flags_var_name) + SET(_compiler_FLAGS ${${_flags_var_name}}) + SEPARATE_ARGUMENTS(_compiler_FLAGS) + #MESSAGE("_compiler_FLAGS: ${_compiler_FLAGS}") + ADD_CUSTOM_COMMAND( + OUTPUT ${_output} + COMMAND ${CMAKE_CXX_COMPILER} + ${_compiler_FLAGS} + -I${QT_INCLUDE_DIR} + -I${KDE3_INCLUDE_DIR} + ${QT_DEFINITIONS} + ${KDE3_DEFINITIONS} + -x c++-header + -o ${_output} ${_source} + DEPENDS ${_source} ) + ADD_CUSTOM_TARGET(${_targetName} DEPENDS ${_output}) + #SET(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} "-include ${_name} -Winvalid-pch -H") + SET(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} "-include ${_name} -Winvalid-pch") +ENDMACRO(ADD_PRECOMPILED_HEADER) diff --git a/cmake_admin/FindPkgConfig.cmake b/cmake_admin/FindPkgConfig.cmake new file mode 100644 index 0000000..228ffcd --- /dev/null +++ b/cmake_admin/FindPkgConfig.cmake @@ -0,0 +1,383 @@ +# - a pkg-config module for CMake +# +# Usage: +# pkg_check_modules( [REQUIRED] []*) +# checks for all the given modules +# +# pkg_search_module( [REQUIRED] []*) +# checks for given modules and uses the first working one +# +# When the 'REQUIRED' argument was set, macros will fail with an error +# when module(s) could not be found +# +# It sets the following variables: +# PKG_CONFIG_FOUND ... true iff pkg-config works on the system +# PKG_CONFIG_EXECUTABLE ... pathname of the pkg-config program +# _FOUND ... set to 1 iff module(s) exist +# +# For the following variables two sets of values exist; first one is the +# common one and has the given PREFIX. The second set contains flags +# which are given out when pkgconfig was called with the '--static' +# option. +# _LIBRARIES ... only the libraries (w/o the '-l') +# _LIBRARY_DIRS ... the paths of the libraries (w/o the '-L') +# _LDFLAGS ... all required linker flags +# _LDFLAGS_OTHERS ... all other linker flags +# _INCLUDE_DIRS ... the '-I' preprocessor flags (w/o the '-I') +# _CFLAGS ... all required cflags +# _CFLAGS_OTHERS ... the other compiler flags +# +# = for common case +# = _STATIC for static linking +# +# There are some special variables whose prefix depends on the count +# of given modules. When there is only one module, stays +# unchanged. When there are multiple modules, the prefix will be +# changed to _: +# _VERSION ... version of the module +# _PREFIX ... prefix-directory of the module +# _INCLUDEDIR ... include-dir of the module +# _LIBDIR ... lib-dir of the module +# +# = when |MODULES| == 1, else +# = _ +# +# A parameter can have the following formats: +# {MODNAME} ... matches any version +# {MODNAME}>={VERSION} ... at least version is required +# {MODNAME}={VERSION} ... exactly version is required +# {MODNAME}<={VERSION} ... modules must not be newer than +# +# Examples +# pkg_check_modules (GLIB2 glib-2.0) +# +# pkg_check_modules (GLIB2 glib-2.0>=2.10) +# requires at least version 2.10 of glib2 and defines e.g. +# GLIB2_VERSION=2.10.3 +# +# pkg_check_modules (FOO glib-2.0>=2.10 gtk+-2.0) +# requires both glib2 and gtk2, and defines e.g. +# FOO_glib-2.0_VERSION=2.10.3 +# FOO_gtk+-2.0_VERSION=2.8.20 +# +# pkg_check_modules (XRENDER REQUIRED xrender) +# defines e.g.: +# XRENDER_LIBRARIES=Xrender;X11 +# XRENDER_STATIC_LIBRARIES=Xrender;X11;pthread;Xau;Xdmcp +# +# pkg_search_module (BAR libxml-2.0 libxml2 libxml>=2) + + +# Copyright (C) 2006 Enrico Scholz +# +# Redistribution and use, with or without modification, are permitted +# provided that the following conditions are met: +# +# 1. Redistributions must retain the above copyright notice, this +# list of conditions and the following disclaimer. +# 2. The name of the author may not be used to endorse or promote +# products derived from this software without specific prior +# written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR +# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE +# GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN +# IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +### Common stuff #### +set(PKG_CONFIG_VERSION 1) +set(PKG_CONFIG_FOUND 0) + +find_program(PKG_CONFIG_EXECUTABLE NAMES pkg-config DOC "pkg-config executable") +mark_as_advanced(PKG_CONFIG_EXECUTABLE) + +if(PKG_CONFIG_EXECUTABLE) + set(PKG_CONFIG_FOUND 1) +endif(PKG_CONFIG_EXECUTABLE) + + +# Unsets the given variables +macro(_pkgconfig_unset var) + set(${var} "" CACHE INTERNAL "") +endmacro(_pkgconfig_unset) + +macro(_pkgconfig_set var value) + set(${var} ${value} CACHE INTERNAL "") +endmacro(_pkgconfig_set) + +# Invokes pkgconfig, cleans up the result and sets variables +macro(_pkgconfig_invoke _pkglist _prefix _varname _regexp) + set(_pkgconfig_invoke_result) + + execute_process( + COMMAND ${PKG_CONFIG_EXECUTABLE} ${ARGN} ${_pkglist} + OUTPUT_VARIABLE _pkgconfig_invoke_result + RESULT_VARIABLE _pkgconfig_failed) + + if (_pkgconfig_failed) + set(_pkgconfig_${_varname} "") + _pkgconfig_unset(${_prefix}_${_varname}) + else(_pkgconfig_failed) + string(REGEX REPLACE "[\r\n]" " " _pkgconfig_invoke_result "${_pkgconfig_invoke_result}") + string(REGEX REPLACE " +$" "" _pkgconfig_invoke_result "${_pkgconfig_invoke_result}") + + if (NOT ${_regexp} STREQUAL "") + string(REGEX REPLACE "${_regexp}" " " _pkgconfig_invoke_result "${_pkgconfig_invoke_result}") + endif(NOT ${_regexp} STREQUAL "") + + separate_arguments(_pkgconfig_invoke_result) + + #message(STATUS " ${_varname} ... ${_pkgconfig_invoke_result}") + set(_pkgconfig_${_varname} ${_pkgconfig_invoke_result}) + _pkgconfig_set(${_prefix}_${_varname} "${_pkgconfig_invoke_result}") + endif(_pkgconfig_failed) +endmacro(_pkgconfig_invoke) + +# Invokes pkgconfig two times; once without '--static' and once with +# '--static' +macro(_pkgconfig_invoke_dyn _pkglist _prefix _varname cleanup_regexp) + _pkgconfig_invoke("${_pkglist}" ${_prefix} ${_varname} "${cleanup_regexp}" ${ARGN}) + _pkgconfig_invoke("${_pkglist}" ${_prefix} STATIC_${_varname} "${cleanup_regexp}" --static ${ARGN}) +endmacro(_pkgconfig_invoke_dyn) + +# Splits given arguments into options and a package list +macro(_pkgconfig_parse_options _result _is_req) + set(${_is_req} 0) + + foreach(_pkg ${ARGN}) + if (_pkg STREQUAL "REQUIRED") + set(${_is_req} 1) + endif (_pkg STREQUAL "REQUIRED") + endforeach(_pkg ${ARGN}) + + set(${_result} ${ARGN}) + list(REMOVE_ITEM ${_result} "REQUIRED") +endmacro(_pkgconfig_parse_options) + +### +macro(_pkg_check_modules_internal _is_required _is_silent _prefix) + _pkgconfig_unset(${_prefix}_FOUND) + _pkgconfig_unset(${_prefix}_VERSION) + _pkgconfig_unset(${_prefix}_PREFIX) + _pkgconfig_unset(${_prefix}_INCLUDEDIR) + _pkgconfig_unset(${_prefix}_LIBDIR) + _pkgconfig_unset(${_prefix}_LIBS) + _pkgconfig_unset(${_prefix}_LIBS_L) + _pkgconfig_unset(${_prefix}_LIBS_PATHS) + _pkgconfig_unset(${_prefix}_LIBS_OTHER) + _pkgconfig_unset(${_prefix}_CFLAGS) + _pkgconfig_unset(${_prefix}_CFLAGS_I) + _pkgconfig_unset(${_prefix}_CFLAGS_OTHER) + _pkgconfig_unset(${_prefix}_STATIC_LIBDIR) + _pkgconfig_unset(${_prefix}_STATIC_LIBS) + _pkgconfig_unset(${_prefix}_STATIC_LIBS_L) + _pkgconfig_unset(${_prefix}_STATIC_LIBS_PATHS) + _pkgconfig_unset(${_prefix}_STATIC_LIBS_OTHER) + _pkgconfig_unset(${_prefix}_STATIC_CFLAGS) + _pkgconfig_unset(${_prefix}_STATIC_CFLAGS_I) + _pkgconfig_unset(${_prefix}_STATIC_CFLAGS_OTHER) + + # create a better addressable variable of the modules and calculate its size + set(_pkg_check_modules_list ${ARGN}) + list(LENGTH _pkg_check_modules_list _pkg_check_modules_cnt) + + if(PKG_CONFIG_EXECUTABLE) + # give out status message telling checked module + if (NOT ${_is_silent}) + if (_pkg_check_modules_cnt EQUAL 1) + message(STATUS "checking for module '${_pkg_check_modules_list}'") + else(_pkg_check_modules_cnt EQUAL 1) + message(STATUS "checking for modules '${_pkg_check_modules_list}'") + endif(_pkg_check_modules_cnt EQUAL 1) + endif(NOT ${_is_silent}) + + set(_pkg_check_modules_packages) + set(_pkg_check_modules_failed) + + # iterate through module list and check whether they exist and match the required version + foreach (_pkg_check_modules_pkg ${_pkg_check_modules_list}) + set(_pkg_check_modules_exist_query) + + # check whether version is given + if (_pkg_check_modules_pkg MATCHES ".*(>=|=|<=).*") + string(REGEX REPLACE "(.*[^><])(>=|=|<=)(.*)" "\\1" _pkg_check_modules_pkg_name "${_pkg_check_modules_pkg}") + string(REGEX REPLACE "(.*[^><])(>=|=|<=)(.*)" "\\2" _pkg_check_modules_pkg_op "${_pkg_check_modules_pkg}") + string(REGEX REPLACE "(.*[^><])(>=|=|<=)(.*)" "\\3" _pkg_check_modules_pkg_ver "${_pkg_check_modules_pkg}") + else(_pkg_check_modules_pkg MATCHES ".*(>=|=|<=).*") + set(_pkg_check_modules_pkg_name "${_pkg_check_modules_pkg}") + set(_pkg_check_modules_pkg_op) + set(_pkg_check_modules_pkg_ver) + endif(_pkg_check_modules_pkg MATCHES ".*(>=|=|<=).*") + + # handle the operands + if (_pkg_check_modules_pkg_op STREQUAL ">=") + list(APPEND _pkg_check_modules_exist_query --atleast-version) + endif(_pkg_check_modules_pkg_op STREQUAL ">=") + + if (_pkg_check_modules_pkg_op STREQUAL "=") + list(APPEND _pkg_check_modules_exist_query --exact-version) + endif(_pkg_check_modules_pkg_op STREQUAL "=") + + if (_pkg_check_modules_pkg_op STREQUAL "<=") + list(APPEND _pkg_check_modules_exist_query --max-version) + endif(_pkg_check_modules_pkg_op STREQUAL "<=") + + # create the final query which is of the format: + # * --atleast-version + # * --exact-version + # * --max-version + # * --exists + if (_pkg_check_modules_pkg_op) + list(APPEND _pkg_check_modules_exist_query "${_pkg_check_modules_pkg_ver}") + else(_pkg_check_modules_pkg_op) + list(APPEND _pkg_check_modules_exist_query --exists) + endif(_pkg_check_modules_pkg_op) + + _pkgconfig_unset(${_prefix}_${_pkg_check_modules_pkg_name}_VERSION) + _pkgconfig_unset(${_prefix}_${_pkg_check_modules_pkg_name}_PREFIX) + _pkgconfig_unset(${_prefix}_${_pkg_check_modules_pkg_name}_INCLUDEDIR) + _pkgconfig_unset(${_prefix}_${_pkg_check_modules_pkg_name}_LIBDIR) + + list(APPEND _pkg_check_modules_exist_query "${_pkg_check_modules_pkg_name}") + list(APPEND _pkg_check_modules_packages "${_pkg_check_modules_pkg_name}") + + # execute the query + execute_process( + COMMAND ${PKG_CONFIG_EXECUTABLE} ${_pkg_check_modules_exist_query} + RESULT_VARIABLE _pkgconfig_retval) + + # evaluate result and tell failures + if (_pkgconfig_retval) + if(NOT ${_is_silent}) + message(STATUS " package '${_pkg_check_modules_pkg}' not found") + endif(NOT ${_is_silent}) + + set(_pkg_check_modules_failed 1) + endif(_pkgconfig_retval) + endforeach(_pkg_check_modules_pkg) + + if(_pkg_check_modules_failed) + # fail when requested + if (${_is_required}) + message(SEND_ERROR "A required package was not found") + endif (${_is_required}) + else(_pkg_check_modules_failed) + # when we are here, we checked whether requested modules + # exist. Now, go through them and set variables + + _pkgconfig_set(${_prefix}_FOUND 1) + list(LENGTH _pkg_check_modules_packages pkg_count) + + # iterate through all modules again and set individual variables + foreach (_pkg_check_modules_pkg ${_pkg_check_modules_packages}) + # handle case when there is only one package required + if (pkg_count EQUAL 1) + set(_pkg_check_prefix "${_prefix}") + else(pkg_count EQUAL 1) + set(_pkg_check_prefix "${_prefix}_${_pkg_check_modules_pkg}") + endif(pkg_count EQUAL 1) + + _pkgconfig_invoke(${_pkg_check_modules_pkg} "${_pkg_check_prefix}" VERSION "" --modversion ) + _pkgconfig_invoke(${_pkg_check_modules_pkg} "${_pkg_check_prefix}" PREFIX "" --variable=prefix ) + _pkgconfig_invoke(${_pkg_check_modules_pkg} "${_pkg_check_prefix}" INCLUDEDIR "" --variable=includedir ) + _pkgconfig_invoke(${_pkg_check_modules_pkg} "${_pkg_check_prefix}" LIBDIR "" --variable=libdir ) + + message(STATUS " found ${_pkg_check_modules_pkg}, version ${_pkgconfig_VERSION}") + endforeach(_pkg_check_modules_pkg) + + # set variables which are combined for multiple modules + _pkgconfig_invoke_dyn("${_pkg_check_modules_packages}" "${_prefix}" LIBRARIES "(^| )-l" --libs-only-l ) + _pkgconfig_invoke_dyn("${_pkg_check_modules_packages}" "${_prefix}" LIBRARY_DIRS "(^| )-L" --libs-only-L ) + _pkgconfig_invoke_dyn("${_pkg_check_modules_packages}" "${_prefix}" LDFLAGS "" --libs ) + _pkgconfig_invoke_dyn("${_pkg_check_modules_packages}" "${_prefix}" LDFLAGS_OTHER "" --libs-only-other ) + + _pkgconfig_invoke_dyn("${_pkg_check_modules_packages}" "${_prefix}" INCLUDE_DIRS "(^| )-I" --cflags-only-I ) + _pkgconfig_invoke_dyn("${_pkg_check_modules_packages}" "${_prefix}" CFLAGS "" --cflags ) + _pkgconfig_invoke_dyn("${_pkg_check_modules_packages}" "${_prefix}" CFLAGS_OTHER "" --cflags-only-other ) + endif(_pkg_check_modules_failed) + else(PKG_CONFIG_EXECUTABLE) + if (${_is_required}) + message(SEND_ERROR "pkg-config tool not found") + endif (${_is_required}) + endif(PKG_CONFIG_EXECUTABLE) +endmacro(_pkg_check_modules_internal) + +### +### User visible macros start here +### + +### +macro(pkg_check_modules _prefix _module0) + # check cached value + if (NOT DEFINED __pkg_config_checked_${_prefix} OR __pkg_config_checked_${_prefix} LESS ${PKG_CONFIG_VERSION}) + _pkgconfig_parse_options (_pkg_modules _pkg_is_required "${_module0}" ${ARGN}) + _pkg_check_modules_internal("${_pkg_is_required}" 0 "${_prefix}" ${_pkg_modules}) + + if(${_prefix}_FOUND) + _pkgconfig_set(__pkg_config_checked_${_prefix} ${PKG_CONFIG_VERSION}) + endif(${_prefix}_FOUND) + endif(NOT DEFINED __pkg_config_checked_${_prefix} OR __pkg_config_checked_${_prefix} LESS ${PKG_CONFIG_VERSION}) +endmacro(pkg_check_modules) + +### +macro(pkg_search_module _prefix _module0) + # check cached value + if (NOT DEFINED __pkg_config_checked_${_prefix} OR __pkg_config_checked_${_prefix} LESS ${PKG_CONFIG_VERSION}) + set(_pkg_modules_found 0) + _pkgconfig_parse_options(_pkg_modules_alt _pkg_is_required "${_module0}" ${ARGN}) + + message(STATUS "checking for one of the modules '${_pkg_modules_alt}'") + + # iterate through all modules and stop at the first working one. + foreach(_pkg_alt ${_pkg_modules_alt}) + if(NOT _pkg_modules_found) + _pkg_check_modules_internal(0 1 "${_prefix}" "${_pkg_alt}") + endif(NOT _pkg_modules_found) + + if (${_prefix}_FOUND) + set(_pkg_modules_found 1) + endif(${_prefix}_FOUND) + endforeach(_pkg_alt) + + if (NOT ${_prefix}_FOUND) + if(${_pkg_is_required}) + message(SEND_ERROR "None of the required '${_pkg_modules_alt}' found") + endif(${_pkg_is_required}) + else (NOT ${_prefix}_FOUND) + _pkgconfig_set(__pkg_config_checked_${_prefix} ${PKG_CONFIG_VERSION}) + endif(NOT ${_prefix}_FOUND) + + endif(NOT DEFINED __pkg_config_checked_${_prefix} OR __pkg_config_checked_${_prefix} LESS ${PKG_CONFIG_VERSION}) +endmacro(pkg_search_module) + +### +macro(PKGCONFIG _package _include_DIR _link_DIR _link_FLAGS _cflags) + message(STATUS "WARNING: you are using the obsolete 'PKGCONFIG' macro") + _pkg_check_modules_internal(0 0 _PKGCONFIG_TMP "${_package}") + if (_PKGCONFIG_TMP_FOUND) + set(${_include_DIR} ${_PKGCONFIG_TMP_INCLUDEDIR}) + set(${_link_DIR} ${_PKGCONFIG_TMP_LIBDIR}) + set(${_link_FLAGS} ${_PKGCONFIG_TMP_LDFLAGS}) + set(${_cflags} ${_PKGCONFIG_TMP_CFLAGS}) + set(_return_VALUE 0) + else(_PKGCONFIG_TMP_FOUND) + set(${_include_DIR}) + set(${_link_DIR}) + set(${_link_FLAGS}) + set(${_cflags}) + set(_return_VALUE 1) + endif(_PKGCONFIG_TMP_FOUND) +endmacro(PKGCONFIG) + + +### Local Variables: +### mode: cmake +### End: diff --git a/cmake_admin/UserWarnings.cmake b/cmake_admin/UserWarnings.cmake new file mode 100644 index 0000000..0e5312e --- /dev/null +++ b/cmake_admin/UserWarnings.cmake @@ -0,0 +1,110 @@ +# Rosegarden +# A MIDI and audio sequencer and musical notation editor. +# +# This program is Copyright 2000-2008 +# Guillaume Laurent , +# Chris Cannam , +# Richard Bown +# +# The moral rights of Guillaume Laurent, Chris Cannam, and Richard +# Bown to claim authorship of this work have been asserted. +# +# This file is Copyright 2006-2008 +# Pedro Lopez-Cabanillas +# +# Other copyrights also apply to some parts of this work. Please +# see the AUTHORS file and individual file headers for details. +# +# 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. See the file +# COPYING included with this distribution for more information. + +MESSAGE("\n" +"Installation Summary\n" +"--------------------\n" +"\n" +"Install Directory : ${CMAKE_INSTALL_PREFIX}\n" +"Build type : ${CMAKE_BUILD_TYPE}\n" +"Use Qt/KDE precompiled headers: ${USE_PCH}\n" +"\n" +"Xft notation font support : ${HAVE_XFT}") + +IF(WANT_LIRC) +MESSAGE( +"LIRC infrared remote support : ${HAVE_LIRC}") +ELSE(WANT_LIRC) +MESSAGE("No LIRC support configured.") +ENDIF(WANT_LIRC) + +MESSAGE("") + +IF(WANT_SOUND) +MESSAGE( +"ALSA MIDI support : ${HAVE_ALSA}\n" +"JACK audio support : ${HAVE_JACK}\n" +"LADSPA plugin support : ${HAVE_LADSPA}\n" +"DSSI synth plugin support : ${HAVE_DSSI}\n" +"Custom OSC plugin GUI support : ${HAVE_LIBLO}\n" +"Audio timestretching : ${HAVE_FFTW3F}\n" +"LRDF plugin metadata support : ${HAVE_LIBLRDF}") +ELSE(WANT_SOUND) +MESSAGE("No sound support configured.") +ENDIF(WANT_SOUND) + +IF(NOT HAVE_XFT) +MESSAGE("\n* Score rendering quality and performance may be\n" +"improved if Xft 2.1.0 and Freetype 2 are available, to permit\n" +"Rosegarden to override the Qt font selection mechanism. It\n" +"may not be worth trying to install them if they aren't already\n" +"present in your distribution though.") +ENDIF(NOT HAVE_XFT) + +IF(WANT_SOUND) + +IF(NOT HAVE_ALSA) +MESSAGE("\n* Rosegarden requires the ALSA (Advanced Linux Sound Architecture) drivers\n" +"for MIDI, and the JACK audio framework for audio sequencing.\n" +"Please see the documentation at http://www.rosegardenmusic.com/getting/\n" +"for more information about these dependencies.") +ENDIF(NOT HAVE_ALSA) + +IF(NOT HAVE_JACK) +MESSAGE("\n* Rosegarden uses the JACK audio server for audio recording and\n" +"sequencing. See http://jackit.sf.net/ for more information about\n" +"getting and installing JACK. If you want to use Rosegarden only\n" +"for MIDI, then you do not need JACK.") +ENDIF(NOT HAVE_JACK) + +IF(NOT HAVE_LADSPA) +MESSAGE("\n* Rosegarden supports LADSPA audio plugins if available. See\n" +"http://www.ladspa.org/ for more information about LADSPA. To\n" +"build LADSPA support into Rosegarden, you need to make sure\n" +"you have ladspa.h available on your system.") +ENDIF(NOT HAVE_LADSPA) + +IF(NOT HAVE_DSSI) +MESSAGE("\n* Rosegarden supports DSSI audio plugins if available. See\n" +"http://dssi.sf.net/ for more information about DSSI. To\n" +"build DSSI support into Rosegarden, you need to make sure\n" +"you have dssi.h available on your system.") +ENDIF(NOT HAVE_DSSI) + +IF(NOT HAVE_LIBLO) +MESSAGE("\n* Rosegarden supports custom GUIs for DSSI (and LADSPA) plugins using\n" +"the Open Sound Control protocol, if the Lite OSC library liblo is\n" +"available. Go to http://www.plugin.org.uk/liblo/ to obtain liblo\n" +"and http://dssi.sf.net/ for more information about DSSI GUIs.") +ENDIF(NOT HAVE_LIBLO) + +IF(NOT HAVE_LIBLRDF) +MESSAGE("\n* Rosegarden supports the LRDF metadata format for classification\n" +"of LADSPA and DSSI plugins. This will improve the usability of\n" +"plugin selection dialogs. You can obtain LRDF from\n" +"http://www.plugin.org.uk/lrdf/.") +ENDIF(NOT HAVE_LIBLRDF) + +ENDIF(WANT_SOUND) + +MESSAGE("") diff --git a/data/CMakeLists.txt b/data/CMakeLists.txt new file mode 100644 index 0000000..1dfc834 --- /dev/null +++ b/data/CMakeLists.txt @@ -0,0 +1,125 @@ +# Data directory + +SET(DATADIR ${KDE3DATADIR}/rosegarden) +SET(ICONDIR ${KDE3ICONDIR}) +SET(MIMEDIR ${KDE3MIMEDIR}/audio) +SET(MENUDIR ${KDE3MENUDIR}) + +# Guitar chord files +FILE(GLOB CHORD_FILES chords/*.xml) +INSTALL(FILES ${CHORD_FILES} DESTINATION ${DATADIR}/chords) + +# Desktop file +INSTALL(FILES desktop/rosegarden.desktop DESTINATION ${MENUDIR}) + +# MIME files +SET(MIME_FILES + desktop/x-rosegarden21.desktop + desktop/x-rosegarden.desktop + desktop/x-rosegarden-device.desktop + desktop/x-soundfont.desktop) +INSTALL(FILES ${MIME_FILES} DESTINATION ${MIMEDIR}) + +# Icons +INSTALL(FILES pixmaps/icons/cc-hi16-rosegarden.xpm DESTINATION ${ICONDIR}/locolor/16x16/apps RENAME rosegarden.xpm) +INSTALL(FILES pixmaps/icons/rg-rwb-rose3-16x16.png DESTINATION ${ICONDIR}/hicolor/16x16/apps RENAME rosegarden.png) +INSTALL(FILES pixmaps/icons/cc-hi32-rosegarden.xpm DESTINATION ${ICONDIR}/locolor/32x32/apps RENAME rosegarden.xpm) +INSTALL(FILES pixmaps/icons/rg-rwb-rose3-32x32.png DESTINATION ${ICONDIR}/hicolor/32x32/apps RENAME rosegarden.png) +INSTALL(FILES pixmaps/icons/rg-rwb-rose3-48x48.png DESTINATION ${ICONDIR}/hicolor/48x48/apps RENAME rosegarden.png) +INSTALL(FILES pixmaps/icons/rg-rwb-rose3-64x64.png DESTINATION ${ICONDIR}/hicolor/64x64/apps RENAME rosegarden.png) +INSTALL(FILES pixmaps/icons/rg-rwb-rose3-128x128.png DESTINATION ${ICONDIR}/hicolor/128x128/apps RENAME rosegarden.png) + +INSTALL(FILES pixmaps/icons/mm-mime-hi16-rosegarden.png DESTINATION ${ICONDIR}/hicolor/16x16/mimetypes RENAME x-rosegarden.png) +INSTALL(FILES pixmaps/icons/mm-mime-hi16-rosegarden.png DESTINATION ${ICONDIR}/locolor/16x16/mimetypes RENAME x-rosegarden.png) +INSTALL(FILES pixmaps/icons/mm-mime-hi32-rosegarden.png DESTINATION ${ICONDIR}/hicolor/32x32/mimetypes RENAME x-rosegarden.png) +INSTALL(FILES pixmaps/icons/mm-mime-hi32-rosegarden.png DESTINATION ${ICONDIR}/locolor/32x32/mimetypes RENAME x-rosegarden.png) + +# styles +FILE(GLOB STYLES_FILES styles/*.xml) +INSTALL(FILES ${STYLES_FILES} DESTINATION ${DATADIR}/styles) + +# presets +FILE(GLOB PRESETS_FILES presets/*.xml) +INSTALL(FILES ${PRESETS_FILES} DESTINATION ${DATADIR}/presets) + +# fonts +FILE(GLOB PFA_FILES fonts/*.pfa) +INSTALL(FILES ${PFA_FILES} DESTINATION ${DATADIR}/fonts) + +FILE(GLOB XML_FILES fonts/mappings/*.xml) +INSTALL(FILES ${XML_FILES} DESTINATION ${DATADIR}/fonts/mappings) + +FILE(GLOB XPM_FILES pixmaps/rg21/4/*.xpm) +INSTALL(FILES ${XPM_FILES} DESTINATION ${DATADIR}/fonts/rg21/4) + +FILE(GLOB XPM_FILES pixmaps/rg21/8/*.xpm) +INSTALL(FILES ${XPM_FILES} DESTINATION ${DATADIR}/fonts/rg21/8) + +FILE(GLOB XPM_FILES pixmaps/feta/4/*.xpm) +INSTALL(FILES ${XPM_FILES} DESTINATION ${DATADIR}/fonts/feta/4) + +FILE(GLOB XPM_FILES pixmaps/feta/6/*.xpm) +INSTALL(FILES ${XPM_FILES} DESTINATION ${DATADIR}/fonts/feta/6) + +FILE(GLOB XPM_FILES pixmaps/feta/8/*.xpm) +INSTALL(FILES ${XPM_FILES} DESTINATION ${DATADIR}/fonts/feta/8) + +FILE(GLOB XPM_FILES pixmaps/feta/10/*.xpm) +INSTALL(FILES ${XPM_FILES} DESTINATION ${DATADIR}/fonts/feta/10) + +FILE(GLOB XPM_FILES pixmaps/feta/12/*.xpm) +INSTALL(FILES ${XPM_FILES} DESTINATION ${DATADIR}/fonts/feta/12) + +# pixmaps +FILE(GLOB PIXMAP_FILES pixmaps/misc/*.xpm pixmaps/misc/*.png) +INSTALL(FILES ${PIXMAP_FILES} DESTINATION ${DATADIR}/pixmaps/misc) + +FILE(GLOB PIXMAP_FILES pixmaps/toolbar/*.xpm pixmaps/toolbar/*.png) +INSTALL(FILES ${PIXMAP_FILES} DESTINATION ${DATADIR}/pixmaps/toolbar) + +FILE(GLOB PIXMAP_FILES pixmaps/transport/*.xpm pixmaps/transport/*.png) +INSTALL(FILES ${PIXMAP_FILES} DESTINATION ${DATADIR}/pixmaps/transport) + +# Splash +INSTALL(FILES pixmaps/splash.png DESTINATION ${DATADIR}/pixmaps) + +# Examples +SET(EXAMPLE_FILES + examples/aveverum.rg + examples/aylindaamiga.rg + examples/bogus-surf-jam.rg + examples/bwv-1060-trumpet-duet-excerpt.rg + examples/children.rg + examples/Djer-Fire.rg + examples/doodle-q.rg + examples/exercise_notation.rg + examples/glazunov.rg + examples/glazunov-for-solo-and-piano-with-cue.rg + examples/headers-and-unicode-lyrics.rg + examples/himno_de_riego.rg + examples/interpretation-example.rg + examples/let-all-mortal-flesh.rg + examples/lilypond-alternative-endings.rg + examples/lilypond-directives.rg + examples/lilypond-staff-groupings.rg + examples/mandolin-sonatina.rg + examples/mozart-quartet.rg + examples/notation-for-string-orchestra-in-D-minor.rg + examples/perfect-moment.rg + examples/ravel-pc-gmaj-adagio.rg + examples/sonataC.rose + examples/stormy-riders.rg + examples/test_tuplets.rg + examples/the-rose-garden.rg + examples/vivaldi-cs3mv2.rg + examples/vivaldi_op44_11_1.rg ) + +INSTALL(FILES ${EXAMPLE_FILES} DESTINATION ${DATADIR}/examples) +INSTALL(FILES examples/autoload.rg DESTINATION ${DATADIR}) + +# Library +FILE(GLOB RGD_FILES library/*.rgd) +INSTALL(FILES ${RGD_FILES} DESTINATION ${DATADIR}/library) + +# KDE LIRC Profile +INSTALL(FILES profile/rosegarden.profile.xml DESTINATION ${KDE3DATADIR}/profiles) diff --git a/data/chords/chords.xml b/data/chords/chords.xml new file mode 100644 index 0000000..06dbe81 --- /dev/null +++ b/data/chords/chords.xml @@ -0,0 +1,1733 @@ + + + + + + + x 3 2 0 1 0 + x 3 5 5 5 0 + x 3 5 5 5 3 + 8 10 10 9 8 8 + + + 3 3 2 0 1 0 + 3 3 5 5 5 0 + 3 3 5 5 5 3 + + + 0 3 2 0 1 0 + 0 3 5 5 5 0 + 0 3 5 5 5 3 + + + x 3 1 0 1 x + x 3 5 5 4 3 + 8 10 10 8 8 8 + + + 3 3 1 0 1 x + 3 3 5 5 4 3 + + + 0 3 1 0 1 x + 0 3 5 5 4 3 + + + x 3 2 3 1 0 + x 3 5 3 5 3 + 8 10 8 9 11 8 + 8 10 10 9 11 8 + + + 3 3 2 3 1 0 + 3 3 5 3 5 3 + + + 0 3 2 3 1 0 + 0 3 5 3 5 3 + + + x 3 1 3 1 x + 3 3 1 3 1 x + x 3 5 3 4 3 + 3 3 5 3 4 6 + 8 10 8 8 11 8 + 8 10 10 8 11 8 + 8 x 8 8 8 8 + + + 3 3 1 3 1 x + 3 3 5 3 4 3 + 3 3 5 3 4 6 + + + 0 3 1 3 1 x + 0 3 5 3 4 3 + 0 3 5 3 4 6 + + + x 3 2 0 0 0 + x 3 5 4 5 3 + x x 10 9 8 7 + 8 x 9 9 8 x + + + 3 3 2 0 0 0 + 3 1 5 4 5 1 + + + 0 3 2 0 0 0 + 0 3 5 4 5 1 + + + 8 x 8 8 7 x + + + x 3 3 0 1 x + 3 3 3 0 1 1 + 0 3 5 5 6 1 + 3 3 5 5 6 3 + 8 8 10 10 8 8 + + + x 3 3 3 1 x + 3 3 3 3 1 x + x 3 5 3 6 1 + 3 3 5 3 6 1 + 8 10 8 10 8 8 + + + 0 3 2 2 1 0 + 3 3 2 2 1 0 + x 3 5 5 5 5 + 3 3 5 5 5 5 + 8 x 10 9 10 8 + + + x 3 1 2 1 x + 3 3 1 2 1 x + x 3 x 5 4 5 + 3 3 x 5 4 5 + x 3 5 5 4 5 + 3 3 5 5 4 5 + 8 x 10 8 10 8 + 8 10 10 8 10 8 + + + x 3 2 3 3 x + 3 3 2 3 3 3 + x 7 8 7 8 x + x x 8 7 8 8 + + + x 3 1 3 3 x + 3 3 1 3 3 3 + 8 6 8 7 x x + 8 10 8 8 8 10 + + + x 3 2 4 3 x + 8 7 9 7 x x + x x 10 7 8 7 + + + 0 3 2 2 3 3 + 3 3 2 2 3 3 + 8 7 7 7 8 8 + x x 10 9 10 10 + + + x 3 2 3 4 x + 8 7 8 8 8 x + 8 10 8 9 8 11 + + + x 3 2 3 2 x + 8 7 8 6 x x + 8 x 8 9 8 9 + + + x 3 2 1 1 x + 4 3 2 1 x x + x x 6 5 5 4 + + + x 1 2 1 1 x + x 3 6 3 5 4 + 8 x 8 9 9 8 + + + 2 3 1 2 x x + x 3 4 2 4 x + x x 1 2 1 2 + + + x 3 4 5 5 x + x x 10 9 7 8 + 8 9 10 9 x x + + + x 3 4 3 5 x + x x 8 9 7 8 + 8 9 8 9 x x + + + 2 3 2 3 3 2 + 8 7 8 7 7 8 + x x 10 11 11 10 + + + 0 3 3 3 3 3 + 3 3 3 3 3 3 + 8 x 8 7 6 6 + x 0 10 10 11 10 + x 10 10 10 11 10 + + + x 3 2 3 3 5 + 3 3 2 3 3 5 + 8 x 8 7 5 5 + 8 x 8 9 10 10 + + + + + x 0 2 2 2 0 + 5 7 7 6 5 5 + 12 12 11 9 10 9 + x 12 11 9 10 9 + + + x 0 2 0 2 0 + 5 7 5 6 8 5 + 5 7 7 6 8 5 + x 12 11 12 10 0 + 12 12 11 12 10 0 + 5 x 5 6 5 x + + + x 0 2 2 1 0 + 5 7 7 5 5 5 + x 0 7 9 10 8 + + + x 0 2 0 1 3 + x 0 2 0 1 0 + 5 7 7 5 8 5 + 5 7 5 5 8 5 + x 0 7 9 8 8 + 5 x 5 5 5 x + + + x 0 2 1 2 0 + x 0 7 6 5 4 + x 12 11 9 9 9 + 12 12 11 9 9 9 + 5 x 6 6 5 x + + + x 0 2 2 3 0 + x 0 7 7 5 5 + x 0 7 9 10 10 + + + x 0 2 0 3 0 + x 0 2 0 3 3 + 5 7 5 7 5 5 + x 0 7 7 8 10 + + + x 0 2 2 2 2 + 5 x 7 6 7 5 + x 0 11 11 10 0 + + + x 0 2 2 1 2 + 5 7 7 5 7 5 + x 0 10 11 10 0 + + + x 0 2 4 2 3 + x 0 5 4 5 5 + x 0 5 6 5 7 + + + x 0 2 4 1 3 + x 0 5 5 5 7 + x 12 10 12 12 0 + + + x 0 2 1 0 0 + 5 4 6 4 5 x + x 12 11 13 12 0 + + + x 0 4 2 0 0 + x 0 4 4 5 5 + x 0 7 6 7 7 + + + x 0 2 5 2 3 + x 0 5 6 5 8 + x 12 11 12 13 0 + + + 5 4 5 3 x x + 5 x 5 6 5 6 + x 0 11 12 11 0 + + + x 4 3 2 2 x + 5 4 3 2 x x + x x 3 2 2 1 + + + x 0 3 0 2 1 + 5 x 5 6 6 5 + x 10 11 10 10 x + + + 2 3 1 2 x x + x 3 4 2 4 x + x x 1 2 1 2 + + + x 0 1 2 2 x + x 0 7 6 4 5 + x 0 7 8 10 9 + + + x 0 1 0 2 x + x 0 5 6 4 5 + x 0 7 8 8 9 + + + x 0 1 0 0 x + 5 4 5 4 4 5 + x 0 7 8 8 7 + + + x 0 0 0 0 0 + x 0 5 4 3 3 + x 0 7 7 8 7 + + + x 0 5 4 2 2 + 5 x 5 6 7 7 + x 0 11 12 12 14 + + + + + x 1 3 3 3 x + 1 1 3 3 3 1 + 6 8 8 7 6 6 + x 13 12 10 11 10 + 13 13 12 10 11 10 + + + x 1 3 1 3 1 + 1 1 3 1 3 1 + 6 8 8 7 9 6 + 6 8 6 7 9 6 + x x 8 10 9 10 + 6 x 6 7 6 x + + + 1 1 3 3 2 1 + x 1 3 3 2 1 + 6 8 8 6 6 6 + x x 8 10 11 9 + + + 1 1 3 1 2 4 + x 1 3 1 2 1 + 6 8 8 6 9 6 + 6 8 6 6 9 6 + x x 8 10 9 9 + 6 x 6 6 6 x + + + 1 1 3 2 3 1 + x 1 3 2 3 1 + 6 8 7 7 6 x + 13 13 12 10 10 10 + x 13 12 10 10 10 + 6 x 7 7 6 x + + + 1 1 3 3 4 1 + x 1 3 3 4 1 + x x 3 3 4 6 + 6 6 8 8 6 6 + 6 6 8 8 6 6 + + + 1 1 3 1 4 1 + x 1 3 1 4 1 + 6 8 6 8 6 6 + x x 8 10 9 11 + + + 1 1 3 3 3 3 + x 1 3 3 3 3 + 6 x 8 7 8 6 + x x 8 10 8 10 + + + 1 1 3 0 2 3 + x 1 3 0 2 3 + 6 8 8 6 8 6 + 6 x 8 6 8 6 + x x 8 10 8 9 + + + 1 1 0 1 1 1 + x 1 0 1 1 x + x 5 6 5 6 x + 6 x 6 7 6 8 + + + 6 4 6 5 x x + 6 8 6 6 6 8 + 13 13 11 13 13 13 + x 13 11 13 13 x + + + 1 1 0 2 1 1 + x 1 0 2 1 1 + 6 5 7 5 x x + x x 8 5 6 5 + + + 1 1 0 0 1 1 + x 1 0 0 1 1 + 6 5 5 5 6 6 + x x 8 7 8 8 + + + 1 1 0 1 2 1 + x 1 0 1 2 1 + 6 5 6 6 6 x + 6 8 6 7 6 9 + + + 1 1 0 1 0 1 + x 1 0 1 0 1 + 6 5 6 4 x x + 6 x 6 7 6 7 + + + x 5 4 3 3 x + 6 5 4 3 x x + x x 4 3 3 2 + + + x 1 4 1 3 2 + 6 x 6 7 7 6 + x 11 12 11 11 x + + + 3 4 2 3 x x + x 1 2 0 2 x + x x 2 3 2 3 + + + x 1 2 3 3 x + x x 8 7 5 6 + 6 7 8 7 x x + + + x 1 2 1 3 x + x x 6 7 5 6 + x x 8 9 9 10 + + + 0 1 0 1 1 0 + 6 5 6 5 5 4 + x x 8 9 9 8 + + + 1 1 1 1 1 1 + x 1 1 1 1 1 + 6 x 6 5 1 1 + x 8 8 8 9 8 + x x 8 8 9 8 + + + 1 1 0 1 1 3 + x 1 0 1 1 3 + 6 x 6 5 3 3 + 6 x 6 7 8 8 + + + + + 2 2 4 4 4 2 + x 2 4 4 4 x + 7 9 9 8 7 7 + x x 9 11 12 11 + + + 2 2 1 2 0 2 + x 2 1 2 0 2 + 2 2 4 2 4 2 + x 2 4 2 4 2 + 7 9 9 8 10 7 + 7 9 7 8 10 7 + 7 x 7 8 7 x + + + 2 2 4 4 3 2 + x 2 4 4 3 2 + 7 9 9 7 7 7 + x x 9 11 12 10 + + + 2 2 0 2 0 2 + x 2 0 2 0 2 + 2 2 4 2 3 5 + x 2 4 2 3 2 + 7 9 9 7 10 7 + 7 9 7 7 10 7 + 7 x 7 7 7 x + + + 2 2 4 3 4 2 + x 2 4 3 4 2 + 7 9 8 8 7 x + x x 9 8 7 6 + 7 x 8 8 7 x + + + 2 2 4 4 5 2 + x 2 4 4 5 2 + x x 4 4 5 7 + 7 7 9 9 7 7 + + + 2 2 2 2 0 0 + x 2 2 2 0 0 + 2 2 4 2 5 2 + x 2 4 2 5 2 + 7 9 7 9 7 7 + + + 2 2 1 1 0 x + x 2 1 1 0 x + 2 2 4 4 4 4 + x 2 4 4 4 4 + 7 x 9 8 9 7 + + + 2 2 0 1 0 2 + x 2 0 1 0 2 + 2 2 4 4 3 4 + x 2 x 4 3 4 + 7 9 9 7 9 7 + 7 x 9 7 9 7 + + + 2 2 1 2 2 2 + x 2 1 2 2 x + x 6 7 6 7 x + x x 7 6 7 7 + + + 2 2 0 2 2 2 + x 2 0 2 2 x + 7 5 7 6 x x + 7 9 7 7 7 9 + + + x 2 1 3 2 x + 7 6 8 6 x x + x x 9 6 7 6 + + + 2 2 1 1 2 2 + x 2 1 1 2 2 + 7 6 6 6 7 7 + x x 9 8 9 9 + + + x 2 1 2 3 x + 7 6 7 7 7 x + 7 9 7 8 7 10 + + + x 2 1 2 1 x + 7 6 7 5 x x + 7 x 7 8 7 8 + + + x 2 1 0 0 x + 3 2 1 0 x x + x x 5 4 4 3 + + + x 0 1 0 0 3 + x 2 5 2 4 3 + 7 x 7 8 8 7 + + + 1 2 0 1 x x + x 2 3 1 3 x + x x 0 1 0 1 + + + x 2 3 4 4 x + x x 9 8 6 7 + x x 9 10 12 11 + + + x 2 3 2 4 x + x x 7 8 6 7 + x x 9 10 10 11 + + + 1 2 1 2 2 1 + 7 6 7 6 6 7 + x x 9 10 10 9 + + + 2 2 2 2 2 2 + x 2 2 2 2 2 + 7 x 7 6 5 5 + x 9 9 9 10 9 + x x 9 9 10 9 + + + 2 2 1 2 2 4 + x 2 1 2 2 4 + 7 X 7 6 4 4 + 7 X 7 8 9 9 + + + + + 4 4 3 1 2 1 + x 4 3 1 2 1 + 4 4 6 6 6 4 + x 4 6 6 6 x + 9 11 11 10 9 9 + + + 4 4 3 4 2 x + x 4 3 4 2 x + 4 4 6 4 6 4 + x 4 6 4 6 4 + 9 11 11 10 12 9 + 9 11 9 10 12 9 + 9 x 9 10 9 x + + + 4 4 6 6 5 4 + x 4 6 6 5 4 + 9 11 11 9 9 9 + x 11 11 13 14 12 + x x 11 13 14 12 + + + 4 4 2 4 2 x + x 4 2 4 2 x + 4 4 6 4 5 7 + x 4 6 4 5 4 + 9 11 11 9 12 9 + 9 11 9 9 12 9 + 9 x 9 9 9 x + + + 4 4 3 1 1 1 + x 4 3 1 1 1 + 4 4 6 5 6 4 + x 4 6 5 6 4 + x x 11 10 9 8 + 9 x 10 10 9 x + + + 4 4 6 6 7 4 + x 4 6 6 7 4 + x x 6 6 7 9 + 9 9 11 11 9 9 + + + 4 4 4 4 2 x + x 4 4 4 2 x + 4 4 6 4 7 4 + x 4 6 4 7 4 + 9 11 9 11 9 9 + + + x 4 3 3 2 x + 4 4 6 6 6 6 + x 4 6 6 6 6 + 9 x 11 10 11 9 + + + 4 4 2 3 2 x + x 4 2 3 2 x + 4 4 6 6 5 6 + x 4 x 6 5 6 + 9 11 11 9 11 9 + 9 x 11 9 11 9 + + + 4 4 3 4 4 4 + x 4 3 4 4 x + x 8 9 8 9 x + x x 9 8 9 9 + + + 4 4 2 4 4 4 + x 4 2 4 4 x + 9 7 9 8 x x + 9 11 9 9 9 11 + + + x 4 3 5 4 x + 9 8 10 8 x x + x x 11 8 9 8 + + + 4 4 3 3 4 4 + x 4 3 3 4 4 + 9 8 8 8 9 9 + x x 11 10 11 11 + + + x 4 3 4 5 x + 9 8 9 9 9 x + 9 11 9 10 9 12 + + + x 4 3 4 3 x + 9 8 9 7 x x + 9 x 9 10 9 10 + + + x 4 3 2 2 x + 5 4 3 2 x x + x x 3 2 2 1 + + + x 2 3 2 2 x + x 4 7 4 6 5 + 9 x 9 10 10 9 + + + 3 4 2 3 x x + x 1 2 0 2 x + x x 2 3 2 3 + + + x 4 5 6 6 x + x x 11 10 8 9 + 9 10 11 10 x x + + + x 4 5 4 6 x + x x 9 10 8 9 + 9 10 9 10 x x + + + 3 4 3 4 4 3 + 9 8 9 8 8 9 + x x 11 12 12 11 + + + 4 4 4 4 4 4 + x 4 4 4 4 4 + 9 x 9 8 7 7 + x 11 11 11 12 11 + x x 11 11 12 11 + + + 4 4 3 4 4 6 + x 4 3 4 4 6 + 9 x 9 8 7 7 + 9 x 9 10 11 11 + + + + + x 0 0 2 3 2 + 5 5 7 7 7 5 + x 5 7 7 7 x + 10 12 12 11 10 10 + + + x 0 0 2 1 2 + 5 5 7 5 7 5 + x 5 7 5 7 5 + 10 12 12 11 13 10 + 10 12 10 11 13 10 + 10 x 10 11 10 x + + + x 0 0 2 3 1 + 5 5 7 7 6 5 + x 5 7 7 6 5 + 10 12 12 10 10 10 + + + x 0 0 2 1 1 + 5 5 7 5 6 8 + x 5 7 5 6 5 + 10 12 12 10 13 10 + 10 12 10 10 13 10 + 10 x 10 10 10 x + + + x 0 0 2 2 2 + 5 5 7 6 7 5 + x 5 7 6 7 5 + x x 12 11 10 9 + 10 x 11 11 10 x + + + x 0 0 2 3 3 + 5 5 7 7 8 5 + x 5 7 7 8 5 + 10 10 12 12 10 10 + + + x 0 0 2 1 3 + 5 5 7 5 8 5 + x 5 7 5 8 5 + 10 12 10 12 10 10 + + + x 0 0 2 0 2 + 5 5 7 7 7 7 + x 5 7 7 7 7 + 10 x 12 11 12 10 + + + x 0 0 2 0 1 + 5 5 7 7 6 7 + x 5 x 7 6 7 + 10 12 12 10 12 10 + 10 x 12 10 12 10 + + + x 0 4 2 1 0 + x 0 0 2 1 0 + 5 5 4 5 5 5 + x 5 4 5 5 x + x 9 10 9 10 0 + + + x 0 3 2 1 0 + 5 5 3 5 5 5 + x 5 3 5 5 x + 10 12 10 10 10 12 + + + x 0 4 2 2 0 + x 5 4 6 5 x + x 0 12 9 10 9 + + + 5 5 4 4 5 5 + x 5 4 4 5 5 + 10 9 9 9 10 10 + x x 12 11 12 12 + + + x 5 4 5 6 x + 10 9 10 10 10 x + 10 12 10 11 10 13 + + + x 5 4 5 4 x + 10 9 10 8 x x + 10 x 10 11 10 11 + + + x 5 4 3 3 x + 6 5 4 3 x x + x x 4 3 3 2 + + + x 3 4 3 3 x + x 5 8 5 7 6 + 10 x 10 11 11 10 + + + 10 11 9 10 x x + x 2 3 1 3 x + x x 0 1 0 1 + + + x 5 6 7 7 x + x x 12 11 9 10 + 10 11 12 11 x x + + + x 5 6 5 7 x + x x 10 11 9 10 + 10 11 10 11 x x + + + x x 0 1 1 0 + 4 5 4 5 5 4 + 10 9 10 9 9 10 + + + x 0 0 0 1 0 + 5 5 5 5 5 5 + x 5 5 5 5 5 + 10 x 10 9 8 8 + + + 5 5 4 5 5 7 + x 5 4 5 5 7 + 10 x 10 9 7 7 + 10 x 10 11 12 12 + + + + + 6 6 5 3 4 3 + x 6 5 3 4 3 + 6 6 8 8 8 6 + x 6 8 8 8 x + 11 13 13 12 11 11 + + + 6 6 5 6 4 x + x 6 5 6 4 x + 6 6 8 6 8 6 + x 6 8 6 8 6 + 11 13 13 12 14 11 + 11 13 11 12 14 11 + 11 x 11 12 11 x + + + x x 4 3 4 2 + 6 6 8 8 7 6 + x 6 8 8 7 6 + 11 13 13 11 11 11 + + + 6 6 4 6 4 x + x 6 4 6 4 x + 6 6 8 6 7 9 + x 6 8 6 7 6 + 11 13 13 11 14 11 + 11 13 11 11 14 11 + 11 x 11 11 11 x + + + 6 6 5 3 3 3 + x 6 5 3 3 3 + 6 6 8 7 8 6 + x 6 8 7 8 6 + x x 13 12 11 10 + 11 x 11 12 11 x + + + x 6 6 3 4 x + 6 6 8 8 9 6 + x 6 8 8 9 6 + 11 11 13 13 11 11 + + + 6 6 6 6 4 x + x 6 6 6 4 x + 6 6 8 6 9 6 + x 6 8 6 9 6 + 11 13 11 13 11 11 + + + x 6 5 5 4 x + 6 6 8 8 8 8 + x 6 8 8 8 8 + 11 x 13 12 13 11 + + + 6 6 4 5 4 x + x 6 4 5 4 x + 6 6 8 8 7 8 + x 6 x 8 7 8 + 11 13 13 11 13 11 + 11 x 13 11 13 11 + + + 6 6 5 6 6 6 + x 6 5 6 6 x + x 10 11 10 11 x + x x 11 10 11 11 + + + 6 6 4 6 6 6 + x 6 4 6 6 x + 11 9 11 10 x x + 11 13 11 11 11 13 + + + x x 1 0 3 1 + x 6 5 7 6 x + x x 13 10 11 10 + + + x x 1 0 1 1 + 6 6 5 5 6 6 + x 6 5 5 6 6 + 11 10 10 10 11 11 + + + x x 1 0 2 2 + x 6 5 6 7 x + 11 13 11 12 11 14 + + + x x 1 0 2 0 + x 6 5 6 5 x + 11 x 11 12 11 12 + + + x 2 1 0 0 x + 3 2 1 0 x x + x x 3 2 2 1 + + + x 4 5 4 4 x + x 6 9 6 8 7 + 11 x 11 12 12 11 + + + 2 3 1 2 x x + x 3 4 2 4 x + x x 2 3 2 3 + + + x x 1 2 4 3 + x 6 7 8 8 x + x x 13 12 10 11 + + + x x 1 2 2 3 + x 6 7 6 8 x + x x 11 12 10 11 + + + x x 1 2 2 1 + 5 6 5 6 6 5 + 11 10 11 10 10 11 + + + x 1 1 1 2 1 + x x 1 1 2 1 + 6 6 6 6 6 6 + x 6 6 6 6 6 + 11 x 11 10 9 9 + + + 6 6 5 6 6 8 + x 6 5 6 6 8 + 11 x 11 10 8 8 + 11 x 11 12 13 13 + + + + + 2 2 1 0 0 0 + 0 7 6 4 5 4 + 0 7 9 9 9 7 + 0 7 9 9 9 0 + + + 0 2 2 1 3 0 + 0 2 x 1 3 0 + 0 7 6 7 5 0 + 0 7 9 7 9 7 + 12 x 12 13 12 0 + + + 0 2 2 0 0 0 + 0 x 5 4 5 3 + 0 7 9 9 8 7 + + + 0 2 2 0 3 0 + 0 2 0 0 3 0 + 0 x 5 4 3 0 + 0 7 9 7 8 10 + 0 7 9 7 8 7 + 12 x 12 12 12 x + + + 0 2 1 1 0 0 + 0 7 6 4 4 4 + 0 7 9 8 9 7 + 12 x 13 13 12 x + + + 0 2 2 2 0 0 + 0 7 7 4 5 0 + 0 x 9 9 10 12 + + + 0 2 0 2 0 0 + 0 x 2 4 3 5 + 0 7 9 7 10 7 + + + 0 2 2 1 2 0 + 0 7 6 6 5 0 + 0 7 9 9 9 9 + + + 0 2 2 0 2 0 + 0 7 5 6 5 x + 0 7 9 9 8 9 + 0 7 x 9 8 9 + + + 0 2 0 1 3 2 + 0 7 6 7 7 0 + 0 11 12 11 12 0 + + + 0 2 2 0 3 2 + 0 7 5 7 7 0 + 0 10 12 11 12 0 + + + 0 2 1 1 0 2 + 0 7 4 4 4 4 + 0 7 6 8 7 0 + + + 0 2 2 1 2 2 + 0 x 2 1 2 2 + 0 7 6 6 7 7 + 0 11 11 11 12 12 + + + 0 2 2 1 3 3 + 0 x 2 1 3 3 + 0 7 6 7 8 0 + 0 11 12 12 12 x + + + 0 x 0 1 0 1 + 0 7 6 7 6 x + 0 11 12 10 0 0 + + + 0 3 2 1 1 x + 4 3 2 1 x x + 0 x 6 5 5 4 + + + 0 x 0 1 1 0 + 0 5 6 5 5 x + 0 7 10 7 9 8 + + + 3 4 2 3 x x + x 1 2 0 2 x + 0 x 2 3 2 3 + + + 0 1 2 1 x 0 + 2 x 2 3 5 4 + 0 7 8 9 9 0 + + + 0 1 0 1 x 0 + 0 7 8 7 9 x + 11 x 12 13 11 12 + + + 0 x 2 3 3 2 + 6 7 6 7 7 6 + 0 11 12 11 11 12 + + + 0 2 2 2 3 2 + 0 7 7 7 7 7 + 0 x 12 11 10 0 + + + 0 x 0 1 2 2 + 0 x 6 7 7 9 + 0 x 12 11 9 9 + + + + + 1 3 3 2 1 1 + 8 8 7 5 6 5 + x 8 7 5 6 5 + 8 8 10 10 10 8 + x 8 10 10 10 x + + + 1 3 3 2 4 1 + 1 3 1 2 4 1 + 8 8 7 8 6 x + x 8 7 8 6 x + 8 8 10 8 10 8 + x 8 10 8 10 8 + 1 x 1 2 1 x + + + 1 3 3 1 1 1 + x 3 3 5 6 4 + x x 3 5 6 4 + 8 8 10 10 9 8 + x 8 10 10 9 8 + + + 1 3 3 1 4 1 + 1 3 1 1 4 1 + x 3 3 5 4 4 + x x 3 5 4 4 + 8 8 10 8 9 11 + x 8 10 8 9 8 + 1 x 1 1 1 x + + + 1 3 3 2 1 0 + 1 x 3 2 1 0 + 0 8 7 5 5 5 + 0 8 10 9 10 8 + 1 x 2 2 1 x + + + 1 1 3 3 1 1 + x 8 8 5 6 x + 8 8 10 10 11 8 + x 8 10 10 11 8 + + + 1 3 1 3 1 1 + 8 8 8 8 6 x + x 8 8 8 6 x + 8 x 10 8 11 8 + x x 10 8 11 8 + + + 1 x 3 2 3 1 + x 8 7 7 6 x + 8 8 10 10 10 10 + x 8 10 10 10 10 + + + 1 3 3 1 3 1 + 1 x 3 1 3 1 + 8 8 6 7 6 x + x 8 6 7 6 x + 8 8 10 10 9 10 + x 8 x 10 9 10 + + + 1 0 1 0 1 1 + x x 3 5 4 3 + 8 8 7 8 8 8 + x 8 7 8 8 x + + + 1 3 1 1 1 3 + x x 6 5 4 3 + x x 3 5 4 3 + 8 8 6 8 8 8 + x 8 6 8 8 x + + + 1 0 3 0 1 0 + x 8 5 5 5 5 + x 8 7 9 8 x + + + 1 0 0 0 1 1 + x x 3 2 3 3 + 8 8 7 7 8 8 + x 8 7 7 8 8 + + + 1 3 1 2 1 4 + x x 3 2 4 4 + x 8 7 8 9 x + + + 1 x 1 2 1 2 + x x 3 2 4 2 + x 8 7 8 7 x + + + x 4 3 2 2 x + 5 4 3 2 x x + x x 3 2 2 1 + + + 1 x 1 2 2 1 + x 6 7 6 6 x + x 8 11 8 10 9 + + + 1 2 0 1 x x + x 2 3 1 3 x + x x 0 1 0 1 + + + 1 2 3 2 0 x + x x 3 4 6 5 + x 8 9 10 10 x + + + 1 2 1 2 0 x + x x 3 4 4 5 + x 8 9 8 10 x + + + 1 0 1 0 0 1 + x x 3 4 4 3 + 7 8 7 8 8 7 + + + x 3 3 3 4 3 + x x 3 3 4 3 + 8 8 8 8 8 8 + x 8 8 8 8 8 + 13 11 13 12 11 11 + + + 1 x 1 2 3 3 + 8 8 7 8 8 10 + x 8 7 8 8 10 + 13 x 13 12 10 10 + + + + + 2 4 4 3 2 2 + 9 9 8 6 7 6 + x 9 8 6 7 6 + 9 9 11 11 11 9 + x 9 11 11 11 x + + + 2 4 4 3 5 2 + 2 4 2 3 5 2 + 9 9 8 9 7 x + x 9 8 9 7 x + 9 9 11 9 11 9 + x 9 11 9 11 9 + 2 x 2 3 2 x + + + 2 4 4 2 2 2 + x 4 4 6 7 5 + x x 4 6 7 5 + 9 9 11 11 10 9 + x 9 11 11 10 9 + + + 2 4 4 2 5 1 + 2 4 2 2 5 1 + x 4 4 6 5 5 + x x 4 6 5 5 + 9 9 11 9 10 12 + x 9 11 9 10 9 + 2 x 2 2 2 x + + + 2 4 3 3 2 x + 9 9 8 6 6 6 + x 9 8 6 6 6 + 9 9 11 10 11 9 + x 9 11 10 11 9 + 2 x 3 3 2 x + + + 2 2 4 4 2 2 + x 9 9 6 7 x + 9 9 11 11 12 9 + x 9 11 11 12 9 + + + 2 4 2 4 2 2 + 9 9 9 9 7 x + x 9 9 9 7 x + 9 9 11 9 12 9 + x 9 11 9 12 9 + + + 2 x 4 3 4 2 + x 9 8 8 7 x + 9 9 11 11 11 11 + x 9 11 11 11 11 + + + 2 4 4 2 4 2 + 2 x 4 2 4 2 + 9 9 7 8 7 x + x 9 7 8 7 x + 9 9 11 11 10 11 + x 9 x 11 10 11 + + + x x 2 1 2 2 + x x 4 6 5 4 + 9 9 8 9 9 9 + x 9 8 9 9 x + + + 2 4 2 2 2 4 + x x 4 2 5 4 + 9 9 7 9 9 9 + x 9 7 9 9 x + + + x x 4 1 2 1 + x 9 6 6 6 6 + x 9 8 10 9 x + + + 2 1 1 1 2 2 + x x 4 3 4 4 + 9 9 8 8 9 9 + x 9 8 8 9 9 + + + 2 1 2 2 2 x + 2 4 2 3 2 5 + x 9 8 9 10 x + + + 2 x 2 3 2 3 + x x 4 3 5 3 + x 9 8 9 8 x + + + x 5 4 3 3 x + 6 5 4 3 x x + x x 4 3 3 2 + + + 2 x 2 3 3 2 + x 7 8 7 7 x + x 9 12 9 11 10 + + + 2 3 1 2 x x + x 3 4 2 4 x + x x 1 2 1 2 + + + 2 3 4 3 x x + x x 4 5 7 6 + x 9 10 11 11 x + + + 2 3 2 3 x x + x x 4 5 5 6 + x 9 10 9 11 x + + + 2 1 2 1 1 2 + x x 4 5 5 4 + 8 9 8 9 9 8 + + + 2 x 2 1 0 0 + x 4 4 4 5 4 + x x 4 4 5 4 + 9 9 9 9 9 9 + x 9 9 9 9 9 + + + 2 x 2 3 4 4 + 9 9 8 9 9 11 + x 9 8 9 9 11 + 9 9 11 9 9 11 + x 9 11 9 9 11 + + + + + 3 2 0 0 0 2 + 3 5 5 4 3 3 + 10 10 9 7 8 7 + x 10 9 7 8 7 + + + 3 2 0 0 0 1 + 3 5 5 4 6 3 + 3 5 3 4 6 3 + 10 10 9 10 8 x + x 10 9 10 8 x + 3 x 3 4 3 x + + + 3 5 5 3 3 3 + x 5 5 7 8 6 + x x 5 7 8 6 + 10 10 12 12 11 10 + x 10 12 12 11 10 + + + 3 5 5 3 6 3 + 3 5 3 3 6 3 + x 5 5 7 6 6 + x x 5 7 6 6 + 10 10 12 10 11 13 + x 10 12 10 11 10 + 3 x 3 3 3 x + + + x x 5 4 3 2 + 3 5 4 4 3 x + 10 10 9 7 7 7 + x 10 9 7 7 7 + 3 x 4 4 3 x + + + 3 x 0 0 1 3 + 3 3 5 5 3 3 + 10 10 12 12 13 10 + x 10 12 12 13 10 + + + 3 x 3 0 1 x + 3 5 3 5 3 3 + 10 10 10 10 8 x + x 10 10 10 8 x + + + 3 2 0 0 0 0 + 3 x 5 4 5 3 + x 10 9 9 8 x + + + 3 5 5 3 5 3 + 3 x 5 3 5 3 + 10 10 8 9 8 x + x 10 8 9 8 x + 10 10 12 12 11 12 + x 10 x 12 11 12 + + + x 2 3 2 3 x + x x 3 2 3 3 + 10 10 9 10 10 10 + x 10 9 10 10 x + + + 3 1 3 2 x x + 3 5 3 3 3 5 + 10 10 8 10 10 10 + x 10 8 10 10 x + + + 3 2 4 2 3 x + x x 5 2 3 2 + x 10 9 11 10 x + + + 3 2 2 2 3 3 + x x 5 4 5 5 + 10 10 9 9 10 10 + x 10 9 9 10 10 + + + 3 2 3 3 3 x + 3 5 3 4 3 6 + x 10 9 10 11 x + + + 3 2 3 1 0 x + 3 x 3 4 3 4 + x 10 9 10 9 x + + + x 2 1 0 0 x + 3 2 1 0 x x + x x 5 4 4 3 + + + 3 x 3 4 4 3 + x 8 9 8 8 x + x 10 13 10 12 11 + + + 3 4 2 3 x x + x 1 2 0 2 x + x x 2 3 2 3 + + + x x 5 4 2 3 + x x 5 6 8 7 + x 10 11 12 12 x + + + 3 4 3 4 0 x + x x 5 6 6 7 + x 10 11 10 12 x + + + 3 2 3 2 2 3 + x x 5 6 6 5 + 9 10 9 10 10 9 + + + 3 x 3 2 1 1 + x 5 5 5 6 5 + x x 5 5 6 5 + 10 10 10 10 10 10 + x 10 10 10 10 10 + + + 3 x 3 2 0 0 + 3 x 3 4 5 5 + 10 10 9 10 10 12 + x 10 9 10 10 12 + + + + + x x 1 1 1 4 + 4 6 6 5 4 4 + 11 11 10 8 9 8 + x 11 10 8 9 8 + + + x x 1 1 1 2 + 4 6 6 5 7 4 + 4 6 4 5 7 4 + 11 11 13 11 13 11 + x 11 13 11 13 11 + 4 x 4 5 4 x + + + 4 6 6 4 4 4 + x 6 6 8 9 7 + x x 6 8 9 7 + 11 11 13 13 12 11 + x 11 13 13 12 11 + + + 4 6 6 4 7 4 + 4 6 4 4 7 4 + x 6 6 8 7 7 + x x 6 8 7 7 + 11 11 13 11 12 14 + x 11 13 11 12 11 + 4 x 4 4 4 x + + + x x 6 5 4 3 + 4 6 5 5 4 x + 11 11 10 8 8 8 + x 11 10 8 8 8 + 4 x 4 5 4 x + + + x x 1 1 2 4 + 4 4 6 6 4 4 + x x 6 8 9 9 + + + x x 1 1 2 2 + 4 6 4 6 4 4 + x x 6 8 7 9 + + + x x 1 1 1 1 + 4 x 6 5 6 4 + x 11 10 10 9 x + + + x x 1 1 0 1 + 4 6 6 4 6 4 + 4 x 6 4 6 4 + 11 11 9 10 9 x + x 11 9 10 9 x + + + x 3 4 3 4 x + x x 4 3 4 4 + 11 11 10 11 11 11 + x 11 10 11 11 x + + + 4 6 4 4 4 6 + x x 6 4 7 6 + 11 11 9 11 11 11 + x 11 9 11 11 x + + + 4 3 5 3 4 x + x x 6 3 4 3 + x 11 10 12 11 x + + + 4 3 3 3 4 4 + x x 6 5 6 6 + 11 11 10 10 11 11 + x 11 10 10 11 11 + + + 4 3 4 4 4 x + 4 6 4 5 4 7 + x 11 10 11 12 x + + + 4 3 4 2 x x + 4 x 4 5 4 5 + x 11 10 11 10 x + + + x 3 2 1 1 x + 4 3 2 1 x x + x x 6 5 5 4 + + + 4 x 4 5 5 4 + x 9 10 9 9 x + x 11 14 11 13 12 + + + 1 2 0 1 x x + x 2 3 1 3 x + x x 0 1 0 1 + + + x x 6 5 3 4 + 4 5 6 5 x x + x 11 12 13 13 x + + + x x 4 5 3 4 + 4 5 4 5 x x + x x 6 7 7 8 + + + 4 3 4 3 3 4 + x x 6 7 7 6 + 10 11 10 11 11 10 + + + 4 x 4 3 2 2 + x 6 6 6 7 6 + x x 6 6 7 6 + 11 11 11 11 11 11 + x 11 11 11 11 11 + + + 4 x 4 3 1 1 + 4 x 4 5 6 6 + 11 11 10 11 11 13 + x 11 10 11 11 13 + + + + + + diff --git a/data/desktop/rosegarden.desktop b/data/desktop/rosegarden.desktop new file mode 100644 index 0000000..a8141a9 --- /dev/null +++ b/data/desktop/rosegarden.desktop @@ -0,0 +1,13 @@ +[Desktop Entry] +Encoding=UTF-8 +Type=Application +Categories=AudioVideo;Audio;Midi;Sequencer;X-SuSE-Sequencer;X-Red-Hat-Base; +Exec=rosegarden +MimeType=audio/x-rosegarden;audio/x-rosegarden-device;audio/midi +X-KDE-NativeMimeType=audio/x-rosegarden +Icon=rosegarden.png +DocPath=rosegarden/index.html +Comment=MIDI and Audio Sequencer and Editor +Terminal=false +Name=Rosegarden +Name[de]=Rosegarden diff --git a/data/desktop/x-rosegarden-device.desktop b/data/desktop/x-rosegarden-device.desktop new file mode 100644 index 0000000..4814b0d --- /dev/null +++ b/data/desktop/x-rosegarden-device.desktop @@ -0,0 +1,8 @@ +[Desktop Entry] +Comment=Rosegarden device file +Comment[fr]=Fichier de description de peripherique Rosegarden +Hidden=false +Icon=midi +MimeType=audio/x-rosegarden-device +Patterns=*.rgd;*.RGD +Type=MimeType diff --git a/data/desktop/x-rosegarden.desktop b/data/desktop/x-rosegarden.desktop new file mode 100644 index 0000000..b6b7669 --- /dev/null +++ b/data/desktop/x-rosegarden.desktop @@ -0,0 +1,9 @@ +[Desktop Entry] +Comment=Rosegarden file +Comment[fr]=Fichier Rosegarden +Hidden=false +Icon=x-rosegarden.png +MimeType=audio/x-rosegarden +Patterns=*.rg;*.RG +Type=MimeType +X-KDE-AutoEmbed=false diff --git a/data/desktop/x-rosegarden21.desktop b/data/desktop/x-rosegarden21.desktop new file mode 100644 index 0000000..89266b8 --- /dev/null +++ b/data/desktop/x-rosegarden21.desktop @@ -0,0 +1,8 @@ +[Desktop Entry] +Comment=Rosegarden 2.1 file +Comment[fr]=Fichier Rosegarden 2.1 +Hidden=false +Icon=midi +MimeType=audio/x-rosegarden21 +Patterns=*.rose +Type=MimeType diff --git a/data/desktop/x-soundfont.desktop b/data/desktop/x-soundfont.desktop new file mode 100644 index 0000000..03821ad --- /dev/null +++ b/data/desktop/x-soundfont.desktop @@ -0,0 +1,8 @@ +[Desktop Entry] +Comment=Soundfont +Comment[fr]=Echantillons +Hidden=false +Icon=sound +MimeType=audio/x-soundfont +Patterns=*.sf2;*.SF2 +Type=MimeType diff --git a/data/examples/Djer-Fire.rg b/data/examples/Djer-Fire.rg new file mode 100644 index 0000000..5ebe1b1 Binary files /dev/null and b/data/examples/Djer-Fire.rg differ diff --git a/data/examples/autoload.rg b/data/examples/autoload.rg new file mode 100644 index 0000000..e052172 Binary files /dev/null and b/data/examples/autoload.rg differ diff --git a/data/examples/aveverum.rg b/data/examples/aveverum.rg new file mode 100644 index 0000000..3e24175 Binary files /dev/null and b/data/examples/aveverum.rg differ diff --git a/data/examples/aylindaamiga.rg b/data/examples/aylindaamiga.rg new file mode 100644 index 0000000..911d84a Binary files /dev/null and b/data/examples/aylindaamiga.rg differ diff --git a/data/examples/bogus-surf-jam.rg b/data/examples/bogus-surf-jam.rg new file mode 100644 index 0000000..bf3c52a Binary files /dev/null and b/data/examples/bogus-surf-jam.rg differ diff --git a/data/examples/bwv-1060-trumpet-duet-excerpt.rg b/data/examples/bwv-1060-trumpet-duet-excerpt.rg new file mode 100644 index 0000000..0854609 Binary files /dev/null and b/data/examples/bwv-1060-trumpet-duet-excerpt.rg differ diff --git a/data/examples/children.rg b/data/examples/children.rg new file mode 100644 index 0000000..75e09c4 Binary files /dev/null and b/data/examples/children.rg differ diff --git a/data/examples/colourmap-fragment.xml b/data/examples/colourmap-fragment.xml new file mode 100644 index 0000000..ee5f72e --- /dev/null +++ b/data/examples/colourmap-fragment.xml @@ -0,0 +1,420 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/examples/doodle-q.rg b/data/examples/doodle-q.rg new file mode 100644 index 0000000..c976057 Binary files /dev/null and b/data/examples/doodle-q.rg differ diff --git a/data/examples/exercise_notation.rg b/data/examples/exercise_notation.rg new file mode 100644 index 0000000..57a98da Binary files /dev/null and b/data/examples/exercise_notation.rg differ diff --git a/data/examples/glazunov-for-solo-and-piano-with-cue.rg b/data/examples/glazunov-for-solo-and-piano-with-cue.rg new file mode 100644 index 0000000..ef4f272 Binary files /dev/null and b/data/examples/glazunov-for-solo-and-piano-with-cue.rg differ diff --git a/data/examples/glazunov.rg b/data/examples/glazunov.rg new file mode 100644 index 0000000..76ca41d Binary files /dev/null and b/data/examples/glazunov.rg differ diff --git a/data/examples/headers-and-unicode-lyrics.rg b/data/examples/headers-and-unicode-lyrics.rg new file mode 100644 index 0000000..bfd5268 Binary files /dev/null and b/data/examples/headers-and-unicode-lyrics.rg differ diff --git a/data/examples/himno_de_riego.rg b/data/examples/himno_de_riego.rg new file mode 100644 index 0000000..923c5e0 Binary files /dev/null and b/data/examples/himno_de_riego.rg differ diff --git a/data/examples/interpretation-example.rg b/data/examples/interpretation-example.rg new file mode 100644 index 0000000..e25bb85 Binary files /dev/null and b/data/examples/interpretation-example.rg differ diff --git a/data/examples/let-all-mortal-flesh.rg b/data/examples/let-all-mortal-flesh.rg new file mode 100644 index 0000000..4fa9119 Binary files /dev/null and b/data/examples/let-all-mortal-flesh.rg differ diff --git a/data/examples/lilypond-alternative-endings.rg b/data/examples/lilypond-alternative-endings.rg new file mode 100644 index 0000000..05efbd0 Binary files /dev/null and b/data/examples/lilypond-alternative-endings.rg differ diff --git a/data/examples/lilypond-directives.rg b/data/examples/lilypond-directives.rg new file mode 100644 index 0000000..588c444 Binary files /dev/null and b/data/examples/lilypond-directives.rg differ diff --git a/data/examples/lilypond-staff-groupings.rg b/data/examples/lilypond-staff-groupings.rg new file mode 100644 index 0000000..3bcdc2a Binary files /dev/null and b/data/examples/lilypond-staff-groupings.rg differ diff --git a/data/examples/mandolin-sonatina.rg b/data/examples/mandolin-sonatina.rg new file mode 100644 index 0000000..7683a9a Binary files /dev/null and b/data/examples/mandolin-sonatina.rg differ diff --git a/data/examples/mozart-quartet.rg b/data/examples/mozart-quartet.rg new file mode 100644 index 0000000..193cdb8 Binary files /dev/null and b/data/examples/mozart-quartet.rg differ diff --git a/data/examples/notation-for-string-orchestra-in-D-minor.rg b/data/examples/notation-for-string-orchestra-in-D-minor.rg new file mode 100644 index 0000000..c289278 Binary files /dev/null and b/data/examples/notation-for-string-orchestra-in-D-minor.rg differ diff --git a/data/examples/perfect-moment.rg b/data/examples/perfect-moment.rg new file mode 100644 index 0000000..86ce26f Binary files /dev/null and b/data/examples/perfect-moment.rg differ diff --git a/data/examples/ravel-pc-gmaj-adagio.rg b/data/examples/ravel-pc-gmaj-adagio.rg new file mode 100644 index 0000000..57063dd Binary files /dev/null and b/data/examples/ravel-pc-gmaj-adagio.rg differ diff --git a/data/examples/rg-stats.xsl b/data/examples/rg-stats.xsl new file mode 100644 index 0000000..546e2c9 --- /dev/null +++ b/data/examples/rg-stats.xsl @@ -0,0 +1,143 @@ + + + + + + + + + + + + Rosegarden File Summary + + + + + +
+ + + +
+ + + + + +
+ + + + + + + +

+ Rosegarden Composition +

+ +

+ Copyright: +

+ +

+ Tracks +

+ +
    + +
+
+ + +
  • + Track + + ( + + ) +
  • +
    + + + + + +

    + Segment (" + ") + [Track + ] + - + starts at + +

    + +

    + + + + Contains events. + +

    + +
    + + + Event + + + + + + +

    + Studio +

    + + + +
    + + +

    + Device (id = , + type = ) +

    + +
      + +
    + +
      + +
    + +
    + + + +
  • + Instrument (id = , + channel = , + type = ) +
  • + +
    + + + +
  • + Bank (name = , + msb = , + lsb = ) +
  • + +
    + +
    diff --git a/data/examples/sonataC.rose b/data/examples/sonataC.rose new file mode 100644 index 0000000..f74bb7d --- /dev/null +++ b/data/examples/sonataC.rose @@ -0,0 +1,2606 @@ +#!Rosegarden +# +# Musical Notation File +# + +RV21 + + +Staves 2 + + +Name Right Hand +Clef + Clef Name Treble +Metronome + Crotchet 135 +: Minim 0 1 5 0 +: Crotchet 0 1 7 0 +: Crotchet 0 1 9 0 +: Dotted crotchet 0 1 4 0 +Group + Beamed + : Semiquaver 0 1 5 0 + : Semiquaver 0 1 6 0 + End +: Dotted quaver 0 1 5 0 +Rest + Semiquaver rest +Rest + Crotchet rest +: Minim 0 1 10 0 +: Crotchet 0 1 9 0 +: Dotted quaver 0 1 12 0 +Rest + Semiquaver rest +: Crotchet 0 1 9 0 +Group + Beamed + : Quaver 0 1 8 0 + : Semiquaver 0 1 7 0 + : Semiquaver 0 1 8 0 + End +: Dotted quaver 0 1 7 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Group + Beamed + : Quaver 0 1 10 0 + : Semiquaver 0 1 11 0 + : Semiquaver 0 1 12 0 + End +Group + Beamed + : Semiquaver 0 1 13 0 + : Semiquaver 0 1 14 0 + : Semiquaver 0 1 15 0 + : Semiquaver 0 1 16 0 + End +Group + Beamed + : Semiquaver 0 1 17 0 + : Semiquaver 0 1 16 0 + : Semiquaver 0 1 15 0 + : Semiquaver 0 1 14 0 + End +Group + Beamed + : Semiquaver 0 1 13 0 + : Semiquaver 0 1 12 0 + : Semiquaver 0 1 11 0 + : Semiquaver 0 1 10 0 + End +Group + Beamed + : Quaver 0 1 9 0 + : Semiquaver 0 1 10 0 + : Semiquaver 0 1 11 0 + End +Group + Beamed + : Semiquaver 0 1 12 0 + : Semiquaver 0 1 13 0 + : Semiquaver 0 1 14 0 + : Semiquaver 0 1 15 0 + End +Group + Beamed + : Semiquaver 0 1 16 0 + : Semiquaver 0 1 15 0 + : Semiquaver 0 1 14 0 + : Semiquaver 0 1 13 0 + End +Group + Beamed + : Semiquaver 0 1 12 0 + : Semiquaver 0 1 11 0 + : Semiquaver 0 1 10 0 + : Semiquaver 0 1 9 0 + End +Group + Beamed + : Quaver 0 1 8 0 + : Semiquaver 0 1 9 0 + : Semiquaver 0 1 10 0 + End +Group + Beamed + : Semiquaver 0 1 11 0 + : Semiquaver 0 1 12 0 + : Semiquaver 0 1 13 0 + : Semiquaver 0 1 14 0 + End +Group + Beamed + : Semiquaver 0 1 15 0 + : Semiquaver 0 1 14 0 + : Semiquaver 0 1 13 0 + : Semiquaver 0 1 12 0 + End +Group + Beamed + : Semiquaver 0 1 11 0 + : Semiquaver 0 1 10 0 + : Semiquaver 0 1 9 0 + : Semiquaver 0 1 8 0 + End +Group + Beamed + : Quaver 0 1 7 0 + : Semiquaver 0 1 8 0 + : Semiquaver 0 1 9 0 + End +Group + Beamed + : Semiquaver 0 1 10 0 + : Semiquaver 0 1 11 0 + : Semiquaver 0 1 12 0 + : Semiquaver 0 1 13 0 + End +Group + Beamed + : Semiquaver 0 1 14 0 + : Semiquaver 0 1 13 0 + : Semiquaver 0 1 12 0 + : Semiquaver 0 1 11 0 + End +Group + Beamed + : Semiquaver 0 1 10 0 + : Semiquaver 0 1 9 0 + : Semiquaver 0 1 8 0 + : Semiquaver 0 1 7 0 + End +Group + Beamed + : Quaver 0 1 6 0 + : Semiquaver 0 1 7 0 + : Semiquaver 0 1 8 0 + End +Group + Beamed + : Semiquaver 0 1 9 0 + : Semiquaver 0 1 10 0 + : Semiquaver 0 1 11 0 + : Semiquaver 0 1 12 1 + End +Group + Beamed + : Semiquaver 0 1 13 0 + : Semiquaver 0 1 10 0 + : Semiquaver 0 1 11 0 + : Semiquaver 0 1 12 0 + End +Group + Beamed + : Semiquaver 0 1 13 0 + : Semiquaver 0 1 14 0 + : Semiquaver 0 1 15 0 + : Semiquaver 0 1 16 0 + End +Group + Beamed + : Semiquaver 0 1 17 0 + : Semiquaver 0 1 18 0 + : Semiquaver 0 1 19 0 + : Semiquaver 0 1 18 0 + End +Group + Beamed + : Semiquaver 0 1 17 0 + : Semiquaver 0 1 16 0 + : Semiquaver 0 1 15 0 + : Semiquaver 0 1 14 0 + End +Group + Beamed + : Semiquaver 0 1 15 0 + : Semiquaver 0 1 16 0 + : Semiquaver 0 1 17 0 + : Semiquaver 0 1 16 0 + End +Group + Beamed + : Semiquaver 0 1 15 0 + : Semiquaver 0 1 14 0 + : Semiquaver 0 1 13 0 + : Semiquaver 0 1 12 0 + End +Group + Beamed + : Quaver 0 1 11 0 + : Quaver 0 1 16 0 + : Quaver 0 1 14 0 + : Quaver 0 1 12 0 + End +Group + Beamed + : Quaver 0 1 13 0 + : Quaver 0 1 16 0 + : Quaver 0 1 14 0 + : Quaver 0 1 12 0 + End +: Dotted quaver 0 1 13 0 +Rest + Semiquaver rest +: Dotted quaver 0 3 11 0 13 0 16 0 +Rest + Semiquaver rest +: Dotted quaver 0 1 9 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Group + Beamed + : Semiquaver 0 1 -2 1 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 -2 1 + : Semiquaver 0 1 -1 0 + End +Group + Beamed + : Semiquaver 0 1 -2 1 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 -2 1 + : Semiquaver 0 1 -1 0 + End +Group + Beamed + : Semiquaver 0 1 -2 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 -2 0 + : Semiquaver 0 1 -1 0 + End +Group + Beamed + : Semiquaver 0 1 -2 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 -2 0 + : Semiquaver 0 1 -1 0 + End +Group + Beamed + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 -1 0 + End +Group + Beamed + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 -1 0 + End +Group + Beamed + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 -1 0 + End +Group + Beamed + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 -1 0 + End +Group + Beamed + : Semiquaver 0 1 -2 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 -1 0 + End +Group + Beamed + : Semiquaver 0 1 -4 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 -1 0 + End +Group + Beamed + : Semiquaver 0 1 -2 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 -1 0 + End +Group + Beamed + : Semiquaver 0 1 -2 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 -4 0 + : Semiquaver 0 1 -1 0 + End +Group + Beamed + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 -1 0 + End +Group + Beamed + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 -1 0 + End +Group + Beamed + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 -1 0 + End +Group + Beamed + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 -1 0 + End +Group + Beamed + : Semiquaver 0 1 -2 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 -1 0 + End +Group + Beamed + : Semiquaver 0 1 -4 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 -1 0 + End +Group + Beamed + : Semiquaver 0 1 -2 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 -1 0 + End +Group + Beamed + : Semiquaver 0 1 -2 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 -4 0 + : Semiquaver 0 1 -1 0 + End +: Dotted quaver 0 1 13 0 +Rest + Semiquaver rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 13 0 + : Semiquaver 0 1 11 0 + : Semiquaver 0 1 9 0 + End +: Dotted quaver 0 1 7 0 +Rest + Semiquaver rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 7 0 + : Semiquaver 0 1 9 0 + : Semiquaver 0 1 7 0 + End +: Dotted quaver 0 1 12 0 +Rest + Semiquaver rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 12 0 + : Semiquaver 0 1 10 0 + : Semiquaver 0 1 8 1 + End +: Dotted quaver 0 1 6 0 +Rest + Semiquaver rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 6 0 + : Semiquaver 0 1 8 1 + : Semiquaver 0 1 6 0 + End +: Dotted quaver 0 1 11 0 +Rest + Semiquaver rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 11 0 + : Semiquaver 0 1 9 0 + : Semiquaver 0 1 7 0 + End +: Dotted quaver 0 1 5 0 +Rest + Semiquaver rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 5 0 + : Semiquaver 0 1 7 0 + : Semiquaver 0 1 5 0 + End +: Dotted quaver 0 1 10 0 +Rest + Semiquaver rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 10 0 + : Semiquaver 0 1 8 1 + : Semiquaver 0 1 6 0 + End +: Dotted quaver 0 1 4 0 +Rest + Semiquaver rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 9 0 + : Semiquaver 0 1 6 0 + : Semiquaver 0 1 4 0 + End +: Dotted crotchet 0 1 3 0 +Rest + Quaver rest +: Dotted quaver 0 1 5 0 +Rest + Semiquaver rest +: Dotted quaver 0 1 7 0 +Rest + Semiquaver rest +: Crotchet 0 1 10 0 +Group + Beamed + Rest + Quaver rest + : Semiquaver 0 1 11 0 + : Semiquaver 0 2 9 1 10 0 + End +: Semiquaver 0 2 10 0 12 0 +Rest + Semiquaver rest +Group + Beamed + : Quaver 0 1 10 0 + : Quaver 0 1 12 0 + : Quaver 0 1 10 0 + : Quaver 0 1 11 0 + End +: Quaver 0 1 9 0 +: Dotted crotchet 0 1 13 0 +Group + Beamed + Rest + Quaver rest + : Semiquaver 0 1 12 0 + : Semiquaver 0 1 11 0 + End +Group + Beamed + : Semiquaver 0 1 10 0 + : Semiquaver 0 1 9 0 + End +: Dotted minim 0 1 10 0 +Rest + Crotchet rest +: Dotted quaver 0 1 9 0 +Rest + Semiquaver rest +Group + Beamed + : Semiquaver 0 1 9 0 + : Semiquaver 0 1 6 0 + : Semiquaver 0 1 9 0 + : Semiquaver 0 1 11 0 + End +Group + Beamed + : Semiquaver 0 1 13 0 + : Semiquaver 0 1 11 0 + : Semiquaver 0 1 9 0 + : Semiquaver 0 1 11 0 + End +Group + Beamed + : Semiquaver 0 1 12 0 + : Semiquaver 0 1 10 0 + : Semiquaver 0 1 8 1 + : Semiquaver 0 1 10 0 + End +: Dotted quaver 0 1 9 0 +Rest + Semiquaver rest +Group + Beamed + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 4 0 + End +Group + Beamed + : Semiquaver 0 1 6 0 + : Semiquaver 0 1 4 0 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 4 0 + End +Group + Beamed + : Semiquaver 0 1 5 0 + : Semiquaver 0 1 3 0 + : Semiquaver 0 1 1 1 + : Semiquaver 0 1 3 0 + End +: Dotted quaver 0 1 2 0 +Rest + Semiquaver rest +: Dotted quaver 0 2 6 0 11 0 +Rest + Semiquaver rest +: Dotted quaver 0 2 4 0 9 0 +Rest + Semiquaver rest +Rest + Crotchet rest +: Dotted quaver 0 1 2 0 +Rest + Semiquaver rest +Group + Beamed + : Semiquaver 0 1 9 0 + : Semiquaver 0 1 6 0 + : Semiquaver 0 1 9 0 + : Semiquaver 0 1 10 1 + End +Group + Beamed + : Semiquaver 0 1 13 0 + : Semiquaver 0 1 10 1 + : Semiquaver 0 1 9 0 + : Semiquaver 0 1 10 1 + End +Group + Beamed + : Semiquaver 0 1 12 0 + : Semiquaver 0 1 10 0 + : Semiquaver 0 1 8 1 + : Semiquaver 0 1 10 0 + End +: Dotted quaver 0 1 9 0 +Rest + Semiquaver rest +Group + Beamed + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 3 1 + End +Group + Beamed + : Semiquaver 0 1 6 0 + : Semiquaver 0 1 3 1 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 3 1 + End +Group + Beamed + : Semiquaver 0 1 5 0 + : Semiquaver 0 1 3 0 + : Semiquaver 0 1 1 1 + : Semiquaver 0 1 3 0 + End +: Dotted quaver 0 1 2 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 9 0 + : Semiquaver 0 1 10 1 + : Semiquaver 0 1 10 0 + End +Group + Beamed + : Semiquaver 0 1 9 0 + : Semiquaver 0 1 8 0 + : Semiquaver 0 1 7 0 + : Semiquaver 0 1 6 0 + End +: Dotted quaver 0 1 5 1 +Rest + Semiquaver rest +Rest + Crotchet rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 12 1 + : Semiquaver 0 1 14 0 + : Semiquaver 0 1 13 0 + End +Group + Beamed + : Semiquaver 0 1 12 0 + : Semiquaver 0 1 11 0 + : Semiquaver 0 1 10 0 + : Semiquaver 0 1 9 0 + End +: Dotted quaver 0 1 8 0 +Rest + Semiquaver rest +Group + Beamed + : Semiquaver 0 1 6 0 + : Semiquaver 0 1 3 0 + : Semiquaver 0 1 6 0 + : Semiquaver 0 1 8 0 + End +Group + Beamed + : Semiquaver 0 1 10 0 + : Semiquaver 0 1 8 0 + : Semiquaver 0 1 6 0 + : Semiquaver 0 1 8 0 + End +Group + Beamed + : Semiquaver 0 1 9 0 + : Semiquaver 0 1 7 0 + : Semiquaver 0 1 5 1 + : Semiquaver 0 1 7 0 + End +: Dotted quaver 0 1 6 0 +Rest + Semiquaver rest +Group + Beamed + : Semiquaver 0 1 1 0 + : Semiquaver 0 1 -4 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 1 0 + End +Group + Beamed + : Semiquaver 0 1 3 0 + : Semiquaver 0 1 1 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 1 0 + End +Group + Beamed + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 -2 1 + : Semiquaver 0 1 0 0 + End +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 1 0 + End +Group + Beamed + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 3 0 + : Semiquaver 0 1 4 0 + : Semiquaver 0 1 5 1 + End +: Dotted quaver 0 1 6 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 4 0 + : Semiquaver 0 1 5 0 + : Semiquaver 0 1 6 0 + End +Group + Beamed + : Semiquaver 0 1 7 0 + : Semiquaver 0 1 8 1 + : Semiquaver 0 1 9 1 + : Semiquaver 0 1 10 0 + End +: Dotted quaver 0 1 11 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 10 0 + : Semiquaver 0 1 14 0 + : Semiquaver 0 1 13 0 + End +Group + Beamed + : Semiquaver 0 1 12 0 + : Semiquaver 0 1 11 0 + : Semiquaver 0 1 10 0 + : Semiquaver 0 1 9 0 + End +: Dotted quaver 0 1 8 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 9 0 + : Semiquaver 0 1 13 0 + : Semiquaver 0 1 12 0 + End +Group + Beamed + : Semiquaver 0 1 11 0 + : Semiquaver 0 1 10 0 + : Semiquaver 0 1 9 0 + : Semiquaver 0 1 8 0 + End +: Dotted quaver 0 1 7 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 8 0 + : Semiquaver 0 1 12 0 + : Semiquaver 0 1 11 0 + End +Group + Beamed + : Semiquaver 0 1 10 0 + : Semiquaver 0 1 9 0 + : Semiquaver 0 1 8 0 + : Semiquaver 0 1 7 0 + End +: Dotted quaver 0 1 6 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 7 0 + : Semiquaver 0 1 11 0 + : Semiquaver 0 1 10 0 + End +Group + Beamed + : Semiquaver 0 1 9 1 + : Semiquaver 0 1 8 0 + : Semiquaver 0 1 7 0 + : Semiquaver 0 1 6 0 + End +: Dotted quaver 0 1 5 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 3 1 + : Semiquaver 0 1 6 0 + : Semiquaver 0 1 5 0 + End +Group + Beamed + : Semiquaver 0 1 3 1 + : Semiquaver 0 1 3 0 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 1 0 + End +Group + Beamed + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 1 0 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 3 0 + End +Group + Beamed + : Semiquaver 0 1 3 1 + : Semiquaver 0 1 5 0 + : Semiquaver 0 1 6 0 + : Semiquaver 0 1 7 0 + End +: Dotted crotchet 0 1 8 0 +Rest + Quaver rest +: Dotted quaver 0 1 10 0 +Rest + Semiquaver rest +: Dotted quaver 0 1 12 0 +Rest + Semiquaver rest +: Crotchet 0 1 7 0 +Group + Beamed + Rest + Quaver rest + : Semiquaver 0 1 8 0 + : Semiquaver 0 1 9 0 + End +: Dotted quaver 0 1 8 0 +Rest + Semiquaver rest +Rest + Crotchet rest +: Dotted crotchet 0 1 13 0 +Rest + Quaver rest +: Dotted quaver 0 1 12 0 +Rest + Semiquaver rest +: Dotted quaver 0 1 15 0 +Rest + Semiquaver rest +: Dotted quaver 0 1 12 0 +Rest + Semiquaver rest +Group + Beamed + : Quaver 0 1 10 1 + : Semiquaver 0 1 10 0 + : Semiquaver 0 1 10 1 + End +: Crotchet 0 1 10 0 +Rest + Crotchet rest +Group + Beamed + : Quaver 0 1 6 0 + : Semiquaver 0 1 7 0 + : Semiquaver 0 1 8 0 + End +Group + Beamed + : Semiquaver 0 1 9 0 + : Semiquaver 0 1 10 0 + : Semiquaver 0 1 10 1 + : Semiquaver 0 1 12 0 + End +Group + Beamed + : Semiquaver 0 1 13 0 + : Semiquaver 0 1 12 0 + : Semiquaver 0 1 10 1 + : Semiquaver 0 1 10 0 + End +Group + Beamed + : Semiquaver 0 1 9 0 + : Semiquaver 0 1 8 0 + : Semiquaver 0 1 7 0 + : Semiquaver 0 1 6 0 + End +Group + Beamed + : Quaver 0 1 5 0 + : Semiquaver 0 1 6 0 + : Semiquaver 0 1 7 0 + End +Group + Beamed + : Semiquaver 0 1 8 0 + : Semiquaver 0 1 9 0 + : Semiquaver 0 1 10 0 + : Semiquaver 0 1 10 1 + End +Group + Beamed + : Semiquaver 0 1 12 0 + : Semiquaver 0 1 10 1 + : Semiquaver 0 1 10 0 + : Semiquaver 0 1 9 0 + End +Group + Beamed + : Semiquaver 0 1 8 0 + : Semiquaver 0 1 7 0 + : Semiquaver 0 1 6 0 + : Semiquaver 0 1 5 0 + End +Group + Beamed + : Quaver 0 1 3 1 + : Semiquaver 0 1 5 0 + : Semiquaver 0 1 6 0 + End +Group + Beamed + : Semiquaver 0 1 7 0 + : Semiquaver 0 1 8 0 + : Semiquaver 0 1 9 0 + : Semiquaver 0 1 10 0 + End +Group + Beamed + : Semiquaver 0 1 10 1 + : Semiquaver 0 1 10 0 + : Semiquaver 0 1 9 0 + : Semiquaver 0 1 8 0 + End +Group + Beamed + : Semiquaver 0 1 7 0 + : Semiquaver 0 1 6 0 + : Semiquaver 0 1 5 0 + : Semiquaver 0 1 3 1 + End +Group + Beamed + : Quaver 0 1 3 0 + : Semiquaver 0 1 3 1 + : Semiquaver 0 1 5 0 + End +Group + Beamed + : Semiquaver 0 1 6 0 + : Semiquaver 0 1 7 0 + : Semiquaver 0 1 8 0 + : Semiquaver 0 1 9 0 + End +Group + Beamed + : Semiquaver 0 1 10 0 + : Semiquaver 0 1 9 0 + : Semiquaver 0 1 8 0 + : Semiquaver 0 1 7 0 + End +Group + Beamed + : Semiquaver 0 1 6 0 + : Semiquaver 0 1 5 0 + : Semiquaver 0 1 4 0 + : Semiquaver 0 1 3 0 + End +: Dotted quaver 0 1 10 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Rest + Crotchet rest +: Dotted quaver 0 2 5 0 10 0 +Rest + Semiquaver rest +: Dotted quaver 0 2 5 0 9 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Rest + Crotchet rest +: Dotted quaver 0 2 5 0 9 0 +Rest + Semiquaver rest +: Dotted quaver 0 2 5 0 8 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Rest + Crotchet rest +: Dotted quaver 0 2 4 0 8 0 +Rest + Semiquaver rest +: Dotted quaver 0 2 5 0 7 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Rest + Crotchet rest +: Dotted quaver 0 2 5 0 7 0 +Rest + Semiquaver rest +Group + Beamed + : Semiquaver 0 1 7 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 1 0 + End +Group + Beamed + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 3 0 + : Semiquaver 0 1 4 0 + : Semiquaver 0 1 5 1 + End +Group + Beamed + : Semiquaver 0 1 6 0 + : Semiquaver 0 1 3 0 + : Semiquaver 0 1 4 0 + : Semiquaver 0 1 5 1 + End +Group + Beamed + : Semiquaver 0 1 6 0 + : Semiquaver 0 1 7 0 + : Semiquaver 0 1 8 0 + : Semiquaver 0 1 9 0 + End +Group + Beamed + : Semiquaver 0 1 10 0 + : Semiquaver 0 1 11 0 + : Semiquaver 0 1 12 0 + : Semiquaver 0 1 11 0 + End +Group + Beamed + : Semiquaver 0 1 10 0 + : Semiquaver 0 1 9 0 + : Semiquaver 0 1 8 0 + : Semiquaver 0 1 7 0 + End +Group + Beamed + : Semiquaver 0 1 8 0 + : Semiquaver 0 1 9 0 + : Semiquaver 0 1 10 0 + : Semiquaver 0 1 9 0 + End +Group + Beamed + : Semiquaver 0 1 8 0 + : Semiquaver 0 1 7 0 + : Semiquaver 0 1 6 0 + : Semiquaver 0 1 5 0 + End +Group + Beamed + : Quaver 0 1 4 0 + : Quaver 0 1 9 0 + : Quaver 0 1 7 0 + : Quaver 0 1 5 0 + End +Group + Beamed + : Quaver 0 1 6 0 + : Quaver 0 1 9 0 + : Quaver 0 1 7 0 + : Quaver 0 1 5 0 + End +: Dotted quaver 0 1 6 0 +Rest + Semiquaver rest +: Dotted quaver 0 3 4 0 6 0 9 0 +Rest + Semiquaver rest +: Dotted quaver 0 1 2 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Rest + Crotchet rest +Rest + Crotchet rest +Rest + Crotchet rest +Rest + Crotchet rest +Group + Beamed + : Quaver 0 1 9 0 + : Quaver 0 1 7 0 + End +: Dotted quaver 0 1 5 0 +Rest + Semiquaver rest +Group + Beamed + : Quaver 0 1 5 0 + : Semiquaver 0 1 6 0 + : Semiquaver 0 1 7 0 + End +Group + Beamed + : Quaver 0 1 6 0 + : Quaver 0 1 5 0 + End +: Quaver 0 1 5 0 +Rest + Semiquaver rest +: Semiquaver 0 1 4 0 +: Dotted quaver 0 1 4 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Rest + Crotchet rest +Group + Beamed + : Quaver 0 1 9 0 + : Quaver 0 1 7 0 + End +: Crotchet 0 1 5 0 +Group + Beamed + : Quaver 0 1 5 0 + : Semiquaver 0 1 6 0 + : Semiquaver 0 1 7 0 + End +Group + Beamed + : Quaver 0 1 6 0 + : Quaver 0 1 5 0 + End +: Quaver 0 1 5 0 +Rest + Semiquaver rest +: Semiquaver 0 1 4 0 +: Dotted quaver 0 1 4 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Rest + Crotchet rest +: Dotted quaver 0 1 9 0 +Rest + Semiquaver rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 9 0 + : Semiquaver 0 1 7 0 + : Semiquaver 0 1 5 0 + End +: Crotchet 0 1 3 0 +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 3 0 + : Semiquaver 0 1 5 0 + : Semiquaver 0 1 3 0 + End +: Dotted quaver 0 1 8 0 +Rest + Semiquaver rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 8 0 + : Semiquaver 0 1 6 0 + : Semiquaver 0 1 4 0 + End +: Dotted quaver 0 1 2 0 +Rest + Semiquaver rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 9 0 + : Semiquaver 0 1 11 0 + : Semiquaver 0 1 9 0 + End +: Dotted quaver 0 1 14 0 +Rest + Semiquaver rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 14 0 + : Semiquaver 0 1 12 0 + : Semiquaver 0 1 10 0 + End +: Dotted quaver 0 1 8 0 +Rest + Semiquaver rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 8 0 + : Semiquaver 0 1 10 0 + : Semiquaver 0 1 8 0 + End +: Dotted quaver 0 1 13 0 +Rest + Semiquaver rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 13 0 + : Semiquaver 0 1 11 0 + : Semiquaver 0 1 9 0 + End +: Crotchet 0 1 7 0 +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 12 0 + : Semiquaver 0 1 9 0 + : Semiquaver 0 1 7 0 + End +: Dotted crotchet 0 1 6 0 +Rest + Quaver rest +: Dotted quaver 0 1 6 0 +Rest + Semiquaver rest +: Dotted quaver 0 1 6 0 +Rest + Semiquaver rest +: Dotted crotchet 0 1 10 0 +Rest + Quaver rest +: Semiquaver 0 2 9 1 10 0 +Rest + Quaver rest +Rest + Semiquaver rest +: Semiquaver 0 2 9 1 10 0 +Rest + Quaver rest +Rest + Semiquaver rest +Group + Beamed + : Quaver 0 1 9 0 + : Semiquaver 0 1 10 0 + : Semiquaver 0 1 11 0 + End +Group + Beamed + : Semiquaver 0 1 12 0 + : Semiquaver 0 1 13 0 + : Semiquaver 0 1 14 0 + : Semiquaver 0 1 13 0 + End +Group + Beamed + : Semiquaver 0 1 12 0 + : Semiquaver 0 1 11 0 + : Semiquaver 0 1 10 0 + : Semiquaver 0 1 9 0 + End +Group + Beamed + : Semiquaver 0 1 8 0 + : Semiquaver 0 1 7 0 + : Semiquaver 0 1 6 0 + : Semiquaver 0 1 5 0 + End +: Dotted minim 0 1 6 0 +Rest + Quaver rest +Rest + Semiquaver rest +: Semiquaver 0 2 5 0 6 0 +: Dotted quaver 0 1 5 0 +Rest + Semiquaver rest +Group + Beamed + : Semiquaver 0 1 5 0 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 5 0 + : Semiquaver 0 1 7 0 + End +Group + Beamed + : Semiquaver 0 1 9 0 + : Semiquaver 0 1 7 0 + : Semiquaver 0 1 5 0 + : Semiquaver 0 1 7 0 + End +Group + Beamed + : Semiquaver 0 1 8 0 + : Semiquaver 0 1 6 0 + : Semiquaver 0 1 4 0 + : Semiquaver 0 1 6 0 + End +: Dotted quaver 0 1 5 0 +Rest + Semiquaver rest +Group + Beamed + : Semiquaver 0 1 -2 0 + : Semiquaver 0 1 -5 0 + : Semiquaver 0 1 -2 0 + : Semiquaver 0 1 0 0 + End +Group + Beamed + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 -2 0 + : Semiquaver 0 1 0 0 + End +Group + Beamed + : Semiquaver 0 1 1 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 -1 0 + End +: Dotted quaver 0 1 -2 0 +Rest + Semiquaver rest +: Dotted quaver 0 3 7 0 9 0 12 0 +Rest + Semiquaver rest +: Dotted quaver 0 1 5 0 +End + +Name Left Hand +Clef + Clef Name Treble +Group + Beamed + : Quaver 0 1 -2 0 + : Quaver 0 1 2 0 + : Quaver 0 1 0 0 + : Quaver 0 1 2 0 + End +Group + Beamed + : Quaver 0 1 -2 0 + : Quaver 0 1 2 0 + : Quaver 0 1 0 0 + : Quaver 0 1 2 0 + End +Group + Beamed + : Quaver 0 1 -1 0 + : Quaver 0 1 2 0 + : Quaver 0 1 1 0 + : Quaver 0 1 2 0 + End +Group + Beamed + : Quaver 0 1 -2 0 + : Quaver 0 1 2 0 + : Quaver 0 1 0 0 + : Quaver 0 1 2 0 + End +Group + Beamed + : Quaver 0 1 -2 0 + : Quaver 0 1 3 0 + : Quaver 0 1 1 0 + : Quaver 0 1 3 0 + End +Group + Beamed + : Quaver 0 1 -2 0 + : Quaver 0 1 2 0 + : Quaver 0 1 0 0 + : Quaver 0 1 2 0 + End +Group + Beamed + : Quaver 0 1 -3 0 + : Quaver 0 1 2 0 + : Quaver 0 1 -1 0 + : Quaver 0 1 2 0 + End +Group + Beamed + : Quaver 0 1 -2 0 + : Quaver 0 1 2 0 + : Quaver 0 1 0 0 + : Quaver 0 1 2 0 + End +: Dotted quaver 0 1 1 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Rest + Crotchet rest +: Dotted quaver 0 2 1 0 5 0 +Rest + Semiquaver rest +: Dotted quaver 0 2 0 0 5 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Rest + Crotchet rest +: Dotted quaver 0 2 0 0 5 0 +Rest + Semiquaver rest +: Dotted quaver 0 2 -1 0 5 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Rest + Crotchet rest +: Dotted quaver 0 2 -1 0 4 0 +Rest + Semiquaver rest +: Dotted quaver 0 2 -2 0 5 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Rest + Crotchet rest +: Dotted quaver 0 2 -2 0 0 0 +Rest + Semiquaver rest +: Dotted minim 0 2 1 0 3 0 +Rest + Crotchet rest +: Crotchet 0 1 1 0 +Rest + Quaver rest +: Quaver 0 1 2 0 +: Crotchet 0 1 3 0 +Rest + Quaver rest +: Quaver 0 1 1 1 +Group + Beamed + : Semiquaver 0 1 -5 0 + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 2 0 + End +Group + Beamed + : Semiquaver 0 1 -5 0 + : Semiquaver 0 1 -2 0 + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 2 0 + End +Group + Beamed + : Semiquaver 0 1 -5 0 + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 2 0 + End +Group + Beamed + : Semiquaver 0 1 -5 0 + : Semiquaver 0 1 -2 0 + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 2 0 + End +: Dotted quaver 0 1 -5 0 +Rest + Semiquaver rest +: Dotted quaver 0 1 2 0 +Rest + Semiquaver rest +: Dotted quaver 0 1 -5 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Rest + Crotchet rest +Rest + Crotchet rest +Rest + Crotchet rest +Rest + Crotchet rest +Group + Beamed + : Quaver 0 1 13 0 + : Quaver 0 1 11 0 + End +: Dotted quaver 0 1 9 0 +Rest + Semiquaver rest +Group + Beamed + : Quaver 0 1 9 0 + : Semiquaver 0 1 10 0 + : Semiquaver 0 1 11 0 + End +Group + Beamed + : Quaver 0 1 10 0 + : Quaver 0 1 9 0 + End +: Quaver 0 1 9 0 +Rest + Semiquaver rest +: Semiquaver 0 1 8 1 +: Dotted quaver 0 1 8 1 +Rest + Semiquaver rest +Rest + Crotchet rest +Rest + Crotchet rest +Group + Beamed + : Quaver 0 1 13 0 + : Quaver 0 1 11 0 + End +: Dotted quaver 0 1 9 0 +Rest + Semiquaver rest +Group + Beamed + : Quaver 0 1 9 0 + : Semiquaver 0 1 10 0 + : Semiquaver 0 1 11 0 + End +Group + Beamed + : Quaver 0 1 10 0 + : Quaver 0 1 9 0 + End +: Quaver 0 1 9 0 +Rest + Semiquaver rest +: Semiquaver 0 1 8 1 +: Dotted quaver 0 1 8 1 +Rest + Semiquaver rest +Rest + Crotchet rest +Rest + Crotchet rest +Group + Beamed + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 2 0 + End +: Dotted quaver 0 1 4 0 +Rest + Semiquaver rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 -2 0 + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 2 0 + End +: Dotted quaver 0 1 5 0 +Rest + Semiquaver rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 -4 0 + : Semiquaver 0 1 -2 0 + : Semiquaver 0 1 1 1 + End +: Dotted quaver 0 1 3 0 +Rest + Semiquaver rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 1 1 + End +: Dotted quaver 0 1 4 0 +Rest + Semiquaver rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 -5 0 + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 0 0 + End +: Dotted quaver 0 1 2 0 +Rest + Semiquaver rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 -4 0 + : Semiquaver 0 1 -2 0 + : Semiquaver 0 1 0 0 + End +: Dotted quaver 0 1 3 0 +Rest + Semiquaver rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 -6 1 + : Semiquaver 0 1 -4 0 + : Semiquaver 0 1 -1 0 + End +: Dotted quaver 0 1 1 1 +Rest + Semiquaver rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 -5 0 + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 -1 0 + End +: Dotted quaver 0 1 2 0 +Rest + Semiquaver rest +Group + Beamed + : Quaver 0 2 -2 0 0 0 + : Quaver 0 2 -2 0 0 0 + : Quaver 0 2 -2 0 0 0 + : Quaver 0 2 -2 0 0 0 + End +Group + Beamed + : Quaver 0 2 -2 0 0 0 + : Quaver 0 2 -2 0 0 0 + : Quaver 0 2 -2 0 0 0 + : Quaver 0 2 -2 0 0 0 + End +Group + Beamed + : Quaver 0 2 -2 0 0 0 + : Quaver 0 2 -2 0 0 0 + : Quaver 0 2 -2 0 0 0 + : Quaver 0 2 -2 0 0 0 + End +Group + Beamed + : Quaver 0 2 -2 0 0 0 + : Quaver 0 2 -2 0 0 0 + : Quaver 0 2 -2 0 0 0 + : Quaver 0 2 -2 0 0 0 + End +Group + Beamed + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 4 0 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 4 0 + End +Group + Beamed + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 4 0 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 4 0 + End +Group + Beamed + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 4 0 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 4 0 + End +Group + Beamed + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 4 0 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 4 0 + End +Group + Beamed + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 5 0 + : Semiquaver 0 1 1 1 + : Semiquaver 0 1 5 0 + End +Group + Beamed + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 5 0 + : Semiquaver 0 1 1 1 + : Semiquaver 0 1 5 0 + End +Group + Beamed + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 5 0 + : Semiquaver 0 1 1 1 + : Semiquaver 0 1 5 0 + End +Group + Beamed + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 5 0 + : Semiquaver 0 1 1 1 + : Semiquaver 0 1 5 0 + End +: Dotted quaver 0 2 2 0 4 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Rest + Crotchet rest +: Dotted quaver 0 3 -1 0 3 0 5 0 +Rest + Semiquaver rest +: Dotted quaver 0 2 2 0 4 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Rest + Crotchet rest +: Dotted quaver 0 3 -1 0 3 0 5 0 +Rest + Semiquaver rest +: Dotted quaver 0 2 2 0 4 0 +Rest + Semiquaver rest +: Dotted quaver 0 2 -5 0 4 0 +Rest + Semiquaver rest +: Dotted quaver 0 2 -5 0 4 0 +Rest + Semiquaver rest +Rest + Crotchet rest +: Dotted quaver 0 2 -5 0 2 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Rest + Crotchet rest +: Dotted quaver 0 3 -1 0 3 0 5 0 +Rest + Semiquaver rest +: Dotted quaver 0 2 2 0 3 1 +Rest + Semiquaver rest +Rest + Crotchet rest +Rest + Crotchet rest +: Dotted quaver 0 3 -8 0 -4 0 -2 0 +Rest + Semiquaver rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 -5 0 + : Semiquaver 0 1 -4 0 + : Semiquaver 0 1 -3 0 + End +Group + Beamed + : Semiquaver 0 1 -2 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 1 1 + End +: Crotchet 0 1 2 0 +Rest + Crotchet rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 -4 0 + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 -2 1 + End +Group + Beamed + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 1 1 + : Semiquaver 0 1 2 1 + End +: Crotchet 0 1 3 0 +Rest + Crotchet rest +: Dotted quaver 0 2 -8 0 -1 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Rest + Crotchet rest +: Dotted quaver 0 3 3 0 7 0 9 0 +Rest + Semiquaver rest +: Dotted quaver 0 2 6 0 8 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Rest + Crotchet rest +: Dotted quaver 0 3 -4 0 0 0 2 0 +Rest + Semiquaver rest +: Dotted quaver 0 2 -1 0 1 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 1 0 + : Semiquaver 0 1 0 0 + End +Group + Beamed + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 -2 0 + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 -4 0 + End +: Dotted quaver 0 1 -5 1 +Rest + Semiquaver rest +Rest + Crotchet rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 -5 0 + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 -4 0 + End +Group + Beamed + : Semiquaver 0 1 -5 0 + : Semiquaver 0 1 -6 0 + : Semiquaver 0 1 -7 0 + : Semiquaver 0 1 -8 0 + End +: Dotted quaver 0 1 -9 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 3 0 + : Semiquaver 0 1 2 0 + End +Group + Beamed + : Semiquaver 0 1 1 0 + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 -2 0 + End +: Dotted quaver 0 1 -3 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 5 0 + : Semiquaver 0 1 9 0 + : Semiquaver 0 1 8 0 + End +Group + Beamed + : Semiquaver 0 1 7 0 + : Semiquaver 0 1 6 0 + : Semiquaver 0 1 5 0 + : Semiquaver 0 1 4 0 + End +: Dotted quaver 0 1 3 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 4 0 + : Semiquaver 0 1 8 0 + : Semiquaver 0 1 7 0 + End +Group + Beamed + : Semiquaver 0 1 6 0 + : Semiquaver 0 1 5 0 + : Semiquaver 0 1 4 0 + : Semiquaver 0 1 3 0 + End +: Dotted quaver 0 1 2 1 +Rest + Semiquaver rest +Rest + Crotchet rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 3 0 + : Semiquaver 0 1 5 0 + : Semiquaver 0 1 4 0 + End +Group + Beamed + : Semiquaver 0 1 3 0 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 1 0 + : Semiquaver 0 1 0 0 + End +: Dotted crotchet 0 1 -1 0 +Rest + Quaver rest +: Dotted crotchet 0 3 -2 0 2 0 3 1 +Rest + Quaver rest +Group + Beamed + : Quaver 0 1 1 0 + : Quaver 0 1 5 0 + : Quaver 0 1 3 0 + : Quaver 0 1 5 0 + End +Group + Beamed + : Quaver 0 1 1 0 + : Quaver 0 1 5 0 + : Quaver 0 1 3 0 + : Quaver 0 1 5 0 + End +Group + Beamed + : Quaver 0 1 2 0 + : Quaver 0 1 5 0 + : Quaver 0 1 3 1 + : Quaver 0 1 5 0 + End +Group + Beamed + : Quaver 0 1 1 0 + : Quaver 0 1 5 0 + : Quaver 0 1 3 0 + : Quaver 0 1 5 0 + End +Group + Beamed + : Quaver 0 1 1 0 + : Quaver 0 1 6 0 + : Quaver 0 1 3 1 + : Quaver 0 1 6 0 + End +Group + Beamed + : Quaver 0 1 1 0 + : Quaver 0 1 5 0 + : Quaver 0 1 3 0 + : Quaver 0 1 5 0 + End +Group + Beamed + : Quaver 0 1 0 0 + : Quaver 0 1 5 0 + : Quaver 0 1 2 0 + : Quaver 0 1 5 0 + End +Group + Beamed + : Quaver 0 1 1 0 + : Quaver 0 1 5 0 + : Quaver 0 1 3 0 + : Quaver 0 1 5 0 + End +: Dotted quaver 0 1 3 1 +Rest + Semiquaver rest +Rest + Crotchet rest +Rest + Crotchet rest +: Dotted quaver 0 2 1 0 3 1 +Rest + Semiquaver rest +: Dotted quaver 0 2 3 0 8 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Rest + Crotchet rest +: Dotted quaver 0 2 3 0 8 0 +Rest + Semiquaver rest +: Dotted quaver 0 2 2 0 8 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Rest + Crotchet rest +: Dotted quaver 0 2 2 0 7 0 +Rest + Semiquaver rest +: Dotted quaver 0 2 1 0 8 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Rest + Crotchet rest +Rest + Crotchet rest +Group + Beamed + : Quaver 0 1 1 0 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 3 0 + End +Group + Beamed + : Semiquaver 0 1 4 0 + : Semiquaver 0 1 5 0 + : Semiquaver 0 1 6 0 + : Semiquaver 0 1 7 0 + End +Group + Beamed + : Semiquaver 0 1 8 0 + : Semiquaver 0 1 7 0 + : Semiquaver 0 1 6 0 + : Semiquaver 0 1 5 0 + End +Group + Beamed + : Semiquaver 0 1 4 0 + : Semiquaver 0 1 3 0 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 1 0 + End +Group + Beamed + : Quaver 0 1 0 0 + : Semiquaver 0 1 1 0 + : Semiquaver 0 1 2 0 + End +Group + Beamed + : Semiquaver 0 1 3 0 + : Semiquaver 0 1 4 0 + : Semiquaver 0 1 5 0 + : Semiquaver 0 1 6 0 + End +Group + Beamed + : Semiquaver 0 1 7 0 + : Semiquaver 0 1 6 0 + : Semiquaver 0 1 5 0 + : Semiquaver 0 1 4 0 + End +Group + Beamed + : Semiquaver 0 1 3 0 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 1 0 + : Semiquaver 0 1 0 0 + End +Group + Beamed + : Quaver 0 1 -1 0 + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 1 0 + End +Group + Beamed + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 3 0 + : Semiquaver 0 1 4 0 + : Semiquaver 0 1 5 0 + End +Group + Beamed + : Semiquaver 0 1 6 0 + : Semiquaver 0 1 5 0 + : Semiquaver 0 1 4 0 + : Semiquaver 0 1 3 0 + End +Group + Beamed + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 1 0 + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 -1 0 + End +Group + Beamed + : Quaver 0 1 -2 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 0 0 + End +Group + Beamed + : Semiquaver 0 1 1 0 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 3 0 + : Semiquaver 0 1 4 0 + End +Group + Beamed + : Semiquaver 0 1 5 0 + : Semiquaver 0 1 4 0 + : Semiquaver 0 1 3 0 + : Semiquaver 0 1 2 0 + End +Group + Beamed + : Semiquaver 0 1 1 0 + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 -2 0 + End +: Semibreve 0 2 1 0 3 0 +: Crotchet 0 1 1 0 +Rest + Quaver rest +: Quaver 0 1 2 0 +: Crotchet 0 1 3 0 +Rest + Quaver rest +: Quaver 0 1 1 1 +Group + Beamed + : Semiquaver 0 1 -5 0 + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 2 0 + End +Group + Beamed + : Semiquaver 0 1 -5 0 + : Semiquaver 0 1 -2 0 + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 2 0 + End +Group + Beamed + : Semiquaver 0 1 -5 0 + : Semiquaver 0 1 -3 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 2 0 + End +Group + Beamed + : Semiquaver 0 1 -5 0 + : Semiquaver 0 1 -2 0 + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 2 0 + End +: Dotted quaver 0 1 -5 0 +Rest + Semiquaver rest +: Dotted quaver 0 1 2 0 +Rest + Semiquaver rest +: Dotted quaver 0 1 -5 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Group + Beamed + : Semiquaver 0 1 1 1 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 1 1 + : Semiquaver 0 1 2 0 + End +Group + Beamed + : Semiquaver 0 1 1 1 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 1 1 + : Semiquaver 0 1 2 0 + End +Group + Beamed + : Semiquaver 0 1 1 0 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 1 0 + : Semiquaver 0 1 2 0 + End +Group + Beamed + : Semiquaver 0 1 1 0 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 1 0 + : Semiquaver 0 1 2 0 + End +Group + Beamed + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 2 0 + End +Group + Beamed + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 2 0 + End +Group + Beamed + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 2 0 + End +Group + Beamed + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 2 0 + End +Group + Beamed + : Semiquaver 0 1 1 0 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 2 0 + End +Group + Beamed + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 2 0 + End +Group + Beamed + : Semiquaver 0 1 1 0 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 2 0 + End +Group + Beamed + : Semiquaver 0 1 1 0 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 2 0 + End +Group + Beamed + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 2 0 + End +Group + Beamed + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 2 0 + End +Group + Beamed + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 2 0 + End +Group + Beamed + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 2 0 + End +Group + Beamed + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 2 0 + End +Group + Beamed + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 2 0 + End +Group + Beamed + : Semiquaver 0 1 1 0 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 0 0 + : Semiquaver 0 1 2 0 + End +Group + Beamed + : Semiquaver 0 1 1 0 + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 -1 0 + : Semiquaver 0 1 2 0 + End +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 -7 0 + : Semiquaver 0 1 -5 0 + : Semiquaver 0 1 -2 0 + End +: Dotted quaver 0 1 0 0 +Rest + Semiquaver rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 -6 0 + : Semiquaver 0 1 -4 0 + : Semiquaver 0 1 -2 0 + End +: Dotted quaver 0 1 1 0 +Rest + Semiquaver rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 -8 0 + : Semiquaver 0 1 -6 0 + : Semiquaver 0 1 -3 0 + End +: Dotted quaver 0 1 -1 0 +Rest + Semiquaver rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 -7 0 + : Semiquaver 0 1 -5 0 + : Semiquaver 0 1 -3 0 + End +: Dotted quaver 0 1 0 0 +Rest + Semiquaver rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 5 0 + : Semiquaver 0 1 7 0 + : Semiquaver 0 1 10 0 + End +: Dotted quaver 0 1 12 0 +Rest + Semiquaver rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 6 0 + : Semiquaver 0 1 8 0 + : Semiquaver 0 1 10 0 + End +: Dotted quaver 0 1 13 0 +Rest + Semiquaver rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 4 0 + : Semiquaver 0 1 6 0 + : Semiquaver 0 1 9 0 + End +: Dotted quaver 0 1 11 0 +Rest + Semiquaver rest +Group + Beamed + Rest + Semiquaver rest + : Semiquaver 0 1 5 0 + : Semiquaver 0 1 7 0 + : Semiquaver 0 1 9 0 + End +: Dotted quaver 0 1 14 0 +Rest + Semiquaver rest +Group + Beamed + Rest + Quaver rest + : Quaver 0 2 1 0 3 0 + : Quaver 0 2 1 0 3 0 + : Quaver 0 2 1 0 3 0 + End +Group + Beamed + : Quaver 0 2 1 0 3 0 + : Quaver 0 2 1 0 3 0 + : Quaver 0 2 1 0 3 0 + : Quaver 0 2 1 0 3 0 + End +Group + Beamed + Rest + Quaver rest + : Quaver 0 3 1 0 5 0 6 1 + : Quaver 0 3 1 0 5 0 6 1 + : Quaver 0 3 1 0 5 0 6 1 + End +Group + Beamed + : Quaver 0 3 1 0 5 0 6 1 + : Quaver 0 3 1 0 5 0 6 1 + : Quaver 0 3 1 0 5 0 6 1 + : Quaver 0 3 1 0 5 0 6 1 + End +Group + Beamed + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 7 0 + : Semiquaver 0 1 5 0 + : Semiquaver 0 1 7 0 + End +Group + Beamed + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 7 0 + : Semiquaver 0 1 5 0 + : Semiquaver 0 1 7 0 + End +Group + Beamed + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 7 0 + : Semiquaver 0 1 5 0 + : Semiquaver 0 1 7 0 + End +Group + Beamed + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 7 0 + : Semiquaver 0 1 5 0 + : Semiquaver 0 1 7 0 + End +Group + Beamed + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 8 0 + : Semiquaver 0 1 4 0 + : Semiquaver 0 1 8 0 + End +Group + Beamed + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 8 0 + : Semiquaver 0 1 4 0 + : Semiquaver 0 1 8 0 + End +Group + Beamed + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 8 0 + : Semiquaver 0 1 4 0 + : Semiquaver 0 1 8 0 + End +Group + Beamed + : Semiquaver 0 1 2 0 + : Semiquaver 0 1 8 0 + : Semiquaver 0 1 4 0 + : Semiquaver 0 1 8 0 + End +: Dotted quaver 0 2 -2 0 0 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Rest + Crotchet rest +: Dotted quaver 0 3 2 0 6 0 8 0 +Rest + Semiquaver rest +: Dotted quaver 0 2 5 0 7 0 +Rest + Semiquaver rest +Rest + Crotchet rest +Rest + Crotchet rest +: Dotted quaver 0 3 2 0 6 0 8 0 +Rest + Semiquaver rest +: Dotted quaver 0 2 -2 0 0 0 +Rest + Semiquaver rest +: Dotted quaver 0 1 5 0 +Rest + Semiquaver rest +: Dotted quaver 0 2 -9 0 -2 0 +End + +Bar 0 0 time 4 4 +Bar 1 0 time 4 4 +Stave 0 tags 1 1 connected 0 program 0 +Stave 1 tags 1 1 connected 0 program 0 + +End diff --git a/data/examples/stormy-riders.rg b/data/examples/stormy-riders.rg new file mode 100644 index 0000000..5bde590 Binary files /dev/null and b/data/examples/stormy-riders.rg differ diff --git a/data/examples/test_tuplets.rg b/data/examples/test_tuplets.rg new file mode 100644 index 0000000..e4ddc17 Binary files /dev/null and b/data/examples/test_tuplets.rg differ diff --git a/data/examples/the-rose-garden.rg b/data/examples/the-rose-garden.rg new file mode 100644 index 0000000..d9b5359 Binary files /dev/null and b/data/examples/the-rose-garden.rg differ diff --git a/data/examples/vivaldi-cs3mv2.rg b/data/examples/vivaldi-cs3mv2.rg new file mode 100644 index 0000000..a5c14c2 Binary files /dev/null and b/data/examples/vivaldi-cs3mv2.rg differ diff --git a/data/examples/vivaldi_op44_11_1.rg b/data/examples/vivaldi_op44_11_1.rg new file mode 100644 index 0000000..1186b2c Binary files /dev/null and b/data/examples/vivaldi_op44_11_1.rg differ diff --git a/data/fonts/LilyPond-feta-design20.pfa b/data/fonts/LilyPond-feta-design20.pfa new file mode 100644 index 0000000..b50a74e --- /dev/null +++ b/data/fonts/LilyPond-feta-design20.pfa @@ -0,0 +1,1277 @@ +%!PS-AdobeFont-1.0: GNU-LilyPond-feta-20 001.001 +%%Title: GNU-LilyPond-feta-20 +%%CreationDate: Tue Nov 25 18:38:53 2003 +%%Creator: Chris Cannam +%%DocumentSuppliedResources: font GNU-LilyPond-feta-20 +% Generated from MetaFont bitmap by mftrace 1.0.19, http://www.cs.uu.nl/ +% Generated by PfaEdit 1.0 (http://pfaedit.sf.net/) +%%EndComments +FontDirectory/GNU-LilyPond-feta-20 known{/GNU-LilyPond-feta-20 findfont dup/UniqueID known{dup +/UniqueID get 4208404 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /GNU-LilyPond-feta-20 def +/FontBBox [-518 -1323 800 1250 ]readonly def +/UniqueID 4208404 def +/PaintType 0 def +/FontInfo 9 dict dup begin + /version (001.001) readonly def + /Notice (Generated from MetaFont bitmap by mftrace 1.0.19, http://www.cs.uu.nl/~hanwen/mftrace/ ) readonly def + /FullName (GNU LilyPond feta 20) readonly def + /FamilyName (LilyPond-feta-rosegarden) readonly def + /Weight (20) readonly def + /ItalicAngle 0 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def +end readonly def +/Encoding 256 array + 0 1 255 { 1 index exch /.notdef put} for +dup 33/wholerest put +dup 34/halfrest put +dup 35/outsidewholerest put +dup 36/outsidehalfrest put +dup 37/maximarest put +dup 38/longarest put +dup 39/breverest put +dup 40/quartrest put +dup 41/clasquartrest put +dup 42/eighthrest put +dup 43/sixteenthrest put +dup 44/thirtysecondrest put +dup 45/sixtyfourthrest put +dup 46/hundredtwentyeighthrest put +dup 47/sharp put +dup 48/semisharp put +dup 49/threequartersharp put +dup 50/natural put +dup 51/flat put +dup 52/semiflat put +dup 53/flatflat put +dup 54/threeqflat put +dup 55/sharpsharp put +dup 56/rightparen put +dup 57/leftparen put +dup 58/dot put +dup 59/brevishead put +dup 60/wholehead put +dup 61/halfhead put +dup 62/quarthead put +dup 63/wholediamondhead put +dup 64/halfdiamondhead put +dup 65/diamondhead put +dup 66/wholetrianglehead put +dup 67/halftrianglehead put +dup 68/trianglehead put +dup 69/wholeslashhead put +dup 70/halfslashhead put +dup 71/quartslashhead put +dup 72/wholecrossedhead put +dup 73/halfcrossedhead put +dup 74/crossedhead put +dup 75/xcircledhead put +dup 76/ufermata put +dup 77/dfermata put +dup 78/ushortfermata put +dup 79/dshortfermata put +dup 80/ulongfermata put +dup 81/dlongfermata put +dup 82/uverylongfermata put +dup 83/dverylongfermata put +dup 84/thumb put +dup 85/sforzatoaccent put +dup 86/staccato put +dup 87/ustaccatissimo put +dup 88/dstaccatissimo put +dup 89/tenuto put +dup 90/uportato put +dup 91/dportato put +dup 92/umarcato put +dup 93/dmarcato put +dup 94/ouvert put +dup 95/plusstop put +dup 96/upbow put +dup 97/downbow put +dup 98/reverseturn put +dup 99/turn put +dup 100/trill put +dup 101/upedalheel put +dup 102/dpedalheel put +dup 103/upedaltoe put +dup 104/dpedaltoe put +dup 105/flageolet put +dup 106/segno put +dup 107/coda put +dup 108/varcoda put +dup 109/rcomma put +dup 110/lcomma put +dup 111/rvarcomma put +dup 112/lvarcomma put +dup 113/arpeggio put +dup 114/trillelement put +dup 115/arpeggioarrowdown put +dup 116/arpeggioarrowup put +dup 117/trilelement put +dup 118/prall put +dup 119/mordent put +dup 120/prallprall put +dup 121/prallmordent put +dup 122/upprall put +dup 123/downprall put +dup 124/upmordent put +dup 125/downmordent put +dup 126/lineprall put +dup 127/pralldown put +dup 128/prallup put +dup 129/caesura put +dup 130/eighthflag put +dup 131/sixteenthflag put +dup 132/thirtysecondflag put +dup 133/sixtyfourthflag put +dup 134/deighthflag put +dup 135/gracedash put +dup 136/dgracedash put +dup 137/dsixteenthflag put +dup 138/dthirtysecondflag put +dup 139/dsixtyfourthflag put +dup 140/altoclef put +dup 141/caltoclef put +dup 142/bassclef put +dup 143/cbassclef put +dup 144/trebleclef put +dup 145/ctrebleclef put +dup 146/percussionclef put +dup 147/cpercussionclef put +dup 148/tabclef put +dup 149/ctabclef put +dup 150/fourfourmeter put +dup 151/allabreve put +dup 152/pedalasterisk put +dup 153/pedaldash put +dup 154/pedaldot put +dup 155/pedalP put +dup 156/pedald put +dup 157/pedale put +dup 158/pedalPed put +dup 159/accDiscant put +dup 160/accDot put +dup 161/accFreebase put +dup 162/accStdbase put +dup 163/accBayanbase put +dup 164/accSB put +dup 165/accBB put +dup 166/accOldEE put +dup 167/accOldEES put +dup 168/wholedohead put +dup 169/halfdohead put +dup 170/dohead put +dup 171/wholerehead put +dup 172/halfrehead put +dup 173/rehead put +dup 174/wholemehead put +dup 175/halfmehead put +dup 176/mehead put +dup 177/wholefahead put +dup 178/halffauhead put +dup 179/fauhead put +dup 180/halffadhead put +dup 181/fadhead put +dup 182/wholelahead put +dup 183/halflahead put +dup 184/lahead put +dup 185/wholetehead put +dup 186/halftehead put +dup 187/tehead put +readonly def +currentdict end +currentfile eexec +743F8413F3636CA85A9FFEFB50B4BB27302A5955DC23E0F3397300C8FCA519E56C902CB3 +B617F2A7538B6DC265A7CF20D53EB36E373340044ED3C3212B846132E1960981D2006CCD +E888FD9671CDD7ED1352864A4B63C0967DB2112FA1C9858565C8FBD0DDD08B57B7FCEB3D +24B86E4B8F343E1D177E9F46BDF43B991761555A2BD0087D171A8D4E0704D7976EC07F01 +20F5004A55851E3D7F1B101CCDDC3F8F02070217787E5D3D718929D6E6B9F17D30A17EB6 +ACE1F85BE11BA385884D9D001BF3FF9CCE9EA1F0B0ADC25AED55D150604DCDEA73C8DE1E +7B336426F05E0481E3D7D3246143080CC574335B1A6E9734CC1CEAB3BF4272CE8C244325 +EB6CBD67E20D98D3951F2271CD1D19EAE9FF0C04B2C5F87F85C9AD7FE0E65360DA30957F +51A372DFD5C14FA4DD33780582DAE96BE3AC2C9075F6F0393EF540A1EB9E8D2D64FD9579 +06D9B96330464549A2153358ABED94E16E5C6C7C4E192C5F2E874C4ACEB6C162FB7AA0E6 +4FC0AA67F04DEE195D7A40A70619CE5A788D7302218D659BB3FC2B77AAD4FB24CCB6EE82 +FD17A5C5097B5483E1D72198411D032A57105D3593E8ECB2603EF455C22ED52C5992D999 +7F585E086E8D056D7AF59ABED2C1AE94131151E3283BD34DDCDF28BE734AE139246E2ACC +9DB6B193E75C7FB9C0BF7D966C3F83AF0F5FC35C2906F5248AEE0514034447C21813C37F +42CA0E5962025FACC0E6CC1A1CE528DAE7925E7677EF603ABF76A4B0F46708CC5A416107 +F3575562D2355C36CB9472A53B776CE1448A661BF1544B921DA9BA5B70C0396CAFD4B67C +B6E46F14003B3DAAD576755278701490C33A65E052E559ACBFC4871C03367E9CBA629947 +B9E6DFCF4CA060DE84E31E4FF691B32F5FD94CBF960E3D591B69B6B94E5DA00DD463076C +4B3B0D67CBFAF34AE5BB86547A065267706A137B8A2CD45F505957EF791B5026452FF158 +517C252D44FC57335890CDE78A0FBCE08B50C2F1D873D5E6F388AFA7298E64E51C98A75A +AB8E9C588A71E35C9B816EB7182886AE51823D58D3E48F4932996D9EC0CEDC1E159C2228 +DD52F4FF0FC3FB6D8DB28133E1D502B722EAE4FFC23E64903462267E94E1CB962C4EA638 +33ED390A0A2F12716F77F80F28C69E292233A41796D2615EF28E004C05A5883A13DEEA92 +EE656C3A245F4CB3ADCE74CFEC7D427C4C3A8073D4739552F6ACD7105626C6CF26B9FD61 +1963AD2AC7E323845BE488787AEEB8C12699F46B34FDD9FC2EB0E94C9785E07652E16B5D +53478F33931870A8E45DA6F10C5426ED0CE1AF2817C059D9245102E1DE7A0CF1100C9E03 +8B30CBAA3B55869F3A7294D69CEB202AF53BAFAD24CB2154FD8551577E4C15F556B2F3E1 +891FCEB8DC5BB2FB0657DF849AB056FF6DE28C010471644418E9A9C0D5D3B7B662934D8E +708791A5C6B88B2566F8F8CF48AFEE7A11028C60ADEE383D97814299BF6D5FC66D58834B +F7827DDDEB29C1F26CFDB671A1722BA40C25306725E366EA7DD50A4600D1D2604BD79A04 +1D9ED90C8468FAB3A79A75D527A71E0BFAFB6CD10F77CFEE168757E9F19EF6539F295217 +7D2B005EB0C862620F653704D661ED76D47FD371E6183C68A2F31ABCEC04076DFFE68F52 +C49FC46CEB4289CB093A8BDB713ABD6313967A56A66F39E89F59EE2B16C04DC36E8B8CEA +218C59D4BFB565F808EFFD2CBFDE6220D5286954CDB4F223A6D6293290991441EDE7F3D8 +BCC03B6346A51C1FA9CE2EFFE557287C98EC1C30F785BCFB5F020F2FAFF10B6A424E66CF +ED5DBCA95F0C1EF34D9599F20AE3D07C03B7A56A925F45BC0336EF35702C45E3FABF60AF +B2DE5D2AFB5D15CF4057934BE4C532FCFFC7B70093356A9BD6EF3C55D06E908D334ED541 +55B785D3168E2BB0DA9311C0A72173E5EC58C11795C412FFC08E42C22637B29AF2B3AD5F +0397CF7390C3FCB2C2A0B7DCDDD34E068B0D20A590AD43C1C8DE7B76F06038E4094304AD +4CBDC4C50B9F307823D4AA25BBE701CB8F7FD49D4F6EFA343AA9BBFDA9D5061CE9CB23C2 +1C6D852585426F6F3E44FDDE3489D4857290DC0EB91E8E76C6EEA6EBF1C47867446D8499 +6894A22A3305B6E6D756F110A594B3348FE26FC7E7470531EED12FF71C862AA9136B0CDC +B92F7CA5C235D99567E7B67690C6C6AB77CA70A6C6769F93090BA94013209857C6CE20CA +4C36FB122F46A262341B5F70DE633461186C9E9AAEC0CB94B2BA21D68DC94B7B0DF4FAE3 +11D4EBD60D95A3BC9167A8744AE7CECC24C37BA75B92B5490181CB7F5CC1A0CBB02BD01C +DA6E151C14B512DCE9F202B62BC9B30E47EA60146E418D9F663C61DF5AD66B8A2CE7F537 +44637067A702CA64A80D0F763C87AAA80E99CFACCDDC1C47E24C411F90EB38CA0B54B21A +8DEC3B2A784716C01D9A744BC17514BF1C2D77F81D2C31294E57F2F80FA5BC75899F8174 +1CDC736388614FCE7285EBCEA4B558E19CE1D7BC9C3713301B3F502FD337107428A32721 +98EB716CAB438A309F177CA3908C48B33D4D03DF950A27AE0EB4B62353BEA91E8A072833 +AEF570BBA1DA3502C3A88D1E41C7F7B6A4518FAAFE129D8D080FE00A375ED738D5A0A8C1 +5D91091006DF628B730C6DC4B94535036683167C91D1C0552A501FC395B2E91A2E53A55B +6A6130978099AFBB88AF17213BA7AC9F84AD43BD0C1F04858426CDF3E4C2986377B282B7 +8DA2B76EC4A17F8832B9217BC409AB447336F4C1B541CA02E2795F18F54EC9EAB2F3B7B0 +D4C68C4BE449BF5C08466C060AAFD6B4E6B54B3098D48A2C39F136578DEC87091ECB1A37 +05EA7CCFFEB1F47E6F80D31F5F59D175928A7E18D70342968965147E5EFCB361657F35AB +DEADF126DBD625F3770A95977FE340ABB525DE439658745CBF9BF4C6F4C1D8B2D94A3B2D +17D938403BC40804BE59B5ECB30423521478694078E5EFE4D72A9B780E090DA5FC015E69 +412AFF63126A17163C43BBA2FB26FBA0925C0ED30B0974767575C63B033FD7B71CE9504D +5B632394D32DE86BF22171F18B032A5769FB5176F2F8760289283DE716C4C0332D3A1C8F +DCE18667DA015399A8DC7A4B3EACD4E92EE3B6C018860343D8FDD54477E82D44B73EF971 +BA07718635B5E5E8FA7080AB0149C707865F8DE458EC3F57E7F432884D3E89D01F67BB81 +5379A38C31968B8458B7D49CD120C04B7A9E008CD3F7EF7B8ADE471EB131D88DB5D3A673 +600F4E5F5D1FEA8B480292563C72651D9EADF037C7FEEA5181C80288BA10F421BAF765F0 +8F8537DAC1A9B8671013C4E8283BA83C057CB136B9DE60615AFF79A9268F17B2898A76EB +66BFFA9889FFEE6387E87AD87A0A1811AA2B708001FC8791D9948317D60F77BE5BEA1F3B +BF4FADCDD15543F976D6B8D3A406EFD950889283F83982863CF52A1A92B20DC678F910F3 +5FA2A8875B91D1C3A45ADB3157F99DE7ECD63012E73A52DE379EC2271803F2BBAF8F3AB0 +DFCE8011634D93A3C66BA23216D241D91AEFD11670604A8A32FAA3EC00BB365B90FA1C1E +F1F80B0377B255ED7247F28B0B823FC5768DDD47D1DD7758F4A61653F9B3F75E88B6C74C +5180CC03B54014464F0D7BA295AFF37B69715923BBB7795C5CD7DFC03823D1A6AC834F38 +EB3A5A3A61F7478A49F9B12624073762BEA35AA909088E3F89524949ED2282CF05F40AB6 +181C359083985AC4BE78C91E3486742DE5854752CEFAF69675E0D203A60A816B23337E94 +D98A66164A2EC73417B67D37617DADC7EA7A11BECF9F7F326138E13F8145B8FF58707033 +3CC29AF0FF7CAA8C21B7882BE770F9F6848E8F85CB238A1D8DE8A8CC650852266020804D +9D06F6D17AC8A04811E487CF11899F7CAE6CF5B82292348D6DC8AD5C1F8F3500CA401F2A +B48D080C3D01FB8EF23B80D5BFD9D963434890D760BB4194485A712FC8E80D8609C64AC4 +A9E5067CE0E5FCAC022E552CF323F476EDDA0A848C18229D48A7ECC12A6D7CDE5F310728 +2D1F427B6829EC3284D0CC51AD2B71D8B166605730FB441DB5C273CCF8A529B7FF181AE6 +91CC030765A44BC38605A6F393540B83B45D684359A42951CF9CC92F325422216E246E90 +67CDC824AD8FBDD8AB2DC88D12BD3DFD096D42D4064933284BC3191182B3E0E4245890FF +790C21FCA80029556889CB96CBABF4AF2741747FC3C70C1904AA06452D7357B774AA1F50 +FEFF85BF1290DECF9D9FB632F3093A8DD05BF98081D186CCEB6E0C427A88887E7EA653B0 +05DA96D4AE05B864998EE427260A64DFF6D510BD7ABEC2AF2FBF4A0E8019BB2114D3928E +5AB84E1E5AAAA6A16E5053E1122A329E9D8AA9D7F6890472EAD0311779AB25CDC3856190 +29603653B3BCCB283711DDFAFD3D95C5360CE263C082C0945BB5E6D252CCF547765BD32D +C2944943E8D1300688AE43BE73F5A6C6774517733DD2ECA406E492370265B3EDBF891505 +ABFABC35CD0EC252ABB617AB2CA0AB19FEB611193BCA97C63EF50E347978E07CD9CF1383 +4CD0308FA72AA585401109D6C502638F392398469DDF538B401FDC739457482B83B879D1 +97C578E568D00C58A1CB26CB5DDB5E21872773CD3EDF1AE14F68821821DF84E6505C6C40 +6AC08EBC985ED7008328071BC7426F64C3CF0E35F712906D6CAB524A38EFF1D65B991280 +F15E9E2F0180288556D584B54F26486C49A10113267660EE507C0B85294CD04B55B6F4EA +4D8763ED0DEDB4CC400F52BC1696F7B5FDB605388A7AFCD7D73790CB15A13FC498EAE4A3 +2DC1712C3F03795FFBF9E6925F569C05DF071B86B2ADB9F8727665A61DC4A212D53A9756 +3979F09AD79148A5BF6A41740A07BCB4A1A774A84868721241BC7628A28587A5A9F02FE7 +A067B75C618477B76EDB63B91B91E78BFACDE3237833DAFAF9C92E42AD8D1F8858C29232 +4C8E4E8FF5992E07D69634BAB5E9415AB0BCD60A8DF3C1B70868B9E0EB7DEFAB3AB5D6C8 +238B438432A63193C4AEC6F469EC8F439C4D54738FCD7E1FAC753EDABCCA12DA3403147B +F8E409AB5902D805B284BB643F9FB5C6E9E26D22CF3BE651A48D2518D6291B6BEF7060AE +3A843DB9279C8FD90C629ABDA7B3D3C0280994F88C631D2BB7DC7070BA10FE0FA06E9426 +421C24884E51F2A33D7A67C588ACC0630044C8BF2BD78F4DA42A98693D3E5AFFF031A1C1 +0510DE90D8D7BACDC8BC1AC2B9264B93796F03BA542F16C30BA766E5BD5D6D74A6C656EB +5BA491AE77705BF990431A7FDC62D8D5D75FF20967B2E09C63A19F45BA6C7F37E4E05CE0 +C774D40EDEAAE757067EEE6A9EB66D8457427D5F2B0EF8EA0A214CF59FA66135A7D2558E +F2DCAEC83DE962522E1416EE6BF5AAF32D6F0DE9251979D8EB525016C7AC98D774F38BE2 +51757BC0832C20ACB3BA67F711FA150FE60D86770CC85294F833012F74FC88C918FA369F +3793E7AAB3FEA504DD10E41D913978B51ABE170F898B670DA3C242B5947059D3B9CE810B +57FD7E316873262B745E8C34DE322C839E267C15EB139063C68EA00B0DA5C7F5AA8AA784 +42BDD3C20506E7D831868B10974B50F11BD6626ED860E18C3027A27E162B41E237E3A27A +DF9A5213220A605B65B45F9998F57C3CB7CF4764163313B9DD581B19FB8BBB23E6C1BD6D +013A0D4A8FFC3503CDFB5717C5E3CAA2411B2136AF7CD9DBCF34D95192C11D3452EB1722 +EFDEA7F752E5FE899E6D9CA05623545608A211CA8CD5195B2E27E2C4ED77F02124A92299 +49227F714B2A9BA808140C019B74AD6652D9C24EBC858FB5A0BF1C40D2EF2AFD32BCEFA0 +A88BCF080701E101700B72D840D8295B843AC806B8DA53051CDE128D06C7FAC0C270BD94 +DD0A9C1AC43826780A2604FFEB513B253E6F3EC4332D315A41526375D06F6C678568471B +3CE40AFD5A6C7BFDA0E491D1080A1F98883814C2068DA4E8A9CAB9798A8ACDAA8122C1D6 +EF21F21202DEABE47BF3002724A338D04DE2FACE2B3EAADD1F17EE1B23398CAE647C2CE2 +EF95FD521F1D17772A146BAAE659AB4277D4098724A79E7B7DE4A1E1B81C1468760E13C2 +313102391A088B1DABFA6B64A07466ABF4F051802F7C7DCA7DD255943F58E97D3446CE72 +5BD55C68E4663215F008C9CD8E354821DCA276B957BD61553149B9681736522BEBFBD7B9 +1E21397A51E1747503B1B0059FE63ABEFBDFFE4BE5AB446BB8599CB82AF0BF68649F93C4 +7B7F9CA63621AEE9AA7BC2E137103922D53CA8E7AC52A7A11A3AFC0D1BF96B8F2DEC1265 +A7D75F0C251CB0D917A81ED15B45963555C4D7536C4726322DFA412567ED954AC995828D +3D906484BE26809B1A22FBCC4903A85FEFEB46CF12FAFEDCD64024E008363DAC39A1B19C +6010004DF4D07C5D61BAE15FC0D18A86759F9147045B4562F5966C330EA3A4B7B5FCC3F0 +838645A39F3C693B6F26C323D87BC2C9455801ACD90579F234180CE3CB47ABF53E267E2B +88BCD7E001C8B34FED4BEBC895F7EF20C10F9EFC12A6C60EC5ADE8B36066C9DCB0CB046A +75F58B484BDD34332C3AC44F2151E147213FD4D5AB0D6FF404F2DBA43F2E6B8E9B33AB73 +0076F15A01964B74BE967AFEEFF15C7D0548B99820BBCC1AFE404DD183A933321FC8F506 +8743FFD57A6068C64A042E8D3673345562B7326981EDCB74DAB5C77AAC0C911FDE1F497A +5393BAB8AA71A10A5A6FA7A8C60E3E4DCA7068536F1D821E20888E3CF74CDFA20C2B5633 +8DCC1269F0B491A8206A9053CCADF1CEA836EC1F99AC130249BCCA92FACBB531BB96AA15 +95363B46A0EC7A89E7CD63B439B26DE70B2ED2C8D63AAE03009E39867DF9CDB39130BF18 +E59DD79DE81B6B08D8A3D2923D9771E7F0C495209BC7B44516FF66DC91FB021D016508B9 +B274BB63F4790E401EFA89449BC2458DF1C7F16BFFB6FDA12F9BF9AB722C941E9134022A +47DD6612CF60C70C0C112564F2B2017AFBB8520E6593891A1D8CAB39515AAB5DF6D5B21F +75A28C47A564FD91DBE51E78D900E016AEF72FB0E41F517A4C9799067E41DD2ECE4112EC +258FF19ED8041953A69173003EF29F653F2837003EA552A605E6627541AC752151E9F02C +D63EF3CA1DFD2E86C5A746308A17C13D345C4D2360BAE156CA1D2FB5336FB48E4D2A3DB9 +2C78C00162B164648CA123B1FFA8C2BCDF125864CCC81C7D5434791C0EFA898B959BBD3F +2BE8A7B9714DB32802A8770F520C9F38F74DB7DFEC1C9FAC2541EA7873389E8A5F838F4B +E837748B84692E6240EAB2E312C7BB15B9CC43B6D0BE65C19E5A6E02D906C96F947312B9 +AEFC64F7C7371A7ADAFF2909663DE491A992A75985A3A7FF484577F9AFC27D7C9AE03E9C +554CC57F0F2EF5FACFB03651E3CDED1D12E6C5025484C5360824B4E118DBF836AA79EBF2 +74BC0EDD493DC301D44445987F97D5B2F66994AD3AAA034D6B456F87D139FBCBD9600AD2 +DB39F15ED3936A692AD96138E5356DED79A03602FEB441FAD8FF7B8FB74D39657965BEEC +826AAFA2316AE89F190AF454A587F78C550C70D366ED322B2CE28EE1CE13A3C7228BE677 +78F94F1D6090644B417BFA6DF3741146EB985733328BA246962C896DAFA77EF17C6DCDF7 +1B5B6EA80B3D4D527911DD80A4B60F3B6D2B1EF47A976BE7295C62B2B54AA87274C72D4B +3B54DEE0D5351E4DA4BD39ACE18DEA08DDA3FDA197BACDCCF437A234D7085C531F2F86FE +EE11B07FCB4F1E27290405A1DE25D03A80F3B0B6B6D69EA31F9A20AEB0B0CB008D72D325 +4743827E01D09FE06471BC9A96C780E70E476B3714AB8AF8B064DFB31CC7081F8C2052D6 +DB2093FE3F4FDD61479B330AA42817C2FF538DBC6B33F018EED5C32984CFA9B25ED64E51 +99053D3A3BF58AFBE9BA8CC8509C97CE1CC39377179FF5251ECE2029F5D869799FB7B6A3 +F3A6F366B10A8B41A1C53C5A147F0A78D947BE4F966ABEE3434550864E1137DD4BDB1061 +3A860B13731E44C10E0F10C6D3FF35BC3BEAC9E5E5D0846017DDF49651335CA6351E7B4C +2CD49365D7E9F1CB695D7C31EE4C4D0256532E19C102BCB78E7802D944561F1DEB1CA290 +F5220B6834B8CF024BB48713A5397C411250784282CC412D0F131CCF5EFEE5D36223AB40 +B16496DC424E037D6C317F1DE4A75AACA81933F3C9923BF5CA709606D0E42EFCD73D1D51 +DC139966AFAC9A449D48BEC493967961FD58DFA0317FA1227B70E5D3B21F233407C8DBE8 +34A4D286150AC0C4B74383FD094BBB2DD4890536E383902AC98F4B40CD20C80578FCF8FE +DEE27084854A1EB6393B4A02F33283C9CC2112853D1FEBAC0D04B60491CCBAE55F421B68 +4766851E1E953F569C1866825E5938992B54E22F157E37A6EB7BB451424C0AE3EF8DC018 +C69006D6066D6804629081199D09DB7759277B70E376FC313D58B5B29C31FBD694D6D24A +FE99D04461993AA7285727B30A66D0A72284F02BEE5A05A8B214EDEC9F70D12168957998 +1CD3E48827F421F5E272B82585FF95CE9A83220DA0E419F7AC071DD4B2CB846E609078D1 +180EB3DD55B27711571CAD976B36316018FA8A5FE77F21C89A647943E6B1F15FF1AAA3E1 +83C1E6E2CB2E65D5F1AFF74DCFF2A9B97BE008C71976DA706C2C4248C626E647492AA97F +B7E604C961B6F85BFDB0A23DB554500BC98F3A42403FD4606197CDC1434F69BE41015FC7 +812392E4ED757DA9296B08A6833B4C2C142FB204718A932DCB45339F3220844F734224D2 +9FF407C8A7E5FE9FBEAC31928BB4BE244438E9D28C61DED76866C5988D92918280056BE2 +8193E92CCCB1E9DE7E33DD43E06719BBC0C2707BEB48F8E47D384E541A79AB801D57E736 +EC931602BECE65352C8F68F9F71892AA22E179F8CED4C79889D828870F54FBC49809F529 +E3B69B892EE5D3D37190CDD284517212A292BA9486F8A4B6A2C9F7FADB52D2289EFC524F +E9494316E1E97EE442A157CACE30F00817AF347858124A1D3764BD4611FD2E2F016C472A +ED3418EE94D79ADEE0F9084696AFB898793EDF5E3CAC7E211447F23AADAB3A85AB0E1145 +A8A0A531AF69E7F9A5D9B3502C95E81745AC6E76BF38F3F1E9FD4BB9BB7B0846FB549130 +B37D3A06886009C33C6EDCF0B9EC16F375720C43E70C8FA33C63BCB286B497BF17A9F8C7 +036F12FA49E23D51FC50B36743940EE2C83D4CD6B0EB01C6EB7589AF4DAC28D0DFFC7715 +47EDC33BC15846B35F3D5994041D0FC1CE2A3640309766BE097C90F28A40543CE012782C +0E3541D5804FAEC3E214AF017346078F366311FB5B597B2ED6AAFEDD38A1DFB620EF95B6 +1F8870B38D8496D69F669CCAB2588D2056A586455A7E98EAB80C0E636DB4819904C6CC06 +9BC78828F431158DC2B974B7F9591A22532670AEF239BAA4DE11E11AA48697F03D016623 +47703471A7A97D224EF79E6DF2BD574013C63CF0A12256D2FFBA02EF77EFE408230B58A2 +AD26376E168782499A387B7D637CEF997A9F3B6CDEA49E3B7883C8A89917E575F44DDE1D +CE4A967690CD1343977F5D21DA4D2959BBAE03D41F223FE48F2CD821A8A2DC78F381B5AE +D8D1563695C57177E7BE7838616A88CD32F923571982F6EF9C837CDADBFA6D94BA3D7580 +BF13B1FD25F99B0F24445F68B2B681132FE24F135052DAAD4AB37DAFEAB3ADCF593589E9 +66BA88E8D7C2FD660D820762B313136B5CFEDF898B63DAA630EA65B2339528AB5D016C2E +48A396FD55295A15621868986EBFE1A2ED6EAC75F2AB34D7042FE8F6DA72DB1066325DDB +45B1932DBF353140C98C713BA1FC2AD1CB51C933ED863E62ED85A6D49CB46F654FB93C29 +9A8CF0A559D00D3221EFDC604590C605D7AF408144CB7F1EECB6500D48F556047EF733D9 +45DB7738BC8F183A5B0141428B3E71389C3BB47EACA9C10DD630AF07C2BAF56FE56A4940 +FDAF030345E253F2B3F0802FF08C5D6951763A8BF6C6A9A4FD6FEDCF684A008D4AD3AB95 +1D0AB7F092329B4EEE272392D594F5838EB6E978DC243EF03A1D6E030C24760912BCA205 +B6D79BE9A17C7989A32E84F0F7A0A624D5F125CD43473F8B4768F29628A06E35BF319CD2 +4CA623220F0584F5967960ACE20352D90F2C98158604AF1701FA94BD06C98596895E4182 +0E0D04D19FFAEFD83031A44E8FC5ED7004B899AC09F3FACBD4C4671712C7A079F3D5B2BD +5E56CE0D61CE2FCA3D57DD0209496888C4F876403F482FCE43DBBB5C6596BD52FA4E8EE1 +5C9BB499CEBC3598BD10B1BF3DC4BBD0469A9828D40A7704BCB747B4430EB528B0CEAE4E +F9B50AC157FDD2E096BD3E687C94B9FFF47FFA72E0CB52F68186A1DE0B17CB10AA5CD3E4 +83BF8ED99C39B439BAFB1059519F651771A4809F5D804FBA996E4E192E2863D645229AA3 +9BB83B2AE883D1F2D8068E20CA9A7AC9B7E251F805C070083358B08ECF2EAB38125DF0D8 +5BC4FAF6D60F4747A517F590338662A71AA46EDF2FCA04DE57EA500EF37DD945597E9BC9 +6DB2F41857E7789A1AEBF07EA63223FDB3E9E37817E0B8B7A1AB74DC675F0D1F10AA3CC8 +D83DAFBA3795FA9BF031A678D9E66987E0ACDEA9F87F32390F8781DF652D3EE48B991153 +54CC9F13D0D0E964286EEF0132ADCF79EB08E959C115BCDF62C6D4CE26DFD8AA801ADA1A +12DABA7A7254F3ADE560571E90808C5668461865340FCA9912B6048B7A3F4F71BA0E8006 +089CD5A2A6902CCE1CABE07F2ACB4F2B288A9E927B7BC0003235562FA3F05FA645537878 +A68F85CB303A8E1440AA87DBC3ED6EB714DCBA11B4378D8FE03B8B9F43B40591175A0E7F +E61D525D505BCA0D961A21DE745EC042FCF9D2CF078AAF242F4B5E0DC84EEA48DB4BC93B +0CCFF28A43E9045A0DC941FC92A94E65606809B84309A3047013F3A7E913F876E7CB1A59 +5858298B1FD31EF5967BB21E2A3E210599D1E27DE00EBE95B231606849B6991E30E07C19 +C2335D535BF6E96E0E0829ACBEF50C473AF4EE0686281E3BD0CDFA478C914539C500552C +D50C202FE487A21E58ED810EC8B47E7288EEF55E4FAA06FBE8B9A47F5FDAE6523F7C6AB0 +E56CF21E0BD77DCA6C9F15DB3D3C57D1EA8333F7939CC5CFF77833A38BA88AE9F7B43208 +638D44E94AD2C8CFAC31BD7B9BBD0EF41E77620B69B5DC6CB27546F2E845DC7B0EAA7A8E +95E68C5EE90B517EB9B855F4A84233FB60E314A0F5ADF20CB104E2171BD9A986C7FECF90 +5A3000D89CB46CBAB658FD9B093D82FD85CA6E55ADCCCD1EF929699F75BD0B6A12F9D10C +199808909E346FA5AF46A0E7D6CA5C098B013E32A3D44E986DDE3B0B3B00C401C68E7979 +21D7290C9A9992369D0EECBFBBEAD2C1982EAC11AE9A63DE8480917896905D50D4040564 +63EA142EF18B6E10F30D3873A1079C0BFD3518FC1896809D086FF2799E508FFC9B2EF307 +A64B42164BAA832B4A33859D04DDA3BDA10235EA770565136198E4C32FE46EF93EC43E4E +6F405F52F204DC5CDD4D6C2BD86BE651DB6F00B1646F1D8EB6B23312E4F81CAA248932A5 +DA8EB11FAE449F0577C0946946402EAE55D9F87AE84B5C6B36AC6FB2AD176BEB7A945E79 +9EC3466DE97BF704785A7970BBEC543F618CD460ECC022134B891389EE46690800EEEEA0 +2F1E3CEE56D90CDFDCBA9B50CBB2CD1BA1E59AE27B1A7D72092759C113F3101FFB47882D +47A4DA143EBFD7B12026BDD9AE8B29FBE983A8AB7804CCFF6B0B5C00BD0E01674F2E788E +CF79905DFB7A8158BC9D580A9E41D52EC4F65819584F695A1A52239D7BA8102CAF070936 +2ACC6702FFB98E2A737023E5C9933EC292477FF7FEF248D7AFBBA24ED11B20D8F53F46FE +A6D2813A88463B3558D9C6D35A76BCA98AE1F0C2F98828095C46B246D93466B005E71C12 +7047989017811358DBB9DC486E8E2DCA038868B577605EE9FA02EC7806534CEA2615DFAC +1FDB36578B44995D8452E051B3B870F14B6A5F64A2BD638D57E8AF9204DDF163774BC6D4 +7E78F0F073DAC89984A0327FCC68669CC0B0742646FE3BAC3A51FB95CE4BD201555008BC +0B1CA181272EE0138E18C3D9BFF03DB8E41567D6515F2CAAC44C6A70BCB8208E3EF5CA85 +B25772406AA66BEE9F41E6F59B242E8EA8F9A1C7E6292103E9CDB7A33F17C93B7D63FB73 +8476D00ABC05BB0F44C2AC1BB6F018460746A79475483212E25F224E0D35B914FF0C7C91 +86E8949146C78A6AFC78638186C97BD992A14C0778C00D2436EFCC764723193CFD44BB16 +100FB391B0E453222F7DB4295AAB63B8B7CEF089BF25FEDFBD24AAF4B1BE5B9F54A5F05C +F656B06C3DDBB3CA240E997497AB05526F55D4F190F356BF5FA49A2AA1D1BF15348B7189 +5EC4EDA6EFF7FFDB6B56D72F7073F3A0656F0816ADC376E23083E4DDA751744830E7F570 +50A277E3D077D4BC40579F69E560E7FBC318DA6EF0D52FE8AC58DCE26BF92D9B28E1A7E9 +19CDDAEE2FC6E9B0FA79765B7E80BFA95F0099F99641310B1D2D6A41953E5C18CA53819F +ADA31A219CD4FE0BCAFFA0E9C1A2ECBF1F4A56182BBC03ABA9C7770F4296BB221F92276A +468ED543BBB30DC43A601E3C2AB25EBCAB4D50576973120670A4582F5BC9F46F24498448 +CF7DC9533AD817B2C83DE68433610C800895375683A98B460EB458AF0AA796F230C48098 +EB03687C31AC9248C7F9A6DB45E46C40879F4D1D687CC80C7DFB1E7EDCE56589876D8BAF +1DBA950A34C61C1EC54BD4F9B2F784FA0D4C4F2F20D355C8682276B5469F8E70901B8F66 +90E65DA08572BAFBB0C25D7F1DFD6CFD77F33F2CE628A0AF672D058F60A9EF77A1A01386 +2828907C795DC2019EC5BB54EA59C3D5CEAC356B679E539B14893F72FEB11513BE098F16 +E49B841D38241CCD38DF88E6BFD2ECAB681965F5ED6AF5EE6C4DAB0D63494C1100E85B58 +A22ACC7D705FA4CD3D988EC6EE1CE5C343F656CB5E900E886B1190EDC652F69255926C51 +7E3946838E01C890359754F67330598EEADC13E243BC861DDE1638855138F79CF5A4D287 +6C1AC5DD64949564C3848D5F9F07CC178673F091DA139EDFD7DD51DC05B9B10A645030D0 +E44B020B16219F76637AEC4437FC31EDA724A372770407EED6F0BCC753346632A7A972D1 +37AA74E187BCF32B6D24BA51E79881979F0B1355C3481037D1A80513E253DF67E9E53D41 +A6D109712CD492E6D6B96EEE517ED8CC666F1637B7251DC7659A10E97D34026EDA7071F0 +2B668E2C35BE0606611F7DBF5F9A2E65215460E2C8AAD9AC8D5C5B6B3F3A30A6F8F173D4 +066D87CBD0182C37D1E6F3F274F08B35C33953D2E5F209F7B72D7E02FE871A586BBCA45B +F130BB4B307BD44BDCD206EC6E0B2CCA8B0D50AAFA93103DE6E297B916F0A0032B3AB722 +513F032B951257F00BDC06DD22842B6BAFEBB7E65B7F1A066A275398218AB9B7905CD641 +14D06661D28949F926251FC3803E09A31161519C4F6E31ADD17027C02FDAE40775546678 +FEF2BD8C4E939EBA95C477A54DBB0753A069982046887E433BC230428F88C62298303130 +52570659EA5479BC05F91D4F93D4E3384845ED76D662DD61FDF9C8D2BA465F5C2E25A152 +69D3D0CF2AA455E0279A55A09D9054D8A3028840560398C4782544A81EF027BCE3E10E09 +A74533A3FFB75F6B043152D567A3ACBC5D6DD8DB4AFB688AD2DAA4532AD33F3AC0B13E99 +2E90CDB556A3C03C676AE01D746ADDDB2A28B5B09D793B921716DBB65CF3842F659A458A +4C2D64D5E14E7CF4ED65BA384C051FD0F055675023A480B05971E981E54B9944CBEF4C5D +7B218CBF1BED120F6510075B984626A61BA05AD4E330EBE1AD2D3A3EA510CA04B792AFD9 +9BC049A0AB23E379BAC557DC8EE63B6E1429C59136CE67F7AD3488741D66D5C414B7B0BB +4031109228B9967C6F3626856B3861EF6CF6CB1055AF7C89C57608DF2E2318AE5F4C86FA +19BD45ED6A259EEEA7A40C6C59E20F54A532830968CE6591150F42E7A1578D0DD7481C14 +64FA63659CC5983AE496E00155F113AF128148ED6C95055E1AC8049B29DBC03C1ABA59AC +82F39EA6F219467853A6FA03CBF2EF3C20C99D54D1B8040FCEB9700301A083F979A4AB5A +5D73F80C79357928F76D4B31382636781A0A10B01AB2F0D6DC65B9D4AD89FA1D4B77BD49 +018389286FEB19B25AA56B231B0A4443BDB65FF304CCABF75F758E16087D601E45871A75 +50E413B5DAD683D76B504380300FDCF919859C248D0328EC9C754F4362E6BD51489289A0 +E65DEA7EAC020B4932C610B0F61D293E6EFA4B04B29D00E1339695D13CA4C5746185EA87 +B8A10F3810E47A7D9A0467E7A87252F65A06CFDCF4932B2B6797050DF159B543DC0BDCAA +00298E3299664968155404F6F12BEF77996B8B1617CCE03A49756180C25CF0AE882694A4 +5BF4FEA1B25C6F1A3E5A38A1FDF9BC26D3DA42643F1A3974C071EA311454DFAAD2310102 +9EBC93B9AC2759B6C5B7AA38B577CF9ABC8AD9F0B8B2EE7E2666290B6DAD1645684235E5 +000390D4ED1DB28806E023569425B616FFBADC52567A9D7F2E0698FC0CEF5F32F5A5B300 +C4C791D860CC4F44EB2DD198BEF1F1AFE8DD1AEE5F730F34A4A90D1F934352B98409054C +97DE8AC9B55DAA064BBB0C7B3DB73E59F0B348FB6FDA640A61C1B0728F7EB999DFA15D51 +B3291171ED3DCD434D7A891E6E9CB56B83741622B2C8B0A46011E0081315B027BEA6A2DC +334818AED142A03FBE4369ACA41B51C299C27AE7A0CA7A90CC30D313F39871AA154EBDA2 +1F829D0CFD3B61CDD5E6E005F9A68B378423D35D0ACC142E05D32B2D79EC3A65FFAEDD5E +08B74741557588BE0CEAB0559DC350DB781AFF51E5B47B481BA0D6AAED483CA7CDE1A191 +63597C4CA33E2833CF5E497B8256636DA9E351AD5BA527F7163782603A3399D246B6F889 +A9669C65011F3EDA6C8DAF6483D1058413391CDD6C8C933787829417C2953C13B4C19D3B +934B65BC4F3F35113255EA6EBFC9D68742940E22B0A7FB030235AC3764CDDCF3BE44F332 +6439BB8CEEF586B05F75197E8BA439606A05863058B946824D669171F6540E96E50F7118 +72490CF038DE0FFCF77F8B4CD62BE3C0D261EDD0C055A7711453336F2F10B33CB033C718 +0C83B325BFCCB009B9B868055ECE8EFCA245BD11DDA46925F6D23D74F25A1C3045988089 +2743B8A8BBA390FE3A8AB7589B93012987A4DCBF355846E3D6CA3F6A1F4DA3A222A1468C +414DEB6FD64F8B6EBDF77956ACAF0BF18A5942A58A8210A5ED38A5C1863FEA43D727B839 +5B693453D3C74F046AAF4265E8403D8DE156B97EECD7EF5926EFD994C0A4E0208049EB10 +1E93D72FA81DE381E4DB3AF68B1C160DAB992ED536E9D66239C6DB6CF02CF631D69C028A +E49BF1F9007A583437D5D23EF0B0A4FAE932239144B13040A127A5C1E85E2E9D8D872B12 +A475F0F9DE5D43B8CB84C7B53508414423467F57A2FBA7A6ED11333038A9160A2B2870BE +C94C2AE22F8081CB442C3E81D0A898F2126646A87FF22F724959309470047E5D857F0164 +951A4BB081E9919861FE857F44B1152BE830D12B1A7166A79AC248BB5E9FF0B02475A296 +EFF483110FB267F8D57B41E566BF6C2BFAD87CDFFB23767FE7358B7160571D84F9AD3421 +1EA4745A985FDA62BFA5187B5EFDF96B95684C4EB757751530ADD08AAA7A2C1FD614E0C7 +17C662FC121F479B24E782B9CDC6EB99AF6A5173CC479D97886C2DB84C0581DB7C55365F +B22AAAC55B72324AF06FE6C2EAE2732AF590C66559BCB90BD45A05E88ADB13A302405D06 +7015A8DB536D33CDA9BC4D88DDA04FFF81DBCF32C504DC6EAD7B7A60FC3EB4B1F1111AB4 +84DA7B61149AA37B3427A888465112B632F04444C0BEBE761F0C7288FE166A775E5F0F95 +A8753CD4D9B5FB00C85443D244A31C0789E8301861BE71E85661BB2319FA433CC2F93D6C +357C6DE7405932455ABB431A0B97852B49CA4EB8F7416D930B7578AF03C687BAB8867E6C +B8CEA05AF4FD47888E6BD8D9FDE94057843CD89F06BB6F98B047B1B666773ABA3F81A0C9 +612928C44AFE7A7A06E03C32ECDD462380C29C8D55E4A745E3FC492B94EE785C7B6F666C +60E9115F78455403289B72C837DCE410CEF6A54EEAD538D16E51C3EED61C6585A0D799B8 +DF20E2E213B8239CFA5815B1549C042D224FD725CBBD336125362429C74121889C7F6B1B +78E5250911DEA0A03AF547AF4474003A3C8800F8C0A7F031B62794117389F11F22C18380 +EA1477DE03451CEF9C2A59014A3781D6666132F9BC783DDA9C64FD713F9102BE76A7F4D3 +6623F3E1A158BB2B8BD8DF66DD67B8272571833C1BCA0671AF2E6B132A47EA54E68BD0D8 +417292F00B3334E2F10FC2B7E19A7A6C29B69E792C440925AAD9732174A9FE20B54DF6C3 +CA8A69AF0A5D7E22BC83242B1AEB4FE9761162C3D017614818523CA8C552927D1EA4BA24 +E1AB985B0D7FAABB2C62C855AE39D4941E3ABD9C6B3308AFD3FCDD5C95770EFC6622E278 +1FFDFA4F77DCD91470C5C3580F5C87AEFEAB96669ED1CB156D4E27BC412798B0A7841222 +746E72ECECA85221C0F9942EECB633EFC1FD80A4A9CF5F202851CF5449E51E0393FA8D8A +140DC33E179E1940954DD67CE868285F0D41B8F4806F5B8AC15F9B7137C9152B3B1127CD +E36A4E093B7B0D4229452E2B3AD172744F5D2C94AD6F3308CA771591A3BD8C6E8512C6CA +673639397151906D91F16193EE6B83C117A59A73D00C0DBB450BC9390C8D85DB12A76723 +E28F6FD6BA3CA4A3DED88D312FED2D6FEA585BCCDAF3A9F80C1E0A72EEADA085BAC7A157 +4ACA255F3A25C12B549C9BE70183B37E0181D381C0016CEDA2AAB5FBA57D889A511D7643 +B8A75A751419BCE389B2BB417F46DB83CC7C463C5E980065D79DEAC406ED8151DF7173D1 +A6F2AD7F4AE6216B31DEBBFBC4A792FD969C1D502F6E2D28AF99A43C6B701F7A60795CD5 +8356BBF4AA9B287F823BE513B7C9AED04EA698902AF195920ED07F8E6E03C3D374833A01 +23BF7171B220A1A4EE325A9AD2CE0CB1A551513182E9F7ACA7A1BC055D94FF1B6B7EF3A2 +E7BFB1F2B6753993C8BB2F75CE554AE388DD8A31A02971957DDD221DE666B00BF62E5770 +6A61B138CA0732F1C22F92BA76BB1328DAE09FBBA4C72158D8CF57BEDEE27ECF9047511A +508232E11AF0E5188A8BC760F2DACE687AAF025F257BED126FA907D53AB770810B2FBB0C +D3C13B1AA50490CFC64F9950C028E67471E75484462AAF420380D36F11C43BC5BC6333CD +5E578ADDEAD3E0960D8AD3BD8A50C601D97355A8BD9E108036D128425A4537109E36E99B +EB7DCD7E000C0B38269B1E720AF06D38472F36A068A673D7BDD021CAD68464783B1C1B10 +0144536BBEE4491FCA00C10803EEBB917EA2891D76A8147E167274E54EE7ECC5CB907A8B +10DE7C39BE8C0F5830E322AEE3372837ADAE006ECA2322E31D244CDF25BB0433936F0DBA +DA9291307894C233E75AEDBFACCFA56FDA2BC113E3EC07EBB78AED6105787F659171130E +1737277A2EE16F611B672F0E14C3DABEA6B0CAE236880AD18CF4693508BC3F341888DC58 +6CFA1537D42CBC59933B43C15E6E49EBC52DB2039CC6B20C435E60C6C9E79A7E5DCC1C60 +D6BD296168B086171495CB9121E3612F6776EF0D0489ABF64F1074E674EDD9C442E85E77 +281CDFF526D81A33A2A871CF59A563B4F917DC5CE132EBEA5631D70E286C43B33425C8C2 +EFE376ED8D7EFEFF28129E8FF4B21401BD49D234ABA3822C1DA107E98F9BBA5EAF62D872 +A73A221033872B09191F9BD206BCD750A40A86EC34B51C430BFB3E5C58FCA417C287372B +B7589278B64CFFBE8BFAF5DA2634E39BFA0A2F70827295AA295D100B273D358F6B23B897 +1509E394FDDFF4B3A9639F31BBBA924CF3B8BB38272FAA67F3D879C4D2B3F5594BD7889F +FBFB5F3BA71A4C6DCFEA8F89E4E72A6363910135FA20209A4FB821395360FDA3C3D5F4BC +9EB8A05AAD50C9A2F93979445417314054A9BEE26ACC6FC8E9347A8A08592752FBF34701 +1D39CC64F0E5DE7F095CC430473ED35756DFE3BD8FB538B3C4293278B0D9D0EBFEAEB463 +F8B452819CDB7F02E2B25D3195EC23ECD1AE512FF0A3F6420B7D0093F8FDB1E5E449ED31 +63EB906A0E2B1DA234936391E5BE6969326A6FFAC1F121FC02F147CF3595CD44219E7F1B +3AE4654D2B20606532F720D3053FC095701BFC88FB86C5651E6C122F91FA6B639CB20691 +3973EFF63FFEBF9F11E96DC2E17936DE26804D1657C7B49A0CC1F6A3FE083BCA69D8DE2E +CD049C0DA7A4F01E39B87D71147B0DBC87D43A33843DA1A0124701807B55B1C42C2DBAE6 +DD5F3B7CD30C6B73280A7E10BA888373604D9AB9EB37E44F3BC27829B034727A026F460E +95575E3DA95ADE99CD927CC098864CFAC42158F28D1216EB84B9E907E0CCDF510E3A68D9 +75E015799D4E88EA475AD5BF3951B6BCE49E221EC8E9F19DCD87ECD4B4AE2DB1AC7651B3 +2AC67F7C07D952F1288AE4B2771CDF99A4AC3C20302874C1FE9803EA56FF3E9B9923C2E2 +BCDBC27C8AA95A0BF81E3AE12841D203C1D162E657E1F58FD8B29490E27C6B093032A037 +70E4F00532E725B68A131A82F39EADCFE3C8C8DF2F8F167B87CA52D75930433606BBC7E2 +CDC5C3F4EF0B864278E81EBA342571E34A9839D18E151DBEF57650D730FE0C88EDBCD6AF +E59887C36B815F8C8873F031A37C130652F08AA643FE5224F7D10E4572077625FF1AE834 +91DDC4844258642C74E50AB3D145CDF5D97E7D6BC3191DA7792323E6E740BA304D891904 +6609C1859BA56250A09E8361F24E4269178F9D9C412FAC499E553D8F1E8C720825EF20FB +F2980E3F54758A46F17FD68B943E8D7B0539D377F4E9F9852D52B8F07F0B3DE9F077DAF7 +61F247EFFDEFE9E44B4453991126F5CF597CF80FD1E7E423A4E902E37378E697285D2E1F +3A49B4002CBC0D068FB6B83A2B01E28FB9E9109FFC1A2E269F9E65BD97A54D4D40278E25 +D790298DEB697EA62B3DDEDE067EBCAB98EA9561D6DB09FA653401DFBA288D45B4BFC07E +E45F473D683045A9E0BFF012ECC8035855EC71BA5E69FF4A1674529EFE9F6873F05581E9 +72FBAE6729DEC43361AAD7709B0BCEF40B7FB9127D8B0ADCF20E5E0AFD3C23846CB100A7 +015CC5A0102A61AA0C7170ADDD28D31EE741CF0224F4CB1FB77A909ED3146FB0EA014CAD +2460427CC8043A63E533343D899E7BB79515BE015B4F0A0A84FF532AB32A17ED69992342 +433A2AF722462BCE63D5CB8DD6BAFFCE222004D316A19F8FAA85E1A3A8D49A6C0E31A43C +12DB14C4E009CFC704122871368775DBADFB1DC28E101B77BBEB4B2EC89AAAAF192779FE +BA4258C131140CBC2D308AA0E4DC70B21581E32530A72A37BA5B449FBCE35FA12473B514 +FBD39EF48BA980EAE768BD9DD038674CFD2945EB1B7C26DF5861FEFA144F35EF9066A2A8 +B021696DDEE4C51C0D1EE51C034A80F44FAE98997482ADF798D5DAD3236CB971868C0555 +4C34C08AA81585AF2E52561E08CE921531F57ED0A5B7998A800F45437BB30D0B97801C11 +1D1219BD805EA3CD20A673C633046C11A1BF620C15B2FDAAB1188E248030FA86961FE4EE +4D46BA5C6E416F4ADD279409296CF68ECFC864962A865A6B5FDF871C372266EA2E45EEFE +866809B9A372E8BE491EDD77CEA7D04C976CFE8BDA8E7DFD7D6D8319B8D129AF731530D1 +2F1D7AF23C65F5C979DBF2C4CBB3EEBBEAFC0300B9991F4042DF183622F332EF400474C6 +48F81372A4A2FFCE91E9465CF30361BCB17BA3A43F4C0E3F473886947B12C7DC3440B9BF +033BDA2A7C0BCBDE497B2D2F4E620B0FAE78A4557BA351C50A92FAB0BC9C913B3FCDA854 +5A57435ED3E13CAE93160A71A97B62E4C1C541CAE40478FD7492237B4DC3A21D7B4377AE +60B99325598A77741337BCDCCF82D4405AB60E4AC5B5B1678FFEDB8230C2F5C98B8CDC10 +06A08413BC892374660153D85C5672AA8E807031EE817E75803989770E3B246FB50B8989 +F7C0E7B3BC3F2343EB1F3E1861D86429A431CD31FD29BC92366EB9C095B252F3EBA263C8 +36ED21A6758406172FC87FB6DC0BF89DD5D86015B1834F299A33F7303EEA1719F995F68F +BEBA02CE3CEEEA903B4C3118835091755B17EDC4CED3EBD0815FF54CCBAE600779E92AEC +4617A8F3F06661FC9D3CD4FBFC6BA6F298DB2AD977F8531812D794C276F5D8253F42FA26 +E134E2B152ADB82956F8B7108E17B3F05557802892717FE5D760B91C9EC3F8BA661D304B +DF912BF1B6FD0D0CE311C60F587D449A5CF96FDBA9518D00ACB61C03E33FCBC17BB69102 +8AC4ECF781363517A33708D7B418F897F06BE5052A711F03A3EFD1F632A790A8A9213400 +EAFF3B788465F58372200FC5AAFDFA4F086162BCB70482DC8E5B4ADE0A726AEF0B731688 +88A768C31E0ED47E6A5F09BDFA279639BF833443041EB6CC1FF2C99AE6C28D7D2F99ED72 +5D07964D1B28391E72615B4259668A5E14B463684B2C3D01627693404E316E29DB5D843C +E4014167D8A5E4BC1A6A021D2655F4A9B8F9EE81F2B38D526E74B4D4F8D924430C6BE929 +63A81D92837A0D8DF695A5F9A4F2E07F1710F43E7AE74957038A318362B7C4F0BC7DCD52 +0F12C4C67C4C2E1FC0843CB12BE638E409A463739F94872640063214A6DCA97F6C68DB19 +5BE088684363A1A0D2C78041922BD5AB8CFC5ED5578CDAEDFA883F8024B5EAA07307A2D8 +884C840AA5FF675ABB045125361419F45E28832CFC595972DC85FA0D009E3296EC144905 +E48E68F3D5F8B2B742D29EA98401F3020B8EA06217E469F9A5B9F90D5833CDC5DE353BD5 +8107E8E08BAB34367762A93F7170EA4C93E655C986691A424462D1A669CA9D71191FE2D8 +822C62D12E4DA8075158A7E06A67E21F444127D525F0CADAE3536EC107EAC0333B2E9CBF +AA76FBB102EAA3471C26A80A4379B163DA2F0DC4F896882CB46480B5ECAC48FD7CFB5A4A +88A26CC9D0457B6C19F91C13E5CEA4FDED152F65764489FF84BACAD3B6B736631CB518DC +CA40AFF8A293DFCB48F40D501E020950F8AECB7EAF64B1D2BF5E9AFFD3A1395097501AC9 +FD17A9EC2210584E20DF4B078600C60158B27829FC6ABA4327D46031138C26DC165098B7 +53B24A27E75AFF7D9A3E9C1BC44F13224874D8EDB5761FF80D230C10EFE409FFE4AB1C38 +7617D386EC9A9AC112DBEFE5119C99671B69633CC0C352610D902CA2823279FCDE7ACF40 +330171DED7DA74DCDBFE81E6ECADBE5D22AC3E4EE9583EC422AC8C70DF14803C32F2AA69 +5EE9C2A854F2AF2A0C57BB4B56C9714D9780024724A787F4E8ACF0FAED49C9A4E9D7B13C +E537C6EB610A88826007071B98E06F130DC41CAD869EB0A577F7696952E9E88F5BC1D0CA +A33EB03906471930BAC75D29F66A6CFB0FF77A72B80476561217E9C731BAFB0FADF9B5F6 +A7ECA4532FA9A09F827415CA4238C4038FDEC4E4E67484DBF77A1E1C56405C469C5EB228 +41049910021A315C79DBA0488CD3FECF51ED5FEB4BB08C3A6C9CACAABA91C00817922C11 +0B5C59B3EA10B7D3CFC79635BB06E12A34DA6E3A73736FF61A89AD54BFBC59B66AB4ED86 +97277DC7FE339839A8904766303A34A1E1E5D0DF572A136C478A966C8889A62AAD9C4BBF +5721C4D53074E9B20F2E9CCAE6C9A9B84642D380CFF40296C5BE0759B0E2B6C9A2BBDAA0 +4E01B247E88EED58842CA0B5AEDF04ABFF076706B3AB1EA055D3AB2C02B852B7F788D808 +579E53C3892B5EA3364E4FB010643F8A8E018A1A7BF897230DBFD9CD2C91FADD0E2AE429 +E984127DAAA78E407D04435A54BF31C8253D77AA15DEC409B494F9F83E6FE69AC63E3FD0 +6C5465CEFA7965B9645F3CBF767950BC1633811D3AAAB6913157F51FF41735E875D4FB72 +2F57430C35292D08874E520E0CBDE32175A6926DD91A2141E5066B2655B47A840932DA3D +149C7769E21C09938CDA95CCD0DC457E9CDAAFE616419632C2DAC34CC2C12910421CFC33 +987A7F7B7F23A5A398BEA34079869355F5F8BBE7CAB708BCE295CAFE9B105F9E4EB64F03 +14AB463CA7A4D22DE477A957DF6E8F3FB155EBA8E05DEB37E24B36E12B802A739E0EA4C5 +0C46CCC707364BD0B0EA19536DB8DAC6DBD0C132720266A661415AA0C0F6725ADFEA21D5 +9BC89D08BDAEB0E3E6057B0FD050E25DB512ED5C50B5F21F2D26AA0FC23491790A833F9A +3EE60F7CD2A0D704B42DBA423AAEADE54B1737BB6146855AE1465D4428F06A5FB376B2C4 +62D6ABFF17CEFB1C3745214500CDDF7F875BE0BA0C42092F047FD1A0A0394F84FFA21656 +104306797696B65A79ABC35D73913E5996109FC6C195FBA18919CE0AD8F40FB5C1429AFE +7265EDA830245C2621D3FF063643AA64075B8FF8D09F8EFFC53D9C0AE0F4FA62F064BAD5 +48672F409EEF263081EA86BF4AE5E776F33E5E8C5AEF92BE13DAC7C5FE952B0AC4484011 +3E45638132FFA8A2A37CD5F6B8F4FA540E373923126E670AF3C20BDA69C97D3C57763990 +8A42E312C0D9AC259044856D1467761E2555702C3A62197864E0D271F3310F8216A8DF1E +6ADDCC4377641CE43EA295A45ADA91510FC22E751972AC3BC5657253A73814099B0DCD19 +E31A304CC23E562AB244DF2C84A5939CE21E158ED8EBC0FB77B31B1F3D131231E4AD7008 +705BCB683BB808702FE3C76CB2448DDAB360ED852268046366400A45E0C9903253713B0F +912961EC2F227EA3643BC1354C1434F48DF4A77B5AB88E84CE314A3CAFFD29CFD6804D02 +A496D5C6ACA9B60CBF0F5036073700C8BE7CD0AA49509803384333E27B539B66490A6159 +8D39F00E045413FFA485CA1519F2643A90760367EEB3F93313130B5F2CDF1A3C5A4FB1EB +AF15485C332299955D327AAC0E72E9B8C986AD2B63C2ADBE8B9D24A45C9937DB0ED5F4F7 +A325AC8E0997BF00F1BAD06B547BDFEFDB57F0783CF92711741C09FFD2DF6076C5823AB0 +40AEA040760D45893EFEB6FFD825E072D46F666DEDF86BDA7071B388F5979EC0040DD527 +BB4EBEA0FDF7C15F07DA8E9704828B2E08118EA73354ABCE6952ECCC2AB2083C7AF43332 +53BCD45632C3EF54EDBBB9FB77AEAC262000BC3C2144EE39ADBC3258AC384A431ACECA1E +DCA2ED2C467ACC5744D9B9FFDEF8E318F88F23A6E515823CB8CEF5D0440ECEEB11964427 +7D8DCADA2CDA943DB7C3621881EFA1C9787E6234ADF70397EF27AE8493DBB3C57882B402 +3BFB2E0E6F87265C132EF92650F232A99A4CEA57230880A096A21AE24EEF3F5D3878EA20 +8C6D466AEBEF5268B6C3F4B0EEF38F8A7E8FE9B0945C6F8F12669F8D7D867DC16FDF6F6F +98C026A204D90FA6DC68C32D29ACC5EDA26B8BCDE33AEF7B36176AD80F066991D6A93462 +E6F19AC3313E62A51867C0C63418F149C6EC0BBE1FA97A04C9A83D140B006420C007677F +921E960CA1B99B789F5884F9465F2B17544BD6225F6ECE24CD8CD341EC3CCB1365DED6DD +7BE1567A3EA659285BE8723EDAF38ADA224EB26345A8177C6D37A850B3E3808C0E06444E +85A6B5FDF8CBB71419DDC46FF1D804836A246D1BAF6CF64FCB65EE2FE98658AF6512F1F0 +29AEE5BD69014F7401C2235EC77CCC7AA32BDAD0AB527837CC20E804189EA54BAA92AAF5 +F5C720222D97E8BAA761E10B2F38593FED26B4B90EE78B943B1CD797BD6B4505CB7042C7 +167DA279C7C5921610874BC7A4A89644B5ECB8EB1C60F5B4FDC94C31BEBFAA09BFA98F59 +65D748AC946CEC09A80BD65D8E26E4036313C59E9A6887BC9B101B0EA2710B5D6876E933 +5F976159BA8F7CD991CB986FB8C46AD84F83D94ECE47EA1E4AABB26914A1C68069D5AA3B +22FD5CCCFA6F01BE2741A022BB4424F111F3298D32D5FB6C8361D26AD52917C1D5922E6B +ADA1B460A4AFE2047DC59FEB797004ED2E3FAA438B6C3ED8F95EBA8DDFFE912DF23DCB82 +83E53D98962865B85C6F9E510C61A02CB1DCF235F2D127283AA797F3E448544AC4115994 +7D147F085C1989142973BEC2CB22F50ECBC075B5E6C28FE80BD774B6032A38EDA0FB171F +9ED9D1B7F02E236F115EEFFC2BAD22A92E867C25FD44E3685AA4E40621B5887AC894C27D +4F59C1A6273C073AE15714AC88469DB7644599210D70B67FF2B34D1F439D2A9FFAA40DF2 +3EBDF3CE41BCBF323811F35C697BD63D3837F1E418B68DAE87603C6C13ED142F1DF5B14F +7EB40971D1D4179461D5C8E133B085D943FEEA3F4D0A2EE7FE3EC5C2BB89A558EF8D718A +4B849A0CCA8F04A59DF3584678956E0E6CE221F35422BC1835A85F28A99EAF115467F8CB +3D2F4BA8DA5255AC04B3AE2DDD6C0B2D2C4C96A945A83C7B29CE7860D1B13AE4EDC89D70 +15912DCDDE5BEABE67ECFA4AAC3B392FFCD7847E44B237D508A6BA8A63AA05610A6BE4C4 +68EF8BD97636A05F1FC0FA11FAC06989B0DD2AC64B643070486B3835ECD8E825DC5EC7C3 +4640EB2C74CC04ED4C112B02AE52E0FB412228A7DE23450E28E55AEB3AE5333D49CB9B67 +674A946D64B715F4FECBE7B42D69C8A6A8DE369F2D74DDBFB6326A19586F672D86FC920E +A54DA73A38C6DE95544D8B99B887A8787C57E8785B0D8F8D6CBAD99ED09C17B4D5EC6A9D +13D12F56386F43431B7ABD2792B3EBA9A6626FA51F11CC8818831F9F6E933B28E7E10157 +A05B4A670386E3DD612BFB521775DEF90E71E39E923C8BBA6547E22C4D3C9A8F6B246A74 +420726947F93AB095F8368280314AA669692F3593F6AC46298EB74A2E3F48ABB6A912CF9 +D63537B7C2DA53D6AF26C4881F9A9DE4F0E36CA948B649530490CA630DD9D4A50D5073CE +2AE06EA6CEDB2EC3EBA3D214A6DCBEC29024A35B297BC766D92CDC4FAD6B92F06385973D +BD3F4133542730861DA609EB8CE75C5C585CC86117CC5281CB37C56158214D0FBE72FB4E +0B08AC6D1DF7B9B625E2197151EF3BD045CA06657052521F06CA3BC6DD36CC8D74760A68 +60FAF2BF523BC8BEB1DF926AE62CC477AC33B3E5FFA7145C945838CA3EE71B7CC7A2D7F0 +EEE3DF5FD98F75A7B0C68DA2C9A36A2D0EE2794FD4A4C0F735883AA10CAAF1E9AC4AF521 +8352BE96A1053BAF1AB8457CE982B510D03D5FE61C77F0913A9AA11A73F1E84D22B8B2CF +11DF6DCBD098458836FCAC60DE50264F7CB1E22D14D91FDB2BD2FA86206CA536C4EB09FE +ED2FB4E2BEDE41BBF0F3979502DD878650A4A526FF25EFB696FEE4763EE47AD1468F70B2 +9D8C4CA6779FF7604C5A9310AAC0C808D8716687F08C488174EF54D6D90325BF35C71F12 +E2D6B95DB9F7EA75E94499DA82767547BAA31A19985389544C440D20B1C333D80F8856D6 +211B1E8140EDC207AF725D355D3D545D9907275ACB15AC2AD5DD61D4A6C7821BEE3181D9 +04720A1EE2F23AF165CB03D53724399C78A2C7C3441183A62976CE884673349075CC87FF +2FEAAD89EEC64B110252A14705516837D79715213F31A5D672D8EF33E8095F8CD005C885 +06E25C7A0F3011356D27BA36381C513BA7E626665392F4FA1C9D390ADC83277DD6761208 +053FAC2B0FEBAADF35BDB1CFF2BFB7E5781FC1AD6D1D97F7C9BBA1273CACD4C9D6EB6EDF +01286A851DE05E05426D2F7A2B3BE6F6F464AA5C65BBDEF3FD588EBDA0241CD74209A229 +BE1CC00D1C3CF3539B003FF32CFF8D633408FF7DB334633D78FAF8C6FC3399EBD2B23F6B +B449E26CAEE9A1C375CEEF3E7C32EF8108F74E90B42D57C923243A72ABA97A24605792F1 +3ADE5511C3BD03EA08F8D9B0CC8DBAB4B82CFD4CA598E8E2B419BEF9F87668420A73995B +759B54D232865FEEC983ADB4D1BC7CC63B429DEB9A1C25A1059023ADF1DBBE8E90181D93 +05BBB8D97B81100F92D7D2B432793BF4272A48792E94C86A18B7B0AAC48B4470EC2D9848 +BEE7C36A931EFBD04A1795613953A23746F01B7134D27D477F9FE5746980A28C0AA12A7C +7EC6F604C77E0BCF332C73018D307D8684E328E0347F9B4377A412E2166F5DD3D870DD41 +649C5D823934CD5110CF9A2C362BF60710F16A8576A2271B2C07575D9135943FBB2F2E77 +CD77FB3B3AB1E36868165484DA7C7835D3E7875CA1E0752DFE8F41EAEA8B089D14B70E47 +BAF4146C1E17D4E62B0CAC5EE135470C9A789FA064B89B1505817EADDAA9D2B95385D7D9 +26CF03A88DFEF1AD1497417D41EF3A4F0D992CB2A443E8BA9262F36B6506E4DB82C3EE7F +86F50EFBFB267FA7BAE727DF51F280A1A23D83B2F38B6BD8DDFF8C9CDAC9A4E6EEB049F7 +FC63527A90F3DF9F7B8E4BEEDD3441E93A9EB160FA87C1CE6A58E1B56E789E1D7CC09808 +9A525B5E251B8CB18C502ED0950D15D40B84DD734990CB69D0DCC2AE393AF9E70DFFC131 +A8DF0317590A4424421E8040B03437C7AEA31AAE1CEA92C463E0364C42459F89E53E68ED +C9B8FC5E40C65841B481C7ACFD804F8E21C28DA99D209B7A67C4BBF200C431D9ACF61F42 +00A2053F4C949A54172423C95B37402C2373E9674C1A8FDE5EF379971D712D40D59E3D75 +1DFF3E14F46272D5DCD91C53341F552DC96753562A5D1ADE914AB1CC8E3FFD917E4EC7C7 +7659077BF1FB197B1C38CE4360C2BF9F7608404D3DCF42844BF986A44629A11A233C49DF +ECD6500C79784633A44E3DAEF69CB191D7875EB8C33CE1CC229ABFDBD6315F3AFAC95C33 +70CD89543C31B14CE88035143C774040DEB3CB7053DFEB8FB88C81B199F67BBEFC4D22C1 +9017D61180F5DBE8A7B4948D5086DFF53C1DDCAACACA1D419B59B2ABC948B60299D31ABA +70AB5D55CFE44453973A6D3B9C9C5E1F13AD54206F98112114D0709D9A108816DEB7113A +75B38DF8A514DFD33BE8BF2225FFF4D37C94F6C026B48AB3124757C985E9FA2007F8B4C0 +7D95201E466729C0E13822DA5FF5A11136CFF59CF5EEB7BEDFF616E067F3C52D3651FDFD +5FFC29E92B59CE7A90AFC01EEF4464735ED5B95B5A4DF4FAAFD93916B47B2B77029A8D34 +9641071C4140BA4BE39E6807E7A54A092C981F89C8B6736878C15C6803272B21E4FB3A29 +0312FB9B5B9E10CACA4AACAD45B2EB5D8135209991AF00B1F241C36F8FE44C4EA6A9853C +F0EEFC31A00E6359F7DAB1114700FB169B9D47AACC284903C3B6E77A110CF8E81E109C73 +924E9B0D6171782E6E8EE5496F77EE53F9A1E43802DACE71D32D3CA8B62DB6FAD11533DF +8517937214E5C611722B4C72A4362B5B16FE6A5B305A668CD6074CDCBA59F84334E37AC8 +894C7DD979CAE35C1389EF455966B016635866DF2C512255F929C0916A88E1392C69CC7E +435598E3C4851BCCDA2492B33E76669E1E6D2C4CFF3D2CC8C7BCA239838F2F643F0AD4D2 +FFA5ECB649CD3C2CDCDFD89004F39CBB04A4031C1E247BB17481495950DD445EECA74271 +1371A1BF2BC794B76FB5B8CB025C936580916257BC3458A1A608EE326D1795A2C2C80F25 +DE3DD2EAB2577FD41251F194AD90B00A2BC1837ECE2BE200E84B2F41AABA6B9C703A1075 +EFF8A5C8253DD0795164C558BDBF752CB5503C91D773DADEC48412329675330ED2B42A82 +D8DFD62E376768CE9E4A3A2B1FD219848E57C45F5BBB9F9B1C2F0EF5E50BB04A0BA8502D +605D98D580A39903FDE3CA5B9416166764B7ED5C6F02AC1D13E28B2DA209D6FAC2C1FF7D +6584A910F3B2D34CCBFB255F8B57E1C4AC0ABFFC43DB68570B02A8301339597CB190032A +58C6EB0257E3F0A670215FC8191B379602A6D4150F86D76A447F75C9A3A1D6816FCC610A +480B94D51318CF6F9FFE2F2A443E5829C1BFA54E417064613C4D498E8882C45064F2EE81 +6579060BA87E897A3B6CA82C195C26BD2FCD8283E8DF70DBFB4670EF0392B5F15AD78DDE +8C94A50F84B441C2905830DD6956D0EA2F2CA38F2F426A6BC315FD383923FF7A5B24A466 +09BB06641CA4E2E8E3FC9B6709EF7272C3B0E3A714693DE2D0846401163A91DB6D9EEC26 +8E2367C5772EB77D01B83255997F33893420E572FB8F3F26643E3DF3D623A1DC25376439 +86EE57B8FD3CFE8AB3FFE03B0FFD15A0ADBE32DE82E1DF8FCC5F34FC7990DF7ABE054365 +2EE093862D1122ABF7A4C472F0DC09FEBD4956F1E90DB4702BB5EF6BE0B4B9F4C6F9C8E3 +EF8E1DF7C7A23BAD63CD4E4DF3E06405B76E4072636296F9B414487110515D0B5A95ADF1 +5B420D3EEFC3FF2C9461818A54536A2856E2EB2408FB37E9D369DA0BF409A592AE3066B6 +DE135A073400FFBB77FE81A9216DC4F22F1DB3BA5CA1C737BFD57D65DE03C3D22E43F969 +0E2613929DC2A48C829444BA1E7E94C0200369A69B8D058616C530A4AF5CE8648933B689 +92774DAA75630F63B4982F878F1655E47EF9C72CE4329D3170EC68D9ADFB1396CF812817 +94073E38E6B3D99D8862FF07395ACBBADD02BFE801C46B9F32ADC6CC3C53993316AF2122 +B1F73E99A808CCE2025C72B3D6C9B60E15FA6009DEC7879013C1B997FA025E2B8302A75F +BC45265E8CFE498D8435AB9CE5FB6D8CEC6D1D4742BF1E1904D41C9BD3213A8D6726FE71 +870AEDC4FF45A607227A88636F79EF1AC1955A7B3AAA001DF421D692E1AAF13E94195687 +508A57DB4A64259B2B673CC64406D1CD6E2CABC9D4210F837C2CF516564572E6A52A7DB6 +2DE5E694CC75E1C7DB9AF1713947E5E6A2955C5C86E3653F9668702D693F460FC816C309 +10729FADF7FD1C3398D07C8250DB5DB79C01029BA48B689EB2CB2D2EAC73422F4B2FF270 +F3A2DCBA33F3DE701218514B3EA70CD046102DF56EF261357D868079793C4AEE3F0C41AE +CCC333B876FD40A68C0D23916F4ED5DE6A1E869A6EE63BB1D0B7CE3DD261F0324033D621 +F91CD9BF4FBC7D016F5550A325BF6738E4F04D969BFA2729EE61C60B5FED67687C0C3315 +C3768AD60A4085857543AA2D39391265AE595862A91D33175BADF61E81C17278C3F22E4F +EA80E52DE331D5B93C9B745AD207B89249512E98C646F9E6ABF599E589739A952C5B3809 +5C1D09FE75BC467565617B8331911E2C014AEDAC1D858441055CA8735A50ADB73FCE2AEB +422F5C7655994E12C496E16B818A349B27737BA5E55A3FB49E71F76F427FE863C44FBCF8 +AF51D4821DD6E9DC69987100BA5BB620AE0454371C58B4D807F0E3966F1C449D2A729117 +70DB12E3C427586B7962779C4F2FEFD4E656FFF9ED968DB12BB3951DD06F00370EBF789B +3AA54BC8BF8040A31C8D892B348E4316DA82306AC10A1E835922B42CF391E8264F0A593E +3997DADE4310E5BF48B605DD422C808D78839516A306BC520C431482C7DA1FBA5B41E73A +154B7453C441CA3B1BA314CA2DA7269D35D61D16F30807B6379D23CAA456F0C56DAB9037 +AF79FDCA5AE7466246F28335CF4B1C91C02F6EE6EF1F2D2EB52A0B4C65708D6A27DBB5D7 +0483CE6F2B3389C85AC658D96F3E7CE73C89EB5B4125812FB00FE2EAA7972BA80B3B7C32 +A78F376EF51858109116981532FF5BCF18DFED69D2CB63DD24BDAFE5922B84CCC1867CB3 +9283524C6F68149F7C3392898BDB4B45FB5DB9A3D6CACA0AC64B602A48EBAA550E5187EF +CE86D703E9AC4F1CE514245760FD77BFCC129006172FAD38AE4874DA589C8311D600A4E0 +D6AF691CCAEBE86DBAC58054C6F5BE4EE3C4C7C4EE4EDF04A913526E04EDC4EA5B56C1AE +FF044F211295918C1FBA1E6E2D3C52E40030F41647D79E91CF67853E263D6ECF81E4F293 +7DA998AF7352B066631A650D3D87082EDA667011E86ECE0351CA51A366709534EE55F393 +780597D1AAC11F0A2D46A92696D86DE420B34F8FDC3CE91391058BC0B90732387FA62D71 +6F27777D71B6419611B7ED9C125F9E8E9336FB96EB582FB5D180783DFF58BD91259315EB +FEA75B55D41E9EA1338749B2DAFCAE6068DAE6EA83B3416947C000D80C3E8DB71E3B29AF +52C3BD67A2BFDE055584C8029D32A3D1F61EA58F9184D4EF6D0245B545465273129F4598 +7B10AF2D331C9ACB8F765850E394A98501F2D4B93C2CA742F69A7A26C6981D7B2968D841 +5756DACD3004E61AA6A486D9E084FE3A0BB7A2FFB0FF3ED7D624AF52D9735089813952BC +8DDB1F24CD2D7CB0444BB4AF88DA9C4C2250E166AEEC2DB20BB29D5C9AB1E7048AE5F151 +77C97D67F251E4DDD6AA1C8CB52245C8866FE9119EF0B93EBF80E5B8F9F1E7B94E686B2E +AFC75AD477E23C380E8ACFA7C24478B41CD079B5D5C48FF093D47FC770F7BE27BB8AA358 +2E93825D29837E9CBF688F21AE3CDA6C9AE9E76C0245D7AFE336B2A8637E51F8F284007C +48B036E062F206F3C26FD4717C4F0EC3C1579AE53D53F9F9AD23B1D151F3F681A03FC775 +E68A5E0BE472D256AD79844F923FABD03062A71269DD1BBD086205494E4AF4F72BF1B29D +2046ED7BDCA395625B0F019A84F300A23B505F06EC47AA948BB78350009005F42B1B2E0C +95381F35EC058E7047A97AC047D3802B54E2154BE1C7B02102B747C9EE3392EEE19C7E67 +EBD22DD93E953D7628536D199E881BB7C848F4672F47E93241B8D681F3B31CEEE631F6F1 +BE8802C9AF4F535396A423AE038914D4FFCFABBA7DDFC476C38C59DFFC0D740C1976C81A +EF499FA42C7360BFDCCDF373DFD907F045F8FB8E50C75B5CD26451D4C5086CB44BE7BF40 +BE5B8729A67D81B9A42FA7E3468C7B1797C8B289E48CACAA28FEDBC73AB9932BB49A5B07 +4301FF00CC88144BD148129D7BE0C255593E0B3E92A487F2099E3802DC84B27E4653F5CA +CF8C4431CEE7E88C0C252ED5543B116A34E57EA2703C100745FFB2F16C4C3A1C94929763 +EF3DF12FA76069A4F72E2E7B5FEF2C284E544F6DFD9447CA408F23E966B417A5D64740DF +14F0A41031B5FED6E7BC607BE09AC8FA94032A6C4D5E0CB89096735D9E74C2AAF06661D7 +04F66910CD50F3EE7B7AA12009D846FC9498D427C0455CB76CE80115B0F230EF8E26F51E +2E9718D01342A43A5E52A5C3E484F099BFFA61E1921BD263517F71BB2270AD6FD06942BF +69745A2A17D83EDA93C1D6EBD6F732CCDF5377B2650EB02FA62360D94E2E9E868B7942CB +5AF6D5FE488D73C12B5DAF468C453725A528E862534AC0C66CA22C6263CB6426AE90FC9F +23568692682B994F687FDD93EB60F19316A7D800297CA2C1674B58566B30AA87E1C7F560 +8F3099BE3E5D40433031048943E85014CEAB47C6EC2A579FB61BF76C245592003F2C415C +0001B1A06452FD72E8EC3D251DE4084239B95779392C4C85B48197BE58E865E68A188A99 +6B8B0075A1185C1BE3117FDFECAFE6D0996AFDD3A89C24C0B755BAA89B2C5B3694C26B5B +B79A566B962AF924A786EF7DB1648228B68A7E5B25E0DF47448642D5645688427A054E41 +FCE25D804AB997248813AFBD4D0A5360417AE0DE4A581F0805AD889E8133613271C3EBFB +B6163E5EE9A92171B469B41ABBF91022E2B689B48777DDDA4BBC8122B3FD1C1F31AEADBF +CC2E2AA3028DB547D5EB4CFDD7C2CB2AA6DAA4AC48AC5D07841A7B5E38B2CAB611944C24 +8A6451AB570954DAD5E41CA6A072AFC68D1BA360FB1C76A289CFFAFE44704858E089C02B +C3A003C75FF8B12AEB9BC13A9AAFB6C8C0B0824F0CAC147F31052A7DE2151FE8D61DEC37 +FD27896AFF448333C57E4D24D258AF75303108E1E1498C80375A413E970941B5E1BF3ACB +63ED215FCA6D697A10B03077097809C4EE4BFB40DE358063E1E40A8BA2D99E8FE1BBAF4C +329D255B4C72E7328C2CFE71F5549AAA8F240306193B5BB52CEBFE2516B12C691D94B913 +309507A0B6345BDACF55E1B9690484159F63C603817F218836A1C7BD0AE766D1A5B12C63 +445C98C941999F7006FB9BB8E6C0BCEC81F5F11124B15D9C1207E017927429F7D1D915FB +374570E41799B120821417FFB8DB4C90C4EC1FF2DFB4831B1E9F3DC7D8625D2AD8A03E67 +3F5EFAA985BA514D2A05432AC1462F8F0D9EAC061A6102E22788DE556A7914981A869636 +8EA7E4BCAD29037B084CBD2131DADF0DDC3216F1F80FDF01AF9D8B5C03805A11F23F17F1 +81279C0AF7235DF4EA196FEE44CB6FBE663DE87A00B4B542517C771F13BB77AB8EC9B26D +7D181AB9F8BDF729196B4579B821BEBA666B7D314923F5828869D5DCDCDD701D9472E307 +8B804378530A5BA7C5D83C9B374B9359033E8276181716FB3104D393D32B522328785408 +A66A5C8476F1854F4EFB401E8F04767BD953C238EF3EAFC8451891A456B6FCF728262A1E +FBC3DCEAA913C529543855E3730782BA800506F9297DD905F0F05CA020AF54E52294E021 +1B6B1A7E5F0851485BAA5FC7AEF4D5EB8846582EFF9CCA536FFA01D2172C1041BD1D4ADA +75ACD19C57D55BAE2B4FC9DB55774E6103D63F660C404EB055DE277C80BFF173198F0FE3 +D653E11E876977AF3176BBBBB76AFD5EF5D56231E994AC3E088EA0635990F789F00D1055 +27F894ADBF3E04D4D67AF14ACC683FD78F6C46D667FCB536392375F0E673FAF9E2D5DB61 +44753E42AB7A43EEF201F87D79A871710154EBB3C60718F424946F0E8F5F6C4E151369EB +60142278F96DC2467ACD0A70BC230842A98B765012CADBCF54928B8498FC7FE7E21732C2 +7984CC982FA087183702BF610FEB1873DD5820FAEBA838AF642BA0D4605A8E377311340D +5B89237AB0431CB37EAC1A4AF80698D50C55DBF2F104015BB7586413AEE4ACD966CA9F49 +FDCCAC954E177A340954034E229B2F85E3B081E94F244120F9C754CDA85305BB17F6275E +54A34B3C07C91FF4007B81958746632FFA84EFAB574061A8897D8DB80DA7BCDF57F68DFA +12D3CA9D555056CBAD78FAEB316A0EDDE6C18181510C470BB27FDDD02B3362B0A8A684BE +00D20C433E0E09F455E6F7D0567FCEEAC815321F700FE9D1941CB441905097CB0EEB3406 +A7BF6A56D0B429C01069F3C8A147FA0379FFA974643A42114D5CFC65399769C2ADA8C721 +883B4047718B560239FFC6C6F72AC283A562E0BF435A2FD28D4797A6FE18A5C4BF58356C +AEAD84D2BBFCEC256097716D5AEBC8E2DB001108302785630CA2117E475F6C96037ED02A +86779BF9E8E19678398690B82EF54174C454755352A3BE0AAC2E9110A49BCC26F1CA3447 +42B88D4C7242524DC8E22271A31D8E42AB6B818427E5A0B921A45ECBACADDEA91D6B3F5F +80BA636CCFD7A00F52B251EEAAAD8D14991D0EFFE1B9D875136B619FEE2D98AA19705EF0 +97A7BCC5B1F3EB069361708C5B9CD719746A370E8E7DAE57B8E87FBC0A92DE1712324B9B +A6A13341969B45579510E6646920F9DCECCC28D20BA30166C032031A206CCE88C7B769A0 +5EC680893348BED6982AA268145016DF9B6FEB1CBA0DA4EB0C50FC22D144BBD53F67AF2A +B5F10CE54FF5373EC0D3B35BB23F4C56A31D729311C67734D80E481CA6E3E58DAC0C7C08 +6E87BF965A2D651FE42ACA77F4C060FDC8DED1F6CF242A0BEF60C95F6D4954D7F919A04F +3A3BE98B671123C3F6D582A5E5DCE2BCE7067878BB242144DAACE596A7E7D8AD4801FB08 +E56B3B89A83CF499480BAEEA575EA14BBC4158046B9938CC62C3B6D21390FA4E09D0A282 +70EB913510BCBCD8807AC42619DE4697CD6086B64CD5A78C9EB7BA5D0A37B588AD6ECAE4 +A51D867E550DCD4C599ADF1484C1066A3401956776C40B1296188D49CEB7F428ACECC5B1 +6958A5E385EB56DDC28ECB492DD6D81094A37253B0E46279C2CFF39399B61F5AB8E9E6A6 +15083969A681F43947B23D86892E5DE4D5E34749A7E8E896DC47224D5F256B60E84E9F3E +067922D11861A4A573BAAFF6586FC8EC2B9FB76F829E1788A7C95D8FE014B96A8569C733 +AEBE73544A658763B02EBD7AFB35D6E5839BC943CFFA5A655296F9205B67404B741F3ACD +C70C08E39F89DE3EF84D4D905985FECE0833F5FCFED3240A1CFFE42D72518D4FB1AD6733 +A0C8CBB6AE7E90D8F6F1CAF51843B39CC204691AA280E60FBFE48EC4006B23FEE7E65C85 +D8F3546DC4E69D24BA71EC73C6FBF0731F1D6B9D14B666C33EA8221A7B25B5CAF867ACAE +1454A8D68963FDFC296F584402273EAE5A428DC6A135B15939B3820DCEB16A63C5C6307F +401AEA8CDE84642CEB39E61CC0EAE48D28CDEF7DD4AC1F1272E66A83F973557C1FC7ACA2 +AE57A95E10BA0337EC6E84D50F847AAFE9FF84F4CC936685CCED380B79A4C42F045F89A5 +F04A3BCE12B1848C50EA53F2DF1106E08E432EB20FD36FFAF9BBF73191E3CAB2FF7C886B +6BDECC13610B00996B19DC2F49CC9CCAF81B3FC6EC9799D61477A2C6C2DA26BC6615B0E9 +E74286BF504E013DDB18AD6D5711D74B3706818AE8C48949EE364DF5479532ED159F4E41 +D35BD9FDE566446914043DCDE885F6E192B28543B44B59BBAA3CED78ABABCCA0D63FBF88 +96C269A72C590A9D0EC08145D63617B788FCBE82855D933C0D510D6D67FB1C4490AA0946 +E42D124FC99CB5EB96088D34EBB34A57F47454472FB74F89429E7A8770CE10ED297A1730 +C3DE8DFEDA3977AF69B741CD8E0930BBFB890FEC47439681EFBF5AE8AEBC3A8CF1233FEB +958C7A66A30F825DA3AF6932EF4879FBA6DF9BE9232C624D1F30CBC8CB67E5B853E40E24 +8671CBD5521609E03D326873613CC9AB1FC49D622D500E5FD15067E2D9DFAE964131B9EB +D6401B9BAA50C0AEF5B869408C6F136D6DCF6A98AE09908077F77830239A6F1169E74818 +B47D00B672C921D101303EBE3BE7183A562DDB8E60A05FD72D4FDCBC74730A704DC98331 +2F2A9173C4A97AF340F09846291E81DFBC8A95D7B669C6AF73744EA1D603E1D9BE138EE1 +7DAB5ED270EF42283DCB1BD20622EF2CFBE33E364F08A458AC049D0BD62D66A980BE10D5 +629C47C616AD268445D63BA125E0C768FAE66D9C7D8C9FF78D00870817F8A57635E6A894 +447C712C320D1CDD4BDEBCF9D7DA3F6FE5CEE0211CB842AF1B2476C1F55428558E80D4E7 +75732B89295CCE29A81EC435DBACFDF8059C8600F0EFA28339A3555E1B4205757E2CE63C +BBC53D9536FBAC9E8707114DAE2E36296A90D19EA835122FBAAF5BCB49859396E85C8A22 +4CBF44FF9C748F12D87A60A665802015105960E73D33FD211420074A00FE36074F73B5D4 +A0B3944203723DE9D1E0D61AD27246FBBC71BF9FE9FBB3DB9C419695C5B7E41A7C8F3677 +C55EB4DE39C0ED5DF49BC0B3A066B977DA45B4FE265D8F96F28148CFFB73C437EF129854 +FC6E25F287794AD1E8173A6A13662920FA3F9ADF7961118654F6EF9C187B5C4957C25723 +72A04DF8D05ACD188BC7013711DA681B1F91C9F59E6C518D39990E4BAE2E954B07DF3F22 +3E8A79A1A90721075AD3A36C379CA6807B1051CD2386C09ABFBAA4077F95FDF3BDDF0668 +188A208C8AFFE7DD899E515F3045AFB6950B3B78BB73894ABAA58E0E0E72D2283E77FC75 +F74EE02F560EE10204F5D68F929BEB7E2CFF088CC6A74EC69A0FDDAF1269DAC390EC141E +24416547EF1FA37BDF3A61ADFEE6E98DB5BDE65F823A1669BA3DD1B8723B8A1B9284E83F +4425FD8DB56B0CDD6D93A8E531931FA5C239F01D776FA380D3F94FC58C0C403585ED1C9D +9A17D6ACC70C29E36FF5D960DFD7AFC735A5A11C91F82CF8F4E329DCFE9937DE491074E8 +730F10F748A5CE5457C1BEF4FAA6076ACB47D09F1540B007F6955461FE0B5BB139B056F9 +E875645F534829F45272F455139793E9B981BB3A341AFF3FB86F1D8742E21BEE157FF6F1 +95F49388DB1962D02C6123BCDBFA074C79ED7D25DE52561FFAB3F2C66596192C8E7AB64F +36DD8C71791E4100ABCD3673E030C4569D71B01AE2273528A9CE65585808493979D6A50A +F7DB9DD63FAB942FC3DE27F489E293AD6F1320B3B543D783196CF1B0104F395CCC9EC9E0 +1958AA52841E26337473082045F412C00966157D7E9D2030CE567F26B28FB9F17657C66A +6445C08C11D10F9489AB180CACBC438ADCA2294FE66768A91CE8973923E1AB9391B21077 +9BC49C284556AA43AE211FFDEB51717439B2EA3A3D40D90973E59D7317D441CB33E53DB7 +C3D6633830EEE93C247C12529B42781C063CE30E569DAEB7B1DF0D084805933332014327 +BE4210E496E0296CE29031739A9C36953D7D22406D0BF34DF927185AF6B12ED5B1F924B2 +C5FE617A01ED42B80063A811FAB8715521A9720A3E17FC9ADD2E7D05ACE07704C60A57A9 +0E0E92D114BE40225295D6CB16343F65FC32F1B94E87768C9A2FE1488DC722FFC12BBE3D +43DF192948643B9C34F5C64AE7B45B91608400210276B0940CE89C706438C23DDF3DE9C4 +49B5DDF1B91B12F06D0005A034AAEF7BF1FA001AE74AA6193ADBD5BFF08C322A88A7401B +EBFEAFB62F2CCE0C42F49C805AD12A9079762555BDFB8EA7B16451971B7D9D603B8D51B2 +CDFF603C21E14560DE7B58E5339F43852C16FE58AFD4992A3C4B317416B3C05BCE4DC6C5 +4AA4E323372EB65A376960D65315D9CEA4DEFFC57C77978CB17B23EA51474491A47E7B13 +DB75974F687DBAB38E00C2B7C2D0F940257E06904D1D306E839C279B04138D9A82634027 +C32E1F2DBD64F4CD1F85C16584ED7EDB378AB3176A1B89567B3C869E06D856D136B894ED +81C97455B512BC8524E6BB4F73FE6A2C5AB5D0A826462CEBCA5ECDA0A536F4172A6E2DA2 +F40AD2EB15A8C259370B5491608363FF8CD2E483EB109EA99A2926CCF2B69A441BACC8E0 +E29BD93077B845130AB7CA801D7E2835305A35ACD17849DCD63EC0CCD8D7EF150AA57F10 +E22385D5C7081E3B3706C55565506276842BC8FCF9D5E0DA7A31D4FEA42DBB02DA6DC9DB +306DBAD66BFB8BD873B29511C80795DA8925A39B9F545F312066B2ECB4971CB7DE33A523 +D2D515F0F53F7CA516F90B32E7AB152957637A57828EEF75438DB8B0FAA624E189E9BDA8 +4F2F2548FE361C5187BC8BAD76B4CB516117A868D23D8C1A718B0AD334A52876DB25EC12 +CC4390D2ECFA5AF25529C5398EB27A6ABFE464E8AD856FB6F4667EB469CAC615217D61F1 +DC9285464D69BC6AB75916452FDC50EAB4E16329113051FB4616CC5F32C75B6BF038A689 +F8176ECFC8F9A0AD38840811C2FC61D97548B49C193277A69BAB5A2B9FD01AC5EE282DB8 +47589B25D5834900AA8764931C0E478D49426CA1D37C77B2837FDF26B95B3CA302E24194 +BA91C0B745FC4F4C8F50178B1647CD1ED91B7352AEE76134ECDFB7126C64F6009C4A5472 +BB4B82D065DE67FA1B147E2D12C6D6101246F0F8856754281A9CC0E38A5865030A4E43EF +C7DF8F2E3DC57CD1E98F8E675908BB77406E5F1F356881259254E4878437915657E29ECE +BF8FDDCF48A3F2F2340C8590A23F1FA920CBD4ED5A0A1D5671B995202D22199F5EAA6AEC +417703ABE38184F58E2A54D9A466C3FB0D8C173E116FCBA8B3EC46A124123582DBD7B819 +9AC4CC67A8BB1539703AE1AAD22B533FE2F166D00AFFE21DDB14E17242F5BB1DCCE076E3 +4FD61A3D9F828A8C48EA9CD3B2B86DD665E0495FCEEA0BB8C552789442BF24585D936658 +310B09F6E6FADE2DAAF60D2F92687EAB1384A1E4736288746E8A6B926AC373B5B86F491A +284B98B078CAD7E9E83CE6683DE90D1EAF982C25E10854A9902BDC73EBB9E3DDBFA75DD0 +882392FEC80F18EC2239815845CC8B6F7E5CBA5024C5871E3E3B5DD5824BD0ED16BECCA8 +11241DFC1EA5F9FF07B0CF484154517C63BB149BDB1612F92607E69319BB7024CE655C00 +77A912B29F1CAE2A1E09315E1779F4D02FA7726DD53F35E34DFD70A8E87F784BDADF2B82 +08D29E97037F01424D2C6B39E4036CDAAFB15BE16B91E3F5F5389045A0E35BA378B0EE18 +1BF4DD9D1CABED505B7FE843DFF79F350D1EB159FBD0C44D70E29FB6FB71DC050EC75C48 +8CDE09AB600CFFBE16F192120AC87EC760F81A7CB732C87313A9E61CAC3F586FCD086136 +A25161709F85304DB2A82B370FF0E352DDC793C3C1CCDC5350F1A716909A481CC72338FC +83E438D69861899BF9557DE2F26CF6273CC7B5B6BEACFFF9214448705D19863C3900A85E +22FDAB1FF3D76DEB35C7DD9F3D8F7860A5A498A7CA6A9EE94A05E723FCF1A96E1C9F6EDE +E05A580A4BBE79AB6D33F37300F97DE77F5DB7F1E2603ABBD065746947F798C1BD84AA01 +7D6DFE9319B24618E510D8D7D353715B3FC915FFC6293B7227EDD3AD041AEF1D02C831E9 +EEB9BF762E38A274700D5B0EB6F5ACA6160E958E275B420783E1384015A37BEBA1B7D88E +68B57FB104CD2BFB8F63DE976B3152E559DDB0C98452BA6E38C7E98DFBBC791E73B0AE24 +0DF659BE573AFDEC02C18B18013B7A7BC5CAAA78B59B03B4DCF3FD9BA0C4BD019629408F +466E45BC3B4E22AAB4F7A1F4069971784A11F97996E1E1488943DBDC34774F68DE34C32C +6654CC2D1A3F8F11519FDA94B35AF93165D550AC4524191A9FCC9F8EFF112CEF9A1050BA +9A76EFD7668C99BB98928AA3C1E536F429DE7049D2B378F9F8888FEF13B0C1BDB0E3CDD5 +FCE35AA9E8D89C5649A15DD97C753B4D37729CC00F28314A38FAD611F574C4C2CDB19436 +7215F7ECD06F6853F7A987E4C4F71D5C1284A4A18E4E51A2A00AE566FDD13075CEC497B2 +D9ABD79BA8C3ED1CD588831C6A22EF420A96B916427D2FDD9346C95F6D1A03D019646DCB +CE7F2B0A32FBD6B230474E1EDB71266ABF6C3BC537CC1B120F3B224615A115773B03BF31 +E15B55F6A1D95015855C43CCBC674DEE0754E37E6F4578D51E6B214617C20AA74328EC23 +3529F3A27C30985608763772848E805F3B3D6F483454D90DD3345B376FBC9A9FFA404EF8 +80C3E6C143DD0753D60D688576D26E52F964891F107C31CDAE6BCF5F17EB17E20874657B +45C7F3B45EB0EF69B6D2530332265F705B5507BA3F03BDF7A5E77242E05A3F68227CB56C +DD83E304D95D27F1A20E9682805A132F962696A7847C36CAD820B8F23C8E328006A77430 +A5451CABA4ECF3169844BF6ED6080923461070C19DE53427920B382A70ACD5F7E97C924C +207E4C7137AD01015F419254ACFC3EE2E6CE7C64218509815ABE5F3779DF85CCF3112572 +4746B4041C5CF34D49BEB532C9E044ABC69CE7164810E630CCDD4190F1BB44CA120CFB07 +114047E21A6E4FF55691630874012F0B610BB6813065FF950ECD45A1B2E5E87CD1F6F425 +9B2152B441ABB56772638FA07C92F85C6A21225F8E731F10C93B18AB280C1324401CF1A2 +F03A8A899BC59D9E5F50ADAC733F19A0F28E83D471F412CC4F4DCB0D92DEE1A9062C4204 +A3C3FF291ACD5349853C6E8C315AEADE790C6AA98F7C4F26AB8481DA3F72BE8F946BCF70 +83741FC4310B239A2C87C87AC399FD014E05326B9CC563507F52EF9A17B7E62B50BAA3B1 +6E8F22CB732E751C7F98CFA67B78DE287F94A2AE3477296002C87CE3040846C8B5B56EFA +DC9D09626A448D984F074459805B8814BBEA470A0997C876BAB5DBD0953EBAB86AB245DB +622797AFAFEDA9635276AD83EFCA4DEDD850F04B7F7E7849C6507F5CF0F4EBDBB01229B3 +AB5518D3430F9CFE62F7ABA27E4D8F637AAEA34BDA8034111B0A27FAA877E109EBDE5A0A +FF0F3B1913D8FEECE04F228D2824638F634C8CB5AB62305CF37F8CD61D8AEAED6EBE5945 +F9057D3A1D5FE6AC1B79A794D2A252544193131F8C765F270DFE7D83FD059932408910B4 +DBA20709534857E518A3C269A23C0A205A64F7F66F5F59DCAF10CE8088E5B2E04AF9728D +BDDF60B69E6529E04075A97B01487F809C8AEE075638042C239AECDE8BD4E10A9D691723 +30EAB97F699B1AAF1C709E9AD04A71DAF1D7B6C57D05792970612BBA0523E1DBEE336375 +7488A06584BE4A12588DA07D46CE95D04377DCED2A92F60FEC694EDE31C5330B63BA0C56 +F2A9D91DC81B8A4EFB0B8C5E72967BC23F28B6F5D0A4CE4567557DF6605B80F478D22D21 +05162676E5FA606F454D749EC4FCA12941CE88A07944119B2038B33C5893137C7A17C960 +CC77397BD5FE74422425F9B6455E357EAA78CCA0E8358FEFB3B49E1D372FAEA6F6B29F86 +031B3E15B6A8DDF2C740A47B354CC4926070D7477ABB8281800F867240550141B5CF4E11 +8BDA122B047F8EF6F56707545F82214BEBABE9F0F7D47CBC22A6376BBD9A3BE995B56660 +AA8BC92E6CCC9ABCCDD424873C8718C4FC9FCF8D0F589D891BB10CDE9F88052CE452AE9B +7337EC5263125358C2C4367745E43F11583C978627B01A8412AFECBA154EFA3222615570 +3F0A7DB5C014A044B0AF4E8C7B031C962B189B4010E5A224A93EA314F58A56FCA2CAF1A3 +D5D7AE10E0DFAD4180883116D6D4E53D4960C0F659A14C6306B3109045212125939AC176 +F6C047B695E0286982DE4CB8AE41D9565822218F1BF1D83C89DBCAFE51DD9F2508044051 +6AD1748A6061E3F404B834641EF8B057B0A61B979BC7E6CF722133230408E4CBE07BBB89 +80E886F0AC252D7F73538BC685074FE13680AF9319D4B3A8004BD772EE16063318523F87 +0A49B31B0F2D9EFCADBC90AECD1F741B52AEC01F4E9BFFF2C92E2D01AB3ECD265BCAF686 +216E4A35EA622FFE6723FCBCE5E9045D782F3CB876BB23C705914A31F301F8A04AA2E920 +0912AB82E5EFC7279483C9059928D43F70A4C78C79B2B63D1340DE2B0E1DCD9F62ABFE08 +4FB0A04321DD7A4A7849995FC02080C04CD40E80669E3B39373F4E8135642118E3903FB0 +BB20EB0A90F509A21625BAD284B35434083EEB5875E9D8AC1F3F89A50FB10820677DAA41 +1E39A161481B39E87DDEE97D687202BA96B73CA52DCB6DE2AB20901BE947BA3706AB1FFA +A703A1B75A5412CEBBC944112C3C02E54AC94779BA08DDEBC2F288C906BF19B9BFB5FEF7 +3EE5A95C47F5B93082381049BF206238B6DD14AE1FDDE9E26E44B999344D986BF820B627 +51872737F0F47CDA3A03C0C72019327FCC85735F5B13A3341E43AF2767B22AD906E2C021 +C8282FAD84D551386F84A09F6E8F0AA5284EF8C04933A65001DF809E5A0364C0A8A1088C +9D47C1E915638AD1CF799034E23B8681B7B37ABB767938D8A90D6112C33A2704752CCB0E +43C86D0083CE84C6BC174B484211EBAC5AE7E3AAC919DA3D042C9EBF10EEE2EC4A5F6FD0 +89BDA7E45BACE0E72F8AF1C26F280D4887DF53341B37223D36A1E3640FBAB7055F5B2AD4 +E054A99C9F77B24E0B585B6A1C1A31987BD694BAB47840FF4715C7952D646F0739933475 +789501313FCF6BEED84A299054E25324519B574EC7392F49F52B0AD9652F5FC3A03A95EB +0C86C0DE56AEB99F1A0B6AD75F39802BBC1C148A1FC5517FB892C3F5CB074F0CD73DE1EB +F01BDBAFC7BBC813663E8F7E906BA3DF0ACF1C7DD5EF315E8770EA78E0EDF489D3893FFA +2C763DA3D765B05D429C70A027D1B239DCF0C0B250A3A9993E670844A89AEEAD69F7060E +3ED50362C4672F8F0A2A00B961A1B30D3BCCBA91D99479AEE1B018585BD9BBE59E2CBAB8 +C9084BB94F1C0210FEFF15F4D00511EAE59B160E3494A59910A5FA083AFD14D237E0DD11 +8E79F35475C6505E07E2DAC40873EE34C93C35E1DCE1362C3C0D985054343234EF90D922 +20C5B2AB09D49C9A32AC72F87FEBA787951AD73F35B89F5692D75A538516E56A3D50AC2E +032C112A2483D912F42D6ACDB6D59CF7E10F93120092A6D792345CD77537F58EFB3069DE +2C40B60D07DD46F6964B29253CBBA52B7BA58BF99C527C11D0E34D6B1B6235BA561B3907 +7A3131110B532CBBC7CA230EFFA3DEFBAF35CA06D8DE4A65BEFEE4F8672DE8901A88F11B +1DC66FAD9E9E75E945E3F5DF39A79A4C32F142F1707C38FC7BAAC1607D612232A2B92CE0 +8A1C4892CBE5D5F0C438018D3972F7A2D9FE9C8FF174098E8179BE266A85D8066BDEFC25 +B2F5F961505205DE4E07154A8B766FC85EF3DDB9059F6AB362B35CEF420199B97192AB34 +99C5E587479DD5596D17578137D6D4AFA461E2077554D011D0CAA330927B3D5D1BDF6EFA +97356CB3CD7196FA45AB9CEC436030C70373BB1456CCF1A77F9575B1C956FFD6B3D28565 +9D81E79F4DC6702C133912C4E0CFC6D29DAEDA0D5EABED6CA81521544EC0F1F380551971 +8CBE74842B7E7E4266EAB0D9A32AF80E671C5FEA05DE046077E7AD2E92FF560F87539941 +F713324F052E727114632AD220377B3A04AF0A4AA6508C00DB054D8AE3D80FB7199813C5 +B99FD75ADFCBE08DDAD26CFF7DDC7114D2255E3E7A1E936EE352F4BC8ED78057E8BDF3DA +3845DBC9F507D99FE489921976EBF717644BA09604E60DEC3DC64D67220EB16D84728DBD +72A7AFA1EFE9A08A449BBA3C306C272C1E9A02EC3DEBEF42F11F14DD560E1F5C1AE4C383 +27A0D8D226BB45E87EA9779E5DF135EDAB9DA8C872634E796CC98B3E78CA2F9C7677AE64 +D111F3CBA6F8DBCB11EFB9F763DC4C35DF4B28A3B1B36933DABED5F43FF4C0F8CE85FF4A +3A33781A7CFAC82D1D3FE4FB8786D3808A7EDF2D917BEA2D871D94E78930E6942A8EC98C +51055037C0F366B9B613B47122CE5DEAE6DD906EFE24E3850EF1FA39C61C9CBC01440EFF +F78061F69971E1BE4466295C0460ABF7EDEE44F52FDF868CB5E02232E615D2C02D044185 +FB55F3AC6019BA5A5DB686FF25BC2988C41C9AC30C99EB016CACC5B73FCB68EF98BD5786 +C6794F13E6CD93D5B115C379831890C1E29ADBFEDC356090CD35064F73D427AC6C06965E +B41C8499D15793D4C92C949D56722E8F671CE37247E9C8BDEE2300893BE559A9DC404A2A +531CCEE5774E81E871D3B6EBF22E5A89788084735341923351F548C1C1BFD80CE5E16A6C +69D899D7E70A1C264CA201630F767DCA04C1F2E86CB2EE341899F1A0F7B194FF24C3D1B7 +D1ED114505814121E75BD3BCE369EED5D7814CA8E0E65ABB2671DD4D5432CD2F3EA57ADD +B1569AA5C83924E9CB6ED278501B6AC4FC3942F84AC9367A4846BFE2C181EA417240A831 +D15245D4DD207A21FE96AC02944DE5826C6A951A15739CB072EB317A7FF5B9B9B94A2070 +3C319C946D614F4C2CB826DA9C396BC25FB4FB82C8A240E6014FB95DD149E374D1E1BEE2 +8472B65B376071DB0BD31E1200518B191FFE0ED6DA779B783A29EE54D02787F70E9C10F4 +99448EC160D722554586CC7F4F738B8C967352A7E608E379124715DA96A51C3FA3655BCD +BC06F6E98DACB08B25FEF7DA3370D282A778AC9856AC31682FCE0512B7D9BE1750AF7A17 +9612928F1FC9C302BC22ED67A63C1574BF1D216DB66745ABAC0905A06270D3EA99D547EF +29CC455238F45220D2451C6E43D32F668C91C33F89DF6A067A4D3944CE792DF0EF290577 +1A4BAE8E4A62F97C63394E85388DBE00F9C42E4EB681BF996FB4BBD5893C60B4F11AB5FF +40BD4703DCEEDF55F763D1AC859F33BD43CB810336A0989768EF72DA5571DFEA868053E8 +B8FD1C09C592DDDA4834F7CFFB3A10AEC6691B813B5E0602BEFD253ECE46AAF8A8970E46 +BDFB4B34952BACFACF9868613361D0FE2E2711E34F18C5BFC9159B806A989B2C8D35CE05 +4C60713538CC5A56D110A28312EA1CCEE42DDC418AD616FCFE1EBAB59DABC30B53739DAE +8C53A9A085590EBDB98D8F7B9967639A9D5CF09C91D45DB5E0BF2687BD15762726047C2A +AFCF3B1BFA51B9E0FAF09D3DB7E23F5FDD0EB7A0BB45CC7A3A8A1B6399BB455637034C5D +E0C1C2533CAACC493AA4E06835EF808B656F698DABFE35FD446969D8F077BD9DE7B97E57 +301AFFDDC544267137560EA5E95ECD28F417688C9437022409523DBD101C22F107818541 +BBD1BCF2DA1EAF428C8C349519A113EAA64D8F4532230D70106C309BA8204D2CCED64F74 +3CB7FFBF73BAD66FC9AE3ED873D12A7FCE64B8B6AACE0AD00E0E095F3A204F04AD466F3F +C77F03C85B49FCCFD4EE7BF66E6688460B6C572DEE77EB3D41BB5AE4A7A6644397A68660 +72D4D3CC2D03A1E190B63785820E8EEBB575F6164B29C1CF02BC9951B10E26830539B081 +FDA50ABDE4AA94FAD6545D61F908A89331A8F43EA42C7BDA182E9E6E94D8919886381B6B +BD5D96ADBE39CA2FF7533B32F00173FB60D064331C2E72D8A7C8220FF128D79199958673 +0A82754F1B09407F29FE0ADE2A0F2BFF8266C1ECE453D934012D17E4475771868F6902D5 +C8B99C8E4F1B335AC15CBBBB22B0E8670FDA527DB0A485CC24E3F9E77E10DEEAAF6731FF +C2F2AC36362969887B1ABAB0D9FDC52A2FF449A0848EBD66EADA3799C61D8CECF878F921 +147CE7E7CE33A74411748044B6CE7EBA064C254F76A61DBB7CE2F657FF6722AC493DE136 +E33D2271F2B5E24F16A5482A82ED40F42BAC70A862CD9A68DC031588CE2CCA21564420C4 +F90FBA1500BD4F1AF792745801332D23C5EF02645BB90B3738DC15CABC31C9A9B51EF9F7 +4EF8DF65809BB1FBAACBB16448147308888E710C979A6E7F9EDBBB6EC73A061A23878892 +0A304F1DCA0F08DDEA7C45D5106CC4AF23CD83E51BF14E4FDA722A5A6EDCA9DDCBBE20B8 +C64AE798B3DCDCAD1D6C6146EA238257340FC719DFED7B0DCE95DC66C65A578BF8FB8A19 +816CF4EDCFF7F26DB3690E6BAAC1BF51AEFAAD20D876B0AB3E3B99210CD40E55B7056C3E +4A1ECEE2191DC40711451CA9CB97ADB7AFD02FDDE7C66BDEF012E9445BC6A3A4FAD1A127 +0B5F29602CEC605ACEFB7E5F816A4B380098FEC6DBE1EF20C7AC2341387A83037D5C777C +5239ACB3CFF86BEAA3F174766191BFB8B9D96FD6AE992A3223840AA663A868CCD3B0E3D1 +478DE133B4D7805273D12172A47B3FAB9EC788C31FBAEA4B1B694307FB28B3BF6D9CE353 +CD8185F2155B4C37624B5FBA367BC63B4F108BE7CF5DF9C4036A460E42C7CC41AF628494 +6109C42D166BBA31537B2B72FE22F81E7445CAF0EB1E086FDE01DCB5315C4739B1756291 +0C38232BDA477000E34227BF85A819B63D49564628F9712094FE231644FB34D9B4E78B8D +1C73FD9E1CBE00C77DC12B7B371E6E5FEE9427EF0D89B11F2168EC3DFD26CAA318F0C0CF +BD760BD68C47653AC9393A2C1AEBF2CFEDD31ADBF76A41C88D8B894A90B341DFB260500A +72892F2FA90195DD01F9A0B7417FF606F9B7A06647A296E1CB57AF0897315CC6A939FC7E +76C106FFF75A4DB527146FF8774769BD3E1C7A8A5E1073EEB94124FE1FD13EC4806B7634 +9DDB3B6567501D98C603874980B71D203F0F1E95D92688DF2410D94B6B8A0A168577CB91 +6108C251697497D992D46AF08F9E8DE53D9AB752AEA16D1B8CF4C224B031597C6157C039 +C18E86F3490E00036DC080E9A669D9B262831BD68C00C585AC8A327307EB98BB0EEDC898 +2B8E72E64B7A0AFFDEE4166907FF278ED0356DF19AE80B6FDA1E6D196E161FE54EE1E79E +60F7262E70C24F7A5EE2DB3AACFAF8C19FA43309F497822383E7EDF8E061C48A34BAD2A7 +721FC37BD24EAC618BBD7B20F88ED106C5BABB4515C533C5D5CD8896C842996E79756AF0 +656159CBF9332A377646C2FDDBEDA486D2EFD429DDF19193AB59E24BA1878731DB4D1242 +3607C7FABCB9A8D6F023F7767148928E092FEB5267D7B618CC0D52BA4FAC1F3A2D002240 +1AECC4B04E6D40BA3631FD7D9A4A3299E8FE132AF22B181D72B1A4DC9308F3E9DF4AE93E +59F69D3B68C015E4D6100982F38EC5C9E1A46A92B86631D475B9D8065FBC3B89E6A29122 +82FA60FB673990010479A140F1911EC1590B8A73A51A424775CA9111DAF5796D7FE7B0DB +EA1A111BA7CC9E6EC8F5179ADB102917F088B8ECFF4149E38E524685370EC2E05C55B7BE +B66EFBE28642000065B8CD5F4DF48499E3F161A06E4F8138C28A743FA81FF552AFE1448D +1417F86C748B538FC617EA64CCFC396889D98BD91317308DA9720247E9F7E170E1DD33E0 +BE939416CFBD58A03AC9651F3132D1572C7757B5101F66F98B947BE5A4F0A6C1C50CBFAC +FF1285B8F649BAD9A17CD758867647B3E9DDD8E12CC6A0AA3D545F5C7678EA814E35A675 +53566FB43A846764D17DEBDF31CEF6196171F682FF51D674CF1D3C4C94A43AA8E8A04468 +5FFA2FC930CE2E2422224E69FBA608FCD1DC30546650EB058AFA5EE83CDEF1DADCFD45A7 +F986FCD3063F4878A2B092E0F443CDDE6197638B673576D9D2519EF8EAD2CC79E212C612 +FA55553F2DC0B0D2D0D3BF212A4355B96DC5EEB4B1ED29B60A51A3C6EAB355AB5636BF00 +31B695B3DBB1DFF99BD5198611D0AC6B2E256FCCAA7BAB3DF080675C9395AEDD5C0D6231 +8C16426E5A46B73347182EC1B1EDC035E6595DABC1749F551A8EC7A7ED3D83197C2EBA55 +AE71F7C5D2FCF85D9ACB8393343F7E8A148CF4750542DFDF2551969640FE3D1EB0C9E046 +A1D31C3E8F4344180E5E18A4D4DD81C27C3D5044ECC29A3F4858B83390EF9653B685EFE7 +C294849FAE72CAEE7A22A20299A925F8D647DFCBEF0C89D85ECFAAB5D979183C0B8A056B +77A6DA8D9F43530B400C4639FBCA966BCC99567BE42F6B9C727C2BF5DDB74A6833F16A52 +D4B8AB50257ED9531764E833A936D106733A2DF9C4BD65837C520ACA9FA6FCB524CB3FDB +6D17746E503EFEF92F92E5F5DA924236E635D9F222E2A8504248EEDB16328D2248A9C82C +BC90407D908B1AFA56CE2F170B0C51BA1E142D4B477E8D572456A3125320F0B8E3DC55E1 +74BE5F1A01784925C9F1732DCC01E60E87B15958B4E6160F1048E7E74B3C7D6131120BC0 +9539446F7B96CFE85DACE0CFE0FB1A1BCD1D72030D31E6FC548F7C790B2E30F4B45490D0 +EC5883BCE20065B4286676CDFBD1000094EDBBA2D4158BFACF4CA05E5E0CC0A98D4ED845 +FD5058994169F60CF8B89D9C0632E5902E8E46498170CE3B04848D870EAF4812E88931E5 +890459C7BE1988C10CCEE2DBC769C356B9E9FC609FF05277CEE6A13D95B907E2A1396F7D +D08498CFC89A22E639BE4228BD40F524832E649A06604EFE5CB849E79EE3BCBF9A8B1179 +A491428B5F10C49D985D56315356EDCE92F697D06621B659BC46625263A7293A4875E40D +FA5987E834D25036C71D06776C55F9F58ABE200832E4C812FB31014CFD8C6504F4EE8FEF +1FA4D35D9826BCD8076EB51DBBBEA48327DE5169FBDD93E68E6AD270FDB62A49B8901A5C +0A98C1A417D08E090F400F632DE7AAF2CCD7C6E24479C8B6DB5FE50B9EA31B1E6D21D567 +858603F4F70FC29195E31E5C4FDF06FF250B4EE77220787D8A0708094FE27A360DC36A17 +4FA111084290FF64CED4C5BC7B557E51EAB9B33F5C261F77325401D06E7C22BDF4E1998F +C7FB0EF1A61DB458F0CF1104BB7C33E14FF8D280EAE1B0C5A97BE98C94B29921F6AC7FB4 +85AFCBBD8DFB6BD11E939CA0797E59B7927F70A66AEAD290A12D0C1567DADA00D526B507 +9E274C26D591329B8A308F0910751E9256EBEA3570B4E3360128E7738B4E1E738186CCD6 +992274AEB86B3F4AEAC2DB4897F452565E43F09DD6B562961D96CF90E69F8BC3EE5CC264 +5BEF29DD2D42A85C7072EE95F8108B088EBED159CA603394266FCD52C301D20F1CB94DBE +3A5F9DB3939AE6B26AE88D5DA3302B2EB1A0E3EE48CCF96D49F5CB077D7DFCFDBE4CFCE2 +BBA2C75591876526DF26F6B6D9E25E07696D1ADD9E20530F7A4B80FF2677011928E621AF +5243C85893AB9A0E39E6459FEA333A9E6F83C9B6637D332CA02B5CFAF378FFE20EAD913F +9C40507A8865646C56025EE002D922EDC72EB1F58DE45154725399FBC466EAE6365C185A +8FFF5EC8E240FC047ECF885F84DB9B74CEBFEE8257C1AC4A6AE6A2A05B731B4CD8BBA4BC +8FC667C151DC168D250C11A1A4BDA07B4206B34506B60BCD5098B2B9B9CB2194D95EDC8A +0E8D5702B0FDDF6328820B4C40BDE23CE0C9C7922464C87D830462AF27578A0E8D8211CC +A871C9234675480B3535B67828BA4EB860B176B33744FD60BE5EBE3F7ADEEE13EFC60399 +54B9754A0C58ED6F8FEA43891002DFB001DD8E43C99B8F4509DE4784136B3A5279BC6BAE +CF4AC462B4BEAD76B93087CDE7FA48EF595E19969E3300233E859FA92359464A9A04F956 +5722B977D1D956FE1ABEF953C6645DAC88E6D3A3CBD944D5076D2E2C0498104A5241EB4E +1C8E59958E6055F7EC9C577D2427488B8F6F8FFDB12EA78121B0748DBAB9A663C130A169 +5F9661F63FDB86B27DC3AD0B2592E7E34EC7E171712DD12E4E1A3FA04CB3369DC4B86440 +D8A9275700EEAB0CA72924A4855D24827A98C9FA2DA724300E37696581F40C2698E2BB9E +08B7CFC6BA04004D78688292214C191B0D6764595119620B9360FC8222366C1ECF4AC351 +081F4EE4B2F3271F8E5E2020E866D487B492F579C748182DA5BD5C2B6D3384BD820584FA +1D7DEC794BCB2E75808618DEA60D1361A0470D66E6610BF0D55C20AF2BC9ED0F53A73B26 +9E92678E75BB469AF63CAEC36EFC70BA9A2BE90DB1F92E4087D68D0DE9E881F0FA88C988 +81A4D1EB7E52BFDE0D6B8C07B225373BB2364E277D225B61A158ED063D7B2A3042FB41A4 +ED23C97F79321D87D8A94A5A2C0417A2621FFCB5F04427904CFAADD1986D4BB8169E87CA +B3AC1E6A68F9EF1353517C552F5D9B94177902FC0D603918F459923402BFBD201E230953 +627F0DB812D648560C52BACAD7DD1B32E3095D34BB120139CA49847CC864F007E04ECEF1 +C11DE6540ED4357454DCDE00150DE168A244A66C43478899B3F544F52CC65C41271A2934 +388DBA38881CC8B4384CB197A33E863D17189853B3E9531D8FA250F976F6447593EA4847 +E1F4880EFBE82CBE5E841A2606A57D7F831A18805C3ABD1D3D26CB382F3EF16DB8697F1B +0759FBA5B781A5F2453506F311A3689E6725AE3AF6FBC186BDEA6420D4CAAF1BCC214D7C +CE50A1B4E021AB15D78A8D0646D6C745EAA2D0D2DA3642C1C644ED4C28F3BCDECD33A2C5 +06F1FA69820F18EFA84A47A9B177B42D3FA2AA82A2293683E55FFEDD0A764ABC1826012A +185535467DE9F9008D7763AB58BBE0BA7802C32CD69971BE8E4AE33F6227200CF1CA22EE +3E4EAF6AC6A8CE15E6B42A84F16F142400A1621433FF10A5DBC0021FC698C465F5CD5040 +E302B3D59FDE7EC0A5856E1FE08C7FDE15D863F3691ABF4FB13DE2296CA5D65D2230BE6B +6AFF08DA3B2775B3AD19E9D7CA7337A1F7BE70B59879A1BEF24399D1C1FD52BB32FF734C +89381409E66EAFBA40307C282D4B2266F9C42BB042258B761802F5D03926E33E5CBB72B0 +9B45407807E4C7A5A8295814D78FBA7230F0F3F5E16FA649EE240FBDB1B2A7C669FC18A4 +1E5F9C1A2B61755D764B6E0F58ECEA1866DAB57B8DCD0C7F47B8F4C88AFD10186386EE62 +787E721A6DC1CC5AADED1738FDA818C408EDCAA89283E26AC1B7B833C6F37CCD6732BBE9 +2BAB5212772ABEFE8453001FFA3106F00B47E98E6383E0FAC908CF39A797EC684C207345 +B18641D0DED9452CE51CEC330BBC007E79D471556979656B1A1B5B7873E411A3CC2D1B02 +E1684AC1752CF9D6C642B76F07052E658E91087BEAABB45E54FBCC9BCD4B07F12CB9F4AC +3A27D4CA499A55EC923CB7D1B1580B7F6FB294693C84C61660F02F8696C1E66C74A40431 +41B8E28DB9A50357E80B138EE105725DD5FE7B5165156A8EE540C427F9A2D408C4ED72CE +57A1DC29F937E9D1EEC621421111A1E4F9FC0365C57471A8275852B4F45BA6A00761ECF4 +3D08A75538DBFD67CCEFBB6A1CA0F5333D3FC7C65771C19E1E8B92573A5AE90C385AF784 +CA365BD8808F4D389DC7F6A606F098BF3DDB1F92E99BC64667F24648A7D821B1FF4B6B4E +6DAC7538CA2A9F02798BFAE0876263026A0C6FFC9BC9B6DFDF77604AE25AC4D19BABCA45 +8D6F4611FBA37A7CC9793E28739134CB42FAB8736F74F1632BA8249A9220C3332A16DAA7 +1E938D6C19C43F8F606D024CBF72976346A648F6D63E456FAC5F408B7A35AD2A7C3A0938 +22E795C6DDD09E95EEDB5FABE5C4D0060656A8D7111D2FBC95B86CD2574247671F143BCA +A8CD277178F4BA7541A3CE6052186A6D0040C1B25C222B5CB77D81A102777BE6E998FADC +759AB869C9320998AE60259DD4FD90E8090743BDFD487B6985837FD3AD619C3681607B5F +515C35BB9945D5C44C3A2061410DC169E5C9473F093E41929AE2DA81ED037A9D3FAAD308 +35759ACB73ACD4AB9A618E38B5E77D87A304385AB35C01B43BC4F343716D84E50B83CB7C +885571C08262ABE0024984645EB57CB5EE80AF756CF5A743FDF3BB11C93FB070D6167F66 +05E91C98B114A1C578F0E432571743ED01D66F1FFED6A955E8C9FA9A8CAF6BEAD2F1B57D +52CA5CD175A73A0EBF2FDA49B50014E3C2B144EC3DED7B776E604C3709281D53FB4B12A7 +4FA4D90A9A71AF398CD16B9708B357B46555A2003DAF1A26650C0626AF7A2CEEAAA4C845 +F5A854C982AFF1AF183D73DB969B3FB7FD361C3EFA00E565FF18AE7176F8D48E4C6295B0 +E16AC1EE7921E5D5E868FCBCEF8671FE34F5E4DDFF20D12169BBC56E869AB8E65320BFFB +C32C32334CDADE31BFDF2D2C9C2BF48FC788C01CF0AC1E454302F827C9C0134B47577D17 +76C2A4068E272D1EE5E98D2BB4D144174324FD95C3BD0111B8BC5B3F38A282607B487B0B +ECDCD90AF2246A937EAD10A3A00E389B86B19D76D2B14307CDEB5C2645D8A00DE5122FB6 +2E0E9ED63C45B6E5BACB800D27AEF0DCC7395CE4FBB7408EBAFAF763A5010999BEB85204 +56AC59FD5C26A0DCA5AAFA8DF09F512E1989AA450729B7CC53DA75695BF60C575B5B47DA +0AE1901E8102D6CBCCB0D652BAB7B36A09B3874D28B1386B1315D7096DB20CEF1A931D89 +FA98A3CCC11256F254E38265BE5387E67CE6045FEE7172BF42AE5E56A7611B89F82601B0 +73B6A590E119C3AC0E1ABEE8FD00CC4BE442FCEA8DFA3C7B8320312F31E6CA992CDB0BE3 +33470D14BD729A998326EBA2A1A7E9BA1CDF109B0D99E372CA9E0247BB39B87460337247 +77CB4882AD3D7294A4243FF82044DFD3D8A95061C1CE4999195182A672F5EE6D4F6F4385 +2962B03CB573A5312F7ABD08D960489C67F5A0BAD393792B1CE9F48DC5350D6994E03D38 +213536EFEE813D6E80AE77C005FE13887F4C1F77C42C49209A84DC4446CA1105CF2DE873 +12648D57AC6E69182E6A1CD6E0D0446CE8BE125EA7CB9B7F948C14FBEDBB96F4AA678C5A +9B26219A2D6207228B56124CA574576DD2EB74C858414941A9AB5CCCEF089B2C805E5C18 +41DEAA6AAB18F9B1441665C471DDC1262C45B615A6D56F2B041EA997822C0F7A8D920316 +20204172E8485087082E0D4A82C05628EE7D4E5D06FABE541BA61E1059262F1F72E73EBD +E6B4240B4765D3DF176F34067AAD06B96E3472599AE0B788B4210C8A8774DA9D3B363661 +376054BC96A1AAB5526AE05AA83D678B36F7669FCA2664B67C6AC8325353451D953DA3F1 +EFA0BCB7A40C4A74E846594A9E3030BFB51F6AFDEFC845647F07E7CDB03C8E1D0C635234 +1D72BF74913FF72EB6974449A1A2F57EF536115CAE3F0DE6F2F02132F85B77EBC2D502DB +F29D1097E8CC5753FB621B30805B0DF2BAEF9669DAFD537B797E6D0DCE130D304D98D7EA +DB28132660552174A2C9E71F7AA8C578E03D488A7FB5B4A62EA85E012D1A65CED729A30E +7B6BA9CE4178F3290FA27D86F0A79F05CD04420A0A4C3D4DBA308FD2601C3B53BADC044E +7DFAA6487B610C3BCB2383E956D6CFD152E40486A70C1FA187EC13F54771351545AF670D +5D0E1E8D0FF1095285EC0D814CB425151836F5590726D765F41674418FCCE1AB4DFE3188 +58D018323FD46EBFAB59536657B4A983A43D77A382F11E5DFE7799DF4E56B96B1AFBC0E4 +15ABF51A6E71AD7195DB0B3A4615C18A96359C8A4A629316177535AD11C5B08ED8B9255C +D96FA63A075DC2202B580462A3A0B95050333B0A790DF2F85EB2495054E9C01C29D37922 +4EB6E11AC9BF7D4291D099DBF5A90B0D9C55BA3941F7B55360251142DA6A70C4F96D2428 +E03B42616B5581EB3DD5D27083DD15DA06EF8554574BD1FAF622EE02BF94F2483F25E442 +E754D33DFAEC10324C14767C2F090CBD8EA8945116549D2F2F26CA3F2853C61242B94ECE +EF2C696DAE5AF7E1FFEB5C014020F30ED16E38333766D73D1DAF5D94A52276BFB167F477 +1F5129A535C70DBB30FE25F5821F12CD6869DAFD32C465E148502518975ED2E62E38A430 +5A9FA1BB0965595C5D7FC980CA18D31497EC472783BDAB85F87047436861E0EF19E89F76 +2A2E1CD3FA0946864EF443DC5CAF41A97B39710A1D2C7ACB6DBE520C8BF6039B0396E38C +FF9C1163A535CB56DA5349C97480C1D69A64070F68D6E018CB5C3D431284F2625E736685 +B1A8A038451F9FBB59364266C835BE806C59C29B75E003C8CCC8E6312C96B2AABE0C21DF +3BD57B8189E69014ECF7D1A46C019247ACA81F4E79BA145BF11DAE4A54DBAD7B5E01FB3A +8E5A98C68A66623770B35B6D6E243189370A48668BCC2A86B7B00504E4FE192580ABF598 +4D772BAD00496C0B09E07B73B1DA5D7AB974014B96A97B9A576B40353AA52C5A620B03C8 +E077B327848E717BCC6BBFB9A8EE85BDADED84FCA482F93DDA8B459640344FCC4BCCCC36 +B36D47FB7EEE95DADF5DC838C2BD7BC8EACCC754F5ED3B8725750B44D509B3E58F54E2F2 +3796771A630649392E2A4805F1E0DCE49F851929CB7A0D9535F0E5A2777F6EFC0A44582D +BD7D9C245B77334AD67C841FF061BDE021CBBA6660C641629B84F099051FC7AF83B82E63 +10C7A73FADC8DA3B81263887AE843DCA21F60FFD984735A52F0AA7FCFC59C3FE16CA19A0 +0E12710CB6974730043C289F97F1371CC1F3245AA4DB2DA3C34A76C63F75848EF5FE7303 +27C1DA6A8F8F6EF3B88A5449197400BE590DF1B3A85CCF4D24287459FD87A87C2F363D2C +5D12954C699E82D3F63A0133ADDF0902145CFAB667BC41083CE188183F90DD69C5D2829B +51F3D0A23D9D526689474301C968591CF65F1F2A5981CF6886EF794917F1C9FC6961C7F8 +D53A959F7F94B2D6AB1CD5BC34A806E8E601B49B425C0CCA72E57DC12C71005D721B8BD3 +2E2600DD049034F3CAF2554950853BF808A18B865C9E383DE785E2E83A2428E609589636 +676397303CC7E6BFAC34DCBC109002AD522731DA632A4E41DBE20262328712FF9346A6D9 +EC3EAD0AB32323E5B430A648C387E263902C64214FDCD8E3FBE94C92AD3D621279BD9E26 +C376A9DDA4C3D401348636F43CBCC10F8466F38FB77AE0F56DBD8A0E09FEC26692E7F36E +59D36C38F982958D824A54E80164BF8090B465A69AA6E5DA991EC14371AE15A6BEDABC7C +6C328F52FAC384A1236369A6B1BE13657B779AFFC42DD016360C6963AD615B8400867B53 +50F26A3D4AE9CFAEE4CEE13F281F5BAFA3C7B4A174B9FDF809B1244B26E5D74C26B805DD +8B4C7F0B60632923C82BBDE980720E1EF108145C7596CE6895FD5BB2CEB24A5DEDCBC6D5 +29B234DBD8E3F67194C7A7939B980A9B3666D827FE48DEB0FCACA6BE0319244D5FEB8992 +FBC3A1986467D1D6B5EC3E44816CF5538264EBBC4E2B057FF8FE1A557A762B9856444B16 +E738DF814C924F67449B8DA3EC768B9C6DD2B484DBBCD2B9EDE2AC064B00964582C979C0 +9C90EE17B9C9ABD2233EA165869D9328468DB2C5C9A036EE72A4F6B9E8A26D1A2EDC8E2F +D357C902E2B8F255275EC483722B6DC27295B5008F5802511BAC5011B388BE9C85B1512B +2F6316F3B824C3984068A665BAAE62189D0707BF8D0F5A8622E42E37497D2041FDEF6783 +B923BFD47358F6A7F9D0EAA970B25454A341ED197EB96EFA16EEB9B8A59EA8FE3C284E21 +437B509922F9959AC3FC9A0608F6149D2433E75794B23FC9957CC5E3F28057888EDA3D4E +3040EA5BB3E01441237ED288189B6C572BB237D77BFF68E554464C3170635D064817CC62 +6554BB6872555DF438A26A93C4192618CEF8BDA62A27D034549DB4DF5324FA2922647469 +B04024EE4140616B8D25C7B75E30576AC8BF7F6038DF17F5D523D7679E98DD5F778C5A79 +498A642353365B0D9B4F0C8C229EF6FC591A066CB4D05007527273CB9C143F0A19B6E6F1 +E5E3BFCFECA6C2E78C5A292FEF4791BBA76D68511EE01585A4F9C80DB535D4B08611B701 +1C3BA1C4B044D26E6D92E9CD2EBB14F1CB36B38D916C4D0B6F15041C87C2197E924AC416 +AE1E0FB91EB02596C785B7E4E874CF14265F1C129668E282EDEC9A8E2004DBCBD4C1FE70 +C988F4434269630CDCF57E984ADFBD4F4FA83DE7CA922E4D05E82931A29117D5CF8F0849 +18E751536A4CAC19A9487FCB05327404AABD8A25125EDF9003DC07D3E1256F62BCA87DA8 +D501DCC0B20D6FDBF4CE4D3058E5B3570897256B99470BA08632B1C6752422E724CB7DBD +BD4C528150EA909C4F85FB0B55AE7F42F1936B8FB2B76C190CDA26583620FBF92CE75F12 +3E7B8416C09AD2E2343A20F2A87E67E58E6B8A3C4D2DB421CD13D049FB5D4374C9B8E364 +58D96CE8ACDC4695800908B7527704262546DAA1A4BBFF0809138E7519C708FE3402691C +F7032BD3397F63F1CD20D887D0003341276534E936DA0089099BF8FE24BE7BF5DE26A2D2 +21F6B0A389AE63D0616D650499D40F555BC2BCE3D252B3A357EAAEE3A0D04CECC00D1A21 +0087D59BDCC2BFDC85CCC0B91D6995F833F5BF643CF918CFC42B3AC50EA874AE5923E84A +74C91B5EFCA4F114EDBC153AD97B4F46DC23DFE0476ED5F56C1D30B221812A08F0E438FF +C319E84097132FE0E81A425AF771752F00270681F9BFEC2B750B57697CC0804AD7F5165F +9FF7782AE65449808E010DA07C7BBF941C5B3A7902256A64C70E66E98A41731BD48168F0 +24C0E586C2EC18AEC6E08818F2CAB70BA721EF53A7BAF26F58961BAC555017D2B9DFC158 +AB875CAF6E28BC4E7786C214FE92E7C490D6DA34CC750AE5B5C145128C5DA7275ADBCB4E +50983EAED02DB9E265790C747963CB33763584C38A9AFCDCCBBFC4B67E1055E555333785 +6FD9B7DB0E036ACD6F55622D85ECF7C3056481BBF39A1E6E116C152D57C6E51177D3B7D5 +9C6F42FC1CEE8331DF17D97436FCB5EB84CBF99496E8B2B1E1E3AF77DB160CF5C06B42B7 +38D2E8D8987EE38BC111416C2054F6F308637C8EA7CB3EBC6797FAEBA1B89F52D056E74C +E08E1A205C7DBF60376280098D6E955946519E89E4204E170BA4A90C4FB50B3AE3B16360 +404499E1AB1C37EBDDD97443B53E2DB9CC73AA0000609CAB5ED34A972A790570FA8CC7FC +0CD3C6AC2230475B +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +cleartomark +{restore}if diff --git a/data/fonts/LilyPond-feta-nummer-design10.pfa b/data/fonts/LilyPond-feta-nummer-design10.pfa new file mode 100644 index 0000000..ab9710d --- /dev/null +++ b/data/fonts/LilyPond-feta-nummer-design10.pfa @@ -0,0 +1,299 @@ +%!PS-AdobeFont-1.0: GNU-LilyPond-feta-nummer-10 001.001 +%%Title: GNU-LilyPond-feta-nummer-10 +%%CreationDate: Tue Nov 25 18:41:30 2003 +%%Creator: Chris Cannam +%%DocumentSuppliedResources: font GNU-LilyPond-feta-nummer-10 +% Generated from MetaFont bitmap by mftrace 1.0.19, http://www.cs.uu.nl/ +% Generated by PfaEdit 1.0 (http://pfaedit.sf.net/) +%%EndComments +FontDirectory/GNU-LilyPond-feta-nummer-10 known{/GNU-LilyPond-feta-nummer-10 findfont dup/UniqueID known{dup +/UniqueID get 4107162 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /GNU-LilyPond-feta-nummer-10 def +/FontBBox [-6 -322 801 1006 ]readonly def +/UniqueID 4107162 def +/PaintType 0 def +/FontInfo 9 dict dup begin + /version (001.001) readonly def + /Notice (Generated from MetaFont bitmap by mftrace 1.0.19, http://www.cs.uu.nl/~hanwen/mftrace/ ) readonly def + /FullName (GNU LilyPond feta-nummer 10) readonly def + /FamilyName (LilyPond-feta-nummer-rosegarden) readonly def + /Weight (10) readonly def + /ItalicAngle 0 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def +end readonly def +/Encoding 256 array + 0 1 255 { 1 index exch /.notdef put} for +dup 32/space put +dup 44/comma put +dup 45/dash put +dup 46/dot put +dup 48/zero put +dup 49/one put +dup 50/two put +dup 51/three put +dup 52/four put +dup 53/five put +dup 54/six put +dup 55/seven put +dup 56/eight put +dup 57/nine put +readonly def +currentdict end +currentfile eexec +743F8413F3636CA85A9FFEFB50B4BB27302A5955DC23E0F3397300C8FCA519E56C902CB3 +B617F2A7538B6DC265A7CF20D53EB36E373340044ED3C3212B846132E1960981D2006CCD +E888FD9671CDD7ED1352864A4B63C0967DB2112FA1C9858565C8FBD0DDD08B57B7FCEB3D +24B86E4B8F343E1D177E9F46BDF43B991761555A2BD0087D171A8D4E0704D7976EC07F01 +20F5004A55851E3D7F1B101CCDDC3F8F02070217787E5D3D718929D6E6B9F17D30A17EB6 +ACE1F85BE11BA385884D9D001BF3FF9CCE9EA1F0B0ADC25AED55D150671B2AFC400DFAC6 +9D690CE3C6F32A1F1530783E74EC69C8D0A02324B4079ADD20CC981D4E409ABC3C24BD03 +2F19E249684EB7BA2C88C81B6342B0EE4C590FBEA1D68C5E2408559B15785642521C2A78 +AA10F0D33C3025EE207ECEEBD7EBEA9961B064A92AFE9018ACAB694C2704A8B7F7B05F81 +4A65B7ADF0157321E7A698E678624184F411E72B3048EE8FD6B8D13F25F8485D5E5AFF28 +03E8D80DE6CCC2434FDB7ED80035C8962A82D761B0921706386257F19027846A5D2B63F3 +FBC6A3DA938D4FCCD635EDD2F3B3631ED52441310E77B08BA4959FF24DC2B705BD3C8773 +0BF78EA2F4E00421F18C7F3EC53C53B2A9F876FE7A33BC0845CE1923D40AAD18810404F1 +6B0CDB14EE807FFD3471E56C81CF20C6D3FE86DCB0222761600E17F7B95A5B2132CC4E30 +841510529663B3B808CCB5C2EE9D05AA8541F33FC3A26C95F1E76FC71D03E5012985AEBD +7C831AA4FF482AB4870F9ED58C64EEC0B9E6E280D9463795B0D1CA26590B5BB02CCDE8F8 +B3A73485C63C2DB4D03DC35E027B1F5AF7EB5E953247C8BD27CD95F16C821FCF3176B729 +8BDD368BF25EDA1CB0C2B806429D1D1213616015EBA75E3A1E37ED8EAA149601A1351170 +D849DD4C1FE655BBF49264596A3DA4F87FEF982F62D549F08F7146124A5DEA6ACA0076B6 +F4D3E8922524420D2DD44257DA9942D208AF7E3751B85B25D0EC56F7919C09A34536E41D +6C5772873C063A14F7DB758E22716E86F4C4E638826EE16F5514481D298528EB2994BF38 +222F6EEFBF2FC1DA18159F64E5CD187B3BAF198FEC8BF25F04D23361FCA1867FF3F8E3BC +A33AF9C8467091612081435755B1520819D96BDBC6AEDDE388BFDBB7E13DB6756F371ED1 +6C96F4278A6D1DD3A6831D2A2E44B38AFAF0050663AF5D912DE1C772638D20EBB88C8965 +148943C11C3B8B570B8F378B1F940A3339AC72972EB1EE105483E1ECEB96F521C6B6E066 +16F249D18CEFFA41733E666978D4EB104D952E40B2A110F3D8625601EF69F81F8B685C24 +AD4685D863774AE86BC4A52D8E42DB658C69FFEABE48BCFEC233AB879E868AF281F16DC8 +336F03D972A8F63ED60F35934B30E2AD6293323B9DCDC81AC249B0A2B6AB071213BB6B5B +E09BCBF652F249BFE72F93C2B0522F86D49CD9EDE851DEDBDC9083BDF82935F4DF8CDFD3 +236555B2534E3058388C0334FD57D7020D9EC9F4680D58CF4BAFE238D42FFFBBB743069B +18E4DC6E0AC51F6DCA700D584BC2F3DDEE9F82873BFAA7CB621BF01468F4394E654B3C71 +0D996ECE0E2073D34415C83E565FCA00E7F0E14EAFE242D1B70A77EEAE644F2C32564199 +DC044114FDFEEE2FA8E3574F4D1E34F0177A1214BFF70FF4F290E60168ACCC6A60A54F91 +E4A6CD7FA7357DF30C4D6345E3BD9069C3804D536BA109489BF189AADF72DC4810FDB143 +55A0ABE13E81BDB2D22726587DC7D53F06DC6B25A2FD8CA7E6D67C6D79DF52CE5210D54A +48F8E7C85A11BF6BA453B1E728AD7A620577342DE579A3CA3DE518596D558B5D51B24C0E +1BF96B8F2B842B91DCC5B8B0F9E7EB265F9D6E689B38AC100FB83CEEE5CDA96DDA9F3D3B +8D9FE1E56B472D1817EC19171A7CF9D13E9204988D1CAE801083FF4FD14D5F4B4A4B0409 +7D6DF440C05785F396C6E882D50248B9B6A950E5681320B305BEAD35A5D18A3EF6E83F26 +4530B1C803CF608C03071EB0238AF86AB35765D0E72AC55E7728527DB2339D25A31B8522 +9B6EF428A6232D5BE9BD447BDBDE560AD2CCB16E59756FB6FED0E9B33BFECE998B513CDE +DE61A5301F81BDEAD09CA256794FCF576400A5837C134D278A36F52E0882EF19646C496B +9AB9C3FD5D8A849EB0FF4A66ED09FC1275B8326499148BF7D32B5F1EB1B1207852D73C76 +F0F6D0458E78F94C71AFBFBB2E75190E5E413870AECE2CFA1BEA47398F1A35B3F9BA3575 +42D9CB84ECE4B37EB9F296E93DB35E066088746AE4BC11ACFC7F6F39275172F17692FD14 +1F7B7F85A97DF780493D457A923662C8056390E86DCE77E6756254A9C51BC632B4380F62 +338D48327677378C8483CAD8A7AA63A8521C39E757C35A607633AC6643EDA25F48333FD4 +AD2576D3B89A7B3333A9B888C3111C90BA7C52ADC4902151610E8BC32001A2B2021DF570 +EE4869E3FBD1C312732BBEEEE107739B76FE5A745FC6E3134BC22074B5E48A960F576F3B +BAFDA622C62BA10686F262B7C1F45C7418E235BA392F51B88B1ECA73809B4A37450B352B +EC63B921401B901E3D48884441E7F402C0719D95C145494357045C44171FE36B265B53E8 +26CE08E52242B950FA3CFEFD44B40B11C15C9EADBC9E9B4EBC79DF80E24DB37A9D41B46B +C788F691488987FA919E61E5F9D1462F63593E48718983A3F19FA2AF287CA4EC8BD3A11A +2B6A35AB7A642D62F744336D7A510756A855C56347D5A29EED2444E7B348A19A70E232B5 +A3307F3CCE6150338CA6606C98DD1ED7FEB1FCD8247AA38AA151D9F4F9E79C150ADC1792 +21C72855D9344BAD66EA505B87629DFB6036B48446E19C2F8F43C59FE4441D02D8A7B2C4 +6736E310F197FF4CA29DFEA4481D0E57CB5EE4F43B5DD291E6BDDE6E1BC9F44C83977B9C +1AA2EB443D810C0DA488E94646AE3A2B63060F17DB5231E16752B71E32EE436E1980390C +74DF8DE475EF7BA21A7067D8C2A4D4045801F18B03B700B6F4EB5808EB99B6350ACAD822 +097643C5A27EF9BA18D8D6095DE417A77A8A3FBCCA95F125E71FD6DCAA47CD0C741D61A3 +AA829C9B02EEE964B210F0D9716C7EE83F0AAE87ECC1AEFE10193CF40DCBA80E2D91C79E +49E13E335CB9C6E4E8334ED2BE404DC8935C2A77C072263296062B0D2B2D7E2199ED63FD +638D135BEF5906FE4C2B8C1B60A7F6C189B0653A589C8912E6D1891459B293CFB7AB298C +E3331F4D11588E01F095D3125BD0883F502204B2108A34D57EF13B6C2C4AD2F7EF26E587 +FC54880451C96A0BFBCF93E939B000BD92BCD70FA664360366E029E24D197727A43A4260 +A06D40F30BDE44C0F5CF1D59B8A396583D21BA958A473A17CB9F1C729E66B99983A6ACCE +C3F82A2D7C05267326637C66FA98932801FC279C03EC6C5D8FB3021737CCF1F787AA1F89 +DDE81CC56B3F183CCE4A07F11C2BD03392E82EA345C9E91A9029246575ED3F092357EDA4 +E6FDE42B5C1B4F38ED7AE45310B0EFA4061EC8BD6EED86A6E6369838780226A867A4E5BE +10F4CC2B53F7B17211C66CAF548CE03B06F2A45E28FF21D8D4DA9272B4E874C66E037C4E +3B7CBC1B78A35BEE50FB055069D3DF6C7F9E14DD3A8656A9A212BB9CAC4D318E32DA36FF +9B8BCE3C2FF9D6AD32415001B184DE899B1EC3EC2E2868118E6D94C210FD26CB55ABB156 +9054C86331F647A1E25D13947AE371D26CE96D7B71C452ABAA66DC65F8C2ADFC407620DA +810C537074BE66C272BDED789242DB409593EC4905BD9BE4A7364D3C6A58CE705CB56CD5 +35D57B60F1E2B936EDA72C10AAE5D46A1FE7926612FFBA7340BFD806A04F20F004D67045 +D6A5824CEC11AF2687803F7628DAB99FAD26ECC2F4D8D960658B3F7903484B9BBC1808BE +257D7FD10282EBE9E5CEBE3B490C0195464AB7BFCEFE56A888E200EEBCF1DC288D80A5C3 +7CCBB119B84D3E3A2D8BD5DF72515C15263D3DB093143C89B135C211CBE6C569C9DE1C06 +0CB06EA3954AEF31731E632E076A5D971CE3A2ABFD78449F1E99108932CB7A0EE29C8142 +FB0F18E054320B40D1AC6814B5A713CB2AA239F9221FA77B4CE9C1428D6C2767B2EEB599 +FE0BCF7D99B86B83D6E52FFF8EBD48F042E258C5E9317CA579D794D01CB0A711ED1F8D0B +3ABCA9EE7232EC658A6C23F3A01180EDE179A798023CBECF7469AA00F29C98A996F371BF +CB45857C3A235D48E347490B949BD7D2CD784061C2B5FB2E7D9BEDD9BAA81A61634A2CAA +C6FA8350A95334EAEBF194E1039B6C3A7368DC85437E0B98B48514090072FD19C5C1A0AB +467A7E546B3EA91F6DF0CF0B7700159C9C79C41B6BA90E2DA0C44AF7451D9CD4DCEA27DC +48A2534F19C8AC30928FA6A23B0CB1EC71DAA583077B92A16EF2BD61437A845E4843AFA7 +659C0D9E37723B9C92462541719AFC0EF925F3A8DD9FC1299F098F4D1042A6E7FC0F1662 +314AB2CFA9BC6AE34BE4722E4B7F2498D8E8009F56A175D49DD33A14392161FDB07FFC6E +7915124F7F8CD86192F0FE4050AE647F9EB245C0BD8330F0A98B4D02AD658A06AF23ED28 +3C960C03CA4F87848C9996354B1A09480EF566BE7989CC703E3220CDBAC4B239EE4A341D +616BB3FA507D1A79887C11A9A3F8207A0B2F72A6EB46581959215BD6FBADE7665AA40DF5 +67FEF3B541E4C13DD5B041B8B38D515DD98F98ACD8DFB602FAFA468D5F5EC7ABD3F3F77E +A2BF7E47C6D1E7946435E8F20C8CCD7C2FCF75BE76C8890F950AC3FD131A86FBA419AF21 +23BF2EFCDDFDE5BD1EFCEB212DF05C471104E49C05B67FADA06796C623679C7BE88CB7B5 +AD491EBF56E446450BE05F7ED7DABD23B7581805CC982855155D79B4E71A01420B325713 +003AA8DC4B4C4C76C33ED7102B76CB5A91A9EBCE1B2125CF17D1ACD7C1987232B4A4F511 +128B7C7EC4F1DE8795C61A3C1B84A49E808E69DD61F4A77071F113E909BD31810762FABB +EC9900A2A1298EF48C3D087E136BC8784D82E17EE82CC475F1747B61CB47827AECB11A33 +F5D35B95E5696572CDCCEDDCDFE40D7C7958C1C34576512458AEF9BC0B32E4B12B19EB86 +385AC4529EA43F5AE8FC4C32B9A4AF2602C9F6492FB2A88A135994E9C95CE238E53C1E99 +5774AC393684018F8AB7E45790F78886EEC922A331E30621F6BB4D7C401E9217E2992B99 +5CEEC0CE77A6F6B27D618C4735C9F414C27476182D5440E67CFD5C783185ADB60E02BA7F +52411AF33FFF6ED7CB7998D0DDCF128F94049D9595846B57C25BFEDAF48194509DF1B986 +91C9A4DF299A5183D60C578909C5716A9C4A10AFC2AD555D6762543C60A301D08F1AD207 +0A1A84D7D2DA974FA60EB68D42F5A83BDE05F70C4F60E85DC9EAA28756BB4AD24F1494C1 +D01C8CDD2193E6255EB4EA9B6ECA4663FF6155445FD3DC853C1E3DEA5B1C3166F24FEBAE +054DDD9D0CF3DEEB5F90E7D94D77EC38A4C55FBA82531AA7C807FD364E5C2789697A898E +98621822826F8F60A15EA1B73944EEAE21C601C401DE5956198A0D1B00B10DCE4423D8C1 +203291222AE4A3F66E14973284D33EC2FF17CF82DF06FE9ADA7BF5D36ADD2B0D55BD941E +1374BE685F3BB61C11EDB273712ED95D1FA6E3EADD503D54AA2A16CBFFE059BC129F13AE +298A3959300FB013079F5CC820DF83176BC5A8BEDDE702900011BBDB01837D6CF3F3B17B +9692C54FF963C94AF1BE92878A900B955BEB8C1114054B2E81BC93E37E201B7CCE5A5051 +A820245139DCFAAD705F4C81AAC4226420BF8E95D5B460EA9F054A2CB41248EE31CE1727 +5B8DA3AAEFDCE4DF6035E1971379E3FCA0BB08E14F08FE46C622018CE317DD9835F548DF +5210528399928C01090974AE6E2C28B81550B1484026423AD59339506013C6D2B78EE633 +96B57C23CF6DB374EB2D5DFA3AE6FF5CCCADDB919DF1582BC6D05732716572B37267786D +60527708591515517560C68C875B62D30E30027BF8BA69AF1C6ED2AE0BC40A4FEB0782E0 +670F640023E74B1F281BE6E586015904DEEDFEB718C78325A1FA51A331D35F414ABB80E4 +806CC8401D4E8E796FD38B71296725829EE6D15EF8F4D4853BAD405A570803AF67068B78 +675D7F53C40E72015BA5E13CDD9412410A0618D3A0A40FB5E144762E48BB80FBD8DA8C4F +EBC993C03C60BDD010090D5E8F4F789D837CA855A55AE1D2DC83E3367ACAF0726E85FF55 +6176C16B39461C8C5A449FAAC48B257D5083DC9AA0F9A8338C56EB0837F59025EAF616E3 +EA78E28B1722D38B27D0CFC583CDF8751BDE1AAD7109CC69D001815DE1B96693AA9A3BC6 +B8C13DE482660CC136EDB7B376691A339025686DEA600A6B96A02F962DD5E1275EF0DBCD +8264301259D8B4587B7FDE3B0A2D3D1DE61D3D1220488C8998FC07BF237EFA1A63B5292B +886B58FD63655B8868815C7603B8B295502881E1780075642CAAA0F90F16DBDE7FE2DADA +3E06C67C30541C28CFE3747717AED2489A30392AA6AEDA5939C4844522A3EB73BCE78505 +ED5AEA1E9F55FEE0A673290B532F7C100DCD8CDEA72917A073A6266E9B36D9C82350920A +4E74AF611674073AF227312957E776885A41C7294D9ED700C01100173F63080BED857BE6 +251A250C9047B59846DAC3DA8799323B3AFB42B66BA9747C5D7AEE1BF95096987450BC40 +4445F5EC8634D0BAE1ECB48D1289C2E9ECA8DAB1AE633E21E0E9418FBD32E91A210EC606 +1753DC0526BE36ED8953FD68D50A22962658EEBF75BE2121D99FFCCB37B2009B8F0470EB +13F8A5C800767BC7DD4A75D87EAB22E44F7BCC7DA7A90FE4B89C4BDA5E0171396BFDB9A0 +FC59A6DE3D3BB024D69B5DAEF26ED1201F1BC5CF4F941F81B0E77767237C5370F7942CC9 +E54760DA6B63850F64191448EA639BC16E3D6E361E6BFEB0AEBDB9CF9C54D8BD9D57C615 +DB4906564EFCB54268FE7CE5DEA527B076DDDC28CEF9BCECF481C0205F5349C0169945AD +F16C5C8C4084CF13F3D9C249CFD0577331553FAA3E840FE4E5502DEB46F3F19F2518F029 +AC6B9AEEAC21CD3BD447F82AA7BE974F22349741D0914E2733C7F353E4FAAB0F112F4F1C +FA65456CA0F33350F859877D2C1F17C34812807866DEDBD8768CC7697FB4F75B635761F4 +79E0F4E90FEAF292F50E77AA89993EADBA698671BDC28FD0FF01684D999EA78C949FC995 +81A4FE4CB8AA60A1E845E75AAE0C73DD9FADDF062E4B897016C3E6F7A74758FEAFBE50BF +66B2830DFBAFEA62F4BEFB4D5135752116B9895223CF92AF334D3B91D56DE8E1B1BFD9CF +7148FEF12E9763B33BA1DF93337B77FDFC471D59B786152DE5E748A0C7C3AD41C9F57075 +0BA5265090EA9AEB5646B83F17F6E673F7D2C7DB8342EA300F89278D7E1417B61F2EB98A +27A624043A6948E8CA86D387228CB7D7B26C8A8FDFE868F9326322DA165AFF20BF532866 +57B76E98A2E26E5FAAC8915923B0CDA719FEF7B9DBAC39B9259D9B0798A513A2ED544B7D +E36275895CDB88979897104162041596A8DBDCBC8F263BBE31629D05CE4FF72FD4BEAE8B +C51580B1D01BC2A92CEA08483B0A1C203CCC2CB14542067886B0D050440BF795A1B9F2C2 +DE3A46169C6F206832495D07803C0AD38A4A0194378E82EFC8A741BF0A35D71CFC9BBFF5 +9E463C5E431923A3889856D5937DAAD8D2268BD94DC37C056CC0DB2833E6E5A4F62C55DC +18B5372536A6E7871417F62E341F62AC47D046FB915F263BB3BB4A291DD7A895F5577A9E +2FFA4018FE897A2D7B35DA607DB7DC4695481774C4C1A5E494DD95A715A59C6D0069FD09 +A837BEE5A3BD6D8B162C0320ABE0DC67DED129EA1D5B03C495BEFDE5C20886F657A1DB00 +70C57293E9DFF55F5BEDBBBC01E4C65B751D3B44C99E0FECA10758CF0952C40632441052 +0E83CE17E69347D45A3564DEA6BF5E5F4D788585EEEF7D05195D294DCF089932A96A11C3 +2D2AE1AFF7D0F7E1E1A3DE3FD7631CC45C7852F14E96741AA7E4BD3D02D04DE8A06D6BBA +EB236505CC3778403DB7C183E077ACBB2BDBAEC5011E3C23951DCA9DF3186FB462344B2D +C7B43FAD800EBEB0BC993AA72431D15CB9F64BA6E95A7DACBC294028A128D64F941C577F +01309B48A3C6791B017496176926F3B7CEF2FFC9C0B0C1D38496FC59A6FDEC0A4BCEE10C +D2639E3D2402A0A211D804758B8FD6C21D528717383C111EECB20830C67FB627CBC6470D +1088012DE4628760A1CA86DB6BAEB91A9B251C78AFC72A7F0DAF2D7FCBCD2FF82071CB91 +AC3391E0A99CEF8558C0375E0BBAC06095589A1F9134222CFCDE2FC27ABFD08420A28AB9 +DDA86AD85A7027B948BCD93E929B5203E3798D2A5C04ADB7140A55C4E6B3A3AC2CF43BBF +D77CF91B4F7E475E3B09E1A0338B02FFBBDADB21F60C213646953CBF4C496E1268A221A6 +F9F923F3CF57F9A25D0FE3DF926F13687458BF36CB99E970B62D5D482D7EDBF67608C582 +9A3B8DAE433C44BE608667DA02F6C5A0AC185E4A5390C32FE4341C454CAACED589B8B4BB +0EFFDB81D6C91C209B180509BF3124B4ABABCFB381A1B472E1DA665820A8D944D5F68AFE +07045DB9C24F682C2071FD2FEC23C2E877F2CE2A13EA60613A2892DE1654D96685A511BA +B601A828B7A984C8EE839C60651DED0E2AD99FF4B53ECD5D48E10612F7ACC057508ED59D +7398D68E5DD4A2D175788BB5F85AEE0132B6277CDD7AEDF7F70347DF4C1BBCDA5763A6FA +5E69AB8C184F5467336B04692D14194EE3E7C020681FC27BA51F9E98419B99BBABD8DE2D +ACFE9147F3F8F109D4818F6F569B4B6A09BEAD6F3F96C6ABD18F1FCA3337E4EACF87E3C3 +1C896282F2135DA80C4D85D830099CB7F49D588CA4F349D224986F4C692F0ADB68042828 +FD6A371E0E943D4FA89E7D34704D32FC0F0C6A6C8BE9579EB80975A800694E5F71D5EB0B +C0D3A2EBD9F2EC1DE0C9B972A414CBB1B2DDB619109825144BB6F018ECDEC11BEDA73CC5 +341B96F22BA1E71076516D449115E2FBAF551DCC04423F45FBDDCE114508FF328626A1CB +0F25F0496579D0E9FA56B521732141E64BB50625FB012FAD8ADB49ECC738052DB049F6BE +F4936959D186F871C495476306BB3D3C121558662A58B1091291619B38C7A8D048C6627E +1BFFFDC579D6476C17DA3C8ABB3C48A80E5B82C95CE8B8F364E1A597012515FB45D31E46 +F42A06DBA907DF2C2A482A9DFBD10CD01E1F19B5F8F6865271BC6D1D9BBD44E137FAD336 +7C2B667DE38F0E7B52F6C4AC456F72EBFB250077BB7CB4F42AF0D259F1620D712C7B71B2 +0EB90EE92EA523CC0A33808B50E00D4EF9E16E2EEC495DAAE428057A60730AE081D161F3 +19FFBDB98381714C850ED7F687BEE4A7F59EAB5F1B75D3FBD8CD22383560B0FD3E0097A8 +2BE90131742456C330F25DEA75BDD87F611E2A022718F554A75EB35BA415F385A39681D9 +1FBEAFB47203FBAC0FCAC00E4DA7B09C9B16C7E0DFB81F07785813477E775935C8B12ABB +159BB3DF6A4685DDC3348ACD55F572202F88C7B4A024C8BDCF578B5DFED78405E5D9A384 +6216192283998F4E18D3EB57AD1208CE3F098CCECD6EB6343D89593C29612A849A65EDB9 +DB2BCBD046E096EB8712B560D9718A5571454CB59420EACAFA4164F08971773D3D46AC9D +5A0A3CDCB6368C7B08BAC72E0D5F529C35BDECAA8ED33158028DDC58BCA8949859CBFBFF +7941EDF8922E169C1863FEE2531667CF7880BC0AC9FF8681E3F5B496A4ACC62C097723EC +9D9B6B0DAC7C533DB898C8219E4B721C556F259DF2C5DE61A7FB7B23CC0801F9756C25F4 +78B9F4F1E1C8E7D59D673BC46112122C37EDC136567FF77B25231BA22A4FEF91AB4F0346 +11613695BB2D14DB5F7CB60CC08E7233B09EFA90BB5035827216FAB4F606995E42B9D627 +51F25668AB511800673A13B28513B73D7AEE785D6A0E0EFEACE4B50DE5104BF795C7BABF +67DFD8C2945A27112D9C2E1C50198EBDEF7F5F845CDB42EEAE6CF59EF4830685F7811A6F +EB53104F384A196673C850B487E8BEF7A0165C4DC1B98CB9FA6E5AFF64D5686F02CDCCF5 +2C0B3C88A8957822F26642621B582C4331BB6C2D184F184FDFDC2C3F22DB402EC1DC9771 +5BB18F6BA8B74E8FD966256EC2FEA17818FF3C003F3BAFB28304C6204F27D4357EA7190D +2645BB528A1E0ACB7DF9CB449EECFBDCD29ABA81465A373D5BA49419D1A9A52B33A8B5AF +A98076671D7784C9B31537945C2C4388B4A865A68219ADBC4D35477888F54FA83D1CB61A +355E50C8823C16821778AB7035135BEDC88981ED9A464207CE6BA8BAB95486CBCA9C9BF0 +13CD6F649BE1224978B5D79877BFEA3B23AEDE6F26A42049C10C7953704603E380B946FC +432AF85FFCECEA399351BEF7CDC4B0F9B7ECD6515E5FC02C2B664078A98F375DE5B72911 +32FFFA9ED77DB50CF8094CD651C3030053D88AEA4DA0A5780C8AC8BDA19B85B9FCD0BC3A +6DB90A2DECD3F043F9A2827F101349B96F183757E26F56A65D25677045FF7A1E9614DF9F +D6CC6DC13A7064AB91193A3F6EC4C4F09691D95A8BBC4F5887E97FF79999348BDB1979E2 +F4A712C990E48347551FDD19ED8B6D10AE54938FB87D883334D54FA717CB042F3F802AA8 +4AE9EA9DE5D4A99741B4E389979BCFA8AD85088EE41ADD7CD929354945A1851A09697D59 +BFFDAEA0BEA56B2E6AF8A7CDF2D7FEFD4E24B8E765B938FBDBA0A3AB73A0D9E697D2D11F +73304DEB8A5F95A45A7A255E86A147B243CEA976889D1BAFAD3FD6BD9EA65FE8891EF009 +916EDB89B256178D45A970787077A1640E3655DD418BFD24E896C9F1DE206E1B6A2AC596 +E57933831C61585DEDDD3E10941EED768759B20CDD6E6C3D0838E5D3790AF85A2345E8BF +F24E533217AB160B384CBA2113E828CB0D2EEF1AD53090B41CA5F9F112CA9749AB89FE8F +E4EB44D50EAA276EE5C7FBFE90B441AF48543F14E40FCF52FEAD546CA3B53B2B6DB932B6 +CB0F5BEFE2E109846427CCA995FB7591FFA5EB4B8521B11B29A4F15076E6E302B455D873 +55AFFA6148EE62BD23145DB4638E3B88BE287218119A26E1D03B98A2C7CAC87D8E0847B4 +53285AC3BB17A75A3C1EE02E82F0EB414F338BDE2263B3760A07BF21F4CA4FE8927EBB9B +3DB9AF0DAC01039A83FD95D7910BF6AD7147153B1C4BCB3C41C72527EEC0D4E399048371 +71D4CE6BEA65D8ED04D8C71B76F7842D5B803615EB2056C1968CA0B08907C7E2AA875BD7 +D5CF2077D11E6CB398277D67C55E464C387A8EE05D57EBEC2020658504D0E5E89244A9A7 +74E19D8D5C873CAE4C9C7DB22C23C50BAA3E6CAF7D4A71A10527B8700F472E9B1EE48B80 +76AF15A85E10EF2A476FB0587D99FC7295FA4AE3A3E82BC778D22FE992CD24D89534BD91 +F92109601B4E64BFE6E6BE0A7A792C166C9B46C30407C541295CC8A8BD9622131B1CBFD0 +9EFF419BCD20CFDE9A86E0AFBEA5B28B4A4E13195210FFBD5397448CA13FCD187376D922 +A5C6A43A32064C67B949D844884A66F2ED95F5FEB3B20218566BCE9105282F6C9683E299 +2445A847A4D6D1DC59F86D1857AC1EDB37146AE246E623E5F7F5D87828E4C20E97DB0C30 +E5F1744201322AA75B5143742B53D5AA1A5CEB1D7DA665C4879A017ED35CCE49375C765F +EE3364918E0684B34FEE7133189E5A7A7C08608CD2D9C4208B724B7EEEA245EB769D8D87 +AD02B7EB250CA6FDE91EAB1108A26FE25335CE20688A9400E08DB549979F5961ED0BB8F0 +448AF38BC815A79E18036DF0A41C31CA7924FE060601530FD3CC433A2C2C0F6E17E7D09E +D1F95A0F943F9D61C5E9B7B2B8DECFBDEFA39F0D3A4EAC59BF3BC0A05E5FD61AB8670BDC +67AF67A32014B3BC483F0FC7E0DB33B47558230E4845FAF7C0DB7E53258E995CD7517E75 +4E7883656DFE7400EB339CAEBB7196A2AAE72289BF6FCF2A2F23250BB3E4253E2838FEDF +93197D909FEF6FF768811EF5B052071FC9D2B6906CA27E8F80BF3C833B16B020AC4DEFF3 +0DA18A2D0BDAB9A515FCEC8CD02AC81D7961C338329AA3BD59A04D042BB73E0C43DC8745 +091192445C60D569605B575FBDAE44C839582DCF73E5974486F293AEA1B323E3776B7DA7 +2C602916458EC51424DC3AE0DCF8E839D3B3B017C6C590FF936275DB23B1E49750817CBA +987BDC71CE0E178C1CDA0396007A5B8B344484371ADDCDC42D636799955A6530D92CAFA4 +EB5289EB9B0C8CE362A76900B7F367832753E328CA3790730755D0103F9BAFA3AC0280B7 +65665C4D66AAD798CEFE3FB5B7CCC9804190A07F791EBDC5C526F4E8DB988B6E199F8066 +AD5A +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +cleartomark +{restore}if diff --git a/data/fonts/LilyPond-parmesan-design20.pfa b/data/fonts/LilyPond-parmesan-design20.pfa new file mode 100644 index 0000000..966a139 --- /dev/null +++ b/data/fonts/LilyPond-parmesan-design20.pfa @@ -0,0 +1,1322 @@ +%!PS-AdobeFont-1.0: GNU-LilyPond-parmesan-20 001.001 +%%Title: GNU-LilyPond-parmesan-20 +%%CreationDate: Tue Nov 25 18:43:27 2003 +%%Creator: Chris Cannam +%%DocumentSuppliedResources: font GNU-LilyPond-parmesan-20 +% Generated from MetaFont bitmap by mftrace 1.0.19, http://www.cs.uu.nl/ +% Generated by PfaEdit 1.0 (http://pfaedit.sf.net/) +%%EndComments +FontDirectory/GNU-LilyPond-parmesan-20 known{/GNU-LilyPond-parmesan-20 findfont dup/UniqueID known{dup +/UniqueID get 4030633 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /GNU-LilyPond-parmesan-20 def +/FontBBox [-163 -1248 671 1248 ]readonly def +/UniqueID 4030633 def +/PaintType 0 def +/FontInfo 9 dict dup begin + /version (001.001) readonly def + /Notice (Generated from MetaFont bitmap by mftrace 1.0.19, http://www.cs.uu.nl/~hanwen/mftrace/ ) readonly def + /FullName (GNU LilyPond parmesan 20) readonly def + /FamilyName (LilyPond-parmesan-rosegarden) readonly def + /Weight (20) readonly def + /ItalicAngle 0 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def +end readonly def +/Encoding 256 array + 0 1 255 { 1 index exch /.notdef put} for +dup 33/neomensmaximarest put +dup 34/neomenslongarest put +dup 35/neomensbreverest put +dup 36/neomenssemibrevisrest put +dup 37/neomensminimahalfrest put +dup 38/neomenssemiminimarest put +dup 39/neomensfusarest put +dup 40/neomenssemifusarest put +dup 41/mensmaximarest put +dup 42/menslongarest put +dup 43/mensbreverest put +dup 44/menssemibrevisrest put +dup 45/mensminimahalfrest put +dup 46/menssemiminimarest put +dup 47/mensfusarest put +dup 48/menssemifusarest put +dup 49/mensuralleftstemmedhead put +dup 50/mensuralmaximahead put +dup 51/mensurallongahead put +dup 52/mensuralbrevishead put +dup 53/neomensuralsemibrevishead put +dup 54/neomensuralminimahead put +dup 55/neomensuralsemiminimahead put +dup 56/mensuralleftstemmedhead put +dup 57/mensuralmaximahead put +dup 58/mensurallongahead put +dup 59/mensuralbrevishead put +dup 60/mensuralsemibrevishead put +dup 61/mensuralminimahead put +dup 62/mensuralsemiminimahead put +dup 63/vatpunctumhead put +dup 64/vatpunctumcavumhead put +dup 65/vatlineapunctumhead put +dup 66/vatlineapunctumcavumhead put +dup 67/vatinclinatumhead put +dup 68/vatlpeshead put +dup 69/vatvlpeshead put +dup 70/vatupeshead put +dup 71/vatvupeshead put +dup 72/vatplicahead put +dup 73/vatepiphonushead put +dup 74/vatvepiphonushead put +dup 75/vatrplicahead put +dup 76/vatinnercephalicushead put +dup 77/vatcephalicushead put +dup 78/vatquilismahead put +dup 79/solinclparvumhead put +dup 80/solauctaschead put +dup 81/solauctdeschead put +dup 82/solpunctuminclinatumauctumhead put +dup 83/solstrophahead put +dup 84/solstrophaauctahead put +dup 85/soloriscushead put +dup 86/medinclinatumhead put +dup 87/medpunctumhead put +dup 88/medrvirgahead put +dup 89/medvirgahead put +dup 90/hufpunctumhead put +dup 91/hufvirgahead put +dup 92/huflpeshead put +dup 93/vatdoclef put +dup 94/vatcdoclef put +dup 95/vatfaclef put +dup 96/vatcfaclef put +dup 97/meddoclef put +dup 98/cmeddoclef put +dup 99/medfaclef put +dup 100/cmedfaclef put +dup 101/neomenscclef put +dup 102/cneomenscclef put +dup 103/petruccic1clef put +dup 104/cpetruccic1clef put +dup 105/petruccic2clef put +dup 106/cpetruccic2clef put +dup 107/petruccic3clef put +dup 108/cpetruccic3clef put +dup 109/petruccic4clef put +dup 110/cpetruccic4clef put +dup 111/petruccic5clef put +dup 112/cpetruc5iceclef put +dup 113/menscclef put +dup 114/cmenscclef put +dup 115/petruccifclef put +dup 116/cpetruccifclef put +dup 117/mensfclef put +dup 118/cmensfclef put +dup 119/mensgclef put +dup 120/cmensgclef put +dup 121/petruccigclef put +dup 122/cpetruccigclef put +dup 123/hufnageldoclef put +dup 124/chufnageldoclef put +dup 125/hufnagelfaclef put +dup 126/chufnagelfaclef put +dup 127/hufnageldofaclef put +dup 128/chufnageldofaclef put +dup 129/hufnagelu0 put +dup 130/hufnagelu1 put +dup 131/hufnagelu2 put +dup 132/hufnageld0 put +dup 133/hufnageld1 put +dup 134/hufnageld2 put +dup 135/medicaeau0 put +dup 136/medicaeau1 put +dup 137/medicaeau2 put +dup 138/medicaead0 put +dup 139/medicaead1 put +dup 140/medicaead2 put +dup 141/vaticanau0 put +dup 142/vaticanau1 put +dup 143/vaticanau2 put +dup 144/vaticanad0 put +dup 145/vaticanad1 put +dup 146/vaticanad2 put +dup 147/mensuralu0 put +dup 148/mensuralu1 put +dup 149/mensuralu2 put +dup 150/mensurald0 put +dup 151/mensurald1 put +dup 152/mensurald2 put +dup 153/medicaeaflat put +dup 154/vaticanaflat put +dup 155/vaticananatural put +dup 156/mensuralsharp put +dup 157/mensuralflat put +dup 158/hufnagelflat put +dup 159/menseighthflag put +dup 160/mens1eighthflag put +dup 161/mens1eighthflag put +dup 162/mensdeighthflag put +dup 163/mensd1eighthflag put +dup 164/mensd1eighthflag put +dup 165/menssixteenthflag put +dup 166/mens1sixteenthflag put +dup 167/mens1sixteenthflag put +dup 168/mensdsixteenthflag put +dup 169/mensd1sixteenthflag put +dup 170/mensd1sixteenthflag put +dup 171/mensthirtysecondflag put +dup 172/mens1thirtysecondflag put +dup 173/mens1thirtysecondflag put +dup 174/mensdthirtysecondflag put +dup 175/mensd1thirtysecondflag put +dup 176/mensd1thirtysecondflag put +dup 177/menssixtyfourthflag put +dup 178/mens1sixtyfourthflag put +dup 179/mens1sixtyfourthflag put +dup 180/mensdsixtyfourthflag put +dup 181/mensd1sixtyfourthflag put +dup 182/mensd1sixtyfourthflag put +dup 183/mensuralfourfourmeter put +dup 184/mensuralallabreve put +dup 185/mensuralthreetwometer put +dup 186/mensuralsixfourmeter put +dup 187/mensuralninefourmeter put +dup 188/mensuralthreefourmeter put +dup 189/mensuralsixeightmeter put +dup 190/mensuralnineeight put +dup 191/mensuralfoureightmeter put +dup 192/mensuralsixeightmeteralt put +dup 193/mensuraltwofourmeter put +dup 194/neomensuralfourfourmeter put +dup 195/neomensuralallabreve put +dup 196/neomensuralthreetwometer put +dup 197/neomensuralsixfourmeter put +dup 198/neomensuralninefourmeter put +dup 199/neomensuralthreefourmeter put +dup 200/neomensuralsixeightmeter put +dup 201/neomensuralnineeight put +dup 202/neomensuralfoureightmeter put +dup 203/neomensuralsixeightmeteralt put +dup 204/neomensuraltwofourmeter put +dup 205/ictus put +dup 206/uaccentus put +dup 207/daccentus put +dup 208/usemicirculus put +dup 209/dsemicirculus put +dup 210/circulus put +dup 211/augmentum put +dup 212/usignumcongruentiae put +dup 213/dsignumcongruentiae put +readonly def +currentdict end +currentfile eexec +743F8413F3636CA85A9FFEFB50B4BB27302A5955DC23E0F3397300C8FCA519E56C902CB3 +B617F2A7538B6DC265A7CF20D53EB36E373340044ED3C3212B846132E1960981D2006CCD +E888FD9671CDD7ED1352864A4B63C0967DB2112FA1C9858565C8FBD0DDD08B57B7FCEB3D +24B86E4B8F343E1D177E9F46BDF43B991761555A2BD0087D171A8D4E0704D7976EC07F01 +20F5004A55851E3D7F1B101CCDDC3F8F02070217787E5D3D718929D6E6B9F17D30A17EB6 +ACE1F85BE11BA385884D9D001BF3FF9CCE9EA1F0B0ADC25AED55D15065B66228E8CC51F0 +8EB238617088CA01A1F271510E6C2CCD5662898565F9A3194257DA76DD63E612447790C3 +0339B1DF6132F75CB9ECB0F1C3568BF4139911FA68E223CCF5FDF83AB6786E9DAF6B084E +E8A0206F95C0F0DF4A4645ED8E6C793B2DE7EBCB4E9F50130EC5E68D508245B861EB4236 +7A4B0ABA919797A0871F4B3129A93808BDF7D067B08A2466EF1C1F74C4A342A6F9BF8921 +5955E3645EA8FF7139A3E1A8818B94697C3E359FD7CB1D613A48A6402C834972D796A09D +EE52C9A66F52B74641F43AAB579AB880F628F39208E2C602A5CEDF5E6827D2AEBCC05DCD +01D23A51008D521D9FC6715397B9A48D570BBD9F798408562727B2FE590DAF1E650F5483 +4F0DACDA7D4CBDF8D39509E20C59DDCE693F89FD2186B0FDA742F5C2DCDEEB7B511A9933 +023518AA3D860D438BEFE6594A7E5B0688A3C101D4326871B1771F9749E956E114D51BAB +38F4E8A0D864BCD7988F8878C446FA538A3E751B434CD03E7C5E05557397C02ECE03752B +8824938ED5BD2F3021A465FC3536C3E5A17F5E541DED2917D68F2A48ED020098F12F7AEE +0194DFC5CF186BB9483F5577B11CFCE0F6766A3308A457FB7629C67E63D9EF510F7423E2 +AFED81D5B7A6B8CFE327890D27F4F6BE62E8A9B9AAD67CFCA0CC431EDFD63D127DF4D43C +478511D1BDCAD587E83A9F37CFD1A5BD8666613B9A0A34BB90B72F590E71D04EDFBEC98D +7D1DE1AD2AC2B73FF72627A16C839F84C28C3E795C55B76459E1759DB45D2FF53305F17E +E33CE94DB175AB8192E1490E3B5175B70ED6C7D1AFD5D034F76A30D3E50441EF2F23A7CE +A70B531BEA2FA55ED69ACC71BA8FE2606ACDA680B986B2A81720DA1682FA961B28E2D2C4 +0113958D45B46C923FDB9CA28FE7D4CB3C5F324F6E968CA734E93E9C7430D3331F2BAE21 +A8F5693E13C4F07F9ED177A7138CECBF792E858F984449F75DFF26B5CFFF6DD717722084 +75F16B1ABC250EBD0499F39B9DE1C01CB88AECE6C49DF5B27A2F5EA8E5936118C82CEFE4 +5C0F9A9CE84DBA983A57ED6E87C6050515C926AC4B5FD2FAD8DB80B363C15EADB97D2D28 +21A6E143EE82660D0A3E55536F7EE7F2BE5D037A816A32B60738CF6ABC198C1CD8BE0571 +7E477A80C12420C7B980499762EFEBC863B517D0FAE958B1AE22F42CB1309617112BF97F +CAA61357D313250F99FCA9749AB90EA9E9BBF480B3789198EA9D7AE549D07BDE33CAAE7D +910CAA9B8DE6EDB8AE9E5F1E1A4696A6CB3D3AA7AA19A6BC69E4AE10CD7F47F8898404A5 +F1235B1FE08E599EC4DEF6D85E5EFB46A4BF1D1363830B08798381D4EFCAB66EDC741FF8 +2ADFFA73FB88284D6DBFF8488FEC4BF77DF28FB54A0B7960E6CE6FE891EBEDB544A8AAC9 +501BF24F09603F59505D508E4B23158CE23B1F3CC92712A30D148BE81B90AC8C19218A73 +12F7CF8FDE844079A29C7F1AF9596D79D1021F0548EA015DB743767665A6F9CCBFB579C7 +D646D5456D7BAAC243563D772C01412D78BCB1AE5C286480C11DC794A68183BFFCFE67A4 +3C74251D59564720D8618C0248CC0E917C0A370521561C129EE46068B2F9A3E3127304F6 +1496FAAB1C516BC69F9AAE073BF6D20441761A346C5B789C09DC52BFB828DA696755221B +8F4EDA6891AC6C904BC672B1C2B05A2A8C4D93C65ADCFF9E62613F0B45ED09FA1C06EA76 +94428406EEC55C55F66EEA6EB88B27A99E72034B13850871F2D8DEC1C58C964A55168C5B +633F74983F646235159FB2CBAD184B30DA0E85BF8B5AD33EDE2AA8601FF1E8581D358478 +80DDC425A05C0693C54E1D81CFB1ED40B86139C5BF8C2DF5E03AA36A2DA547986659B6E9 +DB28AB7AFD86243B8695525E96EA3FC5083A659B08B394D7B2AB46D32E7864028667523A +EA15B93388A09158D172E552BDE027C587B67E30EABA2CC7AC550604F989F8BA8188388A +22DBE2BC5F9189B82BA11702DB49D07413F0AA5AEA631E3F33F01354FD76E3665258E592 +377001D07F910609A269989FB1D05E1051A0191BD7CE1C5F329C8D79F21F286DB2720D1E +5C20031B54FD182D5B7AA65FBBB8EE160C5A880FEDFD6A9F52A55A96477496090A1E8EA1 +93E433887FDDFCD8C0B95623D41D063D1053E4E6C9413BD1329EB9697E31B5860C1C8AEC +16AEB07BB4B45B48CEE3C772D28AA613AE6939CEFA2334E18D3E3A6F630C2794B6F9E806 +4FD8284B342AB817966ECD04906EC6032F5A50ADC76081D6AFC51106DE8F93B584C09E2A +552C7E273E297646EF66251309151F49ACD9B41AF73CF76D67AF6AD8067AC1E2C59FF70B +C37E5D1EAF4290EC07B87E7932FDD6B0AFEF918EE87AFD667F31330DBDCA505F147E9432 +40835F1DF915E3EE1449E14321DE0F52B88C424CA518368A69BCAF3542A5E1A1ABF83EDD +398FB64292931B4EE916A11EC82D3D7B793E943DA6E432DD90DF6627E272C96E6CFE7F31 +9F6BE23E2BDCBDCE752E0BB11AAAE5D1C84E1541DEBBC69E66A8B8747F1E23A268F6E9FD +FB64C5B8FF6BBB1A0DC295F185BD50F47821BA7228402B07355636A050AB2405848D4853 +5131597993A04EA5A7423565EA5CAFD899BD2EB9FDE08E223AEA0B983D307FC7F32C6B5A +54688943AAA862496DFDB585EF2F734E19A5612E52F6A56F1DF97DFF141A13B4CBD54EA4 +3D5DF9FA8131D6FC5CADD6159B8A369CD0FBAA1F7953446D02215EBBB83431A39A419D02 +110744650ED27C36E1B3A91445A68313118ABAD01DE52D25D0D4BCBD0A6B603C3EB33A97 +2B7074ED1D91FEDF65108B7F624B664E6873184426721C5DA06403D71AF2F4DDA249CFF0 +F704D48154B552C426E92433B667FF0CAFEE647F1F956F983EF63A619FF476151D5E4964 +87C433AD96A8D78DF7D6D6F574FC73EE8321ABC38C8367A72816BD0AC1D53769B0AAFFB4 +3ABEACA554793C52901BD0B3ACCEFE81B15D0F9D745A11476D9EDED1B749AAEE737E1F08 +A668D10D23BB4E1224860E42FDAE3D82BE2ADECA0E7DD2D614AFA229EB5B876D8F508A6E +0DC6A99F3FEA3B81510CDC8B83ABA7C99CF6C86DD73269A2D7E4A3B40AF3C135980FAAD5 +0984CE0057CC9E9E38304B24690CC0C77A48C4C47666A768E032F019CFDEBDA07202862E +5820B2BEAAB5C222840348B9F0F551C7321C0A4B96D027EC3248F029EF66923810D739E0 +B8E6F046767755C6CCCF1A18FE77A4EF1823AB5420A33A304E221FCDAEEC87479170E63A +33CA09252272A510E9338B943B8B70544BF47E29EE538540F028E7A1AB8605A058810909 +0DC2F3427C037A8E11B6001087438C732BE0A4A207CCA3D57E7D0B9F515B3BE991CDBED5 +3C70C22EA45742FE86CC922CD55AF17EAE871FE9429371452529E9C18DD375FDA056C794 +26E2D2A4A4FB26AA849F826E6A5A332D908AE54ECC409E29BF6BA9EDCC1A9A7B7859E09E +26B1C42F6A8793EF3052EB21AD0090C7FE4478A0287ECF84ED1F31297F946B399D71229D +B1CC4AA4364E5CDB1ED7EE7BCE1DC493E121F7527D57B5AD69E7B7491F5133135D8E6980 +EC641F96BAA7F4949DE91C12DEE7D75D8859D6BB9BAE46D2285C332B0DA948B28C136C35 +A7B01FA2FC7AE34977A3CE5A1BEF7B07437BCA9CF6B734BD5DE5C16AD292676B6B6F3E4A +1DD0EAB097C1D08B7AF6746AE14CF03ADD9C05D61849B6CFCA0C6CC611484CF96881C9DE +8E35E4DFC1ECCB72FF06868C85A1E498F68F23771A614A2B775699112B37A335ABCB253E +32CF36EE4587A389E953C69C0FF4503D96904E0FC10EAB717F018770E63B49DCB0A7B02E +FC9018C8AAA45536B1BE420D7BBB54C54299F87337FF1004CD7FEDEB32DA629530931792 +E1ED997FEC34045F480B7DC06B0A3F746C4B4FD49180DA9120DE83428676389929456D8C +5FF3E1D6F92429213C5D514D0E022A28219A566011A696952F86326B2FAD7F5343DE3DC3 +56A38F99E829EC1ECD06153E02E3CBB53F90E8C45F467C74532C3942FEFE4FB2F5CFA1A4 +8057A9AFD9E398E2CE08A321FA17BC6771D05CBBB354DFA8AA23C6D26468A98C3DEE8201 +DA4BD452FFD796D7233953AAA169865A3A8A772FDCA0AAB2D0A79C69266EFA18F05909C0 +C3FD6295999D26CC5AC256461B4CD27F79543218A0B72F9E525A591164A34A3D2A06005F +0B1449B6071267779F54B366DCEFB9C2E638A2FDFBC1600F8CBE8A2B4D4EDBF5EED6F655 +6B9358CF7CA15E19845541939161D556F4D76C837E8BCAF96DB74A1FF2365BB8B4D98179 +D74147B10E0C15BB9E75E7CC2D89BCFC0AD02E76C6F3C6D5FBBFD839A3BF9FBCE8EDF370 +8838ABA2015B2BDA2F53B5FBCEB2FBE411C3D514ACB277A32F66F7D671590745F6C7F75E +7F999C3A3B589C084097F8B0123EF11BCFCB88356F8E30F50618EEF09379E0D22D927EB7 +39FEDE524B626DE3E7CFA3813627C9C95EDC9224B1A661C49FF0DB96D4D8CC68EAAB082B +6BD1834CC9C126EA7CABA3D64651D2EA2A37E69163A094BFEAD673C0547ECCEE160D5D43 +DE90928A5C209F1BF2258509B96C871DF292F21E65862DC6BAA9A1CFC669178BED04DA5D +46944804151588171BB3C46FC248B492FE87118CCD401169EB626F06906107000D106B43 +16639BEDD9B75D12CC6D254258F030E6B1E2B15572D6DE69A5104B88CD402A78A1CFC2AD +F38BE7D8CF7A47F0F0F06407616B67377AFCE54ED9CEE418AD1D871496635D40C5D16B27 +48F7AA11ECEB09516E48BDA0B6345012C6B2A266AFC69216ED88AF21E7935A60ABDC18C8 +437D6D3127124A696266ACC6E79A4C8029A1604DED48F9DCFF780F4A4DEA279E9BB46928 +15A1D66C2445F23BE6AB371B84733FD1F6D827D027F9C6169CEE1DEB92B65F5F38528DC6 +42E79A87C6CBC6799EDB74FA19844E75A5556F4485178AF9CE52C264AB7FF655515F69C4 +5B3E595A1A18FB82DFABB1D4CEAC6B67BFB4A765424AE67B6C4BEE97B82D98C92018A9DF +74CDDA395B182E54F91AC5A3DD5751534B98B48CAA484F3D8BA213A5920EB49C47231DAB +BEC13EA8EA940624C213B81B38FB10CE1710244A3C9B40FE83E370C18754A072A9F50927 +843A4121DCB208D2950CA2403B5ED72FEE807E1C39C0DCCF5DC37FA3615B0C65D62F2900 +6869A9ECCEB47EFA01442314E888B4858BC9D808AA5F143E514CCAC037C57497B9DE618D +89BE0AD2E7DEF9157DB72BA770EAAA030FB00E90193ABEA818E45E4C76E75326CA0F4722 +EEA331E1290EB2E523C77D35509DDA22FAA429E9EECF0BA4159478F6673FDFB4C15BB8FB +E32E947194B3BC640DEC6DC85453180C05C94A831E32B454C5336FD22731E973B247A455 +37BEB627DBAB2B1CD10296A45032BEDF70DA3D18F58485292034A323C4FE565A23DDA884 +846749A44C46DEAC090257E37EA09D203DA5880401F65BCE82327DE9FB425D83E2E9279E +26FFEEA568A44228934E7CE8FB0C4C461B53540D1E364B669D1E89D91832003DC29E3F55 +E91A956D2BEA2E3388B7669E9DFDC5CAB015FFC68C2777A20B04F72766E40F40252FCF5F +1E0F84FA45CE49DCF978409C875ED81257332D695DA4099B3E9C45E83BBEBB38B49B6435 +4AF1BE675DD3706EFD8663E377756F2524E15616C89064E85D9DE2ECFD9E90DCAAF525B4 +F122ED7242E5EC49B9F05DBACED3EB64C327FD664AE12D18412C665DC548F3D49370B107 +DF4CDFB35E12A97979FA3E9697AA2286AD215A3A0F87A4F3D01D7D241CFF97AECD368CF4 +C5A37CC7A5755F32219AC4CC5A9A83AB186AAFBCA381461620E9798340695E371E7D25F3 +7F13ABDC5468F9F93CA6FE960690F1179D2A448C89F78B95997DFDD4214B29CD07CD16B8 +4274A2EBBE33A9D38B856D7A4043424A33F8536E1A71F9C683613A71B78FA84776C8E73D +B6FCE153D59091EA3A0CDDA97A3E94FDF2A734C2A57D6F74CBCEDB2F155B364D6CCC819C +2B9205A2FB2C9E51F317F66EF50384E996B2091CC3A4501D2DEB35B9B77EF6DCEA23B908 +782A7A90F6CE8947E30942813C427DCEF76992BB0563112B981DF35652A717F7C85B7ADC +C84CC66FB122E9165F1DAE9590E95E9553939EA78C93CFDA6D41C8906394051EE21A5B8F +369D04862075A7B0B9FBA6ECD5EB18E1674B5A595246F0504828CABE534F691EAB9C15CF +4961A0B01EF54985B6D547371CAEAE3357C6ADE80CD1B45AE87AFC8344A595D8C7DC3A90 +EC29A9EB44611A5AEC8F917DCBD017977C164C02A63E6427B3261641535ADEC326FDAA1C +DB5DA1379B936A27CA750408F3B1538571E54B088E1DF6C733653200E37C01B32405703C +BBCBD54FF389CBED4B6DA1C16C1A8850765186B7CBA1B9E15A2791BC6BAFAA9DBC2662FB +FC054BF2BDD539D18599F7C7DF42825A6D7EC6EBFA4628993160466A97E7457C152408C5 +D3B0A9BBA985240E224E75F9D0B381ED280F47EC7AC4F681F25C8BD5F511368B8CF0EEF3 +CAD7CF813A1AADD7AB8E4A00A2789D0139AD178B51E367B2FEC832F7025DB9FB07DCC47D +0F5E713279F6A55E41CFCE9EC06DBF801D59BD712C3D197C2BB6D0BA8F7CE6064BD5B4B0 +21305D890A7A84E0D16872FCE17C78F6104919DB780E08CBD7AD000453E8D9A3C6F5A6C4 +94134E5EE71477A8BCF797E6262193E484B189FEF5B52E25F1C61266D69BB9B5602CC7A6 +A194CC0EE9A08E93A5EBFC43EAECA17A7661579614B774A5172B30FECF39088073F54B05 +0AF7677965936B76AEE1095EC2D3928655686C9223FD391C602F9AC2A96BA1027B1674A6 +E750F1043C9355B260DEDBE421D07DA770A2C521318376B9F7F7D5C83D50FA5B19BCBAD7 +683E0FCAA1F3168B172D8D0DF5F2755CE27764F48B5C0EB93E0278512C731EB51E416CFD +FA1BE3494E28C0B5A3FCA56D0FB2DB39563170CC0AFB22A473FD9AD315F5D0AED491F5A9 +AF89A8E5FA58C37507FAC44B9D52EAB266D7BECD920077A5AAB913B37851198D850204A7 +5C500D846460800A96FC059F80AF414EB0910331C95536DA6CF6E6C568E43A836336049C +16095D8BB91B6DE418B06BA5D7CB356CCC0A773A305E73140E649679BB2BBD6B3746F0DE +FD1A13E8F2EECA308B3944CF5DBAE39BD4F527263A4E79DDCC1CD01DCFBB503DA2F72BA0 +D6B37996471367972FA36DAB16FEF26346BD6BF4279B262782323CB8F4D5B9C84D19DD5D +5192C3202A0BED111F6E71BF1B92DEF389137DB9C12D82E363C222DA5A25A364D04F32E2 +1E3DE2D491C0977C97B1C42E765491F6D8810E756AB42CFAEB3AA0481FA2B6DF15A841C3 +6F8F24092FD64D8B0B9EE92A09EBA7CCF85EDC7A3B822D7FBE0B866280FC381431B65781 +2873B7801767082A6D6B606A0414A29ACDB7C396965ED85EDE84A61357A57D75CC76393F +4766056995EADF254682DF217949CB35C4CAF0B0F36856A6E63D1098B7AF17C5778CA003 +1CC2EF890147D6A5FE2B1F7954F2E0246293E922E0C8F49E17E23863ED40D5E528E45314 +7B7B20AF0020E1BE8745EEAFF84349E3F2C1F1DBEBD8E9476564BEF9F513ABA8337D11BC +4F822015C0B610044CA8F2402B358EC6CE0FE5A1E53D441AC8970FCCA1572352BF5792D9 +BB60091771604235819D6DD2CCDCBD3831BCA19E1319BD26123D37A0DED81C21CE57C3B6 +D1E211DDCE9FFBE37BC7B3F180EE4922F1B01019237C11E486C3C47B041F67125D87C30C +76930284E168471B65CEA8DB23087292137CEA7B6047E85D497748D33A130A6549B51788 +F1CDA7FFE0985DC26461B3EC8E35293831D5501C98C38B816811220E49BE515FE87A03D5 +CB3E8E136AC03B15D31EA1C46804BB66B3E8B293920BC2367A06EAC1EA49B69A94CADF56 +3F1BFF0A6BAF4DC3D463A6249AF67E2E6AB7FB5E57D6F3C6B144C4852797A478BC57C692 +82EAA2B23EC95DD8B10D531E2DF78C369E2B416B13A81ED49892D777F95B03E23C856413 +676AE8400A874F412BAE18955647E6ECFF24AB67D64CEBFE581D2D98EA4444332D3B9B11 +0EF835EF19671242A4A6A54C99022A91196BE0AAB0BC801C00BA386C7AAD5EF0C071E8BE +4FFE82DE943C067A52E1E24EE00BB0EC9BC58E4F1FEAB3DAE560A9BEDC27CEE890926F19 +C96F7653BC80F56426AD62C5A61F92776C598CE64F3D06E3D441705489DEF6C3510CAC40 +23F2BA73CE29C3C74068A4BF87992AAB1AC570BB5BBD7CA5ED5B54C674C009775C5A5EB4 +78EF566F67B451F7C801C4788B1C810BA577A5ECA1E4EC70DA61FA9B1074779E793F86F2 +E36282A29006155804A3D720C5FB1671F52643350516080B9DF5D5FB19479451F7D43C41 +EB7D2F4073E28E2D55FE972A862544D32242CE8F2A011151F24C401C7C11E93B87C86AFC +120E5B28907D96C31F0271554078476084B7938423606700A2A0A92AED7E26BBB3BBABBE +E5548463E8C58571AE224C82F79DF1BDD6E1FFAF671E671492F440CF1ACAFB52D989E01E +973541AE3BB6B47ED60AD54AB982CD51B60B226BEDF8AB5B452BC3D70BBE2F6CC4C797CD +7EA80534117524A7A4A1599AA2040C5353E6CBE4903F352E86609BFA07E319120A6702A3 +24A60AD535D66D45809D76D109315F52B6936A1F18181618E06E1775798F9E5D26BA87C7 +9A54B5E620A3333E6167335B582EC0D11753835FA9713A72C395F9CC61FCC2166377040C +E618B23DACFE977E259008E293BA1B892613C9CFCF6F1B143DED5573469866858095F701 +E35077292229D935DB9E74C2E94E86408B0B3117FD9E46EE8D6DC94CCD4A74B10358FC7F +2B5F87418B59AB31AE7B7853A1BE9F2EF9CEDB829311D11E5545C3C2A52ADB4E527851F0 +8F72F2BB6EE6C76E466499C0A9C6221B8EDDE651ACE57EF768428BCB1AF4B42C6EB5ED7E +678D5E09219E2450A9150495A3385AB6AED71F203A5BA702D1109C8511DE452928E7C550 +71EF529E05E12F67CE110AB9034CF08A837B7D1811779757C2F6391F7DB32F027DEF4F79 +8AC1450007F758D4561A2AF959F42D4E859FAB55F1E11876F93CA24CEA8F7E7000166F3B +C09EDF2EA2173EDB086C19263681CE9A35A67B85AE08E0FF649FB6DA3A5826FF325D3648 +53E120FA4A1B86F5F46AEDF9B9519786B81ACE0DAB2C2C832B21AFBAA183E6B47DB3E253 +379E8254C42E5657FB0E1D8BD11579B109391DC1CB6183725CDC99096AC0CE94192A1155 +D3FE43DEBED04E50386709B4863F8490C757A2BD5F927F0CC6A495FE8769C153C3CF4C69 +28BA3A1EB88C05BADF90C06425E07E9A65A7E1E9F232D9523AEBEE3BABD0A17B30715428 +1C22F886AFD4043B97745E05BFDCFD6F0FEE83D1C207C5E12545FD4D003A958DBB206371 +94DDB015D9A513FB2A73F9859A68D474804808EC3DA5F1D7A43D8ADB40B6673284E54D96 +CF3FE1C872A350CA862BFFA720A7E73FF3094F14411852DDC9CA7F139D38803B486F0B1D +13050EF136BBA4FC35EDFEDB38AC6F399D03DE118FE371DD309DE2CBEFC9A1AEB923B101 +F4D3A8500B2C8AB27058C8F1638DB1EEA09BF490518F123B7C69BA1D891C7AF720CD7506 +D2024FFE92CF134D9C33835B279BE9276D7CAF80D4531F10B0BC878B25D8C0C333E27F7C +62178B2A9BC8738C79F1FF7AB877D4D796E9B0B8A093B7524614BE7C9534AA4B2E6856FF +F174034A70576BA263C8A93A8D947B4C1A28012DE713A4686B4C096A37E8A7916708E3E3 +DF0A852759229D090990280BF551E5B5AF3E5FD3433A86FC6295E67E8901A69AE6A664B6 +38B7978711A5EC899138994CEE08D562D811B99D41EEBC0C5B0AD13E96D4F0249E8E3E1D +195B1F693234F2DA303AF243A17B2FEBE114FD0D067E2B9DC9A49660E2B3389F2FC61077 +3FE842B24D766A11E9589A0DF0A6856E2B9370950EB8E8B567431C12A432A2947E785EC7 +0172E7FCD2C004AD65A0EF3B575960E66A45E56D54DB02B1C3A99668C8C5C2BD31BEA528 +3D55ADCC0E6C2F2B83E533196D5A79D500D9E61FC8591C8C3698A4A0D0E76FA3D2D132AC +551E9BA9D5D1AA1B42189992608625B5E7BE44FB18D559F43F3F7944D4EF8517CD69DD46 +0617D62A5C0623D4BCEC7E96CA672049EBC12D6CDF2F8B98F1165967A9B99DA210DF8E03 +25F7765E42218733C769FF6AC0575CB66F43837D78F6A0429C5BF396BFC68754969BBC67 +4551FF95155F4CD4F90BD9FF6F1BAEB0D81E5B079A835E4EF29B0187A35E357793389FF2 +0787BE2D336C66C00A5486453C50C6801C4130CEED5BD8D95708F78AD0DE552F694F3903 +E469C4BAE54BBDEFFFD9AA12B4ACB6A662E0761395C81620B006B724288560E712400D05 +ABB34AA5FAD566FA8846A45307AC3C6AC7D1FA9616788E466D65369F492F9FD681E3F802 +4FDBF4BC79C13BC0F786ED06DC098A56B28D8DA536951EC71877A3BF1A73AB1EE93F6D78 +FD96E5A23329818323EF23862721DC8DB9B4235DC0E35FD95BEF9E9A56818AF608F9F290 +D4CEEE67237200045B01F370789A994A3BF901B2BFBAD511EF843D494582544F6F915954 +0D26ED5BEFD80A20AB0979FB5C2FB9A2CA1A81D62115D54EF3C3624D8886284803E026FF +CAA566092787781A0EC8D8FDC1EF7D034DAB49B672DAC3A9500F49B1432142579E52EC51 +F7A751B56992C4AA11BA66C49CD9BEF36F06181A815086D3FDFB0594BEDC0C13F3427071 +225C4B0DC3953AEF0B988158FC472C3571FAC9DA67510431A48C42E4D23F94FA8F12E62D +F71C0D182EC7EE483531E3DF9BCDE661D704E6EE523A20F97BE29A30FB067212229BA785 +DFB6F0EB947988E2517FB85907996C79CD67EA47659FA98B2B734AC8906F45585E0125B6 +385658721D27CBA6780DE58A3E4D96A70CD4DAED3097C883BDE195BCF19D41640E70D748 +8172EFDEBC32D6E6B69D69323521AB8631942D532C9FA743AED66E2C13C665D05107DBA1 +C20E3970D632B9724F6671AD9369777D367DD74F9BC23BE8B036F78EFE293F19E40593F9 +9EDAAEE4E95CED21E4070C404656D16CE541FD917DADA016300C3A21FAE23B0106BAF1E2 +25EBF061A2D9B2FC80B563C84F7FC5535C6CAAA903684C2ABD226570A39F0C615FAC5C6C +F0444D24EE27F6C60343DCFC23CC665981F88656FF8D2A632F61572C2BE3D149D7E6E192 +2FCADE83CC86DA4F33961DE41B6278D8FC052DEFB7937FDA33480BF1EBABE6B7B627A1A0 +ED76EEA8747D153B4818546B8BBECC0354AE7B674B963C1ADE80C75B6179989BAF469D92 +B51E491D0A38F7A8A35961570B305C8087CA29E7C8F822C11204E34066DFE97A8C510AD6 +4AC389EFA1C84D99EDB6870560EA8EA012B010247207DA52850DD58EE1A32D478945447C +FAF53F48F13ADDF06551B22DA95D4CE478D208EA9CA0CB1BC37C3DEB335841FAD7BB0733 +6AEB8A2A3EC1A1B654A28E2F3F26040E78FC1A553CC6AB2C635DC1C28CBEE0AF59512B25 +BC3FA436A808CA87828B42A6A7EA456DD84444535D90D768D3AE00B15441FFA6F0D7C78F +1E085F6429DF3230930272C8E6341CB0DA1F4773A5082009E9382537C1300CF159F2070A +781E0A4A2DA13470F139933D72A67881ABF51B988DEE6F2AC910494DB39FBF2E73059A7A +70D8FA9BBD15B45D1575790537B62AF453EE0AD5B7014F79F9AF2BC8FAE0CB125FA656AA +BD59606E126892A42131380C9743956E9BFF007D3FCA39C98FB7F6A71AB7012B8DCDAE99 +C1A678D7113D4EEEC9C98D6938E26D111319EF030CCB7448E7BB9743F6A68F9997EF10AC +6623C7F60379050F5C655DB29D3E2994466CE199FDEFD1B9ABD4B4002ACD8A06F29CD0FA +64B8FECE06371BDA66DF7C5FD2577A095E2648ACB1636294870255E4A960FA64C939D296 +3D180E7117645EB959B716C380C5BE5688E5FAD23DCA95729794727EDB58B7F238E97FD6 +3CF49AE818758F176C2037B8F43778FC88C15FD48D17AD63F353ABAD73E2BB9D885C1F9B +23CB971AADFCE9115EEDBE11EBC83F12B6E5E1946248F81B12616546C01F52C9F303870F +1C0DEE6AA1A98C274ABA5900E48B9672E75A275D46E6D94D3193CD6133056A35C37842C4 +92DD3A8FF65E4ABD904DB11B7FBB0DCF6028A0194C1825EDD3D9CEF5B4636A0AD8828E1C +B96148B8BC83549402FFF70826023F547FAEE0F0178E20124CFABD65E299E27D33C4254C +D9E0C090E14909B631F3FA28B1C6B50A096AC09ADF808B1E5E0BE17DB8D3A8FA5E45C08D +537491A93C4E0241190FC35E9A67D3735A6747EEF385677FB2E15F1D66C7C2BEA02178A4 +0594B809D95D8292FF7D00097377258E81CC5E2E73EA86B3B7F014D1D3D77E7A94538098 +E22CB56EF8713D682C53E1AAD2469A9936D198E8214AB1FBE0E746C1915B6A722B93E42B +764F67D3387BA3BD419CCFC9F7869EE3181CE8AA1CB932806771364CF05DD49A04B4DB5F +AE91A8AC11A21BA3BDD8F4E6C1C43A229E5AA1FBEA648E6A14E1F84C7220EA361474FDE2 +2133AC5A354504289DEE503CD7750BC4B6601518F876896FD9FE1698324ECA4D1F66C4A7 +60EF44FE24F3EB7642BD64B63666DA20BAE986ED4391E0F52347C6B301B489AD25DE95C4 +6175EE4842EC5A26BD833FE376C41DDF12FEEE46D3C2F68E916EFC20D0B6A178263D1676 +CEC721C58DAEB079F8D55A512BE0362AB6DC5AF26800BD5DB6950A112D7D39F5B00997D7 +C0BEAE281062E75136746E5A61FCFED53DA5808BFE45D00DF013634DFE91D673E01FA963 +D9DE14041FD2A270317DB56FA887CE4455AF3454B9B7EE8986008A7F896616AA36109249 +60E9CDEA38FFEEC38169C6C4F3A317115ADE19876A12532EE11916D3E941052B040E1CEA +992157396399C397701A83B449A71DEA1F6E6C8D058CEB622B950DAB0AB4B6619E8BD26F +0266F4C6D25F633591435875BADA0C47FA7C62B3DF3801B8EE01AFC9D8C7A445F8770D8A +22E2A3D6D671E705BA6B51C875C794DBE3D4A83987FC520320C0FB0123B38EDF518BCD6F +CDE8C43BEA93B206235B38BC9978E597C06A62CF26CDEE3C1269BC41182FA4ABF54C2A89 +66999B352959ADA0D0AC860259434F0C7006BDAD05524042D77203110588B998A529FDBF +6698B1D4231F1F401D708BDB528416A4B57EE907E8721DC92EB6F9D4BF2622FC5AD35218 +5F2CCC50B46E246C5DB782ED02FE9AECE25D25C07930DFAB6F4C29F8D70D5F6935E085D7 +9CC97FA6FD2D61499828446C92971106B7A1AAE9625EB2F801EF6F7A78E473710307075A +BB8013539C9811C7003CD290AC31741DB40210FDE90DB32FDCCD1028E24BDF2AA5BB8B17 +DA9DFA62ACD1B4F3D23FE51856D1CD8C96A406FEDCA9772EEFFA10A975F95CA392271109 +AE280F451F64860EDE07A57EE645DCE8E7A06D6401DD398BA7895F4202FDB6546048DC88 +848B49ED8D852AD8C9ADCDF206AD1F172FEC6FA064286B7867F6EAE1F017E091E51DF29C +A75188303B1D52C89805CE18872F39407143FB58F0086E5A31BB548C78CA434E684EE9EB +DE8439918DB9FF13272A45DABF7296C309FEFB978E7FB66747625EBF7F8FB0010B4C08E1 +ACC1FC85F57AC67C100CFFB28B8B75AAB5DFEA2A5806CF9ACDC7651639C0ABA42F7372E9 +D4F54E5E1AE43E260D0455769BC3D2AFF0DF04AB030B5F91461E232EEFF6C9633E92C8EE +3810100D83D8A887C51E6E81C7A5296B16535B93D8D563A0CDA5ACDB4CA19339B4414102 +899062CA22155A3778D6036CBA9B65510F2540588A0C2B919F53E9194F33665705E0FA7E +1713EA5C5C0B84ABC0A88A7673870208A6CEB2C5FBC0A0D5D37FA39ED81F44665E211E13 +798F1818874E7C187F7A28FF98FD68548931C73D1BAEF62662E899D48E03978F96E40213 +09E3D7AA0E2DA15186A8875CEC29EC345508536F405AAB63F510477FFBCDACB2390E6D19 +3CB1AC7B0E788404D48FB0D519D682341793C4A220A3B1453649538EF728144ACBEFED4F +C605DB3991A65DDA4836F395C863AEFF8FBD44AACDA9C2070766F2E7D644D284C4AFA9D7 +656C4A51756EA96501B5D4ACD0E5FB5020390A211C5E1B4EF45EFE24FF3E85D9C41A4CDB +B28D83DEE907FF995BF761ACDA602B4B51D30C763A35D537C0C5E72CFBFEA865009E8037 +8D477A0A34A734FB230D43234C53B4ECB404764405562C52F3F6BB3311FE86FB8C9F7978 +AA7845BBDAAC38203B41673D82BBB7E46AA720B084C4E481D1A8424CBBCA57C752BEC165 +BA07921859F8ACF14C6AB2404B3CFBAFE4C7E164F6CE2C4E7043406D19D446AC649A54C4 +F825EB7201BC66A4B8035B85B5BFD0E6B2D0C08532B1D7438E7FF45FCD15E074AB7327F9 +D6B8BE630C5CD538031A362C6964EB3207CF90C9CDBBDEFFE39D23BF8552AD1FF0523E29 +E01F04B8879B37907566A674DA876436523D89D41224453F4CCE7615ED23F1E317988A40 +E2A63D6B6AC8D0DA7AD24059DD973313D61CDB02C9ADC8566F1A60827EB2FD8A269940A1 +46563F03CA9DAC1AB3D86D0755A2A914F69123E48E6A94AC89ACDCBAADE17B162DFD37CC +42F89E412B859B2E52829C06485C876531056D69FD55C6B1FC0A635F81D9196DFF54D117 +CFFB46FC31921AC28521E650136A56F23558434BF9C2136D860B45F150EADC1F675A0CF5 +9A8D2B220448AD74C124DA3071D994E227CFBBC73F0EAF95D0598750A54EF0327611723B +C42153CC99D4EF5E0862B0F5233AAEAD18295A5654D3717AA3A049E5261FBD5E323F675E +C32C8EF396609F9D10F771143DE6E203E03D5A1BAA86071A62AE6D225A3B58CECD094F84 +DF421FDB58C9E3BCE1935403D994EDACF7A85670D51C6D9B73B3F99E87956ADD51B1DC8D +4ABA2DCFFCD8032BE0BB5DA59B385237EA29E219EB8BF3C1380B3B60CA99AF03AA54E1A6 +F85C9C0D44AB237A6BA280DBE9571AE73462A4414F31B3AAD89C37174A8AC2A6AB63084B +06C103B63ADF96010D69CCD073FE8FFAACB3639555271BB94746C580F93DBAD655904DA6 +04D8537AA58ED84CDBEC5BBADA146A52FA1E5D41EB1B647BB498476E7DBFBFC166FB58D6 +1432D27A4822639D18C810B364E9CF6DDA101ECF88775A4DC7F2F6B868993C3D766A0D10 +AE35B880E4EBCD5971FA3BCB39434B0DD26244FA241DC6DD23E092871E40FABC84DA8783 +959389FE2E8EEC8F50B5F784AD65A62BB9C5484CBB18E5B97E80A788833FB4D8DB48478C +C50D4D1828C6E25E65A5DA2DDE3ED193C8C0F3F8D46136606520E163AACB4F60E2102C70 +B1CB30B08BE8FF8A8AEB10BBF456D9D98C319F4F791029EA8262A1F31DDF4B00A38C27AC +3071861E6EBF438465210E712D20D157BFB6D0580C80E38E0320427AC14C66A02E40C21F +D869768D2429708ACC99D8EB9BDCCAA809913FC07C0DC9AD0907F563D5717A1C3CD591FF +E09E1D80BF4E2A894BADC43CFEA6E268C4172EEED76042C4DF7532F084B7A02C8653FF41 +DB6E90F6C45671705CBDDA49E8F221E86D015B26AC31C229A09B3935D371EC6E00760247 +CB7E3FD01FAC7321B6A44E7B632416B385CFA9931D9C3F540F2710FC32522D2CC44CBDE5 +111A68A45DD3C7F36734C0F9EBC2C8531BB3A088D1DE3F1FD670ADBA5E7152DBB4F5A3EA +1A547F162A0D4C0B8B37BA49A3761FB85C09AD44FD48A463785409559B9D5D7B12EBC928 +90F0527FACD00B60D3A14BE3A5289DA376FEBC2C6AB4A06BED35F2B83D2D01383B593A8A +2661F62D472B988F14353C73E4F9BE184B71ED9A4856EAC136FAEF499885F457C3D0CCA8 +FDB882483846FB03144A8209BA2FC26739AC3B26B741262CFC7E282A8A25A9AA412758C2 +2CE098FF5BD6802671802C703982C77684A7B8C637C05E4467ED5677FAB489278E7EB9FA +8F87DB5ADF532ECE04B0BCDCD3EDD2251D066FACC692A49936087F9A47F330F86285C442 +B6D011485308E0BCDEAE3EEF96CA7FA64DEE19DF1652F897914F2DCF781C2604AAF6718A +A84D3B399A4E2C43DD6062D82F98C1DF54F53E6BFEF9153129D6AF428C4CD0F31C73F984 +A86E4DF80C2F16ED667EB5453B1CA427BA7F2682E922D3DC28B838275458E40E18662AD7 +BA35C72EFED284A74FD815143B74D37FB2E8BF779AAD4728620806CCDF264BFEDBB3574A +E194ACA846B229A4EA91F61FDA8A43D03486ECEC1B217DDA8665EDC4D2D7694B1F495C25 +D01CC7D5E75D63F46B5A5B50F5F1953A4D38DAADEEEE31427E0B31944055AEEE79D3AC1B +71C6E0AF328CA370B08DF94B5FCBBA2197349D3AFA87AF5E1E295436BED6B6DD7A30EC1C +1A695FAA1D49E4FE4DF9EA786AAB2BF4BEAF7A6228B8285D7E40F878976A26DF42441B54 +028DA4CFBF0A2D5B87B151D8CC6778CDF4BA5379C23ACA5BA1B1A01DEF4C9466D6FCFE58 +9B45D74812F3C3D41D31CF73F3F3552CD8A74FE3890BBA5A03A126668CAA8D01577DAAEE +8584ACBB3338F465F03CCF90CDC985FA61C1F73EF6DE1506DC1D172EADDC13394479EC65 +4F67A603D72AC8B01E53A96D9482CE3BD05ECD5298EBB8C5C391D4DC3E9EEB38268555FB +64F821FBD15897575FB899C4F29B79DA9B636B9F96DA89545BC50D8E7B79E0A212A3895E +A623301D444D33BD2CCCE8DB28EAD09EDEB433ADF42ACE6F90084123A46C9DF2C9449C00 +1BD79AB9BAC642F2D62F2885953D18082D9D4F649CC4D47988361B44E7F4748BE00C9D01 +AFF9103507185B99DB72C69AB2EB0987BC5DCD8B1B5AF727FD8C60C30550827BBA95942F +2B06DBA6FA3B87971F811A6B4F862DE66A47FDA740743DFF5CBEE9D6895F21DD738768AE +A69AB4A67EE6E9C336F461B688BFD7238562C609F0C9A88F7BC271FB8566B8EC4343A78C +5AD8A70D904E2203BDB1631C256A5DD168E8EC72E776D969757986AC8871D384020E7E72 +56ABF7509A379B85ADE98B5BD970940746E08B6FBF32A81875959AA0DF409C61A4750F4B +CA20E5203F3F34FA251734120D40005FA5D41EA2DE5738DEE254D203E8F456E3281C83EE +44946144304DBBBA7044A1CD934A88FA740E7774A8CA7585460F1969328ED0A543DF1DB8 +1664875D63B6D83C705735C12FBA774E926841F234AE0DE977BBBF95A73768FE1758A09E +1CD5B459F96978F3828199672AADA65DBFB07647037431D7291AB49F815B98FD3F032ADA +224A0A4913C41B9BD8DE8CB13D367CE75653DF0593FBF26B113BD9CABF67470E4A344DED +A49A3284E54A58BA5C9FA3B143BCC99D292B42385E02342B771890E8EAC646A9170E23F0 +9DDA0C4453AD863B4885655193A6FE7689BFE655E027577A7CCE07A04FB8B2407D17C0D1 +8A355AB80204170F135E758B40321319D2285886897EF88C6FC28C54445F1A526E34B962 +0D607EF3366312592C53C87979D7FCD48BA89901D8C5A457D332617A39F2C0B0A6D13FC0 +03D1903D4D4F14880A278DFF55296C2CAD9DD5546346448C3206F6DE50195D66F519379F +E9653D749DE4E31DDF814276839E74B3B121EF1835AB222E50716F899D33B46178C537FA +BC3939EEAA548036606E0F0FBFDBFE56C38E5363DC0E8B6CA2E3F7A39A140DD7CD0C12B3 +2171EE94A78A05A437551A6A04BF19BAA9D2FB561C234B24C82900AFC842DD2666752F40 +1191DD5DE4B8ABD562CE6017F0F33579A7932F0C1D98CDF2817E7F82FDCA31197596AE43 +F37AB9913AA6A675187A646F71764124D5227017138C4AD256ACC9D4318BA2515F9D8226 +1EA8AE0EDCDD49298A5E72F5A6E02A15854FCD92FAFBCEA0ADD2E8295EC1BEA3DE95B270 +C1B94C1EA57C934CDC53642F22E1D524EFB74ADCB1D227320C7C09FD60DF92B7EB746471 +8E9ACE598F883101356970CF037C0169DE8736D3C8DDCA7DB95570EDD38497177DF5D373 +05596A49EABA1B404E42F37264CFE16F84404F1AF349AAF334A991006F1E33E2EF4EE99D +5EAE854C1C45E669CA82C62845074A465B10EB41A358D1917A138CD6BED154510BAB71FF +711FA60B7BE060125EE8247AD2762E129A14B70F04F081A836B2BE05DDF938465B694189 +48AE143B0C2F8FA19783071B06BF9F4AC2AA536AC614C09C9755ADCA8875EA747919230A +4C9D7B527AE5AB35D321976D3D15A64268C6914D8CB90DDB67C853754E1CAB502A966B1C +85ECCED68FA5C0C4A67DCF4A418F989B7D7A4234DACA7FD5FB6F414227110276D5A662E6 +C5F4CF32BF6E3C668BFEF6BD6B896C49FA7BA2A864EA7B96DABFA0E4A48DC9806632620D +146EF511294D9347142EEE22BA1A92567800F25CC3E295DDA704F7F15DC5BC750385EF45 +6F1471F009E01E40EF30807AE283F8D447E2E57C7A8ED2AA90069D70343B5596B892E130 +F562081CA34F02F1BD83B2EB31EF4C4FC0FC512771DB2B5DBD5FD7A23C81B4CB41F35A61 +64F734585176CAF4C46BD20DCA7C0C257081F6E9B46BC091AE12CC10F7C5CD47E595007D +B441679CDF07213FF8249DD94612184F6818674A32702FF0E2C47F6997E72E04AB205977 +6CDE7C2D25EDE2F65155F49869CCAD736153EBF5DC5FA158F47F6EE7F22EB8566E85BF0E +42139419D00C58F841B25D9713D3D3A1707AED6CE4F40B591912332803A54484A80D5582 +55944D4211504A30C0C298D6B200642F4BF9000E519871C8C4F36EE57AAB30DC3F3B9098 +13F0E0C9B3818BC09B077C3651F323F60BCA4A246861428E11090DDA0B3F21E8445D18FF +550B0370DF7006B460A3C597D8F2A6A7DC945C4BF56B684CC2D5571F792953E77E204D73 +B185A6ACE60A674857D4A25D96619BA01E324FA8AE9B0B1D9584E1D4232F184533ECF415 +2297D66C7D1AAF80BCEBCAA924C1AF31AEC8DC9A095F0C23391E589BE287F644E2611C0F +4FECD3A3E865F94A4E42955FFDDF43826D20E43AAD50AE179166D3DA24AD854F693BDA6F +3460C369FE9B3DF5473A11424993BA02A19E89F6F651164B010A967F30EB6B6C7A626079 +29F900259E0F524AE9ADC5BA81DD720F29CE5F16E99E892A0226CEA75893E0ED8D0F347A +761B8C7415191A56C02F9DC51A9E2EC2EE6D8652B1D0EC17C367026EBF9EAF03CC504721 +F1E296A0CF6813CCFFE4BADE22C7258A2CBC340BCAF2E53FCDF6703CD1341D6F3FA455F0 +F728BD67E8C51E64AFD7C993E1A62E082BEC02119D9C7F6FBFE95CF6F5A1DE12127EC32C +7ED446D052DC18500FF5AB877F28D19A514E43A7167543C0FEE25213FD6E7DACC581981F +8EA350C5DFD661CD742024CDB43713F11C6038FEE0DD2FD70315E9051E3D39A04340C1B0 +1A8537CF81F0DFF93A44E77F097048B4F2958B5187CC9D5153C6DDFF1F20317766B15813 +40DA8A0C59ADB69CBA0F452F91D72F605AC1BAE1CB3B6D79BA27D81D993A482F114C57B7 +6E9F9A76302F2B3AC7BAC7E89B663645B3EB20EF8FA3A2ED8DC5C083E31EE420A5C1F642 +3BD00DE17D2BE7ED54125D9198F7C07B67C4D1E9367D09F724A15F47010D8A600DB572C2 +2F8C1ABFAA13D89DF04742B7AF1A67DE0EF8F5FEA4BA8B6D150E12C1D27CC6C121A06BD9 +E852ABA9CE8AA114BCFE8D4C7ACCE8C3B8ABC4CF7FCD2FD1629D4144ECA1FEF00FFA5C51 +25FC4866868B47EBC5D213E9E41C0F190EAAAE4F75651D252CBFF155867F29626AD35FA6 +93DE991753B5971FD264D7D5F64E46C6D8FE0D841D5C4D587F5F246AF9ED2A0D64C3554E +608AAEB14B9509E330B21D56593764C413ADC23EAFDBDDBB74DE542EBE252D351E9D24C2 +A05E2F69E8B3B2C1ADA6A45D9FD0F1DFD3940DA7B2E31DF288A8666A1D43E270D733FBB1 +C8DFB7C457F4790DCDB5AAFF0A704C1DFC0AB19D255F57F688CC60D33CF04717591CF3AD +EB14D92943A2C4D2A582315EAA1E823E6851F8003BC1BE8D62F4CC1216D9C47141856CCD +5B57B7945DC0C1CBE212DFE946D55C57446A5F5957A0E87C57734EFEC056E337CE8F21E6 +51B93C72F951A07F65145EDE97CC550F5CD47488BD380FAC243D055D45536946748B9061 +9E6F8E92D8733618F0BDB6119AE1FC8C3FD78C11DA123375765F7C7F27384E26A44294FE +E72E3F54857B48C54E32642A7FF54B413FCA67B75776BA8CBA66637A02F699003CC2F46B +265EF6ED1A1F91DDF93207CFDF154A3E514491F8D4596C6BBC218457209CAB148A3FED60 +1C55322D6D147653F143F63345A6634D310C97ADA5DC805EF414DD3C883396798902FD83 +C6E99B165C3704EB9F5F93DE9FC90F02D5D88CC764906FED7438A2237D36163503517ED6 +4FA6A9B590736D0A1C3B6D3FC9C1C06B008223661447FF3DD0E9F2D025CAFC28F8B4D670 +D7D6283B309FC01F3158322A8EEC6F9F3CC318D7FE9D5282701B546AC47B477DEA6A66E0 +1E66D11C982A57D3E73D399E564353B314188487DA391759CCCDF3D70D9D2ED94BB65947 +193B89F24B74D96E7CB001B11DE79244BE770152E97C9D1D9BD8D7CA07D17D8B00656905 +2B1BA07F07A5E34E80019CE0440B42E60708EE0B781367F4935A9570BE2C6F262F5C292A +8B2DF4A0620DF1BBF9607D1B9740B165F429EDC50BE05BAFA1C944AD15EFD2D36E347CA9 +AF467ECCDF91425019AAA939D31055A419006B1BBE0F099476AC5361C5DAB7BA11CFA2AA +A715838B9AB41B7079F0878118942CD0049A252AF588AC56C2AF0332C5F8A7FA4168D2F0 +385BF5FD83802E72DDC526BB9FD5F22691F6629358325FD3C8CAE235A76B2E021794171C +544CB6D8F2D369A3D4CF490C749CBE16F8160FB1CB24F0FEF1BB02F83226748E54A9F9CA +A7149C03229E0CC8C98162DAF632BAD558F342FE12431E4E03E202B109701837EB0A4192 +E9E29C049FDB254BBE7F96D13A5E6AB924DE1A3BCDFCAB717B0B46E0A76DAA7FAE3E01D9 +AEADEDEA25E043C0BE51E2D9AFAAAE73D7C9D8D823C48BD680C777B8DEBC88D3AFEEF22E +D5109A292C4629E55CCAF496BFA056E74D43C900D1991D2FE02FB1846D99B7B46B5DB210 +35082EDC5AC171AD6AB7C12656A3E494DA4944F23F8A795FF9D9B08DBA5DD1977B875A81 +DD9BDDE7A1D742B9B5C6DC1AF3B9290EE45F11BEC391CA9FACF6011A9F0F975611A31512 +919F9B917FA0D358458382480E87DBB493CF1365EB8542B0E48C7317F8528F0DFB0C71EF +7ADF7308214D7916B0EACA6CE6929A673F5821BEE6E784664DCA5A26D19F42EEBD25D768 +710518F6090E0E387172738BE2B7697D055401C99F566C1AE1AF49AF35CCFFBCB5378026 +23A698E9509EC6A95A30EF72EB6B87A50FD5F5F032A359FBDDA06AE74E3083C36856A198 +86EA9DAA0DB8DB9AB6080EF8F9AC5745734B3F1BE9F679F17F59D7640F1A987C23655C96 +1AD52C46049C78996A4D359A8A0817E27776873E3A8E3BE5507D693BA72C876EE13472CE +1FA39335674363839DE685FDFEE7396A3A9E82C13029313611BCC212157CE88FB5CE9BDD +CCC5867ADB5765D239149CD61F8CD30A99572926219EE987824B4FA2790724CF55BF68C6 +7B092D8672D8DAC6692394736B3DCEC4F129FD986DEAEE1C9CC5D2913C547DF9F47775EA +A58F6E397D7FD4CC3643C7AB07EE05E7A4E7D58581B25764F30EA2F7FAEFFD20FB53968F +8A7570F978257D37B78DA40A1CFE4F5E3669BBFA318292890D2F7AFB43CD7046579528AB +061E2100D0637410E532DD8944FF841F5A5925D664FC180D81459C92E2F8941932E09C0D +079B9DDC2C2C8A85978E4F76EE6D63D0218F7F980F162116A1323401CDDA36F7294FA7D2 +D11937E7C2C7771EDB80410F093774B6C5C2DCB8825542B0F2EE315A200CEC2128107CF1 +18C7682CF6BE30047C24307CC76F59A1B2196B1583A2DD0DF0B54789DC31ECC4A62DF822 +59B0F4842E79E120BEC15F52916B07108AAC06BF9B2B55D27C1B72B13766679C6932643F +1F6C3E0165EDBAACFBEB760E15EA39864C8670FBEC93E4332874F5E068F5AC9BF6C9B165 +847AF36B6ED181670FA938B0BDF5DD52FEC4CC20482B6C4DF2717CB5C1660224E8922C1E +15714AF585B221B0D0DED79D4A0C50973959B96B6696FF41411506063B54BC5F2A6A8F0D +4739D79EEF11F02F56342B480ED63A6548CFC8664A38693C375B214F13C9631C716EB6DE +FF07037FD994E05245905ACFCE13F36CA3094B7AEE5F51132722768CC0BEBD2070D277EE +E8534D6BB19B3106384DD40AFA6D7705D432CD27D3373E3D23EB9230A4CAD00EEC9E7E0F +6DA1B11BFAB26939F1B409C16740DE96A1F509A0051C8B0E7B6C296F0DB1807B4F8A1001 +E3265A21424E402100E1C7DB4A3D8D3A0281428FD8D4CB51F2F6101BC64F527C577C39C9 +7530939965BF86B518FA7A59DB1A428A1CA0EDDA912BED9DC9BCD6B8584D1E444DE67987 +B30168C68FA953B9569D5C57D0CE40850C62ED3ECE907EDCFECEEF530BD6A198CCE7E499 +A97261FE6F0B6DA44CFB4594D93580260CEFC26EFB4FFA986423474133951231D684083D +8E8290D0181A23FD8603C6AA72EFF44E9D4EA3B24063F4CEF56A1B56E9E55A5A774B1808 +6788619767D0F2746735203DD0B79A964CDEB87942BB64F7ECAE9BFFDA4A06288F6DD481 +935B8F77718446D880EF994136CBC4AAEAA73669907BCDED2EDE0FA5D56ADA6259147066 +F8FAE712FD24EDE4C5EFF2AD52497F0D637E8052B8EC7E34B138F7745F61CCCDCC0B3869 +BD81E8572C6E5B1F4C48E334498B81A8284CF6C6D81D4305DBD8E02504AC36F159EFA3DF +67BDA0D7003D744EA7BAE583BE3D88049741FC93A51AD64DA3E8E8A25D5BAA2F472F930D +C68EF8EFC8DA7B9D131E664B7649361CA3ADD2AFC00C700C3F0F8C007C008D001175B569 +AD2D87807CBF02F38CAC0D501CACBD06DD19E093CB1520E39EC8E63728DE89AD7224193A +E0F1AEDE9D14230BDA0561F0A508933AA35E7E523F25D97ABE641E10B0EB32165A0EA9E1 +A29C64BFB75E5D50F47A994D675419667C638730B718ABC74F9107AF7D51C042756C794B +DB008EBACA34AD3D011B644FD927D758DC37F6054C033C7741EBF00B6C94C777D9CCD8EB +FC414E562186B2367913B505CC3B73CF4726F243E3108A42BC21668CD2DBAF3534ACD4B4 +175476C554F2874B24D6659C844F2E69CE9E27225E967398A519462F741E166D91797E94 +CF47F688F4A90FDB66F12B229D254BEB0A7A969C892AC39B42821FCEB64B184DDB5FE57F +727B3BDF0CDD896DD064BBE23A61D7AF2555872514ACB5DFA52B390C20B732465E63945F +6E97673A94BD7EC92A8FF8E5604FD2CB4EEEF65073330BB807F7041E3832C8076645D86B +FDA6D17E13BE3FCBB8D0D93EF569258FB1DF4EA655A9074D09B9691D3431AFCC68C22874 +5719123293AE4D9A783B34C4323A79F1838C02AEDD1B34BCEF228AFB62DAEB7DFF586459 +B0C05E6AE5765FD250F34B8CFFA9866258AA31C751AF0B7EF3004C726FE2FC554CB36B82 +689D107CD3CE99EB264D30B88D3B8C51D184BC89A167CB7050F7776DD1F5A2CA66471847 +3CA4FCAF5464591E6A35E39BB6583EEFFD268EEE90CFA20F746BB86F65A5A745CE008BBD +EA16D24AD9D551F8F0D6B7404F3F2FA687AD5B33C00F4636E52F9251207A6EF08156AD72 +D82F7561E37399B50FBE843172B6A69F969D59143BC651DD321795962CFBD3A1BA2801B8 +A8492ADAD7F83BF61F7BF82B399EC3998C0299889E1B99D51D33E87D96A78C9DA846D5F0 +2C85288C7546B7AFBE09D9FC3C3851D9877564C321CB68315A27B1BDEC9D6EEA4AC9CD92 +2A191177A75F015E1A911BF2E01B858C241B2670A0C334B1F1A805DBA4DA0B653D551A5A +35233047584BFCDADE768ADA26B79AE8DCACC6B89211447C421D054C992A2F03B7D1097F +4E1A8808289E0F4402D4AE24EB8C4E9233DA0581C3691AA8670202319017D3AF56ABEDCD +B15DF20986CECE980554B07DA79281DECFEE786038FAA1959D5D0F9818E5CB011906A9F0 +E6838B3232FCFB53FD112E7FCC32E714A7CBA6A859DDEC5384F83325D650CF9A960F3D13 +68B3650122DE0AB0F8C99DC7FB08B216EB05DE2E0765FD8FCBFFE9AFA3123C865C6C86B7 +AE455E6886B9D2B71C96DD7BB1B54EFFEAB2DAFB24414CB70557794DF8C30AD520752DE7 +6E93D7EBC0C48A28FFC8ADCB6CE5462D8F9A4A55C10894F849D7D37BA00F2CE4F2FBC3F7 +9DCA3E94B38F5EB0321CE658EC90D7F14C011358C8CFB3139E17D4956C620DBF634E4826 +DFE3F0994E70BD5299D1E59A26440EBE2EE4A2ECD23474DEC565C0A4938A849FD1BFB8F7 +DC817369B9F165149464C69F0579D39E19932D7BC873873F31E5FF2C04134FEB924DDEB7 +97F1345FF49243F7C90C72AE7FF4D206AE6916FF6CF67D640921B59E05F63EFE86FDAD6B +7C23A3D8456131614F684B17B9C7F51E08E5000A9D48A9766F0E59F32539161C33576ECC +80BCFE64D5617ABAB89A385C4970FFB040890B48F0AA9313D60C5DB6D644F25D489E18AF +85E60BF6D45C6B2CE2EF919A731D21B58910780C2914079BC9405C502716B53356B5C996 +094298FA7C1300167EBE8F05992B3745C13BF27C0143D5CBEAB5D43ECEBAC50CACC5314A +183912F14071672EFE50F720B48D2A9562EB7E32F53D758DEFD3768218D186E69CE940F1 +9158B9BF2E48A3279759BFEBBF24B92A10251B462B0F4FBFC141AF82567562322F517071 +E4429643C86FAD2C65466D05AE069F65025C9CCD8AEF02B70A5DCAF9AE3DB3676C587BF5 +3DF2976AB06F388E0034DB3AE81298870B0A7B55B2585172CEB411622C25EF27D7E6076F +AECB5C651916CA76F824916AD3DE239C71452C97D4890ED29645F36A53C96F05AD1734ED +8D1BAA96FA9B7EAEC5A639AE3A18D481788AD64C07E72710DCC4DFCC70D2012ADA03AFD4 +B75D4562B4309E884808186F96F783F3DBA1F069BB7BFC9EF1256FA4EEA3DE066D610D60 +81162C242E79F5EE2BE5DED2A4048B7806CE87FDCA7A1C5A087F33973C8713CFBBA18675 +DE41DB2564268546DD5D1712F9188FA277ABB47F3D73B143319E334616B1E90C095CBD46 +227AAF3A5EF9A1264024D74EDF17288B14553CD3D89D5009837480EFDE16998555E95FEA +D9AAC596F9E1724D796537A851722E53E499C6D0EB0F92C610B9BDDDB216FCADF1F47B49 +32CD25EDB3DC5A22F8AFBFE9E85F84D8426D846B212A227B68F69B8A6448BFDF241F71B0 +A6D6A345E321413CD786C2503A9B4E1F79AD888B61B6EDC3A2CC523992FB25D5475493F0 +A1C11D3BE6251FFCE352D717338B72E238C2AECF60742C62F77B0D0103FD27E548DBE762 +1AC9F07DCC86EC380513E851FF8A7FB661AD225C8C0DCFD5C0AD05D0BA4CE50FB3A6FD13 +7A269CCD2C0E7022EF1323F7A5A15AD21A4ECA04C4D247E2D537102A3953E764822DB224 +AB42FA19C445E4F7BA674C40F304E0023B9BDACB1453DCEC6A961DA4FC7EF52EF14BE91D +A26069D36C4BFD09FB91064B754C5295F222FC5ACACFD1B8E5D24CC5BEB61524B825ABBB +4F4D025049C31898398C6C6B547EC4C9E92AC9A906DD717077F9D8001723FF61B660C951 +2D329C7DC90A5D508841FC0738AF338279D9BC016F89D812DC13A3A74D7C993BD2AE352C +B1B879A60184667EB8A65A5C77DF8AEE5DE873B1A33E72FC838E90BD8B803C5DEDF37352 +D6E394EC6FCC4B1BD94CF579288B6F8ACD79A9C7C0CA4ADE22491B7B98320DFF1DCB08FE +B0E76E0E650C6646F106EA73B7BB678C4CD6C5560E8FD3DE3848EBCBF071E3C757512A09 +1BFCFE74EFC5B6C3CACBC39287737C8F454BC9C1BB670F5B44155E92AD1EAB6878EF8C68 +CFB0EBFC2AC1801EC5B63D460562940822FA1942C58FD53F3F9C781DD0D16AC962029735 +12DA01DF3BD0C4719B323B3444DC2BD0625986B392A927C2E0BB6DE6274F0BD89AB9EE97 +E004A7C2CED9A00E97C95C384A817AB1E45968E2C2B3D8DF0CCE375BB4286624F94B1D39 +1C2D183652B43427E3F74404DA00662A442001C4685E2DE4BD450146686A2E23618E7B95 +795F3D2BD6E3F9AEF093B8F9A00ED2A8AE29D9F37C88B9D964639A94F938D506C2DC31DB +E03DE6271CD9339EA4A09D93E1A2F889024F3110FD96BDD6373810001DC336EE828C9827 +651D286104F3CAE019A98FE1CEB6770C8318B39B23BCF48B8DF6094C3B95D303616F31F5 +D478A0330EC4AF2D2EB1AAC101BB8DC082AC9D5D3D1158AAC1EFA382882F021AF815D7F8 +1D103748F7A9622618B293FFFA0D343A716827CEE5B0F89A3FAFF8934A90CAD616F462B5 +597ADB47AD0C2FD4DF962C9CF8EAAED05AE32C6B3CA1BB592E59C6D66AFA8084333B0A1C +F1AC87776B3D215F6CC8AF01347B5758D21FDC5E840681F8FB78DB691AB126C2CD5D2946 +BB8861F1B66D0B87FB3FB3B490F9F1800AAD3C8BF2696673FAE9ED5A284D1394B63A61F8 +96FE149F22927256C48942D87799FC40CA85B67F39DA1A460489833995E322E0F464E934 +DC51AB62340254546AC971EC1A5403FA6D76D7C2FD2D67CA123187F2D28562FBFA4D2E68 +4C48FA2FF7A8688592C58C945A9DB4192D9D22CCE31B7A496D1FE2694C3FE1DC73EB72F1 +4ACE5E09643F7FB7262B82FBF47B0DD50E4DAA044A58CF359AB9405BB2930464C850E849 +9224842FA1F4B1FC904187AFE8F74A3F9D3C0759CD2968EDECC771A30713C9DFF9F615D3 +E1F4D77442F48138D45CCAFD57D3A38F85B483D0FB8FA7C48BB5323C9A3CF053A0BC9ED9 +797BC0B4B2EE2F06C4C00F67393E0FBC2F63051785683986C38BFE085390F81C7AB8782D +FA95785A11B1343BD69544EEB1767240D16DC3B677F0BB2C91ECA1E751648B42439582A9 +CC531FA5A769FF2C63A74CFC0B7E2E687B67DA4E8A8BA34830089E2E288B750C227E73AD +231D3C7B9F5167FD9BD14B22371CA4DDC5B8898F22C2F31447F99770447C6F037CED2CD6 +CCBC79CA6CE62B3678E9687AE70FBF2E2FC96F9889D2FB48566C822E602BBE76FC81C5C2 +F5F449DE84894C98DAE74B79B438F7B06916011035D16D84B46ADC46B91D6E9D5E203D1D +90A510873447D8635FAEAB2E07D256C7B8D1026C309BD852618E45F53544D8F35DADA620 +E1D4E891336AD338755A4671DAEE4D4D676D6B810D277EF1DF1F53B1271C8F4E9F74D516 +7ED80418322EE6BB0DF8C398734F9E5C48E400EDFF3119A98CF0934ACBA18520796C9165 +9CCAD33C9D4E0EEBAB1924DF01B9948EC24FB363807B5EB654D08ED126A4541A4F8DE934 +C5EDED13DA452D215F335F4B1BDE7A08599F5AEE5E1E8D04C48AF22543C108559830F978 +4481E4B27196844010BF3E0A348B11A33ACBE1B9C21F9EF5DBD38F2307B91246AF6757B4 +AF5EBD71EA86CE3428AA809A6F80AFB6EEC296AFAFECA0B15C8A77FAF45865A6F55DA01F +9BFEB52158B5C060CA420B99A558452436D0C28C840B726169015AB821E86CED6D9C2C1D +125CD630FD218B2E7B21DBDD3021557F05CEB4A9A92EC66C15556BA05647D858F2CB7951 +8497E2D7812064EAE90D14DA81B5CAB4A2EAB705DCF87301CACA0DB762B52C08611B0AFD +0E5E3288D5D9F54BF2ECD9AF5DD5F9F6FAF010AEEEA82B72FD818CECA713CE5345C67EBF +20959544E6130B4675F6E12D11A35D78FC1DE9296BBB63F7918864E2EAACC0C3E07C61B8 +D39D1104AD9F377F708881D15C75EEABEC4121E1B9A650306ED5A40FA9383130FF3C1FFF +B5AC81D6252025CFD9A8B1B151242F27FAC927A753D5FF067DDD657A5BA1A5445D282BF0 +0B0E406765EF8F8EA107445351967931F4FBB24E5B20BF84F6D951099EF9B7CB94772530 +E7253FEAE8E0CAEB692A07F86A9117C2E7BD653610C4708252DADFC37DC65881841F75EF +CADD59BA6013CE26E79991B7F37547043A0DA1685A094F73FF5776BB6D8FA6281F0EE1CB +E7C8C163C3614D2CE0816BA3B2D520FAF29B308053C16AA8C1BFAAEA80BA8F28E63D918D +4FE96734A761E50773A24430382B094E349A634BE92253E59F41E945DA8509B0D46534F5 +9A4BDFB024B4D56845DB3EAD3F57B870AC49EA23D671847BE861C7A45B677719E78C1624 +63B604AC814FE69783154DD1E65E87B8699A94C7AA75111E9F161F3EEA7A3AADC2B03C53 +D0C2246889FB81935A54ECE5796A23048B8B64EB5AE4903AA70C7941EEAA0A84E235D173 +855F2EEFCC2064AC1919C3897E50419EB6CD2B36FC5DD0A6A774CD2EFD34429AC1017FEB +036DD0BCD450EE4237CC87D68D9A6B8A76265E8393D4C518BBF16FB22B4EB3A09634DFDC +F102EBA5FFFB8E654313A87700891786916AAEB2D6DC71651454D7EF27BE43F087DADBEB +F415AA3BFC1F89AAE1E65E4D0E43648BCB5B3FF684E16051C4539764012C74E97A4859BB +F8D8159C306F114C089F861BF98DBC80C6F40617D4BE4BD742C0E944BCF7805CD9D208E7 +15021A24B5B8FC527E25C48613104EF225FF0A089674DDA084278A549A6A0654CCD1EAB7 +7A3263E6BC4B21A2F9CB20E8FA64F314415C5A343AF33899FD5CE186883D36A83A5D8F43 +363EF0AF403770B5D3936AE3C716AD0C9004FFF3629BB549076B748ECB14E4AF294D6FCE +F60D8D176939A5AECD5FCB21DDF7BB1D9873F1546AEA6302183656A3794293CDA12B4DDF +59A373E2EE4297F8B1743F8A7BD4696BF9BF0361ED09FC5F1ADBFCC3351F63B4346F4595 +49AC772514436AD63105A65274A4BB8AF166ECE955174877BDC1463804DD50F4E609AF0A +6B5BA4A234505DBBA7C00FE3CB37BE58BAF001F87854CEB19EEE90D2B97E054899314C94 +A71363D0FEAD6B0A4C641EB293B2D5D2869E60D00A5E2757CB19F6EE403DDCAB8DA6D0CF +6E88E9B57C335E6CC00C12F50740D9047C576BE51D27C96C75882117CBDF484199EBEB7F +D4B2D70A1FD657049CD88D9A3038E86AA7CFFB6C3731FC8D5D8346612FD37FB8747FCD42 +F6F5A1BD43C2915B6925F45CCC445F30D24B28F69A2A964317F8D5845FBF87C2508D3504 +925B272F2A0E5551C7F193F8922C64E002033FD453C044238F54B9C04014E1908E5CE4FA +79FA2384192F8830C8598C4D3535717D66EE306F4A94BD11A99CF92D7CFD445C896E9E05 +359A5485BC8F23D86CBA1674207CE28AE8F4CBE0513E83F6C58D2AB3A11FB50584EA7BE9 +BC5DF5613B62F3E0D04D194C18F6D1461132E3F4A83CF3CA3911E533CACE85236518305C +337AFDF89B86410DDBB77D3B0A84655876AC9E4B5AE0C32AD43F57295DBDC64C1AB1C105 +39DA7FF9C3A15C44A2C1FC77D3D06CFEEBF8895D8A7966CA9006DAB566B3A31D7B76D534 +A34C8D4D0E4EF9E31FAA247270FCFDA256D00DA53D5357652509ED0D44335C59AEF56508 +DFCE479AE005F63B5E48ADF18570AF87B92E4CF4FD69A927C178803BD0200ADB39662AB7 +7D2A067306F17D30040EB506C9AF3E5BA5104CB8A33C1CA953332615E086719B26BCE4E7 +BF1B8F0CAED7FC3F0B2AD31166557646E47A5B42510E4F0C15D5AB5A92D1FCB93F0BA054 +AB26E6FE94643F175991A4419EAB1A107B241960EAE282EE3FE52B43924209A4CD3D5212 +F51C9DAF1FB08ECAB4B4CD1247E38FCAEE42E9B871F66055D671D8F0E01A581E775E11A9 +6F7009EB75A1C37F646F6F7CD12A177C1DB1C005FB82EBEDF960071B23A59A11190FB570 +3D071D6C2C6C6570274EDF2E0179DE7F3724253907B53D79D8ABB66007A12CCC989875C6 +D0BE1071973DBFBAA88340633278F75CD4FE41CF356D91AA54E8C528F8BB57FC50414A22 +144DC33BF7F9555BC9FEBE7147DEE1D2871A18487BD8B70840C212A480E99F47E530E6F7 +3BB26D0749496C5292C9DA9726A5630E410471D3E2BDA2C1D5EE7E664AE22D17B087C814 +F6AFCBA06414D3EE9D444569204323279B60612F823296D66AED52B16A51EFDCE563D9E5 +FD05B06ACCA29307A7FF61220F7FDFFB59C76A9786A4B1ED056C5FF87DC45654BEC26444 +068A163FFE1791CE48CDB771FD1231DF44EFAA61B71F8C12796BC1C48175E01E28AA0109 +FF6FD8D04E3A1FC149F7ABD3F4C1C95A95094A0BF867071EA0E3954FA485B81FA58094C0 +B2EC09A9A2C3D6F24B0F33F21550E051B98603CD82B70852D5B90BDF6386F7EEB3C23FF6 +1A608CAC5CE44533ED3000941366E5FBE23110951635E24731E0203583ED6105D560535E +352D322ACD0C3E735FC3BC083E13CC965B090E50C860CD8057B0165F17C1D56505F83A3A +2F0432AB6AFC4598E24657C8493487AE704F41010EBA2EDC65281B7EA6B7A9D3A81F2109 +0E391A4467F99F29327588B79912C996DB25450F1E4122F2C3372AF23F705C9FAE55F8F0 +470A34FC6BE741DCBCB6CD5C1AAF80B545026B6C8A0F02FD7C2C81AAF07A91C8BDA6E946 +0DC967AD4F5D2584575EA7D4433C25E8B003BB3A78E60CB8DA00696B8A1529D0C6D893A6 +72F40787D5F3487A49F8DFF8B12B937C1A5AB9EBAD201EE863F3C2F1120AE907F9DE48BA +08BD4E9FD30FBDFB53D99E4577090DDAC9EC6E5BAD7049563208E65E85DD4C582E0CA55F +49ACAC1F4206C2ED425B6518A34DBE601CF3CEB4D9FA41453B6BC61ECF138D88521449D4 +3DE0330B632C44006E3439F106EEA301A16C858698FEEB028BEE9BD0EB5A991EB24786E2 +823ABFFBDDDCE250BA9D1999AE95001C5425BFC40C81B4D514627A992C343E48FADE88C4 +7058F363CD8D73AC8E8AF732EA6B80224EE0C6F63237CECB49D0615D2B4F6F26F256C4CF +D07AF11DD2C3C8C4D8FF3408B81BF24F98B5EDDE53F68E69AEA7712D70AB4FD7DA51BA41 +56F9A05BBB0CCD25731CBFF350F8FCCEC9A086DE0AF73F2E79C8F0C4FFBC17E834C4BF30 +19A1BCA8A19B86740199DECBB0E64B1F0C5AE18045CB057F4C6C56E29EF366C41ED3AF6F +FD41231E392B793808D081550E623054BCB4E70E12E4521080FD01E68C86F3070CDEC5DB +29ED10A76C7B9E3BB902567DB0E3E175382049D372DAFCA10EF7D15BE2845B012419E4D3 +49DE7E42765B349ABAF56BDB3C224DCF7B3C1DDF3CAA5E094862B5591C729BE9A87AFDE8 +33DA40BA5FF2DD76E08D24F427AEFC9D062E26FECB6C89B30D64A0C393EFD3C2043CCD27 +2EB309072B8D95FABE7B33825FF955BAA928C39909014B79DC322FA58592ED1E0F59EE51 +335F59221F3365D2C9864DA39EBF9B75920B3A8A10DD4AECDEF40BC6678DEA8E8EC0FA23 +9D6C84797C3557ADB94D89B0A3C90906D2234A1D1351413FF40A21E20A88E108A9073975 +42F11CCC62107F6A0A21B148B7796002D4C093D98DF034B4A91942F75D6FB332645640AD +708DC99C24E7707185273225522354421E8E2CE82B1A35C6A8150EE2AB2B8BBAB3F9CBCB +6E228E3215193D31E9A8FBE9C9D2510F7D466B4D7AD5653A1D488DE6733E925BAC044EEC +35BC3BB7FE89101C0CE80CA03D2D4C36920D5F93193D5393412360B3527FA24570035905 +129CD3A0D246D2BBC2FC828EEDF486DD6DB487F88C22F69FB740E6FA5172ED51C1038A31 +70973A07460A6A5F188FC6F7B52EDE3802201DFBECB7047D58761DB83A5C3FEE6AA56A00 +7DC2E973F6F2CC14B50536589D1D1C0CC79A8427D0C3E30E7C5CA2B7520312201C754843 +54A173428F6128F5C9CA527CF6CC184A8BB13CA99093C7CF79DF9C8DEAD5D83B2400D9A5 +4CA4F4BCFB3845A1DA599F5B7E4A214CCF1E2BEC0E1F01E453FFBA6B4B22704899AA1257 +816A3F2269C0679FB0865F4388493B9253DE0AC6E27AF8E2BE03AC0ABEDB81F3D3F26049 +85F7E5CB024B1C5D6B4BB54E1BCF3AA55F4B5EE4FB3C2CE28FE8326B50633AEC39F16C3F +FF50C31562D657C12041DEBCF7ADD7E8DEACE94F61344541367BCB28893AACE2FB148EEB +846B27284B4594C429EB97F151A2A97E7568F818E16DF7C92FDDF350392BAB05BD86F41B +E898E5011D30D14E977FA538DAE7D4FA36BB9BEC42F7CE474468F1323CF7BB5AE6E254E7 +455C3D2C96BDCD779B49540EC2E8D40F5D8A08B354B2FDD19C136F64F2B6F70E8BF12050 +426E446CA1571CB8DE1D66E992BC77DF6C9A145EE96A4D746CA360386C4CC11E4F409E20 +B0BCD65FF30646B60E7AF9311715CD8A8E50A9813196255152FF2EDA4C3BCA42FD9DAFE3 +3BC46107A4493202DFC2D58EE27B543406A16314CE6C3A701FC39AEFA605634FFBEE6A0E +064368F27FB80363CB061B7E11170D40F937E113F63F0C5D3D148967B180C32FEF8F2BB0 +E4858F6BE0B3687D99918A14FE1170784950598A1A5DC1525E845FCC6505161B064D4D02 +2C83CF31E7D0CFE5FDFD1BF04701C923E4E0D8F8A3ADB9054A989CDEC203904B3F3EDBF8 +3E63B689063F62E64F7940BC259DB25452876BC690435338152AF3C3D9D49F7FFC8A60F0 +74B2FF7EB76FF32B1038071EC6F22ED98A2A041479745ED4BA29A05B9B57E64DA39305F9 +8D65E03DBD9BC1DCB5F1B45600FF3B0427A48CC29596FF057C9598A3AF54CF4DA92A9F73 +0812E57EB26F55EAA2A15C8FD7700098B8179CE95113C9A133FFD90B8A6E55A159F67CEA +E3846918FA80FD25730147BB01C7FA64F279278102CA552CC07AB835576D96DC74E44358 +2F5A2122DE47AB75D1E06EA756AAF0341F74EC67A306483C7DD79ED5E54402C3AFF070DF +3742413BAE13FEB19647D620EED7D215FD19BE6E9F10A5E9EFCAF7F5168B2249789E7C91 +08D8EB73B9CEF8D07EE56D0629978F06BF73EC312A71AC59947BB41B1041453558832F79 +82650E5852E749592C30D2212F56843991850F91C6B646CEA0917DC2E41616158C1C0C4E +0D7C83C07C4EC0E033FC722B163C83DEC04FFF05DCC4F034AC29A52C30E2EC47F811C613 +76FDCDA1C14486F7C25F566789BDD06F55962AC66B83E09978470951CD3D2258410D5F88 +7D59D6DB4FA66AB94FF3A921DBC5EDD09A77FDA0EEE7DCC3EBF162075B0401A1E0C9355D +2FCE79EE82E0822712FD5DDB8A3C8D4919625B9BB9E6AAA6C94AFB97D126AF13D2DFF2E1 +02B5A7AFB7B2B2EA965AA80EB0F68F6CB389792C3ADC62DE6E52ACC311BD53022B9413C5 +4E2A23FD47AA70FFEB5EBCC5A321CB556A85C9E8F534CBD7C23E8A8F1DF866433559111B +3116DC3D6E0FB653D6DA8DA9124D68091A0F687CF19A569FBB1DEDC3D277A5F52A925A4D +A5F54E6F3A07761DCAE3890FC74A984CE2A441BBD043E6FC47677E6CF851A9023C75B6CD +170645FE13A9C554AD4E1F12D871D4587A502D147934A3C73A4704D94DBB5A4246EC4DFF +420418D14864E2EAE71B015DF3182873AD8A34B5E56A4E2A91701642956F841992EE4D6E +566DFC423F23BF1330890BBEC31C5E9A4CC280E436B538A0D782FA44467B5A22C2512E6E +5237D5C43709AAB9771F463AF2D17F5C034909E77B20E148AD52FBD59E56848BA63B4CB9 +73A8C0179F7AEEB5CB42D49515C86A869C5013B452E46FB75DF6EC6DCD7208C00A7FEFF4 +00F05F8A103DD4B4DDCA9EEE725002A48C5750568650C838CB45331E07D5EB709D89DF0E +344ADD65FD58410CFB8AA6BFFF644159D36277DE9D6801FA65D55401647D577754040333 +10205B67DA9D1C24428819D81749DFD557DA8C694611CB3C8555A7EF07E360CCFA423E61 +E5441DA6EE3532C78E48FE2BAF4031FC353135B5E1A07F84BC294980AA4BB6CD1A089983 +1162C2F3CF20301E06A625FF1B32188E339C279B7402F65A6A5CC06855BA0C5FDF7AD9BC +6599054A5B15C430DD57B95DD90FDD32FB23EDFC1244BB44596B8934E8055EC28AF0D8A7 +933129A6BA6E54EDB992781614A013F6A945D9084513BE390A039630CEB9346E71C304F1 +A310378A0842DC3AF35E1FE1D15B62C15A757050DFC15C65B0770FF39EE5B6405D953C1A +38596D7211D0E072CD3A8CD2F812479FAC2A685F2A53023C1DCEA77F2C743DC3ABFC89CB +0EFFF52775A5C7F191533B6A12988552E2246A14331E409CAB53BC14579732A3E7D5ACB5 +789E63376811FF552DBEA7F0CB0812FE49DB87C990F7E5E5204BB774FD29170544F3EC36 +7DFCCC44428102564210EFDC3CFD400B4E4F0722120DCF61D0728A6E1861C143E228ECDA +BFBF784122F6CF6E9C3BE67B85AA17837CEA1C22902AA3CB6F8A7CCB959E95B73342BC49 +C9C2EE8DDDAEB26E12F77236F00F64E2E0BCCADA542375E6442179171AD0136CCC178ADF +F2662626E950FA670A893E0148D24C6BEA471985EB173367939EA74785FF1E69F56059E0 +B9504EEEC8E534076D0FCD93E9383A290C383D9C80442723C92646B2FA358E94160FD5C2 +7D5E8B657A32ED02DADD005AD13FEC0F046873F7987A4813A66055BBB02BAF0E33EE3F10 +DF0FB67F665D6859AF92E32D48AE2DC094C04BD151E86AB7428D166EF51F2AAB10431496 +370152B344A83917A44A33C057AF1411CF56A19481AC0D72B5346ED61E3BAAECBC449F08 +290877630DB8A7D1C6BC7AA7A91A3286015F9E4064680750218A97BE4E469337B89539FE +FB42FCF9610EF30E50628C354F0D65280580FFBEF5B3FDE394B3A8ACF80A909B7F9DE2C6 +D8A7F8E8EEF50E81018925C07BE30CF2919EAADAA9F034E4B5BB6EE1D2015470E6D9C1C4 +6335C4D238348B4F04BEC86F9D4B4199309F77DB046FAC19B8BC44A67143B0BEE2E0DA14 +7B9AA39536E3B2A026F0DC50B4E18DDC636D5F737E2CD1076FC375BBC95556922859A5AF +81C82313FFA670DCDE72E1818B969A3C277FF935518A2335DBDDB84251FB28A175DA563D +6629D4176AA6372C3F7FFFB0447B09B095AC261255F902E2D6EC3FEFE06A91AFB47D7195 +0FEED7B6F08F88EBDCA3F29275D81ADAFCA700EAF991A34A9F7BD279422AFF5DEF4E20AD +0F935A34D8F05C87445D529710FF45DF20D4262981F0FF247ADFF7D534A0E350A66E7A4A +C6C5C8F5BCC16754A4E292F39BCDB4C7A961089B92DF696272910E228C7B4F90EA0470C7 +BF752F54C0D9C4250651932D016C61B7422A57E16B31AC5DF69C3AD75473BAC3B2CC1D6D +F458579C2B2AEFBA061CBD08EA9C3E51A82287E37A1922D025AF81CDEB9DC054B2C8296A +28AC377ED00AA06B5D067836C99FCED77E2CCC61BC76B41446F7ADF2B428FB0721851557 +F773B12152C0EF877CB9D25E10F4BFDEEC9BA1C4C764CE47E40C033F521F2C0EADE638FD +273FF5CC3E02C41715A9F598E5F7C2B98B3BE9FB9AA9FA054D96B224DE60E80D249BCA09 +69E8632A06DDB863C1E5416EAD29152595E9AFA9AF9EE7615DEF92D621DE8D37B98B1F99 +C8B1B0583C09CB0B2B3C3ECFA386A58FC9CCB61BA55323E442719A44E4053E738D978BC8 +C379BBFAEC777DB33776B845B574AEDEBEB8FEE7AC8494BD7F2C22DEAFDC1C1F3FC32E07 +09AB09FFA1359B0EEB84D04C925E4A3D481A6CC7F5CE0B78A9E4ED4B2A5CA40265A5C641 +B5563D03415E9143E04A0BF0A7E63B7E907F8031310F7A2BA410EF9360E83787AE94E20B +11A235A0CE7352FE2709E6801D40B1C2C745B7E0F59BB9E3D0584570CEB69B15735F7C8E +9621BEFDDEA3972A77F5CFF337B03A2B98F7852CC5B2F5AA35BA67EFD77FA8856AA4F543 +A02D2DD2EBAB315DB8AEC302EC8BCB9C63AD747565B75156920A3DFA3C4C52D72528B95F +6114D76948762237B09F3C114320F19F6F6955E9176E08509D51E281FE0C5C9185D4FDA3 +B76E4FB4A488BE2FDEC018EAAFD95AE34B631D18F388401FD7E98248FD4B77ED13976104 +5391D09B9E8291F4DE2E73700E0B6F2FA8446EE6F213740B915038226AE6F1B45247EE59 +119A447553BAFAACFCA8ED240083DFC5E5B35576BF76F2C5B743F9F67BD52CB856400ECD +A17C64D6C7C1EFEAB8F5AFA6297C32FB98ED5363503E853C01EC8C722FA25A7D18D8AF1D +A178CFCF64ED8C1974F0FB22B9E969CCD5BF0BC0CF1D1CA40C95D3895FC159DB54364C54 +20C3E476923229CA674B2809216E4EBACB023E582718E15C97240845B5A14A26F250CDB3 +048A55977FCA3174F03E9608F6C0355B799EDE519B7839BC7448E256239DE1BC4AC48443 +52FAAC645B1F40E3AC41027A3EDA09B9645D207F9DB19EBA21F83F3B3904D40DA31E0976 +48C4722895AD93F15A7746294D691927A87531374AB40E7119F1956BBE6B97050548D6E5 +A1F5C93AB9A0A0C52068897B15B014C082540DF5D0A6BC1138C7A30ADC40E7D1F16325EC +FE25DFE898FE26716BFC4B43C2ECA0F1672C05CD8CD1B204A531403E45F01B924DB4266C +2013F9ED9808A06A9C9F5C0D7510413E80364913BC2A4BEB5B6E88354C0F4B6C594801B1 +A5AB2C9FA9C4D700C0F274F1BC8FF4DD708D852CA47CC31DA599DDE7031121D1DC9F921C +2E3D710621C687B4E9F70E530AFA3CE3BE28919A2DD87822431EB744CB80CC4913428A9B +E36BEB4C77781056D2873FC39A1BB2E9E383A75C009B5FEB7128D32E47D4462C7351D22C +65833174A1EF2A14452107844E7BDE32B6E9BF5F7C22F6FE3585944B785EA0A3291A6571 +C3D1710D8C910DDD6A0C910A70CB315F0222BBAB919FC4ADDA9394E447CB2087CA216DFD +E37F5E55F10F6D3B856F37506131FC2B1DB43C0FD0E9E32839FCAE4C5858B126B223516B +6798B9A5B5C530540CFA36C36DAF2EBCDD505C9AF22F343F50BD3F17E73911BFECC30ECB +254E2FDCD1FFD5262AF46950D74905F1DAA44BEFA1252C335406EB4BDCD04E766E366BDA +56BAF1AE1970D0F8357947A729067302850F678FEA1B33EAE240BED97C3BF7FFB55FE714 +78EDA821558A9BF9D40D848A4764761EB01FE6BE13881EB7FF349C94E2602E90C3AE751F +8F053E5D3E58D2223B5F827F9F443DDCBB073E0777680A4E121840FC828ADE86292A25C1 +432DDF7884699428C9FAAC95B7431FAF331741E408E578E1C659777D0A31C2A1AEB970DF +B29889E513B16B93F0593920D52614083DF8DA22BD94FED117BB3E5A35ECAB2E9D4F0E12 +C2F2E2E7A0C02B58FEEA68AAB2735991CC15D8667342FFA75F0279C9A7774E7EC71D4C77 +84257C87D4FC0488630D2542A42A3CA2A71D33AA3F6C26DB81359FFB27460F93414BB546 +FED5DAA318F0D69E65BD24B2D5A2AB8F62FE810BBFE2227EA2A63226428C0A304B25E166 +0E073045EB395F7766FB5C50D7209CAAE19CDADA92876CA36C428EE08110C35E1B52EA48 +708164AE7FA6A3E8092A0E0D03C722B004E6FF0486B2A39247E1BB46ED20530D2B46C6E2 +7C0D0DA36DDB69C8918B65D7AF95033EB79D20A363B17A1DDDB765C869901C4648E6F5AD +7433D117B391F51EA91B3BA250E20F2E0A355AA1C40B7A90AAB08A0BEE52DBF9E45CD246 +3416C6506BFAF67EB3A9152EB5EAA606BFBE8080C56013F7BFF7976433CCDDA24EEC557D +767326213B71FDFF7A7D0614A827D80608A1275D68142A0131080AF5E1F33C20DF96A625 +FF9E2CADA125956C626ECEEED0D311B11D84CFB7A22126023786370B976F1D0C26FD26C6 +23F531E7675096F7E289291B059BCFC686A8C62D79C9762405BB71D999D1E10FDFAEDD29 +A7FE83FB0032740F3E4624C07E8697FD86D1D18830CD14ED5B853E6C13B6843A390E966F +0CB34397D5A67AD42E183BFEE79FB7DF30282D47F1C1FA638E0AC7FC8780DD78EE73506A +71F884E46667E17350069ADAB704F452D18EE42DA8C4639C2BCDFFE9E0006C555350894C +847367894CCDE2619E562D560C9D1D6A2301EEC0A58064789199018AFDEB62051FE0AB66 +194B30F31C3911853D89DBBF9829FBC8F32C193BEF8D8AAB0543D226B9803BAE6611B816 +91649FCA000AD4F71A17C188A7A154A685092F8889E2C36F347B87E694D81EA6BB1E271B +D924AF31C88BD786503F669B563F47E1583F6B72DD9D7B9D3E235185261D056E38285351 +11E94330D7B3B2F2FBD3E47647F1695E27871C968A05471F0B6C8708DAB32C85BFAA0F17 +39AEB987698AE83080733D3D0B7B476EABBDE3F1FC20F85AD01DAF3FB6ED7B040A2E1AF9 +58922C34A59F6655B8A24923F8B848C5C1D6650C296E6373BB59486B11C1573FF7C4D000 +FDF679DEFFF978631A81BDFE63478C9F4F3F4E4380ECE210FF79F3847A5770C3368FBDBD +2EAC9B2F6BBB3B50888441156ACC36718EF4FA10CD7104AC6208EE08F47AE26C02563D83 +945BD2879BF9C04A32BE40311C3E969C99AAD8129AD0201178609D1AFE4AF3E73B37FDF8 +1232F27B0728AA9BC74800ADB396B8743EA72A42BF400DBBD3462405C47387BBEFE1E2BA +BD600C1035BEF62C2D91241BFED6000915335324408745A3B5086463D9C379B6BB5EE3FC +68488EDFB5F5E15802ECF6CBDBD1FCDD111600B7D3B20C305C180F416ACD7D5533B66AC8 +91E25F2A323E65F3DF59E3A60D10416EBBF03B94FCD35C314F76567E6E838AA25AA364DD +F18E9989F7A59560E78F3E98C339979D8CADE6DA8ED1A37D8780475B9BB724D772BBE1B3 +1F8D2E537BED3AF207079A87D3FCF773E1E35F70BB4A18B7156DD7A8E80EBABE18820970 +A0B84DBC768587C1BB792D87BC87208477EE5B40FC84637BC129A3FC1A8B7B50A0001543 +B5EF297A1FDE4747A66437F50AF84C352F2E1AE330C2AEABAC67E1C73DA2DBA2623F01BB +594E3BB6631AD741F2FE0E59722D9267868988E2257798893096DCC71A8B057F33F94D02 +4F8DB872913D23F2EF81C88F55E871C98025DE80DC6C85A32735BC89EC24A3BE8FE7170B +F8E2ECF9EEED07C8E4D9C3B2EBC7570F43EB9E5B873E34DD2F9E861CBF1F9C621E901020 +F5C6F1ED1A6E6B6309D78CF6683D0EEC6AAF40EB5F047A33EA5535E68A7AD11225EEB2C8 +92F2ECFBECA687BC183E35776CE656E8417D8040AC41859025C1D7A4083DFC81EB6CF7CB +55B1B3E7731E6374CE94ECC0CBD4C60591289F322DECB75E55AD0D21216F59EBB4EE6212 +82C8B5B26192E279F7954D7165B2F12712567D81A1058B5E8D80B274A5667E3006030B9F +2F8B847D6CC96C20EF53D12FCE8A988857FDEA97B6F3ADDB30FA4DD5929110DCD9942446 +EA26ACD975E5752FEFBAAB25C19CD3537960E9A1CE717F86E1476C3DE8C76CE4AE757F86 +CE6EA67ECFAC761341CB68D016F9427DF2790B2704FF709E727B079D8AE2190FFD065121 +E3A6367CFBD03DF7CC138253FC6AB47E4C8A58F53068B3A1E4CB9496792540BA3ED60FD4 +C5382D5CF2F25725BF74417F007AD2006BADF7AEC86183DF32984348A83E023359C7E9AA +4971C92B6387EC2621391B1C75A70F0A0667A4932D2D189689B52B399B6E8E13A1C4407C +45852352206012A7081EA9397951FDA87059825755087B27E623193AC9574D4B3E5FCE69 +3BE351F4E2CEBDDC996C8311D11E65AFBA5AB58E6EF00D8C80CCEC97794003F36658D42F +A95278ADFFA2442717FE2A0D0938A614168591304C5B63DEB4F28953F3031BBA802300A5 +9E571871706AFA5160684218B0645755BCE32F96F4C7CC4DCA63F1BEDA4C3C98D1E371FF +64E53E2B52FF403BADC12AB98B0DAD2CFAA17AB8F62026E862F7E6417DCCC3DFD1F62464 +CCC9CDA7130CD9F7C74409F32F36BB1BE9034751DDB8FD99BCD2FD721040C11DFEFBC022 +9607BDFA4FC638B835FBC1122840870365348B23715E57BD3B74DEDA89D70B643986A225 +037FA72034CD19F840BC4C56C7F295C250ADA72F6C3C112D5D0A67C932679B2335F57C5C +F574146CE2DEA1ED9E86E8A85C370885C659ADB4C91BCAE88B44E270D500C0EE04A6A4C6 +1549D9FDC1ADFFB934F629FA61FE786428E8ABE498DEEFF479D8413B18A22F836AFCF081 +E49F21B6AA513C5DCAF0BCBCCCE096B08A7AAB0C08A7F66054A91F4CE6357414E93158ED +9DAA2263F627C83921B2B55E24B0A19DD8F05901B61F2DA30EBB124A41898E2E385154B5 +189CDB86BB414C3A15E7C4527363BF461E2585F1E8D0E347EB2E849F432FABB790BC4115 +7BA34D619EFE07548CD18EC57D635B4806DB00537C210A0AADA106375E984C798F34D4C9 +23BF6277F9B574B5F6E643E3691ECBB2640BAA8A34070BF8A7665E3AE6FE7AE80091D0FC +9D6989AB5EB8ACD302AD54D4395B1BCDF0C565093048A5675C584D1E890EE85D57F86309 +E956FF8A0A389D7CF79920B8B1F52844ED8B9A89E103D4A8D6684C6551F96F976B210E99 +69120BC5499C43F5942B7676AD6BDDD996A84E2DF5BDE41DC3DFC06A4903F604C42F0AB5 +E8A602276A5440B453342FAAE6794A4875DE44C319BDB2DDA18FCBFA778BCB68E2A78BBF +970B9CC8B08D86551BFEEE2D6145A722202A63AD476947997A4E20C711BA10C4B8132E41 +A65F73AE7C6BFD0528EAF3BCCD0E34577E7D806D5960B8C51842B84089FA4877D509AE3F +E45898F288FBAC19FF14CAEFED09B1A979C71D011D7C4567B6F88008C00E733FA6EB58DF +EF0026EE50ABD396A8EF4C9B89669E5BCCC69B20F6AA642CF9557BBA977DB0543EF0F80C +5529D12A3FAE1DE044B97288C0B699BA591CA33F344D6927212334C1DE7C22C9EF65A866 +AFB71033F77E5CAF2C8A3B1E83F387FA26D467A00232E0BB6F79A40223D4834B9C531626 +DA93BCF9E81EDD95815D67722FCA5473C364DD8B2F89998D7A9DDCEB7D9C8D6529285B73 +7EFAD9BA406829B7E817B371A948993E01B676CCDB13266B1A7554655CCDB9A01C46EFF2 +CF88D0F5FA2D9875EF23F36CB820133559094F0056EA26BB4E54CD6626906456B7226215 +8E11431438C2CDFD6F6F61AEC165D461D8F13A4BD33467BD57FC9713189EDE04419427A1 +BFC56668B1674FD2743C5E52102730C4E45A930AC202DE059DDD80602EAA6ED2C07D85C1 +EDA78D3F4E516F284C0E29FF864EB1E33B4000A99FBEC9D4BC76674C24A35462AC78439B +292D8A541F36992051D4D41615E8D25A419F442DC3D1051179980502D7E179CCB96948C7 +1495979FE76FD647ADF2E63C54404337C35BFCD3A3780B07DB48C941D59C1C4472BF819B +1DBCABF609FE8DC37A98F1BAA486571B07F8FA8AE727FD712ED97B7F32BFCC84322971CE +CC1C5D5368FFEA6D6133A8CE4B918EBC20CEC65C2B61F4C3DDDF0FAA052AF69CC0364B25 +5416C3C7CC6808CF63DDEB80275C4B4F51A5CEE33A5B96260FD3D1025DEAD50F3459F080 +2879C52FFD740982F4A3A7B3AB3CB65686B11B43A7F286BA0E0E551D3E9F7256B6D2684D +3A5370383554E3828AEA9846B844C537648363B1FE02A1EB8D02182B8D3ECC977B22FE8D +BDD25B7B855BC0B61A651F4A3E7E19D69F8A7C2C9794BC0E1277C9214ECD07A2B6089AAA +616753CF6DD5356B57E7BDEB7F8DA07DA4BC2E5EF5145B17DF0D663FDDB3C6BFE60BF819 +D3A38B3A37BDD63F8F1F9DFC3CDECD1FAB59EEBAD01053D83FA68B3C23E2363CDAEDBDE0 +DB1C97F008D92F12FE586F5EA8BC025C0E67AAC5910527BCDC901C841FA4656CB34F98D5 +C761929D0FFE6480E885BD63DB3CDE5B04C68067D2C8530658922584530B3B8FFFCEA246 +F846D9812FAC678B95AD8870063313FFD6018C55FBFC1445F1A874D67914BCD6730E02DB +26744B153880D397CAAE391FF76A8AAA831A8CB35E0991761DF70C082EDF54359153794A +CD4C6D6E47A0B144922E178637C66F19E60FD40C78AF5F67F62D8E5E17427501350E61CA +27CACE6D0837D3525877E4127FC3656541E5544D459C745A6A08A59416FC97FBBB39D110 +1DF87FD8934321A856644ABECB70CD3E1EB2D8B53234FD395A518F76DE3E0CACA9BE1530 +FAFD0946AF9EF89E55D3F77DE7AA428707985D5BC37904983B2753267BF7E4C8DA1F0E64 +FF403ACC3741E764A972B814F4EFEDE1DB7D27504BE7C2FC3878CD5EF3E7A1C4DBAE4C71 +3A44BE19F3C9397848826B95CC73E9386154D29A3F3C9BC9BE4DEF32DC2A7BC8025EBE5C +3EDEE821F97FB4C571F08D7C42C3132B13C4D7C934BDBC43B8D49022AD5BE3DC7CF17B60 +875A1FB8418175392C869109DBFCA66C083769EF952F002318D0D831204FED8D646098CD +2FE0188B3462DE3D80B1B5CB24E361347985E4E7C33DE1BE150624D055F92E34C862A1F6 +D050CE478E276236E8A50BEB679432C0CD12C389A4DD3DE46E6CF34D764D95F13B9863AF +7AF8D79FFABE6992EE64E5F302EE07B3D81302C41D8E72DE8DD7115BE7099E470363ED56 +8B73678D473B1657D4F76761C56D1A35629DAD09F5073D3E6A1B1D227664D881C46C67CF +67CEC611ED14E1C59B01776DC42E0D39817F69D43322C7B9805D8953C7978D5231A33DC7 +9B44414082E53E3A5C5362972AE23BF99018C47C464935F08D8D586A4E8B24F0EE0586BE +500F7C64C4D314474A66C81BB2632D38AA6DF1305398B40506C90CBEAF848B19C0810469 +039775AE4755E7BD0EE0D1992DCE0FDBF2D3AFDB327469DB51FBB9CD1AC4F69840B65A41 +BC2FE8DB2290508896C1821CBD471D3188B92A37A07AB2DB3A8B9A5E70EC2FE1831BA28F +66858A37C639B4CD432076950311C98A4EC455526278C038EC54EFF7A5CA9271FB003605 +88601CBA5664436A0F267EF92602139323047982E53DE3545E1E0343F14003BBFD78ADF9 +02EB82F172ECA31C0403588A5F4E96D73301E8FE9CA1798599CD9581796FD1FB77B563C7 +0C8E33DB44A5B1BD0519B15504AA318A2C368E217925128ADFA849298C705AD7402743D0 +E2E337D95CC5A40D784EF809F4349B170CB0F7CB05C4C9C9AAEFF1BD7CA667E50F63756A +365A3134E63C80718B5721086269900E9D93BFA033D14BEE91749586AEA60ADF3B37BB68 +1A1302F877234997091D94A08748EAA21EE93EEC4BB8084E40D2ED99603962D50A9CBB49 +1D8218305C3B4CD082FCAE49F3F030FBCEDCFC4D22117F353C400A59A8A55322833052B7 +B3B799F274F8E0197A5B8F8647103AB41A185A3B2EFE051A95DF466C3518B7AD4D065FF5 +52AA7666120A1CD289D5525FFBCE75726582CA3AB93D9ED32459124837AA2D05317D25F4 +BA0B5CAB67873A1228388B61E3CF201AA46299553FC75D146BE01AD142D73B87B376AED0 +894EEE786ADE82B9FAFD82589EF1EE28C459B603AC05ED2D80E4F5DD43AC76B78D11BBE4 +3505B66C6FAA7A9B130A8061E76EB6DA7E408E0E58BA8956CF78B1651C9E53143E9AE5A0 +D9DC164BE6CF1F0F601B0D1F2EEFD22CE33B35A9671BE973639311A3F4DF3BE8674290E0 +5410DE88A2736A3EDD096F7158D38EF7928739310B1F823BC404DEF1204F32DD5F50624F +6B548B900A35209446826D327AEEF54072458C0351308C38265ED42F41757395705338FF +2D7790881B932C8481DDA03A9671847BFEBD2C11D5E987BCF116CF59C1DA1F91E77672AF +909B441E2975278F20185621090B60DFACD2D1D558BDCBCECC0EFB8FB817E5C5CF23FB59 +710BD6050621ED2DCB67DD3DACAEC2B6DFF882E3836487AAA21943906BECFE4F99776776 +DAE6488E0276545249A944EC3655564BC9150C60CF63D0FBD8C3654FA295A950F4EE0018 +560B6F70FFAE5D04596D72EF5F9654B737933C6C33750AEDA2548F2E630A3F9AB0583210 +7BE55FA5D501AE86B7E5B1C2AFB91D38B3AB326124297E06694382363FEC87118FE7078A +0E0EF92DC6515188565BC51D4EC830D2527F4D9627D250099BA1860A79E872A9FEA7DEF9 +A8195E927088CEF62D0C04A37263F23390D2AC22449B8B00629F5504F1ED546B9921E9C2 +329B5978333E9FBDA1DA31719B5F1C3C2838311F1ABAF7DF36816B8AC34294E32C3C9208 +E8C337B8F2EB5D63B850DFE3B4AAA39E176E6775333F6FA73AD6DC2DF403CDB8D519146F +7A37B1CBD7F8BC051C70B977BD0D037B67A3A41486E0247822337392DDEB052AB181E619 +4FDE517ADBF202CBA902A39A14E3A21EA0AEB5A8866F03AA02D81A8F05E937E10CCB6295 +319EA16EC75582D3963847F2BC7907B3EA5F74471BCB8560690E49607F8EAC6046AC5D15 +C96097EF47503C5FA23132D7884BF270A8530578CFA752B437DAF3268D4FAC732EC3FC80 +ABC4E2746E7E8D6E3275D85C03E58735566C3943501EA2970969A112E492DAC9FF131F1E +2390658BF23FF6BD413A69CBF962CB523AD43C2C10C18E29F205DC2CD2A47A8B8B586C4B +079BBCFD33098C14CAF0811012F10F8DD5F2308254A30CC1E9805A9ABF41FE612DDBB33E +049F6623BB9E2ADDFAF1C8DB1AC0DB5BC85BB3D0C29CD3D74E1364550DBD807DAE3CF375 +F25E95DA85E1DC47BCA498B16546E8A494FF4DE3CEAB5E00884DDA8C0F55750A5EAB4A05 +B7BCC466C39F1F890F05DDD2AC4196B0B6F889710E5238CD36A96157441A866C561DB2D8 +38F8E2AA10875C9FBA7211357019C3A8A3DF8CDBA2DE5A5EC9F4E4E7BC66785353818B53 +EDEAEDDD39D0DAD1210CF0F461F5DC843E9317C52616F2A5FE60A46A4E4CB716CF14AA76 +89D9D53322A8B4BE01547F8AB28433824DE7753E478A7E66A151DACDCC3CFC8DEC11C15D +2239D2CB041757C7ECB2CA9949BFBC4D3F1C8DB68F34B3E5B27DC1838B58339B04518A2E +4EAD13AAD193026C490FEE7CE4416F2FB1E78A22A4CE5DD871B3F1678C43E7097F3D5335 +49252665BD89F68FDE9BF09E1B52CD6FB08882103C697F0F63CBCDAF6316FE71E49C4070 +57811A94DF9A00DD1ADBC46BB1AF032808D6533DCF96354D214F4C4AB0B4B0B8282C31FE +D475F6934A02CC1128F867EA90C04BE239988DD2C1823EAECB5DE37491F53E7DD4FBC5E1 +FB6C8CF47D19D122A6BB3F472C30043B016922B3D8D034FC993E34549C9097F139B3DDFF +E4FFC55C00DB7C0038E4E9FA17E2C961B02A7B3A86E8E9BC5F9EB3FA025149F8C2A3E8BB +69B557342C14314646337531C381EA4DFBFEBDDB90F72C2C5E0A18A970F4EB707EDEEB7E +127002C2A77A928DA700D024317F51D5A8E97660C026FCE350481DEE6D5493C099121D62 +5AB2DF4365FA4402911F63D1D2F8DDDDFBB218DBBC97E910EAE8A4D2129D2DB0F57E5649 +F8BFC1A37AC3A9A1D90643779199DC7038459F51EA7CEA6F80D6AEEC3F7C276E2E35CBFF +160A924F011F848BE5BA26400254C5509C78B97CF5C529893408F1CD610E1C33B5F848C0 +810961A8186375335C72C83DBD062FE5F422188BE5B53847FF7F770A66238CC2AF30AC4B +B24BD942C34B654038F7F112F244B187FE93C57F4271FDADC76508354D82E317DE57E890 +1B7A71F97055A8093CCD52ABDCFCE3DF141118B2C696EB74842595FD76D346B9EAC0E1F6 +3BCFD7BE4240DEA3B92167F90DBD473D41AA97E3F63467E929397682C14F5B204FC885DE +D4CE50247696583EDBB003E0F8ECB52F9BACA29CB854604A7441255726098EF3743F4207 +219A826BDA9EDCC4CB90BBA6E3E8575622C7258A2CA7033F7A08427B5BD2E1ADA64B5C4C +9573C5590477F9603DA5769ABBE65676913244F4143F3A3CC1EC9CCCB084E8AD07968A9B +63A47EF25EBE406904EA0CF325828CA8E919A115BAAF550A54CE840E6AC04C3865F95C42 +7E04C60A521FA061D23EDFB96AB373AA1ACFE347F427125FD7CFA2E86ECB7298AB7662BC +946DD0654F40BBF889DD9B9AB7F539D3DD61AA8EE395BF17DA7CA9096E46CEBCB9C01E4E +CADED3DCFED33A1195056DAC0E840BBCCC467510A83BD1B6F43CDD99D66E592C328E4E9D +F52C5E40762518748044069621335DA28D2AFA7D65D565F53899B84B7286C65A3A395A26 +441D74AFEC0BE4B3162647B7FC9A5907A0FE704B902C8CBB42C9A2A4B532E51A44058CAF +D8CF7041C50DD8098A1D644F552B95237A24FA4E8F1890DA9C97B7BF1F820761A6527D76 +C7E64BB245D6346546ABFB406BD714752549085EF56125964D6CC74865164256647327A4 +08214E794BB49D58B7CCDD1B204A65D3BD0CEFB8E2795247BCB91B38C38397C66F2AFC0D +B7468397639BC4F7B8B161D9F5296DF31417BF467ACE173593AC4AFE2E9B93EAB9EF10E3 +B3036B15C4633452DF6654ADDC1334D29CB7F50CD872523E770A89216B70B5A9F24CD4E2 +DC485B9CCE4B4C5A50A62669D810CA23BFC936EC5F626C48F452F225776D09DDC5D2CF88 +13F0C8376FA3B72448FA22FE142396AED65C013DF4664A47649FBC4556607FDC0F89614C +FE322CF867A2E7C006C2B35180A0E8371FF3F7D0F51AFB1C0BCCFB0E533DE2C4679DDDD5 +DDD13C7343F0CF77154C2CAE108F76FAF80236C51504D39F9508D29AE3ED160E947BB58D +7676AA98A64282B3620D53FB389A8F69C10382C80A07DE4D5037748B10A64396911934F1 +97D8092BEDCB5BCD2B473FABF40CA434CC74626D74F5D44E45575BF30D404B9A78BE9175 +0A928EF6F95AABE4943BF4798233FC4228A476D327097AAB34B84C97473ECFA07D1FF39C +B3F0010242D6147493773BE1B7D9E09A0B503431B5151141E45897E3EECE6748F6BB9CCE +897588A742D50B52B0D7A021D88EE9755626BC03E97BF363F70D152F1FB069AF83D4F108 +73CB2220A69AA737CE2FFD631B9788EDCA14E8FCD8768F92EA28A309C536A03DFF979840 +EB269D9E5D05370BDC46B5D29A9B866780AAA28BD04F8F4AE7553F99F69ECDAD943F0A6C +6B71DE019A9E3BDAFB4DD6F54F2DC158F9639F067A957AD5F997BA877CD928FFE2320CF2 +1AF6127B1CB61F3C26D0816D31A9AB985B1DF5FDB310FCE2A40155887E252E9DF2F577D9 +1D0EB768342B3C601BC616D26F6CDE3E8BD83324C10A7D88615F6EC7046B439C6F9BB6A8 +85A1E79F062ABB2AF158BCDF986CD5ADF8FD8FC04F9D13FEFC9FBC13EFBC986FAC2BCF50 +EE464991C39CFEF927A2C73EF90B362D1D56234ACB24E25EE095EC0796128BF338C155E7 +51662131E4AC4AAA726F7433F88A9CCD417A9A7F513B841A63A4A93E2B0CB8AD6A3647C1 +9B1A2122FB2579F3765F811B1999882B6619084EBA6C1544B81CBCA3538AD3245759D845 +ABDB61644DBE4132638477BD92E365895A7453B976EB9AF5799216854E8502E2A51B1AF1 +AFD0E3FB3825974A7067265F52DD8E512B2E5FF53875751ED4651579868098CCFFFA552A +93152A6CAFBCBC440628026D370DF9994384CA17F84F728D847800B93AC28B34AE695641 +75E01CD49C041F931719567D3CC31B50F7F332E1B349476A7CD19696F5AB506320C0274F +FBC1276F8D0ACDDCC296E92ACC9052ECC53EB54F201AEC9CE1E4E3BED6E537EE80AFB8EB +C522B367AD6A9D532B30119483B0DB7CCF6A49733D7A84CA0B70B17321DDA1FE7F504BEA +138DFA9E435B9B69EDF832E1B8673206D5101BE84C9E7E84BEB1F400D4B7F34849545C6A +C86EE0C5994FFAA0AB7E7C4215FD24DB5E5E2DD384DC0494D116D466A4D1B85A3EC3EA91 +D8D8AC9929F801CE1A3567069104553F7886508084AA5A32C1481D5BC8FC64B2C666DF0A +C75F6ADF999751CE2DB307A39DBE34D5CE24F3766879B765C2C008A88597863FBBF3B1A0 +7BF0AFF7255BB80D6F08CDA7EAC8BE75B033E325F00D251A35B379BB0DA775DDD670C00E +B52C3C91A731448A6CB85EF8BFB2E2F2F400C796D5250C3F402E219409DDCC8EA4426D84 +E3C20E11C9F8DD1A057060341D5C9482BB5D627D6A5026F77850D58A761448804FB6900D +24482B52D42E914ECB2BDE2FB205649206FFCA71A2CE6E35D89EA5C09FC7F515A31FC2E8 +85BC8E153AA5F10B97EA54DF19F811B68FF1C989A991C97BB192368A5867C17B621E5C4A +68A0550A7011C58A0A1E2A3DB575A40C23564EF7C888D90639EDF17583DB8571C7C2DDF1 +1466ED27987AB9BC3CCAF75D8D3B2C066EC520932D3D1B6E5AFFCF8C3A0CCC6F0FBBC6A4 +866D7FCB7237F9CF15C2F0833821CCF49812766128BA014727ED267DEC233AE80F6EE950 +08E1549AD195F4E4ABBCBC7432E4872ABAFC1A0F6A1299412B5303F64241251AE29ABBE8 +4CBFA38E08A8D4183073C1337A21FC47CC5204BD2C2617692CCE2783D4E3FB88419871A6 +45C9DCB91804263A755CB7DBBC72E5127AB0D64B8CE1EBE7AB79EF5886D4A4F9BC31AD30 +4EFAFC5E8DF86BEF251F28BA3C1B08B7BC93EA688CE08AE4EE65A785E1A3B8514A208E39 +7C98451A146BBE2EF628B8D346946871E1F6463DBB9C45FA2F7ED1C71169609D382793F3 +A5E6C4350CC787C8FF6DC857D5D2C625B628ED9A257A83A80E9E52AC3CBA01EBCA228E65 +BF67CD4A29985A29D17FD3519BA2508D62DA758BEAE02249E090FE9822C0B9FAABD30B28 +AE77D373C14E6C5C71D2AF580F166431AC95E9E4B6856F06A8F7CE26CFACFFFF16E7E6AA +326E8399EEBF65E18711DCD8217EE804B6BE3F7D90FE8DC17586A38B2408ECC0A09C5467 +40EF7EE7F5BB20CAD170CB7952835486759061E71DB8309926D23ED9EDBF20F71B323BE2 +68C90E9F421BDC661EE513ADDA0924FADCFE85CEFB21DF3A3C37B03F9415A6A69927081D +5F6DF728894A10CF03DCD9B4AAEEE3E23C5BC1FC22D5444A511616D627AC25110E0382B6 +B17A2616BCDB12F824C3F9FBBC74BC74E1C6BFD86BEC2C0A7AAD805F1797D0E4147C229D +EAA0A355E15714D15C2676B31A7A9DB8A164D0EE9F27232985E23BB0689B0BC0A3DA20AA +5D6A919FF6F6EAA2513452C691AD3F9E8224652DB2C8FB4F3C7A784E81FFA4F72C8E51E7 +33D7E8063358EF6C976B8B6D25906880DF8F671AA7158D89DEA5016CD039FD8CC9721756 +0D85A8F36B9B38EDAB3E36DAD01FFDB6989D1D519B12D3A52E909501112E979132F1B07A +F426EFD1A3EC8A5A641B4765192BD4EE16891AEB02764714AE7C2879C8175D94BE8B16A9 +004E72360BA05CE4666A995BC83223ACBEC897273881E51A116C0FEFF743C6CC22C6340B +8B150C14FF3D4D8138F089A9120039F223E5CFF11D4299C1DDBFAC16BBF2559A0C6F0B6C +5063FB0B9CB7710B84CA3465C775D49A02FFFA39161563403175088100325162B959F570 +9A732442B56D3C559C8FBBE1E4319435B1F583D4FC8962538CDEFC51ED5A06361E7A1D74 +F0495A467596E5CC6018667E29B7F87884B121816ED54B8073C998295A3E86FF9A5C2410 +7A4269FC26F79B08CA41E130306C38BFEB49B4574A10020A93AFF7741B2E4E4977D0C72B +1C5A0D95D9B564DA44FF165396BFD804EABD653297C2271350E76E52DA2EB5BA6CED05EC +5EEBE745B9B9E0AF3E9E78BDE6E392AB7CE6751A40CB6F54A5A659E91E84C88F6AC63510 +DD71A3263CCF078A30ED525C6FCDC636064CE295BC11E972985ED09BBA77FAA4D998157D +A1C0B3D3412E33631FC3D43CF750ED65E170131E69A3CCD1B258F3DC7B1E2E69E8245CFF +667E3D3C8D75EA9F575407A1DF1C3AB7DC52C8D710CE4A54007419672CBF95C4B0DD52A5 +EB0AF838E75A75BB17F19E6B30CD6BB8D5D6724AE2CDAC0FA18CCA2092193EE1F46ACDBD +BC7CBD9E6085C483CCC0654A0945A1103F7F0B52E95FB61C732CFB10D25081A982E9AB21 +0CD8DCE29C95928807CAF55446F1D8C206D47DB8FCFD883624AE72F89C544FA33A499F67 +6CD7D28275D52A72C0AA11EFAED6516CEA2005118570E97305B9D0F6E2D003FC07386290 +9539F8856A71904F2A0E686D97AB2461FC07BEADBA06282BB722D5B92E008204B2F4BEBC +8257B02BDE21A7F9985B8C851827625655493170406F96404834662E82D8B5B8DC274F79 +1653D630B1883C5977C0B4ACDAADD6B6A37C50A493F90FF70F3C3EE37C1E7915A88F85AE +661A99763BC3C7CD2B2B9B6076BE82A53E1485C4900E6B839CC97BA76E44E7CAAB70E322 +1D545AB546374FC747313867B9D5FD3525B9A71E25D8B244729423F55D652ED33E9DA926 +C9F0166F475935D6987CA6934FAD17AD464E016918A853B0E253242853162C89AECE0837 +445E6D3C0F22F48076A9FE70B63ADF26FAB0A4A1C58D274753837661C128F4D29CF8F839 +EE8129C81FC61B838A7B3615BE4CF0EAC19BBA8086F80A7FEE4AF6CB263C557E3E1E4EE3 +D13AA12E2B9602DE18820DB8A3811E7B8ED30512B706108C18F84A2C66CE8076ECD2B151 +9F12B15E6A327CF5DFE3CC27E0ED4B3F9840DB6358F597CE6D3F73D1E5C045AF1E33CB76 +7CD377D6F6684338CF8B08246367A8AB99C7DF3C88F222D10E0034ACFC4F7195C303D46F +3B68417469F7BF068F3ABFE0D4FCDB78204D736459D0C347E8175162962A9B04F87C55D3 +04D6A7C0CD2444BA581E3CE2EC44F3AA5EFA6ECDDDF0BC252B889B6F9534A459C6AEEBF9 +DB80371967EF5FC84BD855C37F56C3C1389EC477B181DF26BBAF3A0DE3926E73EC139F65 +B1EB285B5F16FCFC2BD3670E6C9C1D0371A43736F2C9E2FD6C97A10D3C812CA4354C7010 +C4E60BCFDDDF0E684E6459B79985D7EC41F44F2E0A8AD1E2F9600019AF180EB2EF053C3A +76A99ED3153180547AC9ED8E837133F9FCF40786FA0D792390C109BD8DEA1112B83E69FD +BBAA5233BE6083530855648CF30E4C0B909FF69E7ACD9ED818AA248B85DCE5AC250625F9 +A42C2C37B8435921ABBADC1045B58A8F50EFC7700BEE3AC719CCF4F900F23414F7DD9A60 +219016488110117AACBBA097E6F5AC638B324C02DF5FE91DCF24AD26E8F28F093F4C9A99 +B70418398E6336907B53DB364BE519328DFFF2715E0750442B086D92A4B159CBDCF4F990 +C9AB6566B109CF351A9AD8EC4CCA8E4FE0458C140A4546901262431F3879BF26E6681E41 +9D69BF861FE2C601D2B9DD5C965CB1B5D9468CFF99B3BF62E960787233F39C85A6904A15 +27A75A40BBE8FC282E206F4375A4DC6F477CED8027AB3901433560D1A758D6ED4977AB5B +A2117B56B6282681676FF55A21C52DA8545A88D61837EFC1BFD50D750F8C1451C9F30CD0 +9CC08903C43C304A813F4056AA6CF78381134A12623434AE6D3ECD4C24940F7B7CB77611 +6E4B8E5A0AC7689A91095888292C59FC1A7850B5A71B79BAFBAAE7D97DD5684951A9ADF8 +4D84FEDD7A75F8537CED7CED8DBB290D5F869F4DC1C636F62950F83413FC9703880F7550 +56DC5C7FCBFBA83E2A947869A028512AA521723FAEE6AE3D923A0D60DC22147F1C0374A8 +34752C0F81877AAA5CA6A99866D97FF70AFF358AA44F4F7FCCFFC0CAC17E492A6E8A1EC8 +A249CD7E808BDF10675BE01DA18CF96D2FDF8CEA426F6DC998769F54845B67851F000306 +6C4577015C9857509C00B0D66F767C18DB12D497AE2AC26FE2C7A97549A036A0E582D424 +D723C3D5FE81371AA34748209E2B432003948E67C072F84DC4AF10C4D32BF200E58036CC +FA53FC6EA8F9ECA365B55C1D651591730742324DB1DE796E3E733134689DBAF4BC0799B8 +FD67896FC1C9D3DF16C71BFB4D150C3F395B8F53D638233DB3F22548D90CB1D6C1AA75E5 +2E9AF031D73E93BB6E2C97AAA6F983142E92FDBDBFDA6AEECE1BFDEEE94BF68A74E061BB +BEEE45A16BF910F3FCFFC3523F6B0F0A6CF6E55E71DCF1EB7A337D7EB814F932B6863F4C +C840F0DA7A824CF155E65AE8F8D67FCA4FE7CBA369BB474070765602F3938DA7BE908515 +AC5E84873758F0EA9C9906497B436FB6E2C39A3C3D5A720568D89AD7505CD1BF937ABD2F +3C08DC508FD5987AE713AC52C6F13EF997AF42C7CA9892BC05DA6AB847BE15153EB15E68 +7464ABBFAF42D5779C34D9E03429A216EB63A064017A8171F2111F52B0F897ECF4B02879 +2D24401BD325C23398A3D513C5DA95F65AF5D0CA63C365D451EB2327DF168119A71BBF82 +37ADDB2D2188A7062EC5DCA6E4099B58481F2AEA25425F2CFC88EE9BBD7EFC284635E290 +65584B9F64DC3925B1B754792C9374996765DD938D80EE0EFDBB6E38B48E856875C59ACC +E6FC889BFD0C7F106BF338789007B177E4EA71E613E1FCB5D699505D071CBB03328D6126 +39A66A3DD439E67BF3886F3F66204D21116D16443A77F58D82F80EF6074AA96B1D71DF01 +CE3952DA342C7634C8C5F36D8D403EB227CF2D9AC84702F7256580F05D133509C71E18C5 +9EBD2CB1FC14F50CCE1DD212486277AC18DCEBBD04A8026FD2AEB5BD3112DF88CF0A15FB +FE49F7562843088676C2ECDD0BC9B255B140852B87C29C447314813E93875CE18119CE9E +2497241CC5CEAA06B14AE661A778CA6B9B64EAB8FB63C1342500274A8439AEB0718F50D5 +A85693CB5A814F1ACCB1D3DA76224CA72C7900AE9F93B51C618CA7BD662ED176BBFC64E1 +AF5B92F73A808664112F3D81985AB5AC97A93CD8EDB7C46CB4BD39D78583CF782419BCF5 +778E7CFB5DE0A89314FF66BB4C85E92E448FF0FB49574811B11EF866955933F2505A469B +138A900EC5C2C7D17EEBE65545E1A6D580A331ACF8D8861A49DADC7EFD1202B6968794A6 +EB575DF8A7F7EA1CFECA8DA8B02C8DF5244045BB3E3F6936F5690055CD3DDC5FB08470A9 +375A9800FE7C3D78BE08E95B3883F84169621B64837A925E2D0105BDF511097C94DA3BCC +33FB5C20D4321C26A2C800A27362657B0C040E7D77A1F31524CB4FCC4DED1D10B72F4B4E +2B11AB37F02A0B263AD9C93B392D711C4398A045CA36C00B35618C19C39B26751E409E4C +6042E2E3824FDB96250859D744644482470E3CDE59D5462754558C9EB3493C4F27E8088C +787CD363B6F8E026BA191D2B1B45C7E5963F2FED2773330C97445D567ADF692B369D29EC +5D00895496AE70F830B45C6912E366AAE05CB2C8B30D515EBC3E9C8A3C6B686F3EE3B12E +C438AB498CB379396183239F7567F88DB6EFBBE372F9767CE9697502AF4E5988BD9C0139 +5A51F394EBCCC3604A7052A21DF79D000566C5DA9537C6474B195ECE94536AC5B4B1CF54 +A7F734B1B94997AC00A61034B6B69971F98B2D6410C617BDC60CE31DF4AD60D7D74DF3A0 +018052B2882D71DDC0CF9CBEE922E5B8EBE0FE0D5B5831D915484FB03E7ED23D7B310F1E +981E86AA821B32C7123404E869203E4176098E8CAA406E9086A5FDAE645F8704258A07F4 +0DF30F2B82A594CCBFB440C1C090BAC4827EA508B288D86F97E90845F773E9D5F3B133F5 +B5912DC7A0D5682F1E9A22A23BC351374C6187654D1220F417837302BF74A735C878A354 +87FDFE85D6B585EFD41D4780E94B9F5AAD407ACF854E31304D97504AFB65BB1BC982FA92 +A3FBE746AB0E2F7CEA15F871AA3AA47A4362831408BB2BDB70665E12C37DD1AD11775EA1 +D030A142C63F79E3F5E7F664958DC5A6A631A9F942D438E9BA9F2FFC6E4359E30E11C8EC +F6158C4B05C339CEAD9D18111AF289DA02806FC481342B634CEA53D23143D5B71CCC88EC +18A2731EEAA50BFA801EEDC3846522ECE14E912F9B0219B6D0744DDACD875372DD59807C +2BED60CFA03032DC7E67B772BA7F6AB1279D16F9413947F99A076BF7BD04FF418DCC5684 +A440FFF32715D3405001D476CA8C8544AA4B1E8FE94154FAC00BAC5EC222FB95E20CBE04 +D0FC77D92425A6CE9C48E000BD01A0F1FBCB64982691ADA3CA1E144C38D3BBF2244E2CEA +49E8A85A4BC960F3FFDBBBE3239E4C32A1AF4AE3E883B610D9FF16884C9CE90E1AB057FE +E860848917B0456DED6251145AD20CB98F14E6A5D75373195A6A1BD806AAE9380C8E27F7 +7FA2C0809DCAAAC1020E439D22E130BDACCBBD54615B5F6960B1BD7B839170E73E71B1BB +637EE2CCDF4259CA4C72697A1870E18B20E925854F6242493AD9C50FF92DB912F58E4856 +8CACB989AF5022DA1CC8D7C24D4CEE603269AF3085FFD2F45B7334F048274F324735DE6A +23ACFA93E4CC8FBA6FE74F13DA21B136610BEB8A6BB97F2E772F970BDA07FDC78A032AD9 +C00700E58A3D5CBC884CF987BE5164B65206A2675108342D462CE466340DBF1F1C967362 +73692F213E62A4A5C82BE5692DCF52339C5FF06F03C07658FE936FD2912043A44A055A8D +D1C0E807ADEC1011A99CB5A64F0A3B20C9FFB2A1DF496D655286F83DABBA02F141BBCCF6 +D4B0D641CF6C5A03B82EBD399B632E71937E400B53B43CFA819755E591A9C301372C9F64 +4A2B7005F5A66801D5F4613F6DC39372B0E80A8F1A8CED51BAFDD8F8F7F9EDBAE4C987D3 +83487D21FCA52D053C9ED4FAF1D2ABD63552DDBA0B0679C9174C41F8BDC3582E3E1C8208 +C73F379E4EAE3E48162EEF51005158D7B4C0C891E74091C55E25F3FC05D26C104A3A8011 +10540F36818D35B707A3AA6CF02FD7CA4A84B4E3101217F3A53718D462EE34688F581094 +6184AFCA9633E07367E0C6AD4596D734C718885E1654B6965F192642C9BBFDA9632C8A2A +CFAE0CA07030E490B84D1A21B55F036C216AF13185DF83706C80A8DE2C62A1A476C872BD +53DAD3F42A299264D31734A8A7717D1FBD7C501FE666B465C3449C66276022C367D71ED9 +BFAA76BA3214E6619B979563912AF378DE65F1AD7507B863509A70117D92A65332B918AD +A3E1E6CAA94B7EB27B0DCE8892DE48B078ADA1F41585F810E24AABAA7F2FD17D63BD21C2 +86EF21B7EC6D4C6BBE6CED33ACBC46A4EDDCBDD620049214204A0EF96B9D19A75580D7CD +DC717ED8814682DC4822ADC80B9982805F9411AF16E208550A3D74E1464DA2DD8CA2913F +1DAB1ACF0A519326CDADF77B585D52492BC8872277138C5F3762DD369EBE9DFB1B81853B +B7F4110BEB8D487DCF0CEA7AB01D58ECB1A89A0490D58A5FD5D93D1B692D971F27BB95DE +5D6B173F2AA04EDECA70492220FADC051D995B09AA31BFE5134A0A6D5DB5DF9AEEC4C616 +9569061EBE429826D9CCAA966B0E2B7887A5EFB9CBA1D23517AE410896C6982C56F79957 +149D3060B39D4457BD7DAE389E507E6BD6E3F35765C2257486AEAECDA58FA4B93E54B418 +A0E6E7739E0C82C66064FD726D1666727A2F2633CE83C1E6231B65950AF1268C3367EF51 +8D88B5703D77D9FB5882D381F082E5A75B0B0D33D1D28BCADBFBAE0E9A1513289390CB0A +2B8D0DD4FD4B31BFD6E74709C7AF601473D7E6FCFBA18EA1528C663969A6286636B04677 +8195B5EA6A9455D77280C2E03DB669588AA8896ED12465F6C725F90A59C211A8DB3B0C38 +410711316804C9D82B28A3022109A389DF24DEDC4E49AEC53BD8489E36191768EBD3DC2C +7F64656AF24F1B585C791122C5FB9DF9190E0384A7C2E127DCD404831D9715FC65AFC1E5 +F21F7F578600433E7D8976074DE5CA739DD026A2CD5C771AD1DE3E055D0E6015E5852563 +FF5E4A0D9B2A4321C589DC78B4E922EBDFF097810D13CE60B9BEBEE25DCC4335D34542FE +BC7AA72F2DB46AAD45D35FC9E2E85A30383E7B576655F40910A1B32623B4C2A6FE2342EF +85C205D81F4D7F37A75F2F92F60F9A2CADAE9B3E4C1F65C4BE7B8A57FDBB69C94A9F873A +6BF143CD337A70F6B94BFEE450618AD4D1544AE26CF7D6BD7AFE125B1E195F6F1BB12C9E +369AF9DAB0D611909E3B1395FA6DFCB6B332B84BC1CF84EA2DD4ADBF8761A9436866CBB2 +482A144CC3725AFBB8651D098A5916D5EFC7F104DB82791020652E2DB32349DB2BC3A8E2 +9AAE97FE5A71BE228679335E23F65C855FC4E97435A2246D4D1E49DB1A93A41E487862D6 +7EFA1286D019D96EBF0246A15EA0215F8A769B0E02C8415B7B3A6FCE101B9AC52AF4C9EF +BC7817B56740D0D14562D88E7CF8BC06F653824704DE509083978775E61C1E04DBFFB8CD +8A5E2285CC51A9D3AE9A68C95F6B7B9231B7F23F3335B9E533FC4D65AA0D38ABEFAB0DFA +550242FB6FDE0D1BD2A4B80843A9814DABCA490DB1A941E9A685979BD740E6EF87F7808D +9CE379A784047559861E78FF20A33C52D6206586F8C6892CDD8B1A48806651560423A5BE +14FCD8E1FF8AE7C2DD92F7FC7EB492E2BAE3BB2809EE504097EB1BAC6C97A713C6A6E261 +FDBBADF554507EBDD2B3035A5B8EFAF06C6B46C08E6DBEF00D8A2B5138473449EDC5B21B +FFA8C6F3E3F5F8018ACA36CB1CB6B39040B738E974D841B613775074641BEFC7A2A99F6C +D9E772872F041D0C99E4D9823437F1B829BC27EA0F1173830CAAB9FC05C0F673068BE8E5 +16A901689EC05704C471F2EB3641F1AAFC49CB3CEF0DBE38712A8D503EFC5D50EA00EB69 +C481812B746BCAD28B2AC0F10C249E05067F3F5E0E18B64E715AE3476B +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000 +cleartomark +{restore}if diff --git a/data/fonts/README b/data/fonts/README new file mode 100644 index 0000000..b03bd56 --- /dev/null +++ b/data/fonts/README @@ -0,0 +1,48 @@ + +ABOUT THE LILYPOND FETA FONTS +============================= + +This directory includes three PostScript Type-1 fonts from the GNU +Lilypond musical notation typesetting project: + + Lilypond-feta-design20.pfa + Lilypond-feta-nummer-design10.pfa + Lilypond-parmesan-design20.pfa + +These were generated from the METAFONT outlines in the Lilypond 2.1.0 +distribution. A normal make in the Lilypond source distribution's mf/ +directory will create font files called (among others) feta20.pfa, +feta-nummer10.pfa and parmesan20.pfa, and the supplied fonts are +exactly those, renamed to make their origin clear. (The font family +names within the .pfa files have also been renamed, adding a +-rosegarden suffix, so as to avoid any possible conflict with other +versions of the same fonts installed as global system fonts.) + +Lilypond and the feta font are copyright 1997 to 2003 by Han-Wen +Nienhuys and Jan Nieuwenhuizen and are distributed under the terms of +the GNU General Public Licence, a copy of which may be found in the +COPYING file in the top-level directory of this distribution. + +We would like to express our gratitude to the Lilypond project for +taking the immense amount of time and effort to create one of the +highest quality notation fonts available, and then making it free +under the GPL. + +See http://www.lilypond.org/ for more information about Lilypond. + + +GPL COMPLIANCE +============== + +The supplied .pfa files are a compiled version, not the source code of +these fonts. Because we do not wish to incorporate significant parts +of Lilypond source into the Rosegarden distribution, under the terms +of the GPL we hereby offer to provide the standard Lilypond-2.1.0 +source distribution without charge (except for any necessary shipping +or packaging fee) upon application to anyone who has received these +.pfa fonts as part of the Rosegarden distribution. Of course you +would normally find it much easier to get the code direct from +lilypond.org, but we are making this offer anyway so as to ensure +formal compliance with the GPL. To take up this offer, please contact +Chris Cannam, cannam@all-day-breakfast.com. + diff --git a/data/fonts/mappings/README b/data/fonts/mappings/README new file mode 100644 index 0000000..6483b1a --- /dev/null +++ b/data/fonts/mappings/README @@ -0,0 +1,15 @@ + +feta.xml contains descriptions for the TrueType conversion of the +METAFONT outline font supplied with the GNU Lilypond musical notation +typesetting system; the font may be found in gui/fonts/feta.ttf. + +feta pixmaps.xml contains descriptions for a pixmap version of the +same font; the bitmaps may be found in gui/pixmaps/feta. + +Lilypond and the feta font are copyright 1997 to 2001 by Han-Wen +Nienhuys and Jan Nieuwenhuizen and are distributed under the terms of +the GNU General Public Licence, a copy of which may be found in the +top-level directory of this distribution. + +See http://www.lilypond.org/ for more information about Lilypond. + diff --git a/data/fonts/mappings/feta.xml b/data/fonts/mappings/feta.xml new file mode 100644 index 0000000..9c875a1 --- /dev/null +++ b/data/fonts/mappings/feta.xml @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/fonts/mappings/feta_pixmaps.xml b/data/fonts/mappings/feta_pixmaps.xml new file mode 100644 index 0000000..b50bc79 --- /dev/null +++ b/data/fonts/mappings/feta_pixmaps.xml @@ -0,0 +1,226 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/fonts/mappings/fughetta.xml b/data/fonts/mappings/fughetta.xml new file mode 100644 index 0000000..3612f81 --- /dev/null +++ b/data/fonts/mappings/fughetta.xml @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/fonts/mappings/inkpen.xml b/data/fonts/mappings/inkpen.xml new file mode 100644 index 0000000..136132c --- /dev/null +++ b/data/fonts/mappings/inkpen.xml @@ -0,0 +1,154 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/fonts/mappings/maestro.xml b/data/fonts/mappings/maestro.xml new file mode 100644 index 0000000..c4946de --- /dev/null +++ b/data/fonts/mappings/maestro.xml @@ -0,0 +1,154 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/fonts/mappings/opus.xml b/data/fonts/mappings/opus.xml new file mode 100644 index 0000000..ba3a882 --- /dev/null +++ b/data/fonts/mappings/opus.xml @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/fonts/mappings/petrucci.xml b/data/fonts/mappings/petrucci.xml new file mode 100644 index 0000000..2cf0b58 --- /dev/null +++ b/data/fonts/mappings/petrucci.xml @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/fonts/mappings/rg21.xml b/data/fonts/mappings/rg21.xml new file mode 100644 index 0000000..bf64bda --- /dev/null +++ b/data/fonts/mappings/rg21.xml @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/fonts/mappings/sonata.xml b/data/fonts/mappings/sonata.xml new file mode 100644 index 0000000..6a30fb6 --- /dev/null +++ b/data/fonts/mappings/sonata.xml @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/fonts/mappings/steinberg.xml b/data/fonts/mappings/steinberg.xml new file mode 100644 index 0000000..bc5defa --- /dev/null +++ b/data/fonts/mappings/steinberg.xml @@ -0,0 +1,142 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/fonts/mappings/xinfonia.xml b/data/fonts/mappings/xinfonia.xml new file mode 100644 index 0000000..263f87a --- /dev/null +++ b/data/fonts/mappings/xinfonia.xml @@ -0,0 +1,160 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/library/AccessVirus.rgd b/data/library/AccessVirus.rgd new file mode 100644 index 0000000..d56f2da Binary files /dev/null and b/data/library/AccessVirus.rgd differ diff --git a/data/library/Alesis-QS6.rgd b/data/library/Alesis-QS6.rgd new file mode 100644 index 0000000..4fc7755 Binary files /dev/null and b/data/library/Alesis-QS6.rgd differ diff --git a/data/library/Alesis-QS7.rgd b/data/library/Alesis-QS7.rgd new file mode 100644 index 0000000..e14676c Binary files /dev/null and b/data/library/Alesis-QS7.rgd differ diff --git a/data/library/Alesis-QS7_QS8.rgd b/data/library/Alesis-QS7_QS8.rgd new file mode 100644 index 0000000..ef6ca88 Binary files /dev/null and b/data/library/Alesis-QS7_QS8.rgd differ diff --git a/data/library/Alesis-S4Plus.rgd b/data/library/Alesis-S4Plus.rgd new file mode 100644 index 0000000..0f0483a Binary files /dev/null and b/data/library/Alesis-S4Plus.rgd differ diff --git a/data/library/Alesis-SR16.rgd b/data/library/Alesis-SR16.rgd new file mode 100644 index 0000000..de29876 Binary files /dev/null and b/data/library/Alesis-SR16.rgd differ diff --git a/data/library/Behringer-V-Amp-Pro.rgd b/data/library/Behringer-V-Amp-Pro.rgd new file mode 100644 index 0000000..2e4a82b Binary files /dev/null and b/data/library/Behringer-V-Amp-Pro.rgd differ diff --git a/data/library/Boss-DR-660.rgd b/data/library/Boss-DR-660.rgd new file mode 100644 index 0000000..f9cb1f8 Binary files /dev/null and b/data/library/Boss-DR-660.rgd differ diff --git a/data/library/Casio-MT-540.rgd b/data/library/Casio-MT-540.rgd new file mode 100644 index 0000000..5a8a26f Binary files /dev/null and b/data/library/Casio-MT-540.rgd differ diff --git a/data/library/Casio-WK-3000.rgd b/data/library/Casio-WK-3000.rgd new file mode 100644 index 0000000..0c5e40e Binary files /dev/null and b/data/library/Casio-WK-3000.rgd differ diff --git a/data/library/Chaos12m.rgd b/data/library/Chaos12m.rgd new file mode 100644 index 0000000..1cff802 Binary files /dev/null and b/data/library/Chaos12m.rgd differ diff --git a/data/library/Creative-SBLive8MB.rgd b/data/library/Creative-SBLive8MB.rgd new file mode 100644 index 0000000..c6c5296 Binary files /dev/null and b/data/library/Creative-SBLive8MB.rgd differ diff --git a/data/library/Emu-Proteus-2000.rgd b/data/library/Emu-Proteus-2000.rgd new file mode 100644 index 0000000..ff28ef9 Binary files /dev/null and b/data/library/Emu-Proteus-2000.rgd differ diff --git a/data/library/Emu-Proteus-FX.rgd b/data/library/Emu-Proteus-FX.rgd new file mode 100644 index 0000000..93cfc00 Binary files /dev/null and b/data/library/Emu-Proteus-FX.rgd differ diff --git a/data/library/Ensoniq-MR76.rgd b/data/library/Ensoniq-MR76.rgd new file mode 100644 index 0000000..5f1e678 Binary files /dev/null and b/data/library/Ensoniq-MR76.rgd differ diff --git a/data/library/GM.rgd b/data/library/GM.rgd new file mode 100644 index 0000000..51a336e Binary files /dev/null and b/data/library/GM.rgd differ diff --git a/data/library/GM2.rgd b/data/library/GM2.rgd new file mode 100644 index 0000000..c5fd077 Binary files /dev/null and b/data/library/GM2.rgd differ diff --git a/data/library/GS.rgd b/data/library/GS.rgd new file mode 100644 index 0000000..888ee71 Binary files /dev/null and b/data/library/GS.rgd differ diff --git a/data/library/Hammond-XM1.rgd b/data/library/Hammond-XM1.rgd new file mode 100644 index 0000000..ba331b9 Binary files /dev/null and b/data/library/Hammond-XM1.rgd differ diff --git a/data/library/Juno-G.rgd b/data/library/Juno-G.rgd new file mode 100644 index 0000000..c416011 Binary files /dev/null and b/data/library/Juno-G.rgd differ diff --git a/data/library/Kawai-ES-3.rgd b/data/library/Kawai-ES-3.rgd new file mode 100644 index 0000000..e186a25 Binary files /dev/null and b/data/library/Kawai-ES-3.rgd differ diff --git a/data/library/Korg-03rw.rgd b/data/library/Korg-03rw.rgd new file mode 100644 index 0000000..ca25999 Binary files /dev/null and b/data/library/Korg-03rw.rgd differ diff --git a/data/library/Korg-KARMA.rgd b/data/library/Korg-KARMA.rgd new file mode 100644 index 0000000..e13a8c8 Binary files /dev/null and b/data/library/Korg-KARMA.rgd differ diff --git a/data/library/Korg-NS5R.rgd b/data/library/Korg-NS5R.rgd new file mode 100644 index 0000000..a62c3ee Binary files /dev/null and b/data/library/Korg-NS5R.rgd differ diff --git a/data/library/Korg-Radias-Factory.rgd b/data/library/Korg-Radias-Factory.rgd new file mode 100644 index 0000000..aee4c5a Binary files /dev/null and b/data/library/Korg-Radias-Factory.rgd differ diff --git a/data/library/Korg-Trinity-DRS.rgd b/data/library/Korg-Trinity-DRS.rgd new file mode 100644 index 0000000..770796b Binary files /dev/null and b/data/library/Korg-Trinity-DRS.rgd differ diff --git a/data/library/Korg-Triton-Extreme-Combi.rgd b/data/library/Korg-Triton-Extreme-Combi.rgd new file mode 100644 index 0000000..e9ace2d Binary files /dev/null and b/data/library/Korg-Triton-Extreme-Combi.rgd differ diff --git a/data/library/Korg-Triton-Extreme-Prog.rgd b/data/library/Korg-Triton-Extreme-Prog.rgd new file mode 100644 index 0000000..07f12b3 Binary files /dev/null and b/data/library/Korg-Triton-Extreme-Prog.rgd differ diff --git a/data/library/Korg-Wavestation.rgd b/data/library/Korg-Wavestation.rgd new file mode 100644 index 0000000..6a36569 Binary files /dev/null and b/data/library/Korg-Wavestation.rgd differ diff --git a/data/library/Korg-X3.rgd b/data/library/Korg-X3.rgd new file mode 100644 index 0000000..8727ff7 Binary files /dev/null and b/data/library/Korg-X3.rgd differ diff --git a/data/library/Korg-X50_GM.rgd b/data/library/Korg-X50_GM.rgd new file mode 100644 index 0000000..2ffec58 Binary files /dev/null and b/data/library/Korg-X50_GM.rgd differ diff --git a/data/library/Korg-X50_Korg.rgd b/data/library/Korg-X50_Korg.rgd new file mode 100644 index 0000000..caba6ce Binary files /dev/null and b/data/library/Korg-X50_Korg.rgd differ diff --git a/data/library/Korg-microKORG.rgd b/data/library/Korg-microKORG.rgd new file mode 100644 index 0000000..a0c4d7b Binary files /dev/null and b/data/library/Korg-microKORG.rgd differ diff --git a/data/library/Korg-microX.rgd b/data/library/Korg-microX.rgd new file mode 100644 index 0000000..f984a4b Binary files /dev/null and b/data/library/Korg-microX.rgd differ diff --git a/data/library/Korg-x5dr.rgd b/data/library/Korg-x5dr.rgd new file mode 100644 index 0000000..67f1000 Binary files /dev/null and b/data/library/Korg-x5dr.rgd differ diff --git a/data/library/Kurzweil-ME1.rgd b/data/library/Kurzweil-ME1.rgd new file mode 100644 index 0000000..97e0b56 Binary files /dev/null and b/data/library/Kurzweil-ME1.rgd differ diff --git a/data/library/Lexicon-PCM-91-internal-presets.rgd b/data/library/Lexicon-PCM-91-internal-presets.rgd new file mode 100644 index 0000000..79cb283 Binary files /dev/null and b/data/library/Lexicon-PCM-91-internal-presets.rgd differ diff --git a/data/library/Line6-PodXTLive.rgd b/data/library/Line6-PodXTLive.rgd new file mode 100644 index 0000000..14a7172 Binary files /dev/null and b/data/library/Line6-PodXTLive.rgd differ diff --git a/data/library/Native-Instruments-B4.rgd b/data/library/Native-Instruments-B4.rgd new file mode 100644 index 0000000..8bc7362 Binary files /dev/null and b/data/library/Native-Instruments-B4.rgd differ diff --git a/data/library/Novation-A-Station.rgd b/data/library/Novation-A-Station.rgd new file mode 100644 index 0000000..c977d86 Binary files /dev/null and b/data/library/Novation-A-Station.rgd differ diff --git a/data/library/Novation-D-Station.rgd b/data/library/Novation-D-Station.rgd new file mode 100644 index 0000000..fbf86d6 Binary files /dev/null and b/data/library/Novation-D-Station.rgd differ diff --git a/data/library/Novation-KS-4-5-Rack.rgd b/data/library/Novation-KS-4-5-Rack.rgd new file mode 100644 index 0000000..f0f9115 Binary files /dev/null and b/data/library/Novation-KS-4-5-Rack.rgd differ diff --git a/data/library/Novation-XioSynth.rgd b/data/library/Novation-XioSynth.rgd new file mode 100644 index 0000000..c430773 Binary files /dev/null and b/data/library/Novation-XioSynth.rgd differ diff --git a/data/library/Oberheim-Matrix-1000.rgd b/data/library/Oberheim-Matrix-1000.rgd new file mode 100644 index 0000000..bf62427 Binary files /dev/null and b/data/library/Oberheim-Matrix-1000.rgd differ diff --git a/data/library/PC51f_sf2.rgd b/data/library/PC51f_sf2.rgd new file mode 100644 index 0000000..669c4bf Binary files /dev/null and b/data/library/PC51f_sf2.rgd differ diff --git a/data/library/Peavey-Spectrum-Bass.rgd b/data/library/Peavey-Spectrum-Bass.rgd new file mode 100644 index 0000000..b788fc2 Binary files /dev/null and b/data/library/Peavey-Spectrum-Bass.rgd differ diff --git a/data/library/PodXTLive.rgd b/data/library/PodXTLive.rgd new file mode 100644 index 0000000..5d4ea90 Binary files /dev/null and b/data/library/PodXTLive.rgd differ diff --git a/data/library/Roland-D-50-v2.rgd b/data/library/Roland-D-50-v2.rgd new file mode 100644 index 0000000..4fb4f40 Binary files /dev/null and b/data/library/Roland-D-50-v2.rgd differ diff --git a/data/library/Roland-D-50.rgd b/data/library/Roland-D-50.rgd new file mode 100644 index 0000000..4252977 Binary files /dev/null and b/data/library/Roland-D-50.rgd differ diff --git a/data/library/Roland-E-09.rgd b/data/library/Roland-E-09.rgd new file mode 100644 index 0000000..de26d8e Binary files /dev/null and b/data/library/Roland-E-09.rgd differ diff --git a/data/library/Roland-E-09_addons.rgd b/data/library/Roland-E-09_addons.rgd new file mode 100644 index 0000000..f353808 Binary files /dev/null and b/data/library/Roland-E-09_addons.rgd differ diff --git a/data/library/Roland-EM-20.rgd b/data/library/Roland-EM-20.rgd new file mode 100644 index 0000000..bde3991 Binary files /dev/null and b/data/library/Roland-EM-20.rgd differ diff --git a/data/library/Roland-Fantom-S.rgd b/data/library/Roland-Fantom-S.rgd new file mode 100644 index 0000000..3c6ac8c Binary files /dev/null and b/data/library/Roland-Fantom-S.rgd differ diff --git a/data/library/Roland-Fantom-S88.rgd b/data/library/Roland-Fantom-S88.rgd new file mode 100644 index 0000000..c2dc748 Binary files /dev/null and b/data/library/Roland-Fantom-S88.rgd differ diff --git a/data/library/Roland-Fantom-X.rgd b/data/library/Roland-Fantom-X.rgd new file mode 100644 index 0000000..fc6c123 Binary files /dev/null and b/data/library/Roland-Fantom-X.rgd differ diff --git a/data/library/Roland-Fantom-XA.rgd b/data/library/Roland-Fantom-XA.rgd new file mode 100644 index 0000000..873bf53 Binary files /dev/null and b/data/library/Roland-Fantom-XA.rgd differ diff --git a/data/library/Roland-Fantom-XR-addon-SRX-02.rgd b/data/library/Roland-Fantom-XR-addon-SRX-02.rgd new file mode 100644 index 0000000..8c7738d Binary files /dev/null and b/data/library/Roland-Fantom-XR-addon-SRX-02.rgd differ diff --git a/data/library/Roland-Fantom-XR-addon-SRX-06.rgd b/data/library/Roland-Fantom-XR-addon-SRX-06.rgd new file mode 100644 index 0000000..2ee9f09 Binary files /dev/null and b/data/library/Roland-Fantom-XR-addon-SRX-06.rgd differ diff --git a/data/library/Roland-Fantom-XR-addon-SRX-09.rgd b/data/library/Roland-Fantom-XR-addon-SRX-09.rgd new file mode 100644 index 0000000..2dcdb8d Binary files /dev/null and b/data/library/Roland-Fantom-XR-addon-SRX-09.rgd differ diff --git a/data/library/Roland-Fantom-XR.rgd b/data/library/Roland-Fantom-XR.rgd new file mode 100644 index 0000000..be9ed03 Binary files /dev/null and b/data/library/Roland-Fantom-XR.rgd differ diff --git a/data/library/Roland-GR-30.rgd b/data/library/Roland-GR-30.rgd new file mode 100644 index 0000000..489e3e9 Binary files /dev/null and b/data/library/Roland-GR-30.rgd differ diff --git a/data/library/Roland-GR-33.rgd b/data/library/Roland-GR-33.rgd new file mode 100644 index 0000000..b4e7064 Binary files /dev/null and b/data/library/Roland-GR-33.rgd differ diff --git a/data/library/Roland-JD-800.rgd b/data/library/Roland-JD-800.rgd new file mode 100644 index 0000000..5a555f0 Binary files /dev/null and b/data/library/Roland-JD-800.rgd differ diff --git a/data/library/Roland-JV-1010.rgd b/data/library/Roland-JV-1010.rgd new file mode 100644 index 0000000..741972f Binary files /dev/null and b/data/library/Roland-JV-1010.rgd differ diff --git a/data/library/Roland-JV-1080.rgd b/data/library/Roland-JV-1080.rgd new file mode 100644 index 0000000..b0de98d Binary files /dev/null and b/data/library/Roland-JV-1080.rgd differ diff --git a/data/library/Roland-JV-2080.rgd b/data/library/Roland-JV-2080.rgd new file mode 100644 index 0000000..addc028 Binary files /dev/null and b/data/library/Roland-JV-2080.rgd differ diff --git a/data/library/Roland-JV-80.rgd b/data/library/Roland-JV-80.rgd new file mode 100644 index 0000000..a3d2679 Binary files /dev/null and b/data/library/Roland-JV-80.rgd differ diff --git a/data/library/Roland-JX-305.rgd b/data/library/Roland-JX-305.rgd new file mode 100644 index 0000000..d0f5af7 Binary files /dev/null and b/data/library/Roland-JX-305.rgd differ diff --git a/data/library/Roland-Juno106.rgd b/data/library/Roland-Juno106.rgd new file mode 100644 index 0000000..acfc345 Binary files /dev/null and b/data/library/Roland-Juno106.rgd differ diff --git a/data/library/Roland-KR-570.rgd b/data/library/Roland-KR-570.rgd new file mode 100644 index 0000000..b9143c6 Binary files /dev/null and b/data/library/Roland-KR-570.rgd differ diff --git a/data/library/Roland-MC-303.rgd b/data/library/Roland-MC-303.rgd new file mode 100644 index 0000000..fc40d2f Binary files /dev/null and b/data/library/Roland-MC-303.rgd differ diff --git a/data/library/Roland-MVS-1.rgd b/data/library/Roland-MVS-1.rgd new file mode 100644 index 0000000..1710405 Binary files /dev/null and b/data/library/Roland-MVS-1.rgd differ diff --git a/data/library/Roland-RD-600.rgd b/data/library/Roland-RD-600.rgd new file mode 100644 index 0000000..e8d271a Binary files /dev/null and b/data/library/Roland-RD-600.rgd differ diff --git a/data/library/Roland-RD-700SX.rgd b/data/library/Roland-RD-700SX.rgd new file mode 100644 index 0000000..9605def Binary files /dev/null and b/data/library/Roland-RD-700SX.rgd differ diff --git a/data/library/Roland-RS-9.rgd b/data/library/Roland-RS-9.rgd new file mode 100644 index 0000000..f74ef4e Binary files /dev/null and b/data/library/Roland-RS-9.rgd differ diff --git a/data/library/Roland-SC-33.rgd b/data/library/Roland-SC-33.rgd new file mode 100644 index 0000000..d04fba9 Binary files /dev/null and b/data/library/Roland-SC-33.rgd differ diff --git a/data/library/Roland-SC-88.rgd b/data/library/Roland-SC-88.rgd new file mode 100644 index 0000000..158ece6 Binary files /dev/null and b/data/library/Roland-SC-88.rgd differ diff --git a/data/library/Roland-SC-8820.rgd b/data/library/Roland-SC-8820.rgd new file mode 100644 index 0000000..3c79d1b Binary files /dev/null and b/data/library/Roland-SC-8820.rgd differ diff --git a/data/library/Roland-SR-JV80-01.rgd b/data/library/Roland-SR-JV80-01.rgd new file mode 100644 index 0000000..fa39539 Binary files /dev/null and b/data/library/Roland-SR-JV80-01.rgd differ diff --git a/data/library/Roland-SR-JV80-02.rgd b/data/library/Roland-SR-JV80-02.rgd new file mode 100644 index 0000000..38ae09e Binary files /dev/null and b/data/library/Roland-SR-JV80-02.rgd differ diff --git a/data/library/Roland-SR-JV80-03.rgd b/data/library/Roland-SR-JV80-03.rgd new file mode 100644 index 0000000..0da6ab1 Binary files /dev/null and b/data/library/Roland-SR-JV80-03.rgd differ diff --git a/data/library/Roland-SR-JV80-04.rgd b/data/library/Roland-SR-JV80-04.rgd new file mode 100644 index 0000000..18ff29d Binary files /dev/null and b/data/library/Roland-SR-JV80-04.rgd differ diff --git a/data/library/Roland-SR-JV80-05.rgd b/data/library/Roland-SR-JV80-05.rgd new file mode 100644 index 0000000..7fe565d Binary files /dev/null and b/data/library/Roland-SR-JV80-05.rgd differ diff --git a/data/library/Roland-SR-JV80-08.rgd b/data/library/Roland-SR-JV80-08.rgd new file mode 100644 index 0000000..7a26124 Binary files /dev/null and b/data/library/Roland-SR-JV80-08.rgd differ diff --git a/data/library/Roland-SR-JV80-09.rgd b/data/library/Roland-SR-JV80-09.rgd new file mode 100644 index 0000000..a505167 Binary files /dev/null and b/data/library/Roland-SR-JV80-09.rgd differ diff --git a/data/library/Roland-SR-JV80-11.rgd b/data/library/Roland-SR-JV80-11.rgd new file mode 100644 index 0000000..017d6f5 Binary files /dev/null and b/data/library/Roland-SR-JV80-11.rgd differ diff --git a/data/library/Roland-SR-JV80-14.rgd b/data/library/Roland-SR-JV80-14.rgd new file mode 100644 index 0000000..f66fc9c Binary files /dev/null and b/data/library/Roland-SR-JV80-14.rgd differ diff --git a/data/library/Roland-SR-JV80-15.rgd b/data/library/Roland-SR-JV80-15.rgd new file mode 100644 index 0000000..d12926b Binary files /dev/null and b/data/library/Roland-SR-JV80-15.rgd differ diff --git a/data/library/Roland-SR-JV80-17.rgd b/data/library/Roland-SR-JV80-17.rgd new file mode 100644 index 0000000..5f7f5f8 Binary files /dev/null and b/data/library/Roland-SR-JV80-17.rgd differ diff --git a/data/library/Roland-TD-8.rgd b/data/library/Roland-TD-8.rgd new file mode 100644 index 0000000..8edd284 Binary files /dev/null and b/data/library/Roland-TD-8.rgd differ diff --git a/data/library/Roland-XP30.rgd b/data/library/Roland-XP30.rgd new file mode 100644 index 0000000..f27f8e8 Binary files /dev/null and b/data/library/Roland-XP30.rgd differ diff --git a/data/library/Roland-XV-2020.rgd b/data/library/Roland-XV-2020.rgd new file mode 100644 index 0000000..2baee30 Binary files /dev/null and b/data/library/Roland-XV-2020.rgd differ diff --git a/data/library/Roland-XV-88.rgd b/data/library/Roland-XV-88.rgd new file mode 100644 index 0000000..76e4ace Binary files /dev/null and b/data/library/Roland-XV-88.rgd differ diff --git a/data/library/Sirius.rgd b/data/library/Sirius.rgd new file mode 100644 index 0000000..7d84b5b Binary files /dev/null and b/data/library/Sirius.rgd differ diff --git a/data/library/Technics-KN901.rgd b/data/library/Technics-KN901.rgd new file mode 100644 index 0000000..131a9ef Binary files /dev/null and b/data/library/Technics-KN901.rgd differ diff --git a/data/library/XG-Rhythmn-Kits-and-Mappings.rgd b/data/library/XG-Rhythmn-Kits-and-Mappings.rgd new file mode 100644 index 0000000..88423c8 Binary files /dev/null and b/data/library/XG-Rhythmn-Kits-and-Mappings.rgd differ diff --git a/data/library/XG.rgd b/data/library/XG.rgd new file mode 100644 index 0000000..4fdd7b0 Binary files /dev/null and b/data/library/XG.rgd differ diff --git a/data/library/Yamaha-CS1x.rgd b/data/library/Yamaha-CS1x.rgd new file mode 100644 index 0000000..4898700 Binary files /dev/null and b/data/library/Yamaha-CS1x.rgd differ diff --git a/data/library/Yamaha-CS2x.rgd b/data/library/Yamaha-CS2x.rgd new file mode 100644 index 0000000..83870a7 Binary files /dev/null and b/data/library/Yamaha-CS2x.rgd differ diff --git a/data/library/Yamaha-DGX200.rgd b/data/library/Yamaha-DGX200.rgd new file mode 100644 index 0000000..c6e2c0f Binary files /dev/null and b/data/library/Yamaha-DGX200.rgd differ diff --git a/data/library/Yamaha-DGX500-300.rgd b/data/library/Yamaha-DGX500-300.rgd new file mode 100644 index 0000000..02f59ea Binary files /dev/null and b/data/library/Yamaha-DGX500-300.rgd differ diff --git a/data/library/Yamaha-DGX505-305.rgd b/data/library/Yamaha-DGX505-305.rgd new file mode 100644 index 0000000..a8b0a2b Binary files /dev/null and b/data/library/Yamaha-DGX505-305.rgd differ diff --git a/data/library/Yamaha-DX200.rgd b/data/library/Yamaha-DX200.rgd new file mode 100644 index 0000000..a26fa2f Binary files /dev/null and b/data/library/Yamaha-DX200.rgd differ diff --git a/data/library/Yamaha-MU90R.rgd b/data/library/Yamaha-MU90R.rgd new file mode 100644 index 0000000..1767c1a Binary files /dev/null and b/data/library/Yamaha-MU90R.rgd differ diff --git a/data/library/Yamaha-Motif-6-7-8.rgd b/data/library/Yamaha-Motif-6-7-8.rgd new file mode 100644 index 0000000..cc6aebf Binary files /dev/null and b/data/library/Yamaha-Motif-6-7-8.rgd differ diff --git a/data/library/Yamaha-Motif-ES.rgd b/data/library/Yamaha-Motif-ES.rgd new file mode 100644 index 0000000..f1c7777 Binary files /dev/null and b/data/library/Yamaha-Motif-ES.rgd differ diff --git a/data/library/Yamaha-Motif-Rack.rgd b/data/library/Yamaha-Motif-Rack.rgd new file mode 100644 index 0000000..2304b2a Binary files /dev/null and b/data/library/Yamaha-Motif-Rack.rgd differ diff --git a/data/library/Yamaha-P60.rgd b/data/library/Yamaha-P60.rgd new file mode 100644 index 0000000..a84c31e Binary files /dev/null and b/data/library/Yamaha-P60.rgd differ diff --git a/data/library/Yamaha-P90.rgd b/data/library/Yamaha-P90.rgd new file mode 100644 index 0000000..639f0b8 Binary files /dev/null and b/data/library/Yamaha-P90.rgd differ diff --git a/data/library/Yamaha-PSR-E403.rgd b/data/library/Yamaha-PSR-E403.rgd new file mode 100644 index 0000000..550d1c8 Binary files /dev/null and b/data/library/Yamaha-PSR-E403.rgd differ diff --git a/data/library/Yamaha-PSR270.rgd b/data/library/Yamaha-PSR270.rgd new file mode 100644 index 0000000..68c008e Binary files /dev/null and b/data/library/Yamaha-PSR270.rgd differ diff --git a/data/library/Yamaha-PSR280.rgd b/data/library/Yamaha-PSR280.rgd new file mode 100644 index 0000000..11666e6 Binary files /dev/null and b/data/library/Yamaha-PSR280.rgd differ diff --git a/data/library/Yamaha-PSR290.rgd b/data/library/Yamaha-PSR290.rgd new file mode 100644 index 0000000..cb4ba5e Binary files /dev/null and b/data/library/Yamaha-PSR290.rgd differ diff --git a/data/library/Yamaha-PSR403.rgd b/data/library/Yamaha-PSR403.rgd new file mode 100644 index 0000000..a8a615b Binary files /dev/null and b/data/library/Yamaha-PSR403.rgd differ diff --git a/data/library/Yamaha-PSR550.rgd b/data/library/Yamaha-PSR550.rgd new file mode 100644 index 0000000..22ef25e Binary files /dev/null and b/data/library/Yamaha-PSR550.rgd differ diff --git a/data/library/Yamaha-QY70.rgd b/data/library/Yamaha-QY70.rgd new file mode 100644 index 0000000..71b49ef Binary files /dev/null and b/data/library/Yamaha-QY70.rgd differ diff --git a/data/library/Yamaha-RM1X.rgd b/data/library/Yamaha-RM1X.rgd new file mode 100644 index 0000000..0cc7175 Binary files /dev/null and b/data/library/Yamaha-RM1X.rgd differ diff --git a/data/library/Yamaha-S08.rgd b/data/library/Yamaha-S08.rgd new file mode 100644 index 0000000..b03d8a0 Binary files /dev/null and b/data/library/Yamaha-S08.rgd differ diff --git a/data/library/Yamaha-S80.rgd b/data/library/Yamaha-S80.rgd new file mode 100644 index 0000000..829737b Binary files /dev/null and b/data/library/Yamaha-S80.rgd differ diff --git a/data/library/Yamaha-S90.rgd b/data/library/Yamaha-S90.rgd new file mode 100644 index 0000000..f914c98 Binary files /dev/null and b/data/library/Yamaha-S90.rgd differ diff --git a/data/library/Yamaha-TG500-mlt.rgd b/data/library/Yamaha-TG500-mlt.rgd new file mode 100644 index 0000000..cd6b0fc Binary files /dev/null and b/data/library/Yamaha-TG500-mlt.rgd differ diff --git a/data/library/Yamaha-VL70-m.rgd b/data/library/Yamaha-VL70-m.rgd new file mode 100644 index 0000000..6c91a33 Binary files /dev/null and b/data/library/Yamaha-VL70-m.rgd differ diff --git a/data/library/Zoom-RT-323.rgd b/data/library/Zoom-RT-323.rgd new file mode 100644 index 0000000..b315028 Binary files /dev/null and b/data/library/Zoom-RT-323.rgd differ diff --git a/data/library/all-numbers.rgd b/data/library/all-numbers.rgd new file mode 100644 index 0000000..e3ce837 Binary files /dev/null and b/data/library/all-numbers.rgd differ diff --git a/data/library/raw-numbers.rgd b/data/library/raw-numbers.rgd new file mode 100644 index 0000000..4e26f29 Binary files /dev/null and b/data/library/raw-numbers.rgd differ diff --git a/data/pixmaps/feta/10/accidentals-(.xpm b/data/pixmaps/feta/10/accidentals-(.xpm new file mode 100644 index 0000000..4685843 --- /dev/null +++ b/data/pixmaps/feta/10/accidentals-(.xpm @@ -0,0 +1,35 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 22 7 1", +" c #020202", +". c Gray22", +"X c Gray47", +"o c Gray53", +"O c #b4b4b4", +"+ c #c3c3c3", +"@ c None", +/* pixels */ +"@@@@@@", +"@@@@OO", +"@@@@ O", +"@@@X.@", +"@@@ X@", +"@@o @@", +"@@. @@", +"@@ X@@", +"@+ X@@", +"@o o@@", +"@o o@@", +"@o o@@", +"@o o@@", +"@o o@@", +"@+ o@@", +"@@ X@@", +"@@. @@", +"@@X @@", +"@@@ X@", +"@@@X.@", +"@@@@ O", +"@@@@OO" +}; diff --git a/data/pixmaps/feta/10/accidentals-).xpm b/data/pixmaps/feta/10/accidentals-).xpm new file mode 100644 index 0000000..2941718 --- /dev/null +++ b/data/pixmaps/feta/10/accidentals-).xpm @@ -0,0 +1,35 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 22 7 1", +" c #020202", +". c Gray22", +"X c Gray47", +"o c Gray53", +"O c #b4b4b4", +"+ c #c3c3c3", +"@ c None", +/* pixels */ +"@@@@@@", +"@OO@@@", +"@O @@@", +"@@.X@@", +"@@X @@", +"@@@ X@", +"@@@ .@", +"@@@X @", +"@@@o +", +"@@@o o", +"@@@o o", +"@@@o o", +"@@@o o", +"@@@o o", +"@@@o +", +"@@@X @", +"@@@ .@", +"@@@ X@", +"@@o @@", +"@@.X@@", +"@O @@@", +"@OO@@@" +}; diff --git a/data/pixmaps/feta/10/accidentals--1.xpm b/data/pixmaps/feta/10/accidentals--1.xpm new file mode 100644 index 0000000..b92d8e3 --- /dev/null +++ b/data/pixmaps/feta/10/accidentals--1.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 27 8 1", +" c #040404", +". c Gray15", +"X c #535353", +"o c Gray44", +"O c #848484", +"+ c Gray68", +"@ c #d5d5d5", +"# c None", +/* pixels */ +"##########", +"#@o@######", +"#o +######", +"#O +######", +"#O +######", +"#O +######", +"#O +######", +"#O +######", +"#O +######", +"#o +######", +"#O +######", +"#O +######", +"#O +######", +"#O +######", +"#@ @#@+@##", +"#@.@. o#", +"#@ @", +"## X@+ O", +"#@ @##+ o", +"#@.###+ @", +"#@.###O X#", +"#@.###. @#", +"#@.##. @##", +"#@.#.o####", +"#@ o#####", +"## X######", +"##+#######" +}; diff --git a/data/pixmaps/feta/10/accidentals--2.xpm b/data/pixmaps/feta/10/accidentals--2.xpm new file mode 100644 index 0000000..5a93569 --- /dev/null +++ b/data/pixmaps/feta/10/accidentals--2.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"17 27 8 1", +" c #040404", +". c #353535", +"X c #585858", +"o c Gray47", +"O c #898989", +"+ c #b2b2b2", +"@ c #cecece", +"# c None", +/* pixels */ +"#################", +"#@o@###@o@#######", +"#O O###o O#######", +"#O O#### o#######", +"#O O#### o#######", +"#O O#### o#######", +"#O O#### o#######", +"#O O#### o#######", +"#O o#### o#######", +"#O O#### o#######", +"#O O#### o#######", +"#O o#### o#######", +"#O O#### o#######", +"#O O#### o#######", +"#@ @#+++ o#@++@##", +"##.@X XX. O#", +"## @", +"## .@@O .@@O O", +"## O### o###o O", +"## #### o###o +", +"## ###O o###X .#", +"## ##@ O o##@ .##", +"## #@ +# o#+ X###", +"##.+ O## oo +####", +"## +### .######", +"## .#### .#######", +"##+#####++#######" +}; diff --git a/data/pixmaps/feta/10/accidentals-0.xpm b/data/pixmaps/feta/10/accidentals-0.xpm new file mode 100644 index 0000000..4e9fed9 --- /dev/null +++ b/data/pixmaps/feta/10/accidentals-0.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 31 8 1", +" c #040404", +". c Gray19", +"X c #5f5f5f", +"o c #6f6f6f", +"O c #888888", +"+ c #b9b9b9", +"@ c #c8c8c8", +"# c None", +/* pixels */ +"########", +"#+@#####", +"#oO#####", +"#oO#####", +"#oO#####", +"#XO#####", +"#oO#####", +"#oO#####", +"#ooOo. O", +"#o O", +"#o o", +"#O o", +"#o XO.o", +"#oO###OX", +"#oO###Oo", +"#oO###Oo", +"#oO###Oo", +"#XO###OX", +"#oO###OX", +"#o.OX o", +"#O o", +"#o o", +"#o o", +"#O .OOoo", +"######OX", +"######Oo", +"######Oo", +"######OX", +"######Oo", +"######Oo", +"######@+" +}; diff --git a/data/pixmaps/feta/10/accidentals-1.xpm b/data/pixmaps/feta/10/accidentals-1.xpm new file mode 100644 index 0000000..4cb1349 --- /dev/null +++ b/data/pixmaps/feta/10/accidentals-1.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 32 7 1", +" c Gray1", +". c #2d2d2d", +"X c Gray50", +"o c #898989", +"O c #a0a0a0", +"+ c #cbcbcb", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@", +"@@@@@@@@o@@@", +"@@@@@@@@.+@@", +"@@@+.@@@.+@@", +"@@@+.@@@.+@@", +"@@@+.@@@.+@@", +"@@@+.@@@.+@@", +"@@@+.@@@.+@@", +"@@@+.@@@.. o", +"@@@+.@O. o", +"@@@+ X", +"@+. .+", +"@X +@@", +"@o .O@.+@@", +"@o ..@@@.+@@", +"@@@+.@@@.+@@", +"@@@+.@@@.+@@", +"@@@+.@@@.+@@", +"@@@+.@@@.. o", +"@@@+.@O. o", +"@@@+ X", +"@+. .+", +"@X +@@", +"@X .O@.+@@", +"@o ..@@@.+@@", +"@@@+.@@@.+@@", +"@@@+.@@@.+@@", +"@@@+.@@@.+@@", +"@@@+.@@@.+@@", +"@@@+.@@@.+@@", +"@@@+.@@@@@@@", +"@@@@O@@@@@@@" +}; diff --git a/data/pixmaps/feta/10/accidentals-2.xpm b/data/pixmaps/feta/10/accidentals-2.xpm new file mode 100644 index 0000000..a2c422f --- /dev/null +++ b/data/pixmaps/feta/10/accidentals-2.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 12 7 1", +" c #070707", +". c Gray27", +"X c #7b7b7b", +"o c #888888", +"O c #bebebe", +"+ c Gray79", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@", +"@+oo+@@@Ooo+", +"@o @@@ o", +"@o o@X o", +"@@ .@. @", +"@@@o. X .o@@", +"@@@@@X X@@@@", +"@@@o. X .o@@", +"@@ .@. @", +"@o X@o o", +"@o @@@ o", +"@+XoO@@@OoX+" +}; diff --git a/data/pixmaps/feta/10/accordion-accBB.xpm b/data/pixmaps/feta/10/accordion-accBB.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/10/accordion-accBayanbase.xpm b/data/pixmaps/feta/10/accordion-accBayanbase.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/10/accordion-accDiscant.xpm b/data/pixmaps/feta/10/accordion-accDiscant.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/10/accordion-accDot.xpm b/data/pixmaps/feta/10/accordion-accDot.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/10/accordion-accFreebase.xpm b/data/pixmaps/feta/10/accordion-accFreebase.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/10/accordion-accOldEE.xpm b/data/pixmaps/feta/10/accordion-accOldEE.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/10/accordion-accOldEES.xpm b/data/pixmaps/feta/10/accordion-accOldEES.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/10/accordion-accSB.xpm b/data/pixmaps/feta/10/accordion-accSB.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/10/accordion-accStdbase.xpm b/data/pixmaps/feta/10/accordion-accStdbase.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/10/clefs-C.xpm b/data/pixmaps/feta/10/clefs-C.xpm new file mode 100644 index 0000000..62c9429 --- /dev/null +++ b/data/pixmaps/feta/10/clefs-C.xpm @@ -0,0 +1,54 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"28 40 8 1", +" c Gray1", +". c #323232", +"X c Gray30", +"o c Gray48", +"O c #898989", +"+ c Gray69", +"@ c Gray82", +"# c None", +/* pixels */ +"############################", +"#################oOO########", +"#O #O ####+. o#####", +"#O #o ###X +##OX +###", +"#O #O ##o O#####X +##", +"#O #o #@ .#####@ ##", +"#O #O #O +#### o#", +"#O #o #O o####X #", +"#O #O #@ @####o +", +"#O #o ##o o#####o O", +"#O #o ###@O@######o O", +"#O #o ###@########o O", +"#O #o ### +#######o O", +"#O #o ##@ X#######O #", +"#O #O ##o #######. X#", +"#O #o ##o +#####@ .@#", +"#O #o ## .@####o @##", +"#O #o #+ O@@X .@###", +"#O #o @. .++.. .X+#####", +"#O #o . o###@++@#######", +"#O #O o##############", +"#O #O O##############", +"#O #o o X##@o .o@######", +"#O #o #o .. .X. .+####", +"#O #O #@ O###@. o###", +"#O #o ##. o#####+ o##", +"#O #o ##o @######. O#", +"#O #o ##+ .#######o .#", +"#O #o ### O#######o @", +"#O #o ###o@#######O O", +"#O #o ############o O", +"#O #o ##@X X@#####o O", +"#O #O ## #####o +", +"#O #o #O O####X #", +"#O #o #O o#### o#", +"#O #O #+ o####@ @#", +"#O #o ##X o#####X +##", +"#O #O ##+ X###+X +###", +"#O #o ###+. . o#####", +"#@oOOOO#+O#####+oooO########" +}; diff --git a/data/pixmaps/feta/10/clefs-C_change.xpm b/data/pixmaps/feta/10/clefs-C_change.xpm new file mode 100644 index 0000000..87d232a --- /dev/null +++ b/data/pixmaps/feta/10/clefs-C_change.xpm @@ -0,0 +1,46 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"23 32 8 1", +" c #040404", +". c Gray19", +"X c Gray29", +"o c Gray46", +"O c #888888", +"+ c #afafaf", +"@ c #cdcdcd", +"# c None", +/* pixels */ +"#######################", +"#############+oOO######", +"#O O# O##+. .+###", +"#O O# o#+ X###@ +##", +"#O O# O# X####o +#", +"#O o# O+ X###O .#", +"#O O# OO #### #", +"#O O# O@ o#### O", +"#O O# o#@++##### O", +"#O o# o#++###### O", +"#O O# o#o ###### +", +"#O O# o#o #####@ .#", +"#O O# o#. +####o O#", +"#O O# O# .+###. o##", +"#O o# OO . .X. O###", +"#O O# o##o .+@####", +"#O O# o###########", +"#O O# o##@+@######", +"#O O# XX .@o .o####", +"#O o# O+ .@@O @##", +"#O O# O# o####o @#", +"#O o# o#o @####+ X#", +"#O O# o#o ###### @", +"#O O# o#o.###### O", +"#O O# o######### O", +"#O O# o#o .@#### O", +"#O O# O+ #### #", +"#O O# OO ###+ .#", +"#O o# O@ +###o +#", +"#O O# O#X o###@ +##", +"#O O# o##X X .+###", +"#@oOo@#o+###+oOoO######" +}; diff --git a/data/pixmaps/feta/10/clefs-F.xpm b/data/pixmaps/feta/10/clefs-F.xpm new file mode 100644 index 0000000..ed645b4 --- /dev/null +++ b/data/pixmaps/feta/10/clefs-F.xpm @@ -0,0 +1,47 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"29 33 8 1", +" c #040404", +". c Gray19", +"X c #535353", +"o c #747474", +"O c #8e8e8e", +"+ c #acacac", +"@ c Gray81", +"# c None", +/* pixels */ +"#############################", +"##########ooooo##############", +"#######+. .ooo o@##########", +"######X .@#####X +#########", +"#####. X########X +####+o##", +"####o .#########@ +##o .#", +"###@ o##########o .## @", +"###o X########@ +#X #", +"###. .######## o#@X.@#", +"### o#######X .######", +"### #######O ######", +"### #######o ######", +"###X .#######o ######", +"###@. O#######o ##@@##", +"####@. O########o X#+ O#", +"######++@######### O#. @", +"#################@ @#. @", +"#################o .##+ O#", +"#################. O###@@##", +"################o .########", +"###############@ .@########", +"###############. +#########", +"##############o O##########", +"#############o O###########", +"############o O############", +"##########@X .@#############", +"#########@ X###############", +"########+ .+################", +"######@X +##################", +"#####X o@###################", +"###o o######################", +"#@..o@#######################", +"#++##########################" +}; diff --git a/data/pixmaps/feta/10/clefs-F_change.xpm b/data/pixmaps/feta/10/clefs-F_change.xpm new file mode 100644 index 0000000..2e5491b --- /dev/null +++ b/data/pixmaps/feta/10/clefs-F_change.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"24 27 8 1", +" c Gray2", +". c #393939", +"X c #4b4b4b", +"o c #767676", +"O c #868686", +"+ c #b6b6b6", +"@ c #c3c3c3", +"# c None", +/* pixels */ +"########################", +"########+oooO###########", +"######o ooX X#########", +"#####X X#####X +#######", +"####X X####### +##X X#", +"###+ ########o X## @", +"###o o####### +# @", +"### X######X o##O##", +"### +#####o #####", +"### o#####o #####", +"###X O#####O #####", +"###+ ######o ##O##", +"####@. .@######X X# #", +"############### O# @", +"##############o ##X X#", +"############## o######", +"#############X X#######", +"############+ +#######", +"###########+ +########", +"##########+ +#########", +"#########+ .@##########", +"########X X############", +"######@. .@#############", +"#####X o###############", +"###o o#################", +"#@..O###################", +"#+O#####################" +}; diff --git a/data/pixmaps/feta/10/clefs-G.xpm b/data/pixmaps/feta/10/clefs-G.xpm new file mode 100644 index 0000000..c2eb4b9 --- /dev/null +++ b/data/pixmaps/feta/10/clefs-G.xpm @@ -0,0 +1,89 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"27 75 8 1", +" c #040404", +". c #2c2c2c", +"X c #505050", +"o c Gray46", +"O c Gray55", +"+ c #aeaeae", +"@ c #d0d0d0", +"# c None", +/* pixels */ +"###########################", +"################@##########", +"###############X +#########", +"##############. #########", +"#############X o########", +"############o ########", +"###########+ o#######", +"###########. X@ #######", +"##########+ X##O O######", +"##########o ###+ X######", +"########## @#### @#####", +"#########@ X##### O#####", +"#########O @##### o#####", +"#########o X###### #####", +"#########O O###### #####", +"#########o ######@ #####", +"#########o ######o #####", +"#########@ ######o #####", +"########## #####@ X#####", +"########## #####o o#####", +"##########X ####@ @#####", +"##########O +###o X######", +"##########O O##+ @######", +"########### o#@. X#######", +"########### #o @#######", +"###########X O O########", +"###########O o#########", +"###########o .##########", +"##########@. .@##########", +"#########@. @###########", +"#########. @############", +"#######@. #############", +"#######. +############", +"######O O@ o############", +"#####O o## X############", +"####@. .###. ############", +"####X .@###o ############", +"###O @####o @###########", +"###. o#####+ X@+@########", +"##O .#####+X .o######", +"##X O####o O####", +"## .####o o###", +"#@ O###O XX. o##", +"#O @###. +O O#@@X @#", +"#O ###@ .@## o####O o#", +"#O o###o +### X#####o .#", +"#O o###O ####. #####@. @", +"#+ o###O ####o ######O O", +"## O###@ @###o @#####@ O", +"##. X####. X###@ o###### O", +"##+ ####+ @### O###### O", +"###. O####O @##. ###### @", +"###@ .#####+. O#o #####O .#", +"####O o######O@#o #####X +#", +"#####O o########@ O###@ .##", +"######O .O####### o##@ .###", +"#######@X .O+#### X+X .####", +"#########@X .+#####", +"###########@@XXoo. @#######", +"#################+ @#######", +"################## o#######", +"################## o#######", +"##################o #######", +"#######@OO########o #######", +"######X @######@.@######", +"#####O ####### #######", +"##### O######.#######", +"##### o###### #######", +"##### O#####o.#######", +"#####X ######.o#######", +"#####+ +#####+ ########", +"######X .######+ +########", +"#######X O###+. +#########", +"########o o###########", +"##########@o+##############" +}; diff --git a/data/pixmaps/feta/10/clefs-G_change.xpm b/data/pixmaps/feta/10/clefs-G_change.xpm new file mode 100644 index 0000000..86a3d52 --- /dev/null +++ b/data/pixmaps/feta/10/clefs-G_change.xpm @@ -0,0 +1,75 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"22 61 8 1", +" c #040404", +". c #353535", +"X c #494949", +"o c #777777", +"O c #868686", +"+ c #b7b7b7", +"@ c #c5c5c5", +"# c None", +/* pixels */ +"######################", +"#############O########", +"############X o#######", +"###########X #######", +"##########O X######", +"#########+ +#####", +"#########X O@ o#####", +"########+ X## #####", +"########o ###o +####", +"########X O###o O####", +"######## ####O X####", +"######## o####o ####", +"######## +####O ####", +"######## #####X ####", +"########X ##### ####", +"########O ####o o####", +"########o #### +####", +"########o ###O #####", +"######### o#+ o#####", +"######### o#. X######", +"#########.oX +######", +"#########o O#######", +"#########o X########", +"########+ X#########", +"#######+ X##########", +"######+ o##########", +"######X Xo ##########", +"#####X @O ##########", +"####o +#+ ##########", +"###+ +### o#########", +"###X o#### o#########", +"##+ X#####o.Oo+######", +"##X +###+X o####", +"## X###+ X###", +"#O +### .OX X##", +"#O ###O +# o##@. +#", +"#O o### o##.o####X #", +"#O O### ###o ####+ +", +"#O O### ###o #####X O", +"## o###X #### +####O O", +"##..###+ o### o####O O", +"##+ +###X +##.o####o @", +"###o.####X X#o #### #", +"####..####+O#o ###O O#", +"#####..+#####+ ##+ X##", +"######o .o+### .X X###", +"########o o####", +"##########+ooO..######", +"##############o ######", +"##############o ######", +"############### o#####", +"#####+oO####### o#####", +"####+ +#####Xo#####", +"####X X#####oo#####", +"#### #####oo#####", +"#### #####.o#####", +"#### o####+ ######", +"####o O#####.o######", +"#####X X###O.X#######", +"######o .o########", +"########@o+###########" +}; diff --git a/data/pixmaps/feta/10/clefs-hufnagel_do.xpm b/data/pixmaps/feta/10/clefs-hufnagel_do.xpm new file mode 100644 index 0000000..5d88e4e --- /dev/null +++ b/data/pixmaps/feta/10/clefs-hufnagel_do.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 16 7 1", +" c #040404", +". c #313131", +"X c #6d6d6d", +"o c #898989", +"O c #afafaf", +"+ c Gray82", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@", +"@@@@@@@+o@@@@", +"@@@@@+X .O+@", +"@@@@X +", +"@@@. +@", +"@@. .+@@", +"@o OOO@@@@", +"@o @@@@@@@", +"@o @@@@@@@", +"@o @@@@@@@", +"@o @@@@@@@", +"@o X+@@@@@", +"@o X@@@@@", +"@o .@@@@@@", +"@O O@@@@@@@", +"@@@XO@@@@@@@@" +}; diff --git a/data/pixmaps/feta/10/clefs-hufnagel_do_change.xpm b/data/pixmaps/feta/10/clefs-hufnagel_do_change.xpm new file mode 100644 index 0000000..538ddc5 --- /dev/null +++ b/data/pixmaps/feta/10/clefs-hufnagel_do_change.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 13 8 1", +" c Gray1", +". c #313131", +"X c #4e4e4e", +"o c Gray48", +"O c #929292", +"+ c #b2b2b2", +"@ c #d0d0d0", +"# c None", +/* pixels */ +"##########", +"######O@##", +"####O X+", +"##@. .#", +"#@. X##", +"#o .++###", +"#o .#####", +"#o .#####", +"#o .#####", +"#O O####", +"#o X####", +"#o X#####", +"##oO######" +}; diff --git a/data/pixmaps/feta/10/clefs-hufnagel_do_fa.xpm b/data/pixmaps/feta/10/clefs-hufnagel_do_fa.xpm new file mode 100644 index 0000000..9f492cb --- /dev/null +++ b/data/pixmaps/feta/10/clefs-hufnagel_do_fa.xpm @@ -0,0 +1,54 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 40 8 1", +" c #040404", +". c Gray18", +"X c #484848", +"o c Gray45", +"O c #8b8b8b", +"+ c #b2b2b2", +"@ c #cecece", +"# c None", +/* pixels */ +"#############", +"########O####", +"######o .+##", +"####o @", +"###X +#", +"##. @##", +"#O OOO####", +"#O #######", +"#O #######", +"#O #######", +"#O #######", +"#O O######", +"#O O#####", +"#O @#####", +"#O o@######", +"##+.o########", +"#############", +"########@####", +"######+X o###", +"####@X ..@", +"###@. o#", +"##o O##", +"#+ XX.O###", +"#O #######", +"#O #######", +"#O @o.o@##", +"#O o@", +"#O .@", +"#O X@#", +"#O X .O###", +"#O #@#####", +"#O #######", +"#O #######", +"#O #######", +"#O #######", +"#O #######", +"#O X#######", +"#O .########", +"#O X#########", +"#@o##########" +}; diff --git a/data/pixmaps/feta/10/clefs-hufnagel_do_fa_change.xpm b/data/pixmaps/feta/10/clefs-hufnagel_do_fa_change.xpm new file mode 100644 index 0000000..b86e6dd --- /dev/null +++ b/data/pixmaps/feta/10/clefs-hufnagel_do_fa_change.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 37 8 1", +" c #040404", +". c Gray22", +"X c Gray29", +"o c #777777", +"O c Gray54", +"+ c Gray71", +"@ c Gray78", +"# c None", +/* pixels */ +"###########", +"######++###", +"####+. Xo@", +"###X .#", +"##X X##", +"#O ooO###", +"#O ######", +"#O ######", +"#O ######", +"#O +#####", +"#O O####", +"#O X#####", +"#+ o######", +"###########", +"###########", +"###########", +"###########", +"###########", +"######++###", +"####@. Xo@", +"###o .#", +"##X X##", +"#O ooo###", +"#O ######", +"#O #+o###", +"#O X X@", +"#O .#", +"#O X##", +"#O +o+###", +"#O ######", +"#O ######", +"#O ######", +"#O ######", +"#O ######", +"#O +######", +"#O +#######", +"#@#########" +}; diff --git a/data/pixmaps/feta/10/clefs-hufnagel_fa.xpm b/data/pixmaps/feta/10/clefs-hufnagel_fa.xpm new file mode 100644 index 0000000..db853da --- /dev/null +++ b/data/pixmaps/feta/10/clefs-hufnagel_fa.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 24 8 1", +" c #040404", +". c #3c3c3c", +"X c Gray29", +"o c #777777", +"O c #898989", +"+ c #b4b4b4", +"@ c Gray77", +"# c None", +/* pixels */ +"#############", +"########O####", +"######O .+##", +"####+ @", +"###X +#", +"##X +##", +"#O ooO####", +"#O #######", +"#O #######", +"#O +X .+##", +"#O O", +"#O X#", +"#O o##", +"#O oXo+###", +"#O #######", +"#O #######", +"#O #######", +"#O #######", +"#O #######", +"#O #######", +"#O X#######", +"#O X########", +"#O X#########", +"#@O##########" +}; diff --git a/data/pixmaps/feta/10/clefs-hufnagel_fa_change.xpm b/data/pixmaps/feta/10/clefs-hufnagel_fa_change.xpm new file mode 100644 index 0000000..cd99011 --- /dev/null +++ b/data/pixmaps/feta/10/clefs-hufnagel_fa_change.xpm @@ -0,0 +1,34 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 20 8 1", +" c #040404", +". c #373737", +"X c #4b4b4b", +"o c #747474", +"O c #898989", +"+ c #b4b4b4", +"@ c #cbcbcb", +"# c None", +/* pixels */ +"###########", +"######++###", +"####@. Xo@", +"###o .#", +"##X X##", +"#O ooO###", +"#O ######", +"#O @oX###", +"#O X@", +"#O .#", +"#O X##", +"#O +o+###", +"#O ######", +"#O ######", +"#O ######", +"#O ######", +"#O ######", +"#O +######", +"#O +#######", +"#@@########" +}; diff --git a/data/pixmaps/feta/10/clefs-medicaea_do.xpm b/data/pixmaps/feta/10/clefs-medicaea_do.xpm new file mode 100644 index 0000000..5375eb1 --- /dev/null +++ b/data/pixmaps/feta/10/clefs-medicaea_do.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 31 8 1", +" c Gray2", +". c Gray15", +"X c Gray36", +"o c #747474", +"O c #898989", +"+ c #bbbbbb", +"@ c #c0c0c0", +"# c None", +/* pixels */ +"#############", +"#@+##########", +"#oX##########", +"#oo##########", +"#oX##########", +"#oX##########", +"#O.##########", +"#O .o########", +"#O o######", +"#O o####", +"#O O##", +"#O.. .#", +"#oX#o #", +"#oX###o o", +"#oo#####o +", +"#oX#######o #", +"#O O#########", +"#O o#######", +"#O o#####", +"#O o###", +"#O o#", +"#oXO #", +"#oX##o +", +"#oX####o O", +"#oX######o #", +"#oo########O#", +"#oX##########", +"#oX##########", +"#oo##########", +"#oX##########", +"#@+##########" +}; diff --git a/data/pixmaps/feta/10/clefs-medicaea_do_change.xpm b/data/pixmaps/feta/10/clefs-medicaea_do_change.xpm new file mode 100644 index 0000000..918b9b8 --- /dev/null +++ b/data/pixmaps/feta/10/clefs-medicaea_do_change.xpm @@ -0,0 +1,39 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 25 8 1", +" c #060606", +". c Gray15", +"X c Gray36", +"o c #747474", +"O c #888888", +"+ c #b9b9b9", +"@ c Gray76", +"# c None", +/* pixels */ +"###########", +"#@+########", +"#oX########", +"#oo########", +"#O.########", +"#O o######", +"#O O####", +"#O o##", +"#O.. #", +"#oX#o #", +"#oX###o @", +"#oX#####o.#", +"#oo########", +"#oX########", +"#O O#######", +"#O o#####", +"#O O###", +"#O o#", +"#oXO #", +"#oo##o +", +"#oX####o #", +"#oo######O#", +"#oo########", +"#oo########", +"#@+########" +}; diff --git a/data/pixmaps/feta/10/clefs-medicaea_fa.xpm b/data/pixmaps/feta/10/clefs-medicaea_fa.xpm new file mode 100644 index 0000000..695f8f2 --- /dev/null +++ b/data/pixmaps/feta/10/clefs-medicaea_fa.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"19 31 8 1", +" c Gray2", +". c Gray22", +"X c Gray29", +"o c #6f6f6f", +"O c Gray55", +"+ c #aaaaaa", +"@ c #d7d7d7", +"# c None", +/* pixels */ +"###################", +"########+@#########", +"########.+#########", +"########.+#########", +"########.+#########", +"########.+#########", +"########.+#########", +"########X o@#######", +"########X o@#####", +"########X o@###", +"###@####X o##", +"#+ .##X @", +"#O .##.++ O", +"#O @#.+##O. o", +"#o +#.+####O O", +"#O +#.+######O.@", +"#O +#.X@########", +"#O +#X o@######", +"#O +#X o@####", +"#O +#X o@##", +"##OoO +#X o#", +"#####XO#.X. +", +"#####XO#.+#O. O", +"#####XO#.+###O O", +"#####XO#.+#####O +", +"#####XO#.+#######O#", +"#####XO#.+#########", +"#####XO#.+#########", +"#####XO#.+#########", +"#####XO#.+#########", +"#####+@#+@#########" +}; diff --git a/data/pixmaps/feta/10/clefs-medicaea_fa_change.xpm b/data/pixmaps/feta/10/clefs-medicaea_fa_change.xpm new file mode 100644 index 0000000..5671899 --- /dev/null +++ b/data/pixmaps/feta/10/clefs-medicaea_fa_change.xpm @@ -0,0 +1,39 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"16 25 8 1", +" c #040404", +". c Gray21", +"X c Gray29", +"o c Gray45", +"O c Gray56", +"+ c #aaaaaa", +"@ c Gray81", +"# c None", +/* pixels */ +"################", +"#######+@#######", +"#######.+#######", +"#######X+#######", +"#######.O#######", +"#######X X@#####", +"#######X X@###", +"#######X X@#", +"##@@@##X #", +"#+ +#.+@X O", +"#O O#.+##@X O", +"#O +#.+####+X#", +"#O +#.+#######", +"#o +#.+#######", +"#o O#X +######", +"#+ +#X .O####", +"##@@.O#X .+##", +"####XO#X .#", +"####XO#.OO +", +"####XO#.+#@o O", +"####XO#.+###@o @", +"####XO#.+#######", +"####XO#.+#######", +"####XO#.+#######", +"####+@##########" +}; diff --git a/data/pixmaps/feta/10/clefs-mensural1_c.xpm b/data/pixmaps/feta/10/clefs-mensural1_c.xpm new file mode 100644 index 0000000..9307998 --- /dev/null +++ b/data/pixmaps/feta/10/clefs-mensural1_c.xpm @@ -0,0 +1,52 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"27 40 6 1", +" c Gray1", +". c Gray50", +"X c Gray52", +"o c #b4b4b4", +"O c #c6c6c6", +"+ c None", +/* pixels */ +"+++++++++++++++++++++++++++", +"+OX+OX++++++++++++++++XO+XO", +"+X +. ++++++++++++++++ .+ X", +"+X +X ++++++++++++++++ .+ X", +"+X +. ++++++++++++++++ .+ X", +"+X +. ++++++++++++++++ .+ X", +"+X +. ++++++++++++++++ .+ X", +"+X +. ++++++++++++++++ .+ X", +"+X +. ++++++++++++++++ .+ X", +"+X +. ++++++++++++++++ .+ X", +"+X +. ++++++++++++++++ .+ X", +"+X +. ++++++++++++++++ .+ X", +"+X +X ++++++++++++++++ .+ X", +"+X +. ++++++++++++++++ .+ X", +"+X +. ++++++++++++++++ X+ X", +"+X +X X+ X", +"+X +X X+ X", +"+X +X X+ X", +"+X +X X+ X", +"+X +X o++++++++++++++o X+ X", +"+X +X ++++++++++++++++ .+ X", +"+X +X o++++++++++++++o X+ X", +"+X +X X+ X", +"+X +X X+ X", +"+X +X X+ X", +"+X +X X+ X", +"+X +. ++++++++++++++++ .+ X", +"+X +. ++++++++++++++++ .+ X", +"+X +. ++++++++++++++++ .+ X", +"+X +. ++++++++++++++++ .+ X", +"+X +. ++++++++++++++++ .+ X", +"+X +. ++++++++++++++++ .+ X", +"+X +. ++++++++++++++++ .+ X", +"+X +. ++++++++++++++++ .+ X", +"+X +. ++++++++++++++++ .+ X", +"+X +. ++++++++++++++++ .+ X", +"+X +. ++++++++++++++++ .+ X", +"+X +X ++++++++++++++++ X+ X", +"+X +. ++++++++++++++++ .+ X", +"+OX+OX++++++++++++++++XO+XO" +}; diff --git a/data/pixmaps/feta/10/clefs-mensural1_c_change.xpm b/data/pixmaps/feta/10/clefs-mensural1_c_change.xpm new file mode 100644 index 0000000..a0a4e02 --- /dev/null +++ b/data/pixmaps/feta/10/clefs-mensural1_c_change.xpm @@ -0,0 +1,46 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"21 32 8 1", +" c #010101", +". c #313131", +"X c #4c4c4c", +"o c Gray45", +"O c #888888", +"+ c Gray69", +"@ c #c8c8c8", +"# c None", +/* pixels */ +"#####################", +"#+@@@############@+@+", +"#oOoO############OoOo", +"#oOoO############OoOo", +"#oOoo############OoOo", +"#oOoO############OoOo", +"#oOoo############OoOo", +"#oOoO############ooOo", +"#oOoO############ooOo", +"#oOoO############OoOo", +"#oOoo############OoOX", +"#oOoo############ooOo", +"#oOO OOoOo++ooOoO OOo", +"#oOO XX OOo", +"#oOO XX OOo", +"#oOo.Ooooo++ooooO.oOo", +"#oOoO############OoOo", +"#oOo.Ooooo++ooooO.oOo", +"#oOO XX OOo", +"#oOO XX OOo", +"#oOo OoOOo++oooOO OOo", +"#oOoo############ooOo", +"#oOoo############ooOo", +"#oOoo############OoOo", +"#oOoO############ooOo", +"#oOoO############OoOX", +"#oOoo############OoOo", +"#oOoO############ooOo", +"#oOoO############OoOo", +"#oOoo############OoOo", +"#oOoO############OoOo", +"#+@+@############@@@+" +}; diff --git a/data/pixmaps/feta/10/clefs-mensural1_f.xpm b/data/pixmaps/feta/10/clefs-mensural1_f.xpm new file mode 100644 index 0000000..93f8999 --- /dev/null +++ b/data/pixmaps/feta/10/clefs-mensural1_f.xpm @@ -0,0 +1,70 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"22 56 8 1", +" c Gray1", +". c Gray19", +"X c Gray32", +"o c #717171", +"O c #8e8e8e", +"+ c #b1b1b1", +"@ c #cdcdcd", +"# c None", +/* pixels */ +"######################", +"################+O####", +"###############+ o###", +"###############X +##", +"##############+ X##", +"#+o######+o###.X@ +#", +"#O ######o ##o +#X .#", +"#O oooooo. ## ##+ @", +"#O #o +##X X#", +"#O #X @#o @#", +"#O #@ O+ O##", +"#O X+OOOO ##O .###", +"#O ######O ###. .###", +"#O @#####o ###+ O##", +"#O .oXXXX ###o . @#", +"#O ##+ O@ o#", +"#O ##. ##O +", +"#O #+ @##. .#", +"#O ++++++X #X .##o O#", +"#O ######o #O +#.X##", +"#@+######O ##X .X @##", +"#########o ##@ X###", +"#########o ###o .@###", +"#########o ####. O####", +"#########o ####oX#####", +"#########O ####oo#####", +"#########o ####oo#####", +"#########o ####oo#####", +"#########o ####oo#####", +"#########o ####oX#####", +"#########o ####oo#####", +"#########o ####oo#####", +"#########o ####oo#####", +"#########o ####Xo#####", +"#########O ####oo#####", +"#########o ####oo#####", +"#########o ####oo#####", +"#########o ####oo#####", +"#########o ####oo#####", +"#########O ####oo#####", +"#########o ####oo#####", +"#########o ####oo#####", +"#########O ####oo#####", +"#########o ####Xo#####", +"#########o ####oo#####", +"#########o ####oo#####", +"#########o ####oo#####", +"#########O ####oo#####", +"#########O ####oo#####", +"#########o ####Xo#####", +"#########+o####oo#####", +"###############oo#####", +"###############oo#####", +"###############oo#####", +"###############oo#####", +"###############++#####" +}; diff --git a/data/pixmaps/feta/10/clefs-mensural1_f_change.xpm b/data/pixmaps/feta/10/clefs-mensural1_f_change.xpm new file mode 100644 index 0000000..3c1f498 --- /dev/null +++ b/data/pixmaps/feta/10/clefs-mensural1_f_change.xpm @@ -0,0 +1,60 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"18 46 8 1", +" c #0b0b0b", +". c #2d2d2d", +"X c #4c4c4c", +"o c #6d6d6d", +"O c #8d8d8d", +"+ c Gray70", +"@ c #d0d0d0", +"# c None", +/* pixels */ +"##################", +"##############+###", +"#############X ###", +"############o o##", +"###########@.X ##", +"###########..# X#", +"#oo##### #+ +#O @", +"#O.#@@#O #X O##..#", +"#O #o #+ +#", +"#O ## ..X##", +"#o .... ##O @##", +"#oo####@ ###X .###", +"#oX#@@@@ ###o +##", +"#O ###. .##", +"#O ##O.@ O#", +"#O .... #@ O#X @", +"#oX####@ #o +#@. @", +"#OO##### #X .##.O#", +"########.#@ Oo ##", +"#######@ ##X O##", +"######## @#@. o###", +"########.###o @###", +"######## ###oo####", +"######## ###oo####", +"######## ###oo####", +"########.@##oo####", +"########.###oo####", +"#######@ ###oo####", +"######## ###oo####", +"######## ###oo####", +"######## ###oo####", +"#######@ ###oo####", +"######## ###oo####", +"######## ###oo####", +"#######@ ###oo####", +"######## ###oo####", +"######## ###oo####", +"#######@ ###oo####", +"########.###oo####", +"######## ###oo####", +"######## ###oo####", +"######## ###oo####", +"############oo####", +"############oo####", +"############oo####", +"############++####" +}; diff --git a/data/pixmaps/feta/10/clefs-mensural2_c.xpm b/data/pixmaps/feta/10/clefs-mensural2_c.xpm new file mode 100644 index 0000000..990c815 --- /dev/null +++ b/data/pixmaps/feta/10/clefs-mensural2_c.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 40 5 1", +" c Gray3", +". c Gray48", +"X c #868686", +"o c #c0c0c0", +"O c None", +/* pixels */ +"OOOOOOOOOOO", +"OoXOOOOOOXo", +"O. OOOOOO .", +"O. OOOOOO .", +"O. OOOOOO .", +"O. OOOOOO .", +"O. OOOOOO .", +"O. OOOOOO .", +"O. OOOOOO .", +"O. OOOOOO .", +"O. OOOOOO .", +"O. OOOOOO .", +"O. .", +"O. .", +"O. X.X.X. .", +"O. OOOOOO .", +"O. OOOOOO .", +"O. .", +"O. .", +"O. ...... .", +"O. OOOOOO .", +"O. X..... .", +"O. .", +"O. .", +"O. OOOOoO .", +"O. OOOOOO .", +"O. X....X .", +"O. .", +"O. .", +"O. OOOOOO .", +"O. OOOOOO .", +"O. OOOOOO .", +"O. OOOOOO .", +"O. OOOOOO .", +"O. OOOOOO .", +"O. OOOOOO .", +"O. OOOOOO .", +"O. OOOOOO .", +"O. OOOOOO .", +"OoXOOOOOOXo" +}; diff --git a/data/pixmaps/feta/10/clefs-mensural2_c_change.xpm b/data/pixmaps/feta/10/clefs-mensural2_c_change.xpm new file mode 100644 index 0000000..3d81fce --- /dev/null +++ b/data/pixmaps/feta/10/clefs-mensural2_c_change.xpm @@ -0,0 +1,47 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 34 7 1", +" c #060606", +". c #282828", +"X c Gray44", +"o c #888888", +"O c #b9b9b9", +"+ c #c0c0c0", +"@ c None", +/* pixels */ +"@@@@@@@@@@", +"@+O@@@@@OO", +"@XX@@@@@XX", +"@XX@@@@@XX", +"@XX@@@@@XX", +"@XX@@@@@XX", +"@XX@@@@@XX", +"@XX@@@@@XX", +"@XX@@@@@XX", +"@o X", +"@o o", +"@XX@@@@@XX", +"@XX@@@@@XX", +"@XX@@@@@XX", +"@o.oXooo.X", +"@o o", +"@o.oXooo.X", +"@XX@@@@@XX", +"@o.ooXXo.o", +"@o o", +"@o.oXXXo.X", +"@XX@@@@@XX", +"@XX@@@@@XX", +"@XX@@@@@XX", +"@o o", +"@o . o", +"@XX@@@@@XX", +"@XX@@@@@XX", +"@XX@@@@@XX", +"@XX@@@@@XX", +"@XX@@@@@XX", +"@XX@@@@@XX", +"@XX@@@@@XX", +"@OO@@@@@O+" +}; diff --git a/data/pixmaps/feta/10/clefs-mensural2_f.xpm b/data/pixmaps/feta/10/clefs-mensural2_f.xpm new file mode 100644 index 0000000..b2c015c --- /dev/null +++ b/data/pixmaps/feta/10/clefs-mensural2_f.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"15 16 8 1", +" c Gray2", +". c #343434", +"X c #4c4c4c", +"o c #6f6f6f", +"O c #8d8d8d", +"+ c #afafaf", +"@ c #d0d0d0", +"# c None", +/* pixels */ +"###############", +"###OO@#####@+##", +"##. X@##o +#", +"#+ @#. +", +"###+. X#@ +", +"#####O @#@ o#", +"######X X#####", +"######@ X#####", +"#######X X#####", +"#######X O#####", +"#######. ######", +"######@ O#@X.##", +"#####+..@#. .#", +"##+ @##o O", +"#@ O#####o @", +"#@o@########O##" +}; diff --git a/data/pixmaps/feta/10/clefs-mensural2_f_change.xpm b/data/pixmaps/feta/10/clefs-mensural2_f_change.xpm new file mode 100644 index 0000000..87dd7fb --- /dev/null +++ b/data/pixmaps/feta/10/clefs-mensural2_f_change.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"15 15 8 1", +" c #040404", +". c #3c3c3c", +"X c #484848", +"o c Gray47", +"O c #888888", +"+ c Gray72", +"@ c #c3c3c3", +"# c None", +/* pixels */ +"###############", +"##@OO######O+##", +"#+ X###. +#", +"#+oX X##o @", +"#####X +##+ X#", +"######X X######", +"######+ ######", +"####### ######", +"####### ######", +"####### X######", +"######+ +######", +"######.X##+ X##", +"##+oo X### X#", +"#+ o#####X @", +"#@o@########O+#" +}; diff --git a/data/pixmaps/feta/10/clefs-mensural3_c.xpm b/data/pixmaps/feta/10/clefs-mensural3_c.xpm new file mode 100644 index 0000000..54696cf --- /dev/null +++ b/data/pixmaps/feta/10/clefs-mensural3_c.xpm @@ -0,0 +1,62 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 49 7 1", +" c #040404", +". c #464646", +"X c #797979", +"o c #8b8b8b", +"O c Gray68", +"+ c #d5d5d5", +"@ c None", +/* pixels */ +"@@@@@@@@@@@", +"@Oo@@@@@@o+", +"@X @@@@@@ X", +"@X @@@@@@ X", +"@X @@@@@@ X", +"@X @@@@@@ X", +"@X @@@@@@ X", +"@X @@@@@@ X", +"@X @@@@@@ X", +"@X @@@@@@ X", +"@X @@@@@@ X", +"@X ++++++ X", +"@o X", +"@X X", +"@X OOOoOO X", +"@X @@@@@@ X", +"@X ++++++ X", +"@X X", +"@X X", +"@X OOOOOO X", +"@X @@@@@@ X", +"@X ...... X", +"@X o", +"@X ...... X", +"@X @@@@@@ X", +"@X @@@@@@ X", +"@X ...... X", +"@X X", +"@X ...... X", +"@X @@@@@@ X", +"@X OOOOOO X", +"@X X", +"@X X", +"@X ++++++ X", +"@X @@@@@@ X", +"@X OOOOOO X", +"@X X", +"@X X", +"@X ++++++ X", +"@X @@@@@@ X", +"@X @@@@@@ X", +"@X @@@@@@ X", +"@X @@@@@@ X", +"@X @@@@@@ X", +"@X @@@@@@ X", +"@X @@@@@@ X", +"@X @@@@@@ X", +"@X @@@@@@ X", +"@+o@@@@@@oO" +}; diff --git a/data/pixmaps/feta/10/clefs-mensural3_c_change.xpm b/data/pixmaps/feta/10/clefs-mensural3_c_change.xpm new file mode 100644 index 0000000..2f7eac5 --- /dev/null +++ b/data/pixmaps/feta/10/clefs-mensural3_c_change.xpm @@ -0,0 +1,57 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 43 8 1", +" c #060606", +". c Gray15", +"X c Gray33", +"o c #6f6f6f", +"O c Gray52", +"+ c Gray71", +"@ c #cdcdcd", +"# c None", +/* pixels */ +"#########", +"#+@####@+", +"#oO####Oo", +"#oO####Oo", +"#oO####Oo", +"#oO####Oo", +"#oO####Oo", +"#oO####Oo", +"#oo#@@#oo", +"#o o", +"#o .... o", +"#oO####Oo", +"#oO####Oo", +"#oO####Oo", +"#o.oXXX.o", +"#o O", +"#oX@++@Xo", +"#oO####Oo", +"#o XX.X.o", +"#o O", +"#oX@++@Xo", +"#oO####Oo", +"#oO####Oo", +"#oX@++@Xo", +"#o o", +"#o XXXX o", +"#oO####Oo", +"#oX@++@Xo", +"#o o", +"#o.oXXX.o", +"#oO####Oo", +"#oo####Oo", +"#oO####Oo", +"#o .... o", +"#o o", +"#oo#@@#oo", +"#oO####Oo", +"#oO####Oo", +"#oO####Oo", +"#oO####Oo", +"#oO####Oo", +"#oO####Oo", +"#+@####@+" +}; diff --git a/data/pixmaps/feta/10/clefs-mensural_g.xpm b/data/pixmaps/feta/10/clefs-mensural_g.xpm new file mode 100644 index 0000000..035b021 --- /dev/null +++ b/data/pixmaps/feta/10/clefs-mensural_g.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 24 8 1", +" c #040404", +". c Gray20", +"X c #4c4c4c", +"o c #6c6c6c", +"O c #8e8e8e", +"+ c #a9a9a9", +"@ c #d3d3d3", +"# c None", +/* pixels */ +"#############", +"#######@o+###", +"#######. @##", +"######@ @##", +"######+ .####", +"####### .O@##", +"#######O +#", +"########o #", +"#####@O###+ O", +"####O .@#o o", +"###+ X O", +"##@ @", +"##o O..+. +#", +"## @#X o@##", +"#+ @##X .##", +"#o ###X +#", +"#o ###X OO o#", +"#O @##..##OX#", +"## X##..##OX#", +"##. @#..##OO#", +"##+ #..##o@#", +"###O .O X##", +"####+. .###", +"######+OO@###" +}; diff --git a/data/pixmaps/feta/10/clefs-mensural_g_change.xpm b/data/pixmaps/feta/10/clefs-mensural_g_change.xpm new file mode 100644 index 0000000..a04f33f --- /dev/null +++ b/data/pixmaps/feta/10/clefs-mensural_g_change.xpm @@ -0,0 +1,34 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 20 8 1", +" c #040404", +". c Gray17", +"X c #505050", +"o c #717171", +"O c #8e8e8e", +"+ c #acacac", +"@ c #cdcdcd", +"# c None", +/* pixels */ +"###########", +"######O+###", +"#####+ @##", +"#####X o##", +"#####O .+##", +"######. O#", +"######@. #", +"####O +#X O", +"###O o", +"##+ . #", +"##. X OoO+#", +"#@ @@ +##", +"#O #@ O#", +"#o #@ .O o#", +"#O @@ +#OX#", +"## o@ @#OX#", +"##o X +#o@#", +"###. .##", +"####+. O##", +"######@+###" +}; diff --git a/data/pixmaps/feta/10/clefs-percussion.xpm b/data/pixmaps/feta/10/clefs-percussion.xpm new file mode 100644 index 0000000..6126978 --- /dev/null +++ b/data/pixmaps/feta/10/clefs-percussion.xpm @@ -0,0 +1,34 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 21 7 1", +" c Gray1", +". c #323232", +"X c Gray49", +"o c Gray51", +"O c #a0a0a0", +"+ c #c5c5c5", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@", +"@+oooO@@@OooX+", +"@o .@@@. o", +"@o .@@@. o", +"@o .@@@. o", +"@o .@@@. o", +"@o .@@@. o", +"@o .@@@. o", +"@o .@@@. o", +"@o .@@@. o", +"@o .@@@. o", +"@o .@@@. o", +"@o .@@@. o", +"@o .@@@. X", +"@o .@@@. o", +"@o .@@@. o", +"@o .@@@. o", +"@o .@@@. o", +"@o .@@@. o", +"@o .@@@. o", +"@+XooO@@@OooX+" +}; diff --git a/data/pixmaps/feta/10/clefs-percussion_change.xpm b/data/pixmaps/feta/10/clefs-percussion_change.xpm new file mode 100644 index 0000000..73d2cad --- /dev/null +++ b/data/pixmaps/feta/10/clefs-percussion_change.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 17 5 1", +" c Gray2", +". c Gray49", +"X c Gray54", +"o c #c8c8c8", +"O c None", +/* pixels */ +"OOOOOOOOOOOO", +"OoXXXOOOXXXo", +"OX OOO X", +"OX OOO X", +"OX OOO X", +"OX OOO X", +"OX OOO X", +"OX OOO X", +"OX OOO X", +"OX OOO X", +"OX OOO X", +"OX OOO X", +"OX OOO X", +"OX OOO X", +"OX OOO X", +"OX OOO X", +"Oo.XXOOOXXXo" +}; diff --git a/data/pixmaps/feta/10/clefs-tab.xpm b/data/pixmaps/feta/10/clefs-tab.xpm new file mode 100644 index 0000000..8d56653 --- /dev/null +++ b/data/pixmaps/feta/10/clefs-tab.xpm @@ -0,0 +1,61 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"17 47 8 1", +" c #040404", +". c #2c2c2c", +"X c Gray29", +"o c #777777", +"O c #8b8b8b", +"+ c #aaaaaa", +"@ c Gray81", +"# c None", +/* pixels */ +"#################", +"#@oOOOOOOOOOOOOo@", +"#O O", +"#O .. . . .. O", +"#######o o######", +"#######o o######", +"#######o o######", +"#######o o######", +"#######O o######", +"#######o o######", +"#######o O######", +"#######o o######", +"#######O o######", +"#######o O######", +"#######O o######", +"#######@+O@######", +"#################", +"#######OXXO######", +"####### ######", +"######+ +#####", +"######. .#####", +"#####+ oo +####", +"#####. ++ .####", +"####@ .##. @###", +"####o +##+ o###", +"###@ .X.X @##", +"###o o##", +"###. XXXXXX .##", +"##O o######o O#", +"##. @######@ .#", +"#@ .########. @", +"#@@@##########@@@", +"#################", +"#+ ........o@####", +"#O o###", +"#O .oXXoXX @##", +"#O o######o o##", +"#O o######X o##", +"#O ...... @##", +"#O X@#", +"#O .oooooo. #", +"#O o#######@X O", +"#O o########O O", +"#O o######+o +", +"#O . . . X#", +"#O .+##", +"#@oOOOOOOOOO#####" +}; diff --git a/data/pixmaps/feta/10/clefs-tab_change.xpm b/data/pixmaps/feta/10/clefs-tab_change.xpm new file mode 100644 index 0000000..a648339 --- /dev/null +++ b/data/pixmaps/feta/10/clefs-tab_change.xpm @@ -0,0 +1,52 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 38 8 1", +" c #060606", +". c #343434", +"X c #484848", +"o c Gray48", +"O c Gray53", +"+ c #b9b9b9", +"@ c #c6c6c6", +"# c None", +/* pixels */ +"##############", +"#@OOOOOOOOOOO#", +"#O #", +"#@oOOo XOoOO#", +"###### O#####", +"###### o#####", +"###### O#####", +"###### O#####", +"###### O#####", +"###### o#####", +"###### O#####", +"###### O#####", +"######Oo+#####", +"##############", +"#####+ X#####", +"#####o #####", +"##### O####", +"####o .o ####", +"#### o# O###", +"###+ ##o X###", +"###X oOX +##", +"##+ X##", +"##o XOOOOo ##", +"## O##### o#", +"#O ######o #", +"##############", +"#@oOoOOoO#####", +"#O X###", +"#O ooooo O##", +"#O #####o ##", +"#O oooOo O##", +"#O .@#", +"#O oOOOOo #", +"#O ####### O", +"#O ####### O", +"#O oOOOOo #", +"#O .@#", +"#@OOOOOOOO####" +}; diff --git a/data/pixmaps/feta/10/clefs-vaticana_do.xpm b/data/pixmaps/feta/10/clefs-vaticana_do.xpm new file mode 100644 index 0000000..80d1ff8 --- /dev/null +++ b/data/pixmaps/feta/10/clefs-vaticana_do.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 17 6 1", +" c #040404", +". c #464646", +"X c #6d6d6d", +"o c Gray54", +"O c #b6b6b6", +"+ c None", +/* pixels */ +"+++++++", +"+++ooo+", +"++. o", +"+O o", +"+o o", +"+o o", +"+o o", +"+o O+OO", +"+XX++++", +"+XX++++", +"+o O+OO", +"+o o", +"+o o", +"+o o", +"+O o", +"++. o", +"+++ooo+" +}; diff --git a/data/pixmaps/feta/10/clefs-vaticana_do_change.xpm b/data/pixmaps/feta/10/clefs-vaticana_do_change.xpm new file mode 100644 index 0000000..80d1ff8 --- /dev/null +++ b/data/pixmaps/feta/10/clefs-vaticana_do_change.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 17 6 1", +" c #040404", +". c #464646", +"X c #6d6d6d", +"o c Gray54", +"O c #b6b6b6", +"+ c None", +/* pixels */ +"+++++++", +"+++ooo+", +"++. o", +"+O o", +"+o o", +"+o o", +"+o o", +"+o O+OO", +"+XX++++", +"+XX++++", +"+o O+OO", +"+o o", +"+o o", +"+o o", +"+O o", +"++. o", +"+++ooo+" +}; diff --git a/data/pixmaps/feta/10/clefs-vaticana_fa.xpm b/data/pixmaps/feta/10/clefs-vaticana_fa.xpm new file mode 100644 index 0000000..57bda0c --- /dev/null +++ b/data/pixmaps/feta/10/clefs-vaticana_fa.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 24 8 1", +" c #040404", +". c Gray15", +"X c #484848", +"o c #6f6f6f", +"O c Gray54", +"+ c Gray73", +"@ c Gray78", +"# c None", +/* pixels */ +"############", +"########Oo+#", +"#######X #", +"######+ @", +"######O O", +"######o O", +"##X @O #", +"#O .o +#O#", +"#O ..o####", +"#O o####", +"#O +#O#", +"##+##X #", +"#####O O", +"#####o O", +"#####o. +", +"#####ooo #", +"#####oo#Oo+#", +"#####oo#####", +"#####oo#####", +"#####oo#####", +"#####oo#####", +"#####oo#####", +"#####oo#####", +"#####++#####" +}; diff --git a/data/pixmaps/feta/10/clefs-vaticana_fa_change.xpm b/data/pixmaps/feta/10/clefs-vaticana_fa_change.xpm new file mode 100644 index 0000000..57bda0c --- /dev/null +++ b/data/pixmaps/feta/10/clefs-vaticana_fa_change.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 24 8 1", +" c #040404", +". c Gray15", +"X c #484848", +"o c #6f6f6f", +"O c Gray54", +"+ c Gray73", +"@ c Gray78", +"# c None", +/* pixels */ +"############", +"########Oo+#", +"#######X #", +"######+ @", +"######O O", +"######o O", +"##X @O #", +"#O .o +#O#", +"#O ..o####", +"#O o####", +"#O +#O#", +"##+##X #", +"#####O O", +"#####o O", +"#####o. +", +"#####ooo #", +"#####oo#Oo+#", +"#####oo#####", +"#####oo#####", +"#####oo#####", +"#####oo#####", +"#####oo#####", +"#####oo#####", +"#####++#####" +}; diff --git a/data/pixmaps/feta/10/custodes-hufnagel.xpm b/data/pixmaps/feta/10/custodes-hufnagel.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/10/custodes-medicaea.xpm b/data/pixmaps/feta/10/custodes-medicaea.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/10/custodes-mensural.xpm b/data/pixmaps/feta/10/custodes-mensural.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/10/custodes-rhufnagel.xpm b/data/pixmaps/feta/10/custodes-rhufnagel.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/10/custodes-rmedicaea.xpm b/data/pixmaps/feta/10/custodes-rmedicaea.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/10/custodes-rmensural.xpm b/data/pixmaps/feta/10/custodes-rmensural.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/10/custodes-rvaticana.xpm b/data/pixmaps/feta/10/custodes-rvaticana.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/10/custodes-vaticana.xpm b/data/pixmaps/feta/10/custodes-vaticana.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/10/dots-dot.xpm b/data/pixmaps/feta/10/dots-dot.xpm new file mode 100644 index 0000000..3ff822b --- /dev/null +++ b/data/pixmaps/feta/10/dots-dot.xpm @@ -0,0 +1,18 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 6 6 1", +" c #020202", +". c #797979", +"X c #818181", +"o c Gray68", +"O c Gray85", +"+ c None", +/* pixels */ +"++++++", +"++o.o+", +"+o O", +"+. X", +"+o O", +"++o.o+" +}; diff --git a/data/pixmaps/feta/10/dots-evenrepeatcolon.xpm b/data/pixmaps/feta/10/dots-evenrepeatcolon.xpm new file mode 100644 index 0000000..eea9924 --- /dev/null +++ b/data/pixmaps/feta/10/dots-evenrepeatcolon.xpm @@ -0,0 +1,37 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 25 6 1", +" c #020202", +". c Gray46", +"X c #818181", +"o c Gray67", +"O c #dadada", +"+ c None", +/* pixels */ +"++++++", +"++o.o+", +"+o O", +"+. .", +"+o O", +"++o.o+", +"++++++", +"++++++", +"++++++", +"++++++", +"++++++", +"++++++", +"++++++", +"++++++", +"++++++", +"++++++", +"++++++", +"++++++", +"++++++", +"++++++", +"++o.o+", +"+o O", +"+. .", +"+o O", +"++o.o+" +}; diff --git a/data/pixmaps/feta/10/dots-repeatcolon.xpm b/data/pixmaps/feta/10/dots-repeatcolon.xpm new file mode 100644 index 0000000..6e97b1a --- /dev/null +++ b/data/pixmaps/feta/10/dots-repeatcolon.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 16 7 1", +" c #020202", +". c Gray17", +"X c #6f6f6f", +"o c #888888", +"O c Gray68", +"+ c #dadada", +"@ c None", +/* pixels */ +"@@@@@@", +"@@+o+@", +"@+ .@", +"@X O", +"@O +", +"@@X o@", +"@@@@@@", +"@@@@@@", +"@@@@@@", +"@@@@@@", +"@@@@@@", +"@@X o@", +"@O +", +"@X O", +"@+ .@", +"@@+o+@" +}; diff --git a/data/pixmaps/feta/10/flags-d3.xpm b/data/pixmaps/feta/10/flags-d3.xpm new file mode 100644 index 0000000..43a53ad --- /dev/null +++ b/data/pixmaps/feta/10/flags-d3.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 30 8 1", +" c #060606", +". c #2a2a2a", +"X c Gray32", +"o c Gray46", +"O c #8d8d8d", +"+ c #b2b2b2", +"@ c Gray83", +"# c None", +/* pixels */ +"#############", +"#########O@##", +"#########XX##", +"#########+.##", +"##########.O#", +"##########XX#", +"##########O #", +"########### +", +"########### o", +"#++######## o", +"#oo######## o", +"#oo#######O +", +"#oo#######. #", +"#oo######+ o#", +"#oo#####@ @#", +"#oo####@. O##", +"#oo###@. .###", +"#oo##O .####", +"#oo#. .@####", +"#o.. O#####", +"#O o######", +"#o o#######", +"#o .########", +"#O @########", +"#O X#########", +"#o @#########", +"#o ##########", +"#oo##########", +"#oo##########", +"#+@##########" +}; diff --git a/data/pixmaps/feta/10/flags-d4.xpm b/data/pixmaps/feta/10/flags-d4.xpm new file mode 100644 index 0000000..6fc1682 --- /dev/null +++ b/data/pixmaps/feta/10/flags-d4.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 31 8 1", +" c #040404", +". c Gray19", +"X c #4b4b4b", +"o c #747474", +"O c #898989", +"+ c #b1b1b1", +"@ c #cacaca", +"# c None", +/* pixels */ +"#############", +"##########@o#", +"##########O #", +"########### o", +"########### o", +"########### o", +"########### O", +"##########O #", +"#########@ o#", +"#########X @#", +"#@######X O#", +"#oo###@. @oX#", +"#oo#@o +#O #", +"#ooO +##+ #", +"#o +###o #", +"#O +#### .#", +"#O +####@ @#", +"#O X#####.X##", +"#o +####. @##", +"#o.###@. @###", +"#oo##+ @####", +"#oO#X @#####", +"#o @######", +"#o o#######", +"#o X########", +"#O .#########", +"#O O#########", +"#o ##########", +"#oo##########", +"#oo##########", +"#+@##########" +}; diff --git a/data/pixmaps/feta/10/flags-d5.xpm b/data/pixmaps/feta/10/flags-d5.xpm new file mode 100644 index 0000000..1654d9c --- /dev/null +++ b/data/pixmaps/feta/10/flags-d5.xpm @@ -0,0 +1,53 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 39 8 1", +" c Gray2", +". c Gray20", +"X c #4e4e4e", +"o c #747474", +"O c #898989", +"+ c #aeaeae", +"@ c #cbcbcb", +"# c None", +/* pixels */ +"#############", +"##########@o#", +"##########+ #", +"########### o", +"########### o", +"########### o", +"##########@ O", +"##########X #", +"#########+ o#", +"########@ @#", +"#######o XO#", +"#####+X @+X#", +"###@X +##.@", +"##O .####.@", +"##o .##### #", +"##o .#####o.#", +"##o ###### +#", +"##Xo#####..##", +"##X@###@X ##", +"#oX###+ @oo#", +"#oo#+. +#OX#", +"#oXX +##OX#", +"#O +###oo#", +"#o +####.@#", +"#O +####oX##", +"#o X####O @##", +"#O +###+ o###", +"#o.###O o####", +"#oo#@. .#####", +"#oo+ @#####", +"#o @######", +"#O @#######", +"#O O########", +"#O X#########", +"#o @#########", +"#o ##########", +"#oo##########", +"#oo##########", +"#+@##########" +}; diff --git a/data/pixmaps/feta/10/flags-d6.xpm b/data/pixmaps/feta/10/flags-d6.xpm new file mode 100644 index 0000000..682cc7c --- /dev/null +++ b/data/pixmaps/feta/10/flags-d6.xpm @@ -0,0 +1,58 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 44 8 1", +" c #060606", +". c Gray20", +"X c Gray31", +"o c #717171", +"O c Gray55", +"+ c Gray69", +"@ c #cecece", +"# c None", +/* pixels */ +"#############", +"###########O#", +"########### +", +"########### o", +"########### O", +"##########@ O", +"##########X #", +"#########o X#", +"######@O X.@", +"###@OX X# #", +"##o +##.@", +"##o .#### @", +"##o o####X.#", +"##o O#####.+#", +"##XX#####X O#", +"##o@####.XOX#", +"##@###+ @OX#", +"####+. X@#OX#", +"##O. X###oo#", +"##o .#### +#", +"##o .####O @#", +"##X #####. @#", +"##Xo####X @#", +"##X@###X O ##", +"#oX##@X @+ @#", +"#oO#+ +#+ @#", +"#oXo +##X ##", +"#O X### X##", +"#o X###X @##", +"#o @##+ o###", +"#O O### ####", +"#o ###X +####", +"#o.##. o#####", +"#oo#X .######", +"#ooo @######", +"#O +#######", +"#O X########", +"#o @########", +"#O O#########", +"#o ##########", +"#o ##########", +"#oo##########", +"#oo##########", +"#+@##########" +}; diff --git a/data/pixmaps/feta/10/flags-dgrace.xpm b/data/pixmaps/feta/10/flags-dgrace.xpm new file mode 100644 index 0000000..d06508b --- /dev/null +++ b/data/pixmaps/feta/10/flags-dgrace.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"23 13 8 1", +" c #060606", +". c Gray13", +"X c #5b5b5b", +"o c #6d6d6d", +"O c Gray56", +"+ c #b6b6b6", +"@ c Gray85", +"# c None", +/* pixels */ +"#######################", +"#+O####################", +"#+ O##################", +"###o O################", +"####@o O##############", +"######@o .O############", +"########@X X@#########", +"##########@O. X@#######", +"#############O. o@#####", +"###############O o####", +"#################O o@#", +"###################O +", +"#####################O+" +}; diff --git a/data/pixmaps/feta/10/flags-dstem.xpm b/data/pixmaps/feta/10/flags-dstem.xpm new file mode 100644 index 0000000..e125c54 --- /dev/null +++ b/data/pixmaps/feta/10/flags-dstem.xpm @@ -0,0 +1,43 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"3 34 3 1", +" c Gray45", +". c #bebebe", +"X c None", +/* pixels */ +"XXX", +"X..", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X.." +}; diff --git a/data/pixmaps/feta/10/flags-stem.xpm b/data/pixmaps/feta/10/flags-stem.xpm new file mode 100644 index 0000000..e125c54 --- /dev/null +++ b/data/pixmaps/feta/10/flags-stem.xpm @@ -0,0 +1,43 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"3 34 3 1", +" c Gray45", +". c #bebebe", +"X c None", +/* pixels */ +"XXX", +"X..", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X.." +}; diff --git a/data/pixmaps/feta/10/flags-u3.xpm b/data/pixmaps/feta/10/flags-u3.xpm new file mode 100644 index 0000000..d5cc039 --- /dev/null +++ b/data/pixmaps/feta/10/flags-u3.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 31 8 1", +" c #070707", +". c Gray19", +"X c #4c4c4c", +"o c #747474", +"O c #8e8e8e", +"+ c #b4b4b4", +"@ c Gray81", +"# c None", +/* pixels */ +"############", +"#+@#########", +"#oo#########", +"#oo#########", +"#o #########", +"#o @########", +"#O O########", +"#O .########", +"#o X#######", +"#o +######", +"#O .######", +"#o.. o#####", +"#oO@ @####", +"#oo##X @###", +"#oo###X o###", +"#oo####X +##", +"#oO##### ##", +"#oo#####+ O#", +"#oo######..#", +"#oo######O #", +"#oo####### O", +"#@######## o", +"########## o", +"########## o", +"#########@ +", +"#########O #", +"#########o #", +"######### o#", +"########@ @#", +"########o.##", +"########++##" +}; diff --git a/data/pixmaps/feta/10/flags-u4.xpm b/data/pixmaps/feta/10/flags-u4.xpm new file mode 100644 index 0000000..1991504 --- /dev/null +++ b/data/pixmaps/feta/10/flags-u4.xpm @@ -0,0 +1,50 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 36 8 1", +" c #040404", +". c #2f2f2f", +"X c #4e4e4e", +"o c #767676", +"O c Gray55", +"+ c #afafaf", +"@ c Gray80", +"# c None", +/* pixels */ +"############", +"#+@#########", +"#oo#########", +"#oo#########", +"#o #########", +"#O @########", +"#O X########", +"#o +#######", +"#o .#######", +"#O X######", +"#o.. +#####", +"#oo#X @####", +"#o ##X @###", +"#O @##X o###", +"#O X###. +##", +"#o +##+ .##", +"#o ###O O#", +"#o X### X#", +"#ooo X##o @", +"#oo#o +#O #", +"#oo##+ @+ #", +"#@@###+ .XX#", +"#######+ O#", +"########O @#", +"######### .#", +"#########O #", +"########## O", +"########## o", +"########## o", +"########## o", +"#########+ @", +"#########O #", +"#########.X#", +"########@ O#", +"########+ ##", +"########@+##" +}; diff --git a/data/pixmaps/feta/10/flags-u5.xpm b/data/pixmaps/feta/10/flags-u5.xpm new file mode 100644 index 0000000..6d9c5e5 --- /dev/null +++ b/data/pixmaps/feta/10/flags-u5.xpm @@ -0,0 +1,57 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 43 8 1", +" c Gray2", +". c #323232", +"X c Gray31", +"o c #747474", +"O c #8e8e8e", +"+ c Gray69", +"@ c Gray80", +"# c None", +/* pixels */ +"############", +"#+@#########", +"#oo#########", +"#oo#########", +"#o #########", +"#O @########", +"#O X########", +"#o @#######", +"#O X#######", +"#o +######", +"#o.. @#####", +"#oo#X @####", +"#o ##. o####", +"#O @##. +###", +"#O X###. ###", +"#o +##@ O##", +"#O .###O ##", +"#o X### +#", +"#oX. X##oX#", +"#oo#X o#OX#", +"#o.##O @OX#", +"#@X@##+ .+#", +"##Xo###+ @#", +"##o @###X @#", +"##o .###@ o#", +"##o .###X #", +"##O X##O #", +"###@. X#O #", +"#####o @+ #", +"######@ O#", +"#######+ @#", +"########@ o#", +"#########X #", +"#########@ @", +"########## o", +"########## o", +"########## o", +"#########@ +", +"#########O #", +"#########.X#", +"########@ O#", +"########O.##", +"########@+##" +}; diff --git a/data/pixmaps/feta/10/flags-u6.xpm b/data/pixmaps/feta/10/flags-u6.xpm new file mode 100644 index 0000000..b096ee1 --- /dev/null +++ b/data/pixmaps/feta/10/flags-u6.xpm @@ -0,0 +1,67 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 53 8 1", +" c #060606", +". c Gray17", +"X c #555555", +"o c #727272", +"O c #8d8d8d", +"+ c #aeaeae", +"@ c Gray84", +"# c None", +/* pixels */ +"############", +"#+@#########", +"#oo#########", +"#oo#########", +"#o #########", +"#o @########", +"#O o########", +"#o @#######", +"#o X#######", +"#O +######", +"#o. .@#####", +"#oo#. X#####", +"#o.#@. O####", +"#o ###..####", +"#O +##@ X###", +"#O .###+ @##", +"#o o###XX##", +"#o +##@ @#", +"#O .@##.O#", +"#oO+ .@#OX#", +"#oo#+. X#OX#", +"#+X##@. +OX#", +"##o+##@. @#", +"##XX###@ @#", +"##X @###o +#", +"##o .@##@ X#", +"##X o###X #", +"##+. O##O @", +"####. O#O #", +"##+##O .#O #", +"##O@##o ..X#", +"##XO###o @#", +"##X ####. @#", +"##o o###+ o#", +"##o o###..#", +"##o .@##O #", +"###O .@#O #", +"####@. .#O.#", +"######O ..O#", +"#######o X##", +"########o @#", +"########@ o#", +"#########X @", +"#########@ O", +"########## o", +"########## o", +"########## o", +"#########@ +", +"#########O #", +"#########.X#", +"########@ +#", +"########O.##", +"########@+##" +}; diff --git a/data/pixmaps/feta/10/flags-ugrace.xpm b/data/pixmaps/feta/10/flags-ugrace.xpm new file mode 100644 index 0000000..0ee0396 --- /dev/null +++ b/data/pixmaps/feta/10/flags-ugrace.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"21 14 8 1", +" c #010101", +". c #353535", +"X c #4b4b4b", +"o c Gray50", +"O c #818181", +"+ c #b7b7b7", +"@ c Gray77", +"# c None", +/* pixels */ +"#####################", +"###################o+", +"#################+. +", +"################X .@#", +"##############o +###", +"############@. o#####", +"###########X .@######", +"#########+ +########", +"#######@. X##########", +"######o .@###########", +"####+ o#############", +"##@. X###############", +"#+ .@################", +"#+O##################" +}; diff --git a/data/pixmaps/feta/10/noteheads--1.xpm b/data/pixmaps/feta/10/noteheads--1.xpm new file mode 100644 index 0000000..29ec696 --- /dev/null +++ b/data/pixmaps/feta/10/noteheads--1.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"24 12 8 1", +" c #040404", +". c #2f2f2f", +"X c #484848", +"o c #6f6f6f", +"O c Gray55", +"+ c #aaaaaa", +"@ c #d5d5d5", +"# c None", +/* pixels */ +"########################", +"##O######+oooOO@######O#", +"#O O#@O. ooX o+##O O", +"#O O@. o#####o o#O O", +"#O X +######o XO O", +"#O +######+ . O", +"#O +#######. O", +"#O .#######. X O", +"#O X @######. XO O", +"#O +@. .@####@ o#O O", +"#O O#@O. ooX o+##O O", +"##O######+Ooooo@######O#" +}; diff --git a/data/pixmaps/feta/10/noteheads--1mensural.xpm b/data/pixmaps/feta/10/noteheads--1mensural.xpm new file mode 100644 index 0000000..5300487 --- /dev/null +++ b/data/pixmaps/feta/10/noteheads--1mensural.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"21 17 8 1", +" c Gray1", +". c #2d2d2d", +"X c Gray29", +"o c Gray50", +"O c #888888", +"+ c #b9b9b9", +"@ c #c0c0c0", +"# c None", +/* pixels */ +"#####################", +"#@+################++", +"#o.################.o", +"#O oOooOoooooooooOo O", +"#O O", +"#O O", +"#O O", +"#O XOooooooooooOoOX O", +"#O ################ O", +"#O ################ O", +"#O XOoOooooooooooOX O", +"#O O", +"#O O", +"#O O", +"#O oOoooOOooooOoooo O", +"#o.################.o", +"#@+################++" +}; diff --git a/data/pixmaps/feta/10/noteheads--2mensural.xpm b/data/pixmaps/feta/10/noteheads--2mensural.xpm new file mode 100644 index 0000000..5427bca --- /dev/null +++ b/data/pixmaps/feta/10/noteheads--2mensural.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"22 26 8 1", +" c #020202", +". c Gray17", +"X c Gray31", +"o c Gray46", +"O c #898989", +"+ c Gray67", +"@ c Gray77", +"# c None", +/* pixels */ +"######################", +"#++################++#", +"#o.################.o#", +"#O oooooooooooooooo O#", +"#O o#", +"#O O#", +"#O o#", +"#O o++++++++++++++o O#", +"#O ################ o#", +"#O @##############@ o#", +"#O .XXXXXXXXXXXXXX. O#", +"#O o#", +"#O o#", +"#O o#", +"#O +@@@@@@@@@@@@@@@ o#", +"#oX################ o#", +"##@################o #", +"###################o #", +"###################o #", +"###################o #", +"###################o #", +"###################o @", +"###################O O", +"###################O O", +"###################+ O", +"####################O@" +}; diff --git a/data/pixmaps/feta/10/noteheads--3mensural.xpm b/data/pixmaps/feta/10/noteheads--3mensural.xpm new file mode 100644 index 0000000..2d5fb7b --- /dev/null +++ b/data/pixmaps/feta/10/noteheads--3mensural.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"27 26 8 1", +" c Gray1", +". c Gray21", +"X c #4e4e4e", +"o c #727272", +"O c Gray53", +"+ c #a4a4a4", +"@ c Gray77", +"# c None", +/* pixels */ +"###########################", +"#++######################O#", +"#O #####################O #", +"#O ooooooooooooooooooooo. #", +"#O #", +"#O @", +"#O #", +"#O o++++++++++++++++++++. #", +"#o #####################O #", +"#o #####################o @", +"#O .XXXXXXXXXXXXXXXXXXXX #", +"#O #", +"#O #", +"#O #", +"#o @@@@@@@@@@@@@@@@@@@+@o #", +"#o.#####################o #", +"##@#####################O #", +"########################O #", +"########################O #", +"########################O #", +"########################O #", +"########################O @", +"######################### O", +"######################### O", +"######################### o", +"#########################O@" +}; diff --git a/data/pixmaps/feta/10/noteheads-0.xpm b/data/pixmaps/feta/10/noteheads-0.xpm new file mode 100644 index 0000000..7f9a2f4 --- /dev/null +++ b/data/pixmaps/feta/10/noteheads-0.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"21 12 8 1", +" c #040404", +". c Gray21", +"X c Gray29", +"o c Gray46", +"O c #888888", +"+ c Gray71", +"@ c #c0c0c0", +"# c None", +/* pixels */ +"#####################", +"########ooooOO#######", +"####+o .oo. o+###", +"###O +#####X o##", +"##X #######X X#", +"#@ #######O @", +"#O ######## O", +"#@ O####### @", +"##X X####### X#", +"###O X#####+ o##", +"####+o .oo. o+###", +"########OOOooo#######" +}; diff --git a/data/pixmaps/feta/10/noteheads-0cross.xpm b/data/pixmaps/feta/10/noteheads-0cross.xpm new file mode 100644 index 0000000..0bf41c8 --- /dev/null +++ b/data/pixmaps/feta/10/noteheads-0cross.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"18 13 8 1", +" c Gray4", +". c Gray20", +"X c #4c4c4c", +"o c Gray44", +"O c #959595", +"+ c Gray69", +"@ c #d2d2d2", +"# c None", +/* pixels */ +"##################", +"####@O#######O@###", +"###O X@###@. O##", +"##X @#X O#O X#@ X#", +"#+ o###O +###o +", +"##+. @###+###@ .+#", +"####+ o#####o +###", +"####O o#####X +###", +"##+. @###+###@ .+#", +"#+ o###+ +###o +", +"##. @#X O#O X#@ X#", +"###O X@###@. O##", +"####@O#######O@###" +}; diff --git a/data/pixmaps/feta/10/noteheads-0diamond.xpm b/data/pixmaps/feta/10/noteheads-0diamond.xpm new file mode 100644 index 0000000..66aadda --- /dev/null +++ b/data/pixmaps/feta/10/noteheads-0diamond.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"21 12 8 1", +" c Gray2", +". c #3c3c3c", +"X c #444444", +"o c Gray47", +"O c #868686", +"+ c #bcbcbc", +"@ c #c1c1c1", +"# c None", +/* pixels */ +"#####################", +"#########+OO+########", +"########o o#######", +"######+. .+#####", +"###+o o##OX o+##", +"#@ o####X @", +"#O o####O O", +"#@ X####o @", +"###+o XO##o o+##", +"######+. .@#####", +"########o o#######", +"#########+OO+########" +}; diff --git a/data/pixmaps/feta/10/noteheads-0mensural.xpm b/data/pixmaps/feta/10/noteheads-0mensural.xpm new file mode 100644 index 0000000..714443d --- /dev/null +++ b/data/pixmaps/feta/10/noteheads-0mensural.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 12 6 1", +" c Gray2", +". c #313131", +"X c #797979", +"o c #898989", +"O c #d3d3d3", +"+ c None", +/* pixels */ +"+++++++++++", +"+++++OO++++", +"+++++ .O+++", +"++++. .+++", +"+++..O .++", +"++. O+X .+", +"+o X++X o", +"++. X+O .+", +"+++. O..++", +"++++. .O++", +"+++++ ++++", +"+++++OO++++" +}; diff --git a/data/pixmaps/feta/10/noteheads-0slash.xpm b/data/pixmaps/feta/10/noteheads-0slash.xpm new file mode 100644 index 0000000..7fcb3ba --- /dev/null +++ b/data/pixmaps/feta/10/noteheads-0slash.xpm @@ -0,0 +1,34 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"30 21 7 1", +" c Gray1", +". c #484848", +"X c Gray50", +"o c Gray53", +"O c #b7b7b7", +"+ c #c8c8c8", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@OXooooooooooooooo+", +"@@@@@@@@@@@@ +", +"@@@@@@@@@@@X O@", +"@@@@@@@@@@@ .oXXXXXXXo .@@", +"@@@@@@@@@@. .@@@@@@@@@O O@@", +"@@@@@@@@@O O@@@@@@@@@ o@@@", +"@@@@@@@@@. .@@@@@@@@@X @@@@", +"@@@@@@@@X @@@@@@@@@O O@@@@", +"@@@@@@@@ X@@@@@@@@@. .@@@@@", +"@@@@@@@. @@@@@@@@@O O@@@@@", +"@@@@@@O O@@@@@@@@@ .@@@@@@", +"@@@@@@. .@@@@@@@@@o @@@@@@@", +"@@@@@O O@@@@@@@@@ o@@@@@@@", +"@@@@@ X@@@@@@@@@. .@@@@@@@@", +"@@@@X @@@@@@@@@O O@@@@@@@@", +"@@@O O@@@@@@@@@. .@@@@@@@@@", +"@@@. oXXXXXXXo. @@@@@@@@@@", +"@@O X@@@@@@@@@@", +"@@ @@@@@@@@@@@", +"@+ooooooooooooooooO@@@@@@@@@@@" +}; diff --git a/data/pixmaps/feta/10/noteheads-0triangle.xpm b/data/pixmaps/feta/10/noteheads-0triangle.xpm new file mode 100644 index 0000000..145bb09 --- /dev/null +++ b/data/pixmaps/feta/10/noteheads-0triangle.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 11 8 1", +" c Gray2", +". c Gray18", +"X c Gray31", +"o c #727272", +"O c Gray53", +"+ c Gray70", +"@ c #cbcbcb", +"# c None", +/* pixels */ +"############", +"######@#####", +"#####@.@####", +"#####X .####", +"####+ + +###", +"####.O#o.###", +"###o ### o##", +"### O###O ##", +"##XX#####XX#", +"#+ XOoOoOX +", +"#+ooooooooo+" +}; diff --git a/data/pixmaps/feta/10/noteheads-1.xpm b/data/pixmaps/feta/10/noteheads-1.xpm new file mode 100644 index 0000000..08e9a2e --- /dev/null +++ b/data/pixmaps/feta/10/noteheads-1.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"15 13 8 1", +" c Gray1", +". c #343434", +"X c Gray29", +"o c #777777", +"O c #898989", +"+ c #b7b7b7", +"@ c #c3c3c3", +"# c None", +/* pixels */ +"###############", +"########+OOo+##", +"#####+. X#", +"####X X@##.+", +"###X +####oo", +"##+ X######.o", +"## +######X +", +"#+ X######+ #", +"#O.######X +#", +"#oo####+ X##", +"#+.##@X X###", +"##. .+####", +"###+oOO@#######" +}; diff --git a/data/pixmaps/feta/10/noteheads-1cross.xpm b/data/pixmaps/feta/10/noteheads-1cross.xpm new file mode 100644 index 0000000..95cf47c --- /dev/null +++ b/data/pixmaps/feta/10/noteheads-1cross.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"16 13 8 1", +" c #040404", +". c Gray17", +"X c #4b4b4b", +"o c #676767", +"O c Gray56", +"+ c Gray68", +"@ c Gray81", +"# c None", +/* pixels */ +"################", +"####O#######O###", +"##+. .@###@X .+#", +"#+ O#o @#@ o#O +", +"#@.o##O . O##o.+", +"###. @#@o@#@ .##", +"####+ o###o +###", +"####O o###o O###", +"###. @#@o@#@ .##", +"#+.o##O . O##o.@", +"#+ O#X @#@ o#O +", +"##+. X@###@X .+#", +"####O#######O###" +}; diff --git a/data/pixmaps/feta/10/noteheads-1diamond.xpm b/data/pixmaps/feta/10/noteheads-1diamond.xpm new file mode 100644 index 0000000..20b8850 --- /dev/null +++ b/data/pixmaps/feta/10/noteheads-1diamond.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"15 13 8 1", +" c #070707", +". c #343434", +"X c #5b5b5b", +"o c #676767", +"O c #8d8d8d", +"+ c #a4a4a4", +"@ c #d0d0d0", +"# c None", +/* pixels */ +"###############", +"############OO#", +"#####@@###O O", +"####. o", +"###o .+#o #", +"###o X@##+ +#", +"###o .O###@ .##", +"###. @###+ o##", +"##+ +##@X o##", +"## o#+. o##", +"#O .###", +"#o O###@@####", +"##OO###########" +}; diff --git a/data/pixmaps/feta/10/noteheads-1mensural.xpm b/data/pixmaps/feta/10/noteheads-1mensural.xpm new file mode 100644 index 0000000..714443d --- /dev/null +++ b/data/pixmaps/feta/10/noteheads-1mensural.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 12 6 1", +" c Gray2", +". c #313131", +"X c #797979", +"o c #898989", +"O c #d3d3d3", +"+ c None", +/* pixels */ +"+++++++++++", +"+++++OO++++", +"+++++ .O+++", +"++++. .+++", +"+++..O .++", +"++. O+X .+", +"+o X++X o", +"++. X+O .+", +"+++. O..++", +"++++. .O++", +"+++++ ++++", +"+++++OO++++" +}; diff --git a/data/pixmaps/feta/10/noteheads-1slash.xpm b/data/pixmaps/feta/10/noteheads-1slash.xpm new file mode 100644 index 0000000..15bfa90 --- /dev/null +++ b/data/pixmaps/feta/10/noteheads-1slash.xpm @@ -0,0 +1,34 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"26 21 7 1", +" c Gray1", +". c #484848", +"X c Gray50", +"o c #868686", +"O c #b7b7b7", +"+ c #c8c8c8", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@OXooooooooooo+", +"@@@@@@@@@@@@ @", +"@@@@@@@@@@@X O@", +"@@@@@@@@@@@ .oXXXo .@@", +"@@@@@@@@@@. .@@@@@O O@@", +"@@@@@@@@@O O@@@@@ X@@@", +"@@@@@@@@@. .@@@@@X @@@@", +"@@@@@@@@X @@@@@O O@@@@", +"@@@@@@@@ X@@@@@. .@@@@@", +"@@@@@@@. @@@@@O O@@@@@", +"@@@@@@O O@@@@@ .@@@@@@", +"@@@@@@. .@@@@@X @@@@@@@", +"@@@@@O O@@@@@ o@@@@@@@", +"@@@@@ X@@@@@. .@@@@@@@@", +"@@@@X @@@@@O O@@@@@@@@", +"@@@O O@@@@@. .@@@@@@@@@", +"@@@. oXXXo. @@@@@@@@@@", +"@@O X@@@@@@@@@@", +"@@ @@@@@@@@@@@", +"@+oooooooooooo+@@@@@@@@@@@" +}; diff --git a/data/pixmaps/feta/10/noteheads-1triangle.xpm b/data/pixmaps/feta/10/noteheads-1triangle.xpm new file mode 100644 index 0000000..b5c2fa2 --- /dev/null +++ b/data/pixmaps/feta/10/noteheads-1triangle.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 11 8 1", +" c Gray3", +". c Gray15", +"X c #4b4b4b", +"o c Gray46", +"O c Gray55", +"+ c Gray70", +"@ c Gray83", +"# c None", +/* pixels */ +"###########", +"#####@@####", +"#####oo####", +"####@..####", +"####XooX###", +"###@ ## @##", +"###Xo##XX##", +"##O.####.O#", +"##.O####O.#", +"#+ +", +"#+oOOOOOOo+" +}; diff --git a/data/pixmaps/feta/10/noteheads-2.xpm b/data/pixmaps/feta/10/noteheads-2.xpm new file mode 100644 index 0000000..3757439 --- /dev/null +++ b/data/pixmaps/feta/10/noteheads-2.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 12 7 1", +" c #020202", +". c #323232", +"X c Gray42", +"o c Gray52", +"O c Gray69", +"+ c Gray84", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@", +"@@@@@@@+oooO@@", +"@@@@@O. .@", +"@@@@X O", +"@@@. o", +"@@X o", +"@+ +", +"@o X@", +"@o .@@", +"@O X@@@", +"@@. .O@@@@", +"@@@Oooo+@@@@@@" +}; diff --git a/data/pixmaps/feta/10/noteheads-2cross.xpm b/data/pixmaps/feta/10/noteheads-2cross.xpm new file mode 100644 index 0000000..28aa584 --- /dev/null +++ b/data/pixmaps/feta/10/noteheads-2cross.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 12 7 1", +" c #090909", +". c #272727", +"X c #505050", +"o c #959595", +"O c #b1b1b1", +"+ c #d2d2d2", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@", +"@++@@@@@@@@@++", +"@+ X@@@@@@@X O", +"@@o X+@@@+X O@", +"@@@@. +@+ .@@@", +"@@@@@..o..@@@@", +"@@@@@@X .@@@@@", +"@@@@@. o..@@@@", +"@@@@. +@+ .@@@", +"@@o X+@@@+X O@", +"@O X@@@@@@@X O", +"@++@@@@@@@@@++" +}; diff --git a/data/pixmaps/feta/10/noteheads-2diamond.xpm b/data/pixmaps/feta/10/noteheads-2diamond.xpm new file mode 100644 index 0000000..ab0ecc8 --- /dev/null +++ b/data/pixmaps/feta/10/noteheads-2diamond.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 13 8 1", +" c #020202", +". c Gray16", +"X c Gray37", +"o c Gray", +"O c #8d8d8d", +"+ c #b2b2b2", +"@ c #d8d8d8", +"# c None", +/* pixels */ +"##############", +"######@o@#####", +"######. .O. +", +"#####O o", +"#####. +", +"####@ +#", +"####X O##", +"###O X###", +"##+ @###", +"#+ .####", +"#o O####", +"#+ .O. .@####", +"######@o@#####" +}; diff --git a/data/pixmaps/feta/10/noteheads-2mensural.xpm b/data/pixmaps/feta/10/noteheads-2mensural.xpm new file mode 100644 index 0000000..94133ba --- /dev/null +++ b/data/pixmaps/feta/10/noteheads-2mensural.xpm @@ -0,0 +1,23 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 12 5 1", +" c #040404", +". c Gray20", +"X c #898989", +"o c Gray84", +"O c None", +/* pixels */ +"OOOOOOOOOOO", +"OOOOOooOOOO", +"OOOOO .oOOO", +"OOOO. .OOO", +"OOO. .OO", +"OO. .O", +"OX X", +"OO. .O", +"OOO. .OO", +"OOOO. .OOO", +"OOOOO OOOO", +"OOOOOooOOOO" +}; diff --git a/data/pixmaps/feta/10/noteheads-2slash.xpm b/data/pixmaps/feta/10/noteheads-2slash.xpm new file mode 100644 index 0000000..0c7022e --- /dev/null +++ b/data/pixmaps/feta/10/noteheads-2slash.xpm @@ -0,0 +1,35 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"18 21 8 1", +" c Gray1", +". c #313131", +"X c Gray29", +"o c #727272", +"O c #8d8d8d", +"+ c #acacac", +"@ c Gray82", +"# c None", +/* pixels */ +"##################", +"############+OOOO@", +"###########+ @", +"###########. +#", +"##########+ .##", +"#########@. +##", +"#########o o###", +"########@. @###", +"########X O####", +"#######+ .#####", +"#######. O#####", +"######O .######", +"######. @######", +"#####O X#######", +"####@ @#######", +"####o O########", +"###+ .@########", +"###. +#########", +"##+ .##########", +"#@ +##########", +"#@OOOOO###########" +}; diff --git a/data/pixmaps/feta/10/noteheads-2triangle.xpm b/data/pixmaps/feta/10/noteheads-2triangle.xpm new file mode 100644 index 0000000..322a1b5 --- /dev/null +++ b/data/pixmaps/feta/10/noteheads-2triangle.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 11 8 1", +" c Gray1", +". c #343434", +"X c #5a5a5a", +"o c #797979", +"O c Gray54", +"+ c #aeaeae", +"@ c #d7d7d7", +"# c None", +/* pixels */ +"###########", +"#####@@####", +"#####oo####", +"####@ .@###", +"####X X###", +"###@ @##", +"###X X##", +"##+ +#", +"##. .#", +"#+ +", +"#+oOOOOOOo+" +}; diff --git a/data/pixmaps/feta/10/noteheads-2xcircle.xpm b/data/pixmaps/feta/10/noteheads-2xcircle.xpm new file mode 100644 index 0000000..d2198dd --- /dev/null +++ b/data/pixmaps/feta/10/noteheads-2xcircle.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 13 6 1", +" c #0e0e0e", +". c Gray17", +"X c Gray26", +"o c #6f6f6f", +"O c #afafaf", +"+ c None", +/* pixels */ +"++++++++++++++", +"+++++OoooO++++", +"+++O. ooo .O++", +"++O .+++++. O+", +"++ O.o+++o.O +", +"+oX++ o+o ++Xo", +"+oo+++...+++oo", +"+oo+++...+++oo", +"+oX++ o+o ++.o", +"++ O.o+++o.O +", +"++O .+++++. O+", +"+++O. ooo .O++", +"+++++OoooO++++" +}; diff --git a/data/pixmaps/feta/10/noteheads-ledgerending.xpm b/data/pixmaps/feta/10/noteheads-ledgerending.xpm new file mode 100644 index 0000000..7c628f5 --- /dev/null +++ b/data/pixmaps/feta/10/noteheads-ledgerending.xpm @@ -0,0 +1,14 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 4 4 1", +" c #010101", +". c Gray55", +"X c #cbcbcb", +"o c None", +/* pixels */ +"oooooooooooo", +"oX.........X", +"o. .", +"oX.........X" +}; diff --git a/data/pixmaps/feta/10/rests--1.xpm b/data/pixmaps/feta/10/rests--1.xpm new file mode 100644 index 0000000..b648e68 --- /dev/null +++ b/data/pixmaps/feta/10/rests--1.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 11 5 1", +" c Gray1", +". c Gray47", +"X c #808080", +"o c #bbbbbb", +"O c None", +/* pixels */ +"OOOOOOO", +"Oo.X..o", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"Oo.XX.o" +}; diff --git a/data/pixmaps/feta/10/rests--1o.xpm b/data/pixmaps/feta/10/rests--1o.xpm new file mode 100644 index 0000000..25ba215 --- /dev/null +++ b/data/pixmaps/feta/10/rests--1o.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char * rests__1o_xpm[] = { +"19 11 8 1", +" c None", +". c #898989", +"+ c #808080", +"@ c #787878", +"# c #020202", +"$ c #030303", +"% c #343434", +"& c #626262", +" ", +" .......+@....... ", +" .#######$$#######.", +" .....%#$$#%...&. ", +" @$$$$@ ", +" @$$$$@ ", +" @$$$$@ ", +" @$$$$@ ", +" ..&..%#$$#%..... ", +" .#######$$#######.", +" .......++....... "}; diff --git a/data/pixmaps/feta/10/rests--2.xpm b/data/pixmaps/feta/10/rests--2.xpm new file mode 100644 index 0000000..14b76bb --- /dev/null +++ b/data/pixmaps/feta/10/rests--2.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 21 5 1", +" c #020202", +". c Gray48", +"X c #8b8b8b", +"o c #c1c1c1", +"O c None", +/* pixels */ +"OOOOOOO", +"Oo.XX.o", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"Oo.XX.o" +}; diff --git a/data/pixmaps/feta/10/rests--4.xpm b/data/pixmaps/feta/10/rests--4.xpm new file mode 100644 index 0000000..69215c7 --- /dev/null +++ b/data/pixmaps/feta/10/rests--4.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"78 21 6 1", +" c Gray2", +". c #6f6f6f", +"X c #898989", +"o c #b9b9b9", +"O c #c0c0c0", +"+ c None", +/* pixels */ +"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++", +"+Oo+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++oo", +"+..+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++..", +"+..+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++..", +"+..+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++..", +"+..+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++..", +"+..+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++..", +"+..+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++..", +"+X X", +"+X X", +"+X X", +"+X X", +"+X X", +"+X X", +"+..+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++..", +"+..+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++..", +"+..+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++..", +"+..+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++..", +"+..+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++..", +"+..+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++..", +"+Oo+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++oO" +}; diff --git a/data/pixmaps/feta/10/rests-0.xpm b/data/pixmaps/feta/10/rests-0.xpm new file mode 100644 index 0000000..ad191b0 --- /dev/null +++ b/data/pixmaps/feta/10/rests-0.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"16 8 5 1", +" c #020202", +". c Gray49", +"X c Gray53", +"o c #c5c5c5", +"O c None", +/* pixels */ +"OOOOOOOOOOOOOOOO", +"Oo.XXXXXXXXXXX.o", +"OX X", +"OX X", +"OX X", +"OX X", +"OX X", +"Oo.XXXXXXXXXXX.o" +}; diff --git a/data/pixmaps/feta/10/rests-0o.xpm b/data/pixmaps/feta/10/rests-0o.xpm new file mode 100644 index 0000000..1a6dff7 --- /dev/null +++ b/data/pixmaps/feta/10/rests-0o.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"28 9 7 1", +" c #020202", +". c #343434", +"X c Gray37", +"o c #626262", +"O c #898989", +"+ c Gray71", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", +"@@OOOOOOOOOOOOOOOOOOOOOOOOO@", +"@O O", +"@@OOOOO. .OOOoO@", +"@@@@@@@X X@@@@@@", +"@@@@@@@X X@@@@@@", +"@@@@@@@X X@@@@@@", +"@@@@@@@X X@@@@@@", +"@@@@@@@+OOOOOOOOOOOOO+@@@@@@" +}; diff --git a/data/pixmaps/feta/10/rests-1.xpm b/data/pixmaps/feta/10/rests-1.xpm new file mode 100644 index 0000000..ad191b0 --- /dev/null +++ b/data/pixmaps/feta/10/rests-1.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"16 8 5 1", +" c #020202", +". c Gray49", +"X c Gray53", +"o c #c5c5c5", +"O c None", +/* pixels */ +"OOOOOOOOOOOOOOOO", +"Oo.XXXXXXXXXXX.o", +"OX X", +"OX X", +"OX X", +"OX X", +"OX X", +"Oo.XXXXXXXXXXX.o" +}; diff --git a/data/pixmaps/feta/10/rests-1o.xpm b/data/pixmaps/feta/10/rests-1o.xpm new file mode 100644 index 0000000..692ce0a --- /dev/null +++ b/data/pixmaps/feta/10/rests-1o.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"28 9 7 1", +" c #020202", +". c #343434", +"X c Gray37", +"o c #626262", +"O c #898989", +"+ c Gray71", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@+OOOOOOOOOOOOO+@@@@@@", +"@@@@@@@X X@@@@@@", +"@@@@@@@o o@@@@@@", +"@@@@@@@X X@@@@@@", +"@@@@@@@X X@@@@@@", +"@@OOoOO. .OOOOO@", +"@O O", +"@@OOOOOOOOOOOOOOOOOOOOOOOOO@" +}; diff --git a/data/pixmaps/feta/10/rests-2.xpm b/data/pixmaps/feta/10/rests-2.xpm new file mode 100644 index 0000000..06b6e7e --- /dev/null +++ b/data/pixmaps/feta/10/rests-2.xpm @@ -0,0 +1,43 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 29 8 1", +" c Gray2", +". c #2f2f2f", +"X c #505050", +"o c #717171", +"O c #8e8e8e", +"+ c #b1b1b1", +"@ c Gray80", +"# c None", +/* pixels */ +"###########", +"###@O######", +"#### o#####", +"#####.@####", +"#####@ @###", +"######. @##", +"######X X##", +"######. O#", +"#####+ +", +"####@ o", +"###O @", +"##o @#", +"#O +##", +"#O +###", +"## o####", +"##@ @####", +"###@ @####", +"####+ +####", +"##@+@X.####", +"#@ . X###", +"#o X##", +"#o oo. +#", +"#+ O###+ #", +"## .#####@#", +"##X #######", +"##O.#######", +"###.@######", +"###OX######", +"####+######" +}; diff --git a/data/pixmaps/feta/10/rests-2mensural.xpm b/data/pixmaps/feta/10/rests-2mensural.xpm new file mode 100644 index 0000000..6821a1a --- /dev/null +++ b/data/pixmaps/feta/10/rests-2mensural.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 9 7 1", +" c #040404", +". c #2f2f2f", +"X c #747474", +"o c #898989", +"O c #aeaeae", +"+ c #c3c3c3", +"@ c None", +/* pixels */ +"@@@@@@@@@", +"@@X+@@@@@", +"@X X+@@", +"@X . O", +"@o O@o..o", +"@X O@@@@@", +"@o O@@@@@", +"@o O@@@@@", +"@@o@@@@@@" +}; diff --git a/data/pixmaps/feta/10/rests-3.xpm b/data/pixmaps/feta/10/rests-3.xpm new file mode 100644 index 0000000..1b3ee77 --- /dev/null +++ b/data/pixmaps/feta/10/rests-3.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"15 19 8 1", +" c Gray1", +". c #313131", +"X c #515151", +"o c #747474", +"O c Gray56", +"+ c #b1b1b1", +"@ c #d3d3d3", +"# c None", +/* pixels */ +"###############", +"###+o+#########", +"##. X######O+", +"#+ +##### O", +"#O o####O #", +"#@ o@@+. X#", +"##o O#", +"###+.....o@o ##", +"###########.X##", +"##########O O##", +"##########X.###", +"#########@ o###", +"#########o @###", +"#########..####", +"########O O####", +"########X @####", +"#######@ .#####", +"#######o o#####", +"########O######" +}; diff --git a/data/pixmaps/feta/10/rests-3mensural.xpm b/data/pixmaps/feta/10/rests-3mensural.xpm new file mode 100644 index 0000000..696fd1b --- /dev/null +++ b/data/pixmaps/feta/10/rests-3mensural.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 9 7 1", +" c Gray2", +". c Gray19", +"X c #747474", +"o c #848484", +"O c #aeaeae", +"+ c #c8c8c8", +"@ c None", +/* pixels */ +"@@@@@@@@@", +"@@@@@@+X@", +"@@@+X X", +"@+ . X", +"@+..o@O o", +"@@@@@@O X", +"@@@@@@O o", +"@@@@@@O X", +"@@@@@@@o@" +}; diff --git a/data/pixmaps/feta/10/rests-4.xpm b/data/pixmaps/feta/10/rests-4.xpm new file mode 100644 index 0000000..e787b4e --- /dev/null +++ b/data/pixmaps/feta/10/rests-4.xpm @@ -0,0 +1,43 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"16 29 8 1", +" c Gray2", +". c Gray20", +"X c Gray32", +"o c Gray44", +"O c Gray56", +"+ c Gray69", +"@ c #d2d2d2", +"# c None", +/* pixels */ +"################", +"#####@OO@#######", +"####O O####++", +"####. #### o", +"###@ @### @", +"####. @#@X #", +"####O o#", +"#####+. X+.O#", +"############+ @#", +"############XX##", +"############ o##", +"##+. X@####+ @##", +"#@ .####o.###", +"#O +### X###", +"#o +##+ O###", +"## oOX @###", +"##+ X####", +"###@oOOo+@ X####", +"#########+ @####", +"#########. #####", +"######### X#####", +"########+ O#####", +"########X @#####", +"######## .######", +"#######@ O######", +"#######X @######", +"####### @######", +"######@ X#######", +"#######+@#######" +}; diff --git a/data/pixmaps/feta/10/rests-4mensural.xpm b/data/pixmaps/feta/10/rests-4mensural.xpm new file mode 100644 index 0000000..dfcaac0 --- /dev/null +++ b/data/pixmaps/feta/10/rests-4mensural.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 11 8 1", +" c #060606", +". c #252525", +"X c Gray29", +"o c #767676", +"O c #888888", +"+ c #acacac", +"@ c Gray82", +"# c None", +/* pixels */ +"#########", +"######@o#", +"####@X O", +"###O o", +"#@ oO o", +"#@.o@#X o", +"###@o o", +"##o .. o", +"#O .o#+ o", +"#@o###+ O", +"#######O#" +}; diff --git a/data/pixmaps/feta/10/rests-5.xpm b/data/pixmaps/feta/10/rests-5.xpm new file mode 100644 index 0000000..aa1a2eb --- /dev/null +++ b/data/pixmaps/feta/10/rests-5.xpm @@ -0,0 +1,52 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"18 38 8 1", +" c #060606", +". c Gray19", +"X c #4c4c4c", +"o c Gray45", +"O c #8d8d8d", +"+ c #b4b4b4", +"@ c #cecece", +"# c None", +/* pixels */ +"##################", +"#######@Oo@#######", +"######O O####++", +"######. ####.o", +"#####@ @### @", +"######. +#+. #", +"######O ..#", +"#######+. . .o@.o#", +"############### +#", +"##############O @#", +"######@@######O.##", +"####O o##### X##", +"###@ +####.+##", +"###o .###O @##", +"###o X##@X.###", +"#### XX o###", +"####+. X +###", +"######+++++#+ @###", +"############X ####", +"############.X####", +"##@o.O#####@ o####", +"##. X####+ @####", +"#O @###X #####", +"#o +### X#####", +"#@ o@O o#####", +"##o . @#####", +"###@XXXXo@X ######", +"##########.X######", +"#########@ o######", +"#########O @######", +"#########X @######", +"######### .#######", +"########@ X#######", +"########O +#######", +"########X @#######", +"######## .########", +"#######@ X########", +"########O@########" +}; diff --git a/data/pixmaps/feta/10/rests-6.xpm b/data/pixmaps/feta/10/rests-6.xpm new file mode 100644 index 0000000..f50bcb3 --- /dev/null +++ b/data/pixmaps/feta/10/rests-6.xpm @@ -0,0 +1,62 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"20 48 8 1", +" c Gray2", +". c #373737", +"X c #494949", +"o c #797979", +"O c #868686", +"+ c #b9b9b9", +"@ c Gray77", +"# c None", +/* pixels */ +"####################", +"#########+oO########", +"########X +####++", +"#######+ X####.o", +"#######O #### +", +"#######+ ##+. #", +"########X . #", +"#########O X@oX#", +"################# O#", +"################# ##", +"################o ##", +"######@. o#####o.##", +"###### O#### o##", +"#####O #### o##", +"#####o ###X ###", +"###### oo ###", +"######+ X..###", +"########OoooO## o###", +"############### +###", +"##############o ####", +"#####+oO######o ####", +"####X +#### o####", +"###+ X#### o####", +"###O ###o +####", +"###+ ##o #####", +"####X #####", +"#####o o+ o#####", +"############+ O#####", +"############o ######", +"############o ######", +"##@. .+##### .######", +"## ##### o######", +"#O O###O O######", +"#O o###X #######", +"## XOo #######", +"##+ X X#######", +"####OooOO#+ o#######", +"##########o +#######", +"##########X ########", +"########## ########", +"########## o########", +"#########O O########", +"#########o +########", +"######### #########", +"######### #########", +"########+ o#########", +"########O O#########", +"#########O##########" +}; diff --git a/data/pixmaps/feta/10/rests-7.xpm b/data/pixmaps/feta/10/rests-7.xpm new file mode 100644 index 0000000..8e3f578 --- /dev/null +++ b/data/pixmaps/feta/10/rests-7.xpm @@ -0,0 +1,71 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"22 57 8 1", +" c Gray2", +". c #2f2f2f", +"X c #4e4e4e", +"o c Gray45", +"O c #8b8b8b", +"+ c #afafaf", +"@ c #d2d2d2", +"# c None", +/* pixels */ +"######################", +"###########+OO########", +"##########X +####++", +"#########+ X####.o", +"#########o #### @", +"#########@ @#+. #", +"##########X . #", +"###########O. . .o@oX#", +"################### O#", +"##################@ ##", +"##########@@######o ##", +"########+. X#####o.##", +"#######@ o####.o##", +"#######o ###@ O##", +"#######O ##@. ###", +"########. XX ###", +"########@. Oo.###", +"##########+++++## o###", +"################@ @###", +"################o ####", +"#######O.X@#####o ####", +"######. +####.O####", +"#####+ .#### o####", +"#####o ###O @####", +"#####@ @@X #####", +"######o .#####", +"#######+X....+@ o#####", +"##############@ O#####", +"##############o ######", +"#####@+@######X ######", +"####O O##### o######", +"###@ @#### o######", +"###O o###O +######", +"###+ O##+. #######", +"####. .. #######", +"####@X .O X#######", +"######@@@@@#@ o#######", +"############o @#######", +"############X ########", +"##@o o@##### .########", +"## .##### o########", +"#O O###O o########", +"#O o###X @########", +"#@ X+O. #########", +"##O . .#########", +"###@ooXoo@@ O#########", +"##########o +#########", +"##########X ##########", +"########## ##########", +"########## o##########", +"#########O O##########", +"#########o +##########", +"######### ###########", +"######### ###########", +"########+ o###########", +"########O O###########", +"#########O############" +}; diff --git a/data/pixmaps/feta/10/scripts-arpeggio.xpm b/data/pixmaps/feta/10/scripts-arpeggio.xpm new file mode 100644 index 0000000..90084ac --- /dev/null +++ b/data/pixmaps/feta/10/scripts-arpeggio.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 15 8 1", +" c Gray2", +". c #2c2c2c", +"X c Gray32", +"o c #7b7b7b", +"O c #8b8b8b", +"+ c Gray67", +"@ c #cdcdcd", +"# c None", +/* pixels */ +"##########", +"###o######", +"###X.+####", +"####X +###", +"##### X##", +"##### .@", +"####O +", +"###o o#", +"#@. .@##", +"#O .@###", +"##. o####", +"###. O####", +"####O @###", +"#####+ +##", +"######++##" +}; diff --git a/data/pixmaps/feta/10/scripts-coda.xpm b/data/pixmaps/feta/10/scripts-coda.xpm new file mode 100644 index 0000000..29f1125 --- /dev/null +++ b/data/pixmaps/feta/10/scripts-coda.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"22 29 7 1", +" c #0b0b0b", +". c #353535", +"X c #535353", +"o c Gray45", +"O c Gray53", +"+ c Gray72", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@O@@@@@@@@@@", +"@@@@@@@@@@@ @@@@@@@@@@", +"@@@@@@@@@@@ @@@@@@@@@@", +"@@@@@@@@@@@ @@@@@@@@@@", +"@@@@@@@@@@o X@@@@@@@@@", +"@@@@@@@@o X X o@@@@@@@", +"@@@@@@@X +@ @+ X@@@@@@", +"@@@@@@o @@ @@ o@@@@@", +"@@@@@@ o@@ @@o @@@@@", +"@@@@@+ O@@ @@o +@@@@", +"@@@@@o O@@ @@o o@@@@", +"@@@@@ o@@.+@o @@@@", +"@@@@@ o@@ @@o @@@@", +"@+XoX .oX Xo. ooX+", +"@+XoX .oo Xo. ooX+", +"@@@@@ O@@ @@o @@@@", +"@@@@@ o@@ @@o @@@@", +"@@@@@o o@@.@@o o@@@@", +"@@@@@+ o@@ +@O +@@@@", +"@@@@@@ o@@ @@o @@@@@", +"@@@@@@o @@ @@ O@@@@@", +"@@@@@@@X +@ @+ X@@@@@@", +"@@@@@@@@o X X o@@@@@@@", +"@@@@@@@@@@o X@@@@@@@@@", +"@@@@@@@@@@@ @@@@@@@@@@", +"@@@@@@@@@@@ @@@@@@@@@@", +"@@@@@@@@@@@ @@@@@@@@@@", +"@@@@@@@@@@@O@@@@@@@@@@" +}; diff --git a/data/pixmaps/feta/10/scripts-dfermata.xpm b/data/pixmaps/feta/10/scripts-dfermata.xpm new file mode 100644 index 0000000..80cca28 --- /dev/null +++ b/data/pixmaps/feta/10/scripts-dfermata.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"27 16 7 1", +" c #040404", +". c Gray17", +"X c #767676", +"o c #909090", +"O c #afafaf", +"+ c Gray83", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@@@@@@@@@@@@@", +"@+O@@@@@@@@@OXXO@@@@@@@@@O+", +"@o @@@@@@@@O O@@@@@@@@ o", +"@+ +@@@@@@@o X@@@@@@@+ O", +"@@ X@@@@@@@o o@@@@@@@X @", +"@@X.@@@@@@@@X X@@@@@@@@.X@", +"@@+ o@@@@@@@@++@@@@@@@@o +@", +"@@@. +@@@@@@@@@@@@@@@@+ .@@", +"@@@o .+@@@@@@@@@@@@@@+. o@@", +"@@@@. .+@@@@@@@@@@@@+. .@@@", +"@@@@+ X+@@@@@@@@+X +@@@", +"@@@@@o .OOOOOO. o@@@@", +"@@@@@@o o@@@@@", +"@@@@@@@O. .O@@@@@@", +"@@@@@@@@@X X@@@@@@@@", +"@@@@@@@@@@@OXooXO@@@@@@@@@@" +}; diff --git a/data/pixmaps/feta/10/scripts-dmarcato.xpm b/data/pixmaps/feta/10/scripts-dmarcato.xpm new file mode 100644 index 0000000..f153ace --- /dev/null +++ b/data/pixmaps/feta/10/scripts-dmarcato.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 12 7 1", +" c Gray2", +". c #313131", +"X c #6d6d6d", +"o c #8e8e8e", +"O c Gray68", +"+ c #d0d0d0", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@", +"@+XoX+@@@@OO", +"@o .@@@@.X", +"@@ +@@O @", +"@@o X@@.o@", +"@@@. @o.@@", +"@@@o X.o@@", +"@@@@. .@@@", +"@@@@O O@@@", +"@@@@@. .@@@@", +"@@@@@O O@@@@", +"@@@@@@o@@@@@" +}; diff --git a/data/pixmaps/feta/10/scripts-downbow.xpm b/data/pixmaps/feta/10/scripts-downbow.xpm new file mode 100644 index 0000000..84313e8 --- /dev/null +++ b/data/pixmaps/feta/10/scripts-downbow.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"16 14 7 1", +" c Gray1", +". c Gray26", +"X c #717171", +"o c Gray52", +"O c Gray71", +"+ c Gray78", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@@", +"@+XoXoooooXoooX+", +"@o o", +"@o o", +"@o o", +"@o o", +"@X.+OOOOOOOOO+.X", +"@XX@@@@@@@@@@@XX", +"@XX@@@@@@@@@@@XX", +"@XX@@@@@@@@@@@XX", +"@XX@@@@@@@@@@@XX", +"@XX@@@@@@@@@@@XX", +"@XX@@@@@@@@@@@XX", +"@OO@@@@@@@@@@@OO" +}; diff --git a/data/pixmaps/feta/10/scripts-downmordent.xpm b/data/pixmaps/feta/10/scripts-downmordent.xpm new file mode 100644 index 0000000..968b72e --- /dev/null +++ b/data/pixmaps/feta/10/scripts-downmordent.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"35 17 8 1", +" c #040404", +". c #343434", +"X c Gray29", +"o c #6f6f6f", +"O c Gray57", +"+ c Gray71", +"@ c #d0d0d0", +"# c None", +/* pixels */ +"###################################", +"####O##############################", +"###. ##############################", +"##o O##################+###########", +"## @#################+ @##########", +"#O .####.@######@.@###+ @@.########", +"#O ###. @####@. .@##+ +. .#######", +"#O ##O @###O .@#+ . .####@@", +"#+ #@ @#@ .#+ .##@ O", +"##X OX @. .O .# .#", +"##+ . O+ OO Oo +#", +"###+ o##O .##o @#o o##", +"####+####O @###o @##o .###", +"##########O o#####o X @###o +###", +"###########Oo#######oO+ @####XO####", +"######################+ @##########", +"#######################+###########" +}; diff --git a/data/pixmaps/feta/10/scripts-downprall.xpm b/data/pixmaps/feta/10/scripts-downprall.xpm new file mode 100644 index 0000000..a8c0fba --- /dev/null +++ b/data/pixmaps/feta/10/scripts-downprall.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"35 15 8 1", +" c #060606", +". c #2a2a2a", +"X c Gray32", +"o c #6d6d6d", +"O c Gray56", +"+ c #b1b1b1", +"@ c #d0d0d0", +"# c None", +/* pixels */ +"###################################", +"###@O##############################", +"###. ##############################", +"##o O##############################", +"#@ @##############################", +"#O .###@ +######@ @######+.@#######", +"#O ###. +####@ +####+ @######", +"#O ##o +###X +###. .@###O@", +"#@ @@ O#+ +#O @#O O", +"##o O... o o . .+ X#", +"##@. +# @@ @+ .@#", +"###@.O##@. X##@ o##+ +##", +"#########@. .####@ X####+ X###", +"##########@. @#####@ .@#####+ .####", +"###########@@#######@@#######@@####" +}; diff --git a/data/pixmaps/feta/10/scripts-dpedalheel.xpm b/data/pixmaps/feta/10/scripts-dpedalheel.xpm new file mode 100644 index 0000000..158fc57 --- /dev/null +++ b/data/pixmaps/feta/10/scripts-dpedalheel.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 13 6 1", +" c #020202", +". c Gray21", +"X c Gray46", +"o c #898989", +"O c Gray70", +"+ c None", +/* pixels */ +"++++++++++++", +"+++++XXo++++", +"+++. .++", +"++. O+++o .+", +"++ o+++++o +", +"+o +++++++ o", +"+o +++++++ o", +"+X +++++++ o", +"+o +++++++ o", +"+o +++++++ o", +"+o +++++++ o", +"+o +++++++ o", +"+OO+++++++OO" +}; diff --git a/data/pixmaps/feta/10/scripts-dpedaltoe.xpm b/data/pixmaps/feta/10/scripts-dpedaltoe.xpm new file mode 100644 index 0000000..662ef25 --- /dev/null +++ b/data/pixmaps/feta/10/scripts-dpedaltoe.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 16 8 1", +" c #060606", +". c #2a2a2a", +"X c Gray31", +"o c #747474", +"O c #909090", +"+ c Gray68", +"@ c Gray85", +"# c None", +/* pixels */ +"############", +"##O#######++", +"#O @###### O", +"## o#####o #", +"##X.#####.X#", +"##O @###@ O#", +"### o###o ##", +"###X.###.X##", +"###O @#@ O##", +"#### o#o ###", +"####X # X###", +"####+ O +###", +"##### ####", +"#####o o####", +"#####+ o####", +"######O#####" +}; diff --git a/data/pixmaps/feta/10/scripts-dstaccatissimo.xpm b/data/pixmaps/feta/10/scripts-dstaccatissimo.xpm new file mode 100644 index 0000000..621c872 --- /dev/null +++ b/data/pixmaps/feta/10/scripts-dstaccatissimo.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 12 6 1", +" c Gray2", +". c Gray48", +"X c #898989", +"o c Gray75", +"O c #c0c0c0", +"+ c None", +/* pixels */ +"++++++", +"+++X++", +"+++ ++", +"++X X+", +"++X X+", +"++. .+", +"++ +", +"++ +", +"+o o", +"+X X", +"+o o", +"++o.o+" +}; diff --git a/data/pixmaps/feta/10/scripts-flageolet.xpm b/data/pixmaps/feta/10/scripts-flageolet.xpm new file mode 100644 index 0000000..676e43c --- /dev/null +++ b/data/pixmaps/feta/10/scripts-flageolet.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 12 4 1", +" c Gray57", +". c Gray70", +"X c Gray86", +"o c None", +/* pixels */ +"oooooooooooo", +"ooooX Xooo", +"ooo. XXX .oo", +"oo..ooooo..o", +"oX ooooooo X", +"o XoooooooX ", +"o XoooooooX ", +"o XoooooooX ", +"oX ooooooo X", +"oo..ooooo..o", +"ooo. XXX .oo", +"ooooX Xooo" +}; diff --git a/data/pixmaps/feta/10/scripts-lcomma.xpm b/data/pixmaps/feta/10/scripts-lcomma.xpm new file mode 100644 index 0000000..83e3eea --- /dev/null +++ b/data/pixmaps/feta/10/scripts-lcomma.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 13 8 1", +" c #040404", +". c #343434", +"X c Gray32", +"o c Gray45", +"O c #888888", +"+ c #afafaf", +"@ c #cacaca", +"# c None", +/* pixels */ +"######", +"####++", +"#### +", +"###.X#", +"##+ @#", +"##X ##", +"## o##", +"#+ O##", +"#O X##", +"#O @#", +"#+ X#", +"##. #", +"###o+#" +}; diff --git a/data/pixmaps/feta/10/scripts-lineprall.xpm b/data/pixmaps/feta/10/scripts-lineprall.xpm new file mode 100644 index 0000000..5a37398 --- /dev/null +++ b/data/pixmaps/feta/10/scripts-lineprall.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"33 27 8 1", +" c Gray1", +". c #3f3f3f", +"X c #464646", +"o c Gray47", +"O c Gray52", +"+ c #b6b6b6", +"@ c #c3c3c3", +"# c None", +/* pixels */ +"#################################", +"##+##############################", +"#O ##############################", +"#O ##############################", +"#O ##############################", +"#O ##############################", +"#O ##############################", +"#O ##############################", +"#O ##############################", +"#O ##############################", +"#O ##############################", +"#o ##############################", +"#O ##############################", +"#O ##############################", +"#O ##############################", +"#O ##############################", +"#O ###+########+########+########", +"#O ##X +######X +######X +#######", +"#O #O +####o +####O +######", +"#O + +##+ +##+ +###.+", +"#O . +#X +#X +#X +", +"#O o X X X X o o#", +"#O X#+ X#+ X#+ X##", +"#+X###+ +##+ +##+ +##", +"#######+ o####+ o####+ o###", +"########+ X######+ .######+ X####", +"#########+########@########@#####" +}; diff --git a/data/pixmaps/feta/10/scripts-mordent.xpm b/data/pixmaps/feta/10/scripts-mordent.xpm new file mode 100644 index 0000000..b485a4e --- /dev/null +++ b/data/pixmaps/feta/10/scripts-mordent.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"24 15 8 1", +" c Gray1", +". c #3c3c3c", +"X c #4b4b4b", +"o c #7c7c7c", +"O c #888888", +"+ c #b6b6b6", +"@ c #c3c3c3", +"# c None", +/* pixels */ +"########################", +"############@###########", +"############ o##########", +"#####+X##### O+.########", +"####+ X#### . X#######", +"####X X### X####+#", +"###O X## X##+ O", +"##+ X+ X# .#", +"##. #X oX +#", +"#O +##X O#X O##", +"##+####X . o##X X###", +"########X + o###X +###", +"#########X+# o####X+####", +"############ o##########", +"############+###########" +}; diff --git a/data/pixmaps/feta/10/scripts-open.xpm b/data/pixmaps/feta/10/scripts-open.xpm new file mode 100644 index 0000000..685175a --- /dev/null +++ b/data/pixmaps/feta/10/scripts-open.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 12 7 1", +" c #020202", +". c #313131", +"X c #4e4e4e", +"o c Gray43", +"O c Gray53", +"+ c #bbbbbb", +"@ c None", +/* pixels */ +"@@@@@@@@@@", +"@@@@+o+@@@", +"@@@X o X@@", +"@@o.@@@.o@", +"@@ o@@@O @", +"@O @@@@@ O", +"@O @@@@@ O", +"@O @@@@@ O", +"@@ O@@@o @", +"@@o.@@@.o@", +"@@@X o X@@", +"@@@@+o+@@@" +}; diff --git a/data/pixmaps/feta/10/scripts-prall.xpm b/data/pixmaps/feta/10/scripts-prall.xpm new file mode 100644 index 0000000..f992bac --- /dev/null +++ b/data/pixmaps/feta/10/scripts-prall.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"24 12 8 1", +" c Gray1", +". c #3f3f3f", +"X c #464646", +"o c #7b7b7b", +"O c #808080", +"+ c Gray71", +"@ c #c3c3c3", +"# c None", +/* pixels */ +"########################", +"######+########@########", +"#####X +######X +#######", +"####O +####o +######", +"###+ +##+ +###.+", +"###X +#X +#X +", +"##o o X X o o#", +"#+ X#+ X#+ X##", +"#+X###+ +##+ +##", +"#######+ o####+ O###", +"########+ X######+ X####", +"#########@########+#####" +}; diff --git a/data/pixmaps/feta/10/scripts-pralldown.xpm b/data/pixmaps/feta/10/scripts-pralldown.xpm new file mode 100644 index 0000000..4ddff54 --- /dev/null +++ b/data/pixmaps/feta/10/scripts-pralldown.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"34 17 8 1", +" c #040404", +". c #313131", +"X c #515151", +"o c #6d6d6d", +"O c #8e8e8e", +"+ c Gray71", +"@ c #d5d5d5", +"# c None", +/* pixels */ +"##################################", +"#########+########+########+######", +"########O X######o o######X O#####", +"#######O O####o +####X @####", +"#O.###O @##o @##X .####", +"#@ .#O X#o o#X O###", +"##O X .X . XX . oo @##", +"###X .##. X##. X#@..@#", +"###@. .@##+ X###+ o###O X#", +"####O .#####o X#####X o####@ @", +"#####o.#######XX#######.X######. O", +"######@#######@################ O", +"###############################. O", +"##############################@ @", +"##############################O o#", +"############################## .##", +"##############################O@##" +}; diff --git a/data/pixmaps/feta/10/scripts-prallmordent.xpm b/data/pixmaps/feta/10/scripts-prallmordent.xpm new file mode 100644 index 0000000..beb4f38 --- /dev/null +++ b/data/pixmaps/feta/10/scripts-prallmordent.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"33 15 8 1", +" c Gray1", +". c #3c3c3c", +"X c #4b4b4b", +"o c Gray49", +"O c #888888", +"+ c Gray71", +"@ c #c3c3c3", +"# c None", +/* pixels */ +"#################################", +"#####################@###########", +"####################o ###########", +"#####+X#######+X####o #+X########", +"####+ X#####+ X###o + X#######", +"####X X####X X##o . X####+#", +"###O X##o X#o X##+ O", +"##+ X+ Xo X# .#", +"##X #X +X +X +#", +"#O +##X o##X ##X O##", +"##+####X X####X ###X X###", +"########X +#####X . ####X +###", +"#########X+#######X+O #####X+####", +"####################o ###########", +"#####################+###########" +}; diff --git a/data/pixmaps/feta/10/scripts-prallprall.xpm b/data/pixmaps/feta/10/scripts-prallprall.xpm new file mode 100644 index 0000000..6aa1877 --- /dev/null +++ b/data/pixmaps/feta/10/scripts-prallprall.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"33 12 8 1", +" c Gray1", +". c #3f3f3f", +"X c Gray27", +"o c #7b7b7b", +"O c #808080", +"+ c Gray71", +"@ c #c3c3c3", +"# c None", +/* pixels */ +"#################################", +"######+########@########+########", +"#####X +######X +######X +#######", +"####O +####O +####O +######", +"###+ +##+ +##+ +###.+", +"###X +#X +#X +#X +", +"##o o X X X X o o#", +"#+ X#+ X#+ X#+ X##", +"#+.###+ +##+ +##+ +##", +"#######+ O####+ O####+ o###", +"########+ X######+ X######+ X####", +"#########+########+########@#####" +}; diff --git a/data/pixmaps/feta/10/scripts-prallup.xpm b/data/pixmaps/feta/10/scripts-prallup.xpm new file mode 100644 index 0000000..d96192f --- /dev/null +++ b/data/pixmaps/feta/10/scripts-prallup.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"35 15 8 1", +" c #060606", +". c #2a2a2a", +"X c Gray32", +"o c #6d6d6d", +"O c Gray56", +"+ c #b1b1b1", +"@ c #d0d0d0", +"# c None", +/* pixels */ +"###################################", +"###############################O@##", +"############################### .##", +"###############################O o#", +"###############################@ @", +"########@.+######@ @######+ @### O", +"#######@ @####+ @####+ .###. O", +"#@O###@. .###@ X###O o## O", +"#O O#@ O#+ +#O @@ @", +"##X + o o ...O o#", +"##@. +@ @@ @@ .##", +"###+ +##o @##o .@##O.@##", +"####o +####X @####. .@########", +"#####. +#####@. @#####@ .@#########", +"#####@@#######@@#######@@##########" +}; diff --git a/data/pixmaps/feta/10/scripts-rcomma.xpm b/data/pixmaps/feta/10/scripts-rcomma.xpm new file mode 100644 index 0000000..2e792a1 --- /dev/null +++ b/data/pixmaps/feta/10/scripts-rcomma.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 13 8 1", +" c #040404", +". c #343434", +"X c Gray32", +"o c Gray45", +"O c #888888", +"+ c #afafaf", +"@ c #cacaca", +"# c None", +/* pixels */ +"######", +"##+o##", +"## .#", +"##X +", +"##@ O", +"###X O", +"###O +", +"###o #", +"### X#", +"##@ +#", +"##X.##", +"#+ @##", +"#++###" +}; diff --git a/data/pixmaps/feta/10/scripts-reverseturn.xpm b/data/pixmaps/feta/10/scripts-reverseturn.xpm new file mode 100644 index 0000000..55131fd --- /dev/null +++ b/data/pixmaps/feta/10/scripts-reverseturn.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"23 12 8 1", +" c Gray1", +". c #323232", +"X c Gray29", +"o c Gray46", +"O c Gray53", +"+ c #b9b9b9", +"@ c #c1c1c1", +"# c None", +/* pixels */ +"#######################", +"####@oO########+OOO####", +"###X +####@. X##", +"##X O###O X#", +"## XO +##X XoOX #", +"#O.##+o+##X +####.o", +"#oo######X X######oo", +"#O.####+ X##+o+##.O", +"## XOOX X##+ OX #", +"##X O###O X#", +"###X .@####+ X##", +"#####OOO+########Oo+###" +}; diff --git a/data/pixmaps/feta/10/scripts-segno.xpm b/data/pixmaps/feta/10/scripts-segno.xpm new file mode 100644 index 0000000..02ed50d --- /dev/null +++ b/data/pixmaps/feta/10/scripts-segno.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"21 31 8 1", +" c Gray1", +". c Gray21", +"X c #4c4c4c", +"o c #767676", +"O c #868686", +"+ c Gray72", +"@ c Gray78", +"# c None", +/* pixels */ +"#####################", +"#####+oo+#########OO@", +"###@. Xo..@######+ #", +"##+ +###X +##### +#", +"##X X####X X####O X##", +"#+ o###X +### +##", +"#O o### O##X X###", +"#O ### o#+ ####", +"#O o##X +#X O####", +"#+ ###Oo+#O X#####", +"## X###### +#####", +"##+ X####O X######", +"###X .+#+ +######", +"####X OX O##+ +##", +"#####X ###O O##", +"######+ X#######", +"########X +#####", +"###O O### X####", +"###+ +##O XO X###", +"#######+ +#+. X##", +"#######X O####X +#", +"######+ ######X #", +"######X o#+oO### +", +"#####o X#+ X##O O", +"##### +#o ### O", +"####X X##O ###o O", +"###+ ###+ X###o +", +"###X O####X X####X X#", +"##+ #####+ X###+ +#", +"## +######@..oX .@##", +"#@oO#########+oo+####" +}; diff --git a/data/pixmaps/feta/10/scripts-sforzato.xpm b/data/pixmaps/feta/10/scripts-sforzato.xpm new file mode 100644 index 0000000..8a9e33f --- /dev/null +++ b/data/pixmaps/feta/10/scripts-sforzato.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"19 12 8 1", +" c #060606", +". c Gray20", +"X c Gray25", +"o c #747474", +"O c #898989", +"+ c Gray70", +"@ c #cdcdcd", +"# c None", +/* pixels */ +"###################", +"##O################", +"#+ oo############", +"###Oo .o+########", +"#######O. oo@####", +"###########oo. .OO#", +"##############@@ O", +"###########oo. .oO#", +"#######O. oo#####", +"###oo Xo+########", +"#@ oO############", +"#@O################" +}; diff --git a/data/pixmaps/feta/10/scripts-staccato.xpm b/data/pixmaps/feta/10/scripts-staccato.xpm new file mode 100644 index 0000000..ca49c14 --- /dev/null +++ b/data/pixmaps/feta/10/scripts-staccato.xpm @@ -0,0 +1,17 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"4 4 7 1", +" c Gray0", +". c #565656", +"X c #727272", +"o c Gray51", +"O c Gray69", +"+ c #d3d3d3", +"@ c None", +/* pixels */ +"@@@@", +"@+o@", +"@X X", +"@O.O" +}; diff --git a/data/pixmaps/feta/10/scripts-stopped.xpm b/data/pixmaps/feta/10/scripts-stopped.xpm new file mode 100644 index 0000000..e935e81 --- /dev/null +++ b/data/pixmaps/feta/10/scripts-stopped.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 12 4 1", +" c Gray0", +". c #444444", +"X c #888888", +"o c None", +/* pixels */ +"oooooooooooo", +"ooooooXooooo", +"oooooX Xoooo", +"oooooX Xoooo", +"oooooX Xoooo", +"ooXXX. .XXXo", +"oX X", +"ooXXX. .XXXo", +"oooooX Xoooo", +"oooooX Xoooo", +"oooooX Xoooo", +"ooooooXooooo" +}; diff --git a/data/pixmaps/feta/10/scripts-tenuto.xpm b/data/pixmaps/feta/10/scripts-tenuto.xpm new file mode 100644 index 0000000..8022fee --- /dev/null +++ b/data/pixmaps/feta/10/scripts-tenuto.xpm @@ -0,0 +1,13 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 3 4 1", +" c #515151", +". c Gray69", +"X c gainsboro", +"o c None", +/* pixels */ +"ooooooooooooo", +"oX .", +"oX ." +}; diff --git a/data/pixmaps/feta/10/scripts-thumb.xpm b/data/pixmaps/feta/10/scripts-thumb.xpm new file mode 100644 index 0000000..386c73c --- /dev/null +++ b/data/pixmaps/feta/10/scripts-thumb.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 15 8 1", +" c #070707", +". c #2c2c2c", +"X c #5d5d5d", +"o c #6f6f6f", +"O c Gray54", +"+ c Gray66", +"@ c #c5c5c5", +"# c None", +/* pixels */ +"##########", +"####+X+###", +"###. o .##", +"##o @#@ o#", +"## ### @", +"#O ### O", +"#O ### O", +"#+ ### +", +"##. ### .#", +"##+ X#X +#", +"###O...O##", +"####O O###", +"####O O###", +"####O o###", +"#####O####" +}; diff --git a/data/pixmaps/feta/10/scripts-trilelement.xpm b/data/pixmaps/feta/10/scripts-trilelement.xpm new file mode 100644 index 0000000..8284941 --- /dev/null +++ b/data/pixmaps/feta/10/scripts-trilelement.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"15 12 8 1", +" c Gray1", +". c #3f3f3f", +"X c #484848", +"o c #7b7b7b", +"O c #808080", +"+ c #b4b4b4", +"@ c #c3c3c3", +"# c None", +/* pixels */ +"###############", +"######+########", +"#####X +#######", +"####o +######", +"###+ +###.+", +"###X +#X +", +"##o o o o#", +"#+ X#+ X##", +"#+.###+ +##", +"#######+ O###", +"########+ X####", +"#########+#####" +}; diff --git a/data/pixmaps/feta/10/scripts-trill-element.xpm b/data/pixmaps/feta/10/scripts-trill-element.xpm new file mode 100644 index 0000000..aef1b2c --- /dev/null +++ b/data/pixmaps/feta/10/scripts-trill-element.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"15 10 8 1", +" c #040404", +". c #2c2c2c", +"X c Gray30", +"o c #767676", +"O c Gray56", +"+ c #afafaf", +"@ c #d5d5d5", +"# c None", +/* pixels */ +"###############", +"#####@O########", +"#####. o#######", +"####X +####++", +"###O .@##@ +", +"##+ .OO O#", +"##.X##O O##", +"#OX####O .###", +"#######@. .@###", +"########@O@####" +}; diff --git a/data/pixmaps/feta/10/scripts-trill.xpm b/data/pixmaps/feta/10/scripts-trill.xpm new file mode 100644 index 0000000..cacce86 --- /dev/null +++ b/data/pixmaps/feta/10/scripts-trill.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"30 24 8 1", +" c Gray1", +". c #343434", +"X c #535353", +"o c Gray45", +"O c Gray56", +"+ c Gray69", +"@ c #cecece", +"# c None", +/* pixels */ +"##############################", +"##############O@##############", +"###########+X .###############", +"###########X X###############", +"###########X O###############", +"##########@ +###############", +"##########@ @###############", +"##########o .################", +"##########X .################", +"##########X O###@+@@####OXX+#", +"#########@ +##+OX .@#. +", +"###+OOO+#@ ++O@###. .O@. O", +"##O+###+OO .O+#####. +##X O", +"#@+######X .#######. ### +", +"#O@####@+. o######+ X###O.O#", +"#++##+OO+ OO@####+ X#######", +"##+oO+@#@ +#O@###X @#######", +"########+ .##@O###. @#######", +"########X .###O###. @#######", +"########X .##++##+ X########", +"########X @#.@##+ X########", +"########O o###o O########", +"#########. o####. @########", +"#########@OO@#################" +}; diff --git a/data/pixmaps/feta/10/scripts-turn.xpm b/data/pixmaps/feta/10/scripts-turn.xpm new file mode 100644 index 0000000..bc4bca9 --- /dev/null +++ b/data/pixmaps/feta/10/scripts-turn.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"23 12 8 1", +" c Gray1", +". c #323232", +"X c Gray29", +"o c Gray46", +"O c Gray53", +"+ c #b9b9b9", +"@ c #c1c1c1", +"# c None", +/* pixels */ +"#######################", +"#####OOO+########OO+###", +"###X .@####+ X##", +"##X O###O X#", +"## XOOX X##+ OX #", +"#O.####+ X##+o+##.o", +"#oo######X X######oo", +"#O.##+o+##X +####.O", +"## XO +##X XOOX #", +"##X O###o X#", +"###X +####@. X##", +"####+OO########@OOO####" +}; diff --git a/data/pixmaps/feta/10/scripts-ufermata.xpm b/data/pixmaps/feta/10/scripts-ufermata.xpm new file mode 100644 index 0000000..624987a --- /dev/null +++ b/data/pixmaps/feta/10/scripts-ufermata.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"27 16 7 1", +" c #040404", +". c Gray17", +"X c #767676", +"o c #909090", +"O c #afafaf", +"+ c Gray83", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@OXooXO@@@@@@@@@@", +"@@@@@@@@@X X@@@@@@@@", +"@@@@@@@O. .O@@@@@@", +"@@@@@@o o@@@@@", +"@@@@@o .oOOOOO. o@@@@", +"@@@@+ X+@@@@@@@@+X +@@@", +"@@@@. .+@@@@@@@@@@@@+. .@@@", +"@@@o .+@@@@@@@@@@@@@@+. o@@", +"@@@. +@@@@@@@@@@@@@@@@+ .@@", +"@@+ o@@@@@@@@++@@@@@@@@o +@", +"@@X.@@@@@@@@X X@@@@@@@@.X@", +"@@ X@@@@@@@o o@@@@@@@X @", +"@+ +@@@@@@@o o@@@@@@@+ +", +"@o @@@@@@@@O O@@@@@@@@ o", +"@OO@@@@@@@@@OXXO@@@@@@@@@OO" +}; diff --git a/data/pixmaps/feta/10/scripts-umarcato.xpm b/data/pixmaps/feta/10/scripts-umarcato.xpm new file mode 100644 index 0000000..07353df --- /dev/null +++ b/data/pixmaps/feta/10/scripts-umarcato.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 12 7 1", +" c Gray2", +". c #313131", +"X c #6d6d6d", +"o c #8e8e8e", +"O c Gray68", +"+ c #d0d0d0", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@", +"@@@@@@o@@@@@", +"@@@@@O O@@@@", +"@@@@@. .@@@@", +"@@@@O O@@@", +"@@@@. .@@@", +"@@@o.X o@@", +"@@@ O+ .@@", +"@@o.@@X o@", +"@@ O@@+ .@", +"@o.@@@@. o", +"@OO@@@@OXoXO" +}; diff --git a/data/pixmaps/feta/10/scripts-upbow.xpm b/data/pixmaps/feta/10/scripts-upbow.xpm new file mode 100644 index 0000000..fa0143c --- /dev/null +++ b/data/pixmaps/feta/10/scripts-upbow.xpm @@ -0,0 +1,34 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 22 6 1", +" c Gray1", +". c Gray23", +"X c #777777", +"o c #868686", +"O c #b7b7b7", +"+ c None", +/* pixels */ +"++++++++++++++", +"++o+++++++++OO", +"+o +++++++++ o", +"++ X+++++++o +", +"++ X+++++++X +", +"++X +++++++ X+", +"++O O+++++O O+", +"+++ X+++++X ++", +"+++..+++++..++", +"+++X +++++ X++", +"++++ X+++o +++", +"++++ X+++X +++", +"++++X +++ X+++", +"++++O O+O O+++", +"+++++ X+X ++++", +"+++++..+..++++", +"+++++X + o++++", +"++++++ +++++", +"++++++ +++++", +"++++++X X+++++", +"++++++O o+++++", +"+++++++o++++++" +}; diff --git a/data/pixmaps/feta/10/scripts-upedalheel.xpm b/data/pixmaps/feta/10/scripts-upedalheel.xpm new file mode 100644 index 0000000..f465cd1 --- /dev/null +++ b/data/pixmaps/feta/10/scripts-upedalheel.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 13 6 1", +" c #020202", +". c Gray21", +"X c Gray46", +"o c #898989", +"O c Gray70", +"+ c None", +/* pixels */ +"++++++++++++", +"+OO+++++++OO", +"+o +++++++ o", +"+o +++++++ o", +"+o +++++++ o", +"+o +++++++ o", +"+o +++++++ o", +"+o +++++++ o", +"+X +++++++ o", +"++ o+++++o +", +"++. O+++o .+", +"+++. .++", +"+++++XXX++++" +}; diff --git a/data/pixmaps/feta/10/scripts-upedaltoe.xpm b/data/pixmaps/feta/10/scripts-upedaltoe.xpm new file mode 100644 index 0000000..f99cfd2 --- /dev/null +++ b/data/pixmaps/feta/10/scripts-upedaltoe.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 16 8 1", +" c #060606", +". c #2a2a2a", +"X c Gray31", +"o c #747474", +"O c #909090", +"+ c Gray68", +"@ c Gray85", +"# c None", +/* pixels */ +"############", +"######O#####", +"#####+ O####", +"#####o o####", +"##### ####", +"####+ + +###", +"####X # X###", +"#### o#o ###", +"###O @#@ O##", +"###X.###.X##", +"### o###o ##", +"##O @###@ O#", +"##X.#####.X#", +"## o#####o #", +"#O @#####@ O", +"#@O#######++" +}; diff --git a/data/pixmaps/feta/10/scripts-upmordent.xpm b/data/pixmaps/feta/10/scripts-upmordent.xpm new file mode 100644 index 0000000..30011b6 --- /dev/null +++ b/data/pixmaps/feta/10/scripts-upmordent.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"34 19 8 1", +" c #040404", +". c #343434", +"X c Gray28", +"o c #6f6f6f", +"O c Gray57", +"+ c Gray70", +"@ c #d0d0d0", +"# c None", +/* pixels */ +"##################################", +"######################+###########", +"#####################+ @##########", +"#######.@######@.@###+ @@.########", +"######. @####@. .@##+ +. .#######", +"#####+ @###O .@#+ X .####@@", +"####@ @#@ .#+ .##+ O", +"####X +. .O X# .#", +"###+ O+ OO Oo +#", +"##+ X##+ .##O @#o o##", +"##X O###O @###o @##o .###", +"#+ #####O o#####o X @###X +###", +"#O .######Oo#######oO+ @####XO####", +"#O #################+ @##########", +"#O ##################+###########", +"## +#############################", +"##o O#############################", +"###. #############################", +"####O#############################" +}; diff --git a/data/pixmaps/feta/10/scripts-upprall.xpm b/data/pixmaps/feta/10/scripts-upprall.xpm new file mode 100644 index 0000000..76fa412 --- /dev/null +++ b/data/pixmaps/feta/10/scripts-upprall.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"34 17 8 1", +" c #040404", +". c #313131", +"X c #515151", +"o c #6d6d6d", +"O c #8e8e8e", +"+ c Gray71", +"@ c #d5d5d5", +"# c None", +/* pixels */ +"##################################", +"#######+########+########+########", +"######O X######o o######X O#######", +"#####@ X####+ o####O O######", +"#####. X##@ o##@ O###.O", +"####O X#o o#X O#. @", +"###@ oo . .X . X. X O#", +"##@..@#X .##X .##. X##", +"##X O###o +###X +##@. @##", +"#@ @####o X#####X o#####. O###", +"#O .######X.#######XX#######.o####", +"#O ##############################", +"#O ##############################", +"#@ @#############################", +"##o O#############################", +"###. #############################", +"####O#############################" +}; diff --git a/data/pixmaps/feta/10/scripts-ustaccatissimo.xpm b/data/pixmaps/feta/10/scripts-ustaccatissimo.xpm new file mode 100644 index 0000000..e0fab64 --- /dev/null +++ b/data/pixmaps/feta/10/scripts-ustaccatissimo.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 12 6 1", +" c Gray2", +". c Gray48", +"X c #898989", +"o c Gray75", +"O c #c0c0c0", +"+ c None", +/* pixels */ +"++++++", +"++o.O+", +"+O O", +"+X X", +"+o o", +"++ +", +"++ +", +"++. .+", +"++X X+", +"++X X+", +"+++ ++", +"+++X++" +}; diff --git a/data/pixmaps/feta/10/unknown.xpm b/data/pixmaps/feta/10/unknown.xpm new file mode 100644 index 0000000..8698b03 --- /dev/null +++ b/data/pixmaps/feta/10/unknown.xpm @@ -0,0 +1,16 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 8 2 1", +"x c Gray0", +" c None", +/* pixels */ +" xxx ", +" x ", +" x ", +" xx ", +" x ", +" ", +" x ", +" " +}; diff --git a/data/pixmaps/feta/12/accidentals-(.xpm b/data/pixmaps/feta/12/accidentals-(.xpm new file mode 100644 index 0000000..470584a --- /dev/null +++ b/data/pixmaps/feta/12/accidentals-(.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 26 8 1", +" c #070707", +". c #2f2f2f", +"X c Gray29", +"o c Gray48", +"O c Gray57", +"+ c #b9b9b9", +"@ c #cecece", +"# c None", +/* pixels */ +"#######", +"#####++", +"#####.O", +"####o.#", +"#### O#", +"###O ##", +"### X##", +"##O +##", +"##X @##", +"## ###", +"#@ .###", +"#O .###", +"#o .###", +"#o X###", +"#o .###", +"#o X###", +"#@ .###", +"## ###", +"##X @##", +"##O +##", +"### X##", +"###o ##", +"#### O#", +"####o.#", +"#####.O", +"#####@+" +}; diff --git a/data/pixmaps/feta/12/accidentals-).xpm b/data/pixmaps/feta/12/accidentals-).xpm new file mode 100644 index 0000000..205ee99 --- /dev/null +++ b/data/pixmaps/feta/12/accidentals-).xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 26 8 1", +" c #070707", +". c #2f2f2f", +"X c Gray29", +"o c Gray48", +"O c Gray57", +"+ c #b9b9b9", +"@ c #cecece", +"# c None", +/* pixels */ +"#######", +"#+@####", +"#O.####", +"## o###", +"##O ###", +"### o##", +"###X ##", +"###@ O#", +"###@ X#", +"#### #", +"####. @", +"####X o", +"####X o", +"####. o", +"####X o", +"####. O", +"####. #", +"###@ @", +"###@ X#", +"###@ O#", +"###X ##", +"### O##", +"##O ###", +"## o###", +"#O.####", +"#+@####" +}; diff --git a/data/pixmaps/feta/12/accidentals--1.xpm b/data/pixmaps/feta/12/accidentals--1.xpm new file mode 100644 index 0000000..ce69b43 --- /dev/null +++ b/data/pixmaps/feta/12/accidentals--1.xpm @@ -0,0 +1,46 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 32 8 1", +" c Gray1", +". c #313131", +"X c Gray28", +"o c #6c6c6c", +"O c Gray54", +"+ c #afafaf", +"@ c #cacaca", +"# c None", +/* pixels */ +"############", +"#@o@########", +"#O O########", +"#O O########", +"#O o########", +"#O O########", +"#O O########", +"#O O########", +"#O O########", +"#O O########", +"#O O########", +"#O O########", +"#O O########", +"#O O########", +"#O O########", +"#O O########", +"#O O########", +"#O O##o.X+##", +"#O OO o#", +"#O .XX @", +"#O .@##O O", +"#O O#### O", +"#O O#### +", +"#O O###@ .#", +"#O O### +#", +"#+ +##o O##", +"## ##o +###", +"## #o .+####", +"## .######", +"## .#######", +"## +#######", +"##++########" +}; diff --git a/data/pixmaps/feta/12/accidentals--2.xpm b/data/pixmaps/feta/12/accidentals--2.xpm new file mode 100644 index 0000000..81d7744 --- /dev/null +++ b/data/pixmaps/feta/12/accidentals--2.xpm @@ -0,0 +1,46 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"19 32 8 1", +" c Gray1", +". c #2f2f2f", +"X c Gray29", +"o c #727272", +"O c #909090", +"+ c #aeaeae", +"@ c #cbcbcb", +"# c None", +/* pixels */ +"###################", +"#@o@#####o+########", +"#O O####@ X########", +"#O O####@ X########", +"#O O####@ X########", +"#O O####@ X########", +"#O O####@ X########", +"#O O####@ X########", +"#O O####@ X########", +"#O O####@ X########", +"#O O####@ X########", +"#O O####@ X########", +"#O O####@ X########", +"#O O####@ X########", +"#o O####@ X########", +"#O O####@ X########", +"#O O####@ X########", +"#O O#+.X. X#@X..+##", +"#O o. Xo o#", +"#o .X XX @", +"#O .##@ @##+ O", +"#O O###X o####. o", +"#O O###X +####. +", +"#O O##@ @###@ .#", +"#O O##o @###o O#", +"#+ +#@ O +##O O##", +"## ##X @@ @#O .O###", +"#@.#X @#@ @O .@####", +"#@.. @##@ o######", +"## O###@ O#######", +"##.X####@ ########", +"#########O@########" +}; diff --git a/data/pixmaps/feta/12/accidentals-0.xpm b/data/pixmaps/feta/12/accidentals-0.xpm new file mode 100644 index 0000000..d06f69c --- /dev/null +++ b/data/pixmaps/feta/12/accidentals-0.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 36 7 1", +" c #070707", +". c #282828", +"X c Gray37", +"o c #777777", +"O c #868686", +"+ c Gray75", +"@ c None", +/* pixels */ +"@@@@@@@@@", +"@+O@@@@@@", +"@o @@@@@@", +"@o @@@@@@", +"@o @@@@@@", +"@o @@@@@@", +"@o @@@@@@", +"@o @@@@@@", +"@o @@@@@@", +"@o OOX o", +"@o o", +"@o o", +"@o o", +"@o o", +"@o .oo@ o", +"@o @@@@ o", +"@o @@@@ o", +"@o @@@@ o", +"@o @@@@ o", +"@o @@@@ o", +"@o @@@@ o", +"@o @@@@ o", +"@o @oo. o", +"@o o", +"@o o", +"@o o", +"@o o", +"@O XOo o", +"@@@@@@@ o", +"@@@@@@@ o", +"@@@@@@@ o", +"@@@@@@@ o", +"@@@@@@@ o", +"@@@@@@@ o", +"@@@@@@@ o", +"@@@@@@@O+" +}; diff --git a/data/pixmaps/feta/12/accidentals-1.xpm b/data/pixmaps/feta/12/accidentals-1.xpm new file mode 100644 index 0000000..4e60364 --- /dev/null +++ b/data/pixmaps/feta/12/accidentals-1.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 38 7 1", +" c #040404", +". c #232323", +"X c #505050", +"o c #868686", +"O c #acacac", +"+ c #cecece", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@", +"@@@@@@@@@oO@@@", +"@@@@@@@@@.X@@@", +"@@@@Oo@@@.X@@@", +"@@@@X.@@@.X@@@", +"@@@@X.@@@.X@@@", +"@@@@X.@@@.X@@@", +"@@@@X.@@@.X@@@", +"@@@@X.@@@.X@@@", +"@@@@X.@@@.XO o", +"@@@@X.@@+ o", +"@@@@X.O. o", +"@@@@. X", +"@+. .+", +"@o .@@@", +"@o .O.X@@@", +"@X +@@.X@@@", +"@o OX.@@@.X@@@", +"@@@@X.@@@.X@@@", +"@@@@X.@@@.X@@@", +"@@@@X.@@@.X@@@", +"@@@@X.@@@.XO o", +"@@@@X.@@+ o", +"@@@@X.O. o", +"@@@@. X", +"@+. .+", +"@o .@@@", +"@o .O.X@@@", +"@X +@@.X@@@", +"@o OX.@@@.X@@@", +"@@@@X.@@@.X@@@", +"@@@@X.@@@.X@@@", +"@@@@X.@@@.X@@@", +"@@@@X.@@@.X@@@", +"@@@@X.@@@.X@@@", +"@@@@X.@@@oO@@@", +"@@@@X.@@@@@@@@", +"@@@@Oo@@@@@@@@" +}; diff --git a/data/pixmaps/feta/12/accidentals-2.xpm b/data/pixmaps/feta/12/accidentals-2.xpm new file mode 100644 index 0000000..d29d604 --- /dev/null +++ b/data/pixmaps/feta/12/accidentals-2.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 14 5 1", +" c #060606", +". c #7b7b7b", +"X c Gray55", +"o c Gray83", +"O c None", +/* pixels */ +"OOOOOOOOOOOOOO", +"OooOOOOOOOOOoo", +"OX XOX X", +"OX .O. X", +"OX .OX X", +"OO o o", +"OOX.X ...O", +"OOOOOo oOOOO", +"OO... XX.O", +"OO o O", +"OX .O. X", +"OX .O. X", +"OX .O. X", +"OooOOOOOOOOOoo" +}; diff --git a/data/pixmaps/feta/12/accordion-accBB.xpm b/data/pixmaps/feta/12/accordion-accBB.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/12/accordion-accBayanbase.xpm b/data/pixmaps/feta/12/accordion-accBayanbase.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/12/accordion-accDiscant.xpm b/data/pixmaps/feta/12/accordion-accDiscant.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/12/accordion-accDot.xpm b/data/pixmaps/feta/12/accordion-accDot.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/12/accordion-accFreebase.xpm b/data/pixmaps/feta/12/accordion-accFreebase.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/12/accordion-accOldEE.xpm b/data/pixmaps/feta/12/accordion-accOldEE.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/12/accordion-accOldEES.xpm b/data/pixmaps/feta/12/accordion-accOldEES.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/12/accordion-accSB.xpm b/data/pixmaps/feta/12/accordion-accSB.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/12/accordion-accStdbase.xpm b/data/pixmaps/feta/12/accordion-accStdbase.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/12/clefs-C.xpm b/data/pixmaps/feta/12/clefs-C.xpm new file mode 100644 index 0000000..ea262d1 --- /dev/null +++ b/data/pixmaps/feta/12/clefs-C.xpm @@ -0,0 +1,62 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"33 48 8 1", +" c #040404", +". c #2c2c2c", +"X c #4e4e4e", +"o c #676767", +"O c Gray54", +"+ c #afafaf", +"@ c Gray82", +"# c None", +/* pixels */ +"#################################", +"#####@#############@OOO@#########", +"#O .#o +####@o. .+######", +"#O #o +###o .OOOo .+####", +"#O .#o +##O @####@ +###", +"#O #o +## +#####+ +##", +"#O .#o +#o @#####. .##", +"#O #o +#X .#####+ o#", +"#O #o +#X @####+ .#", +"#O .#o +#O .######. #", +"#O .#o +##X +######. +", +"#O #o +###o..+#######. O", +"#O .#o +##############. O", +"#O .#o +###@##########. O", +"#O #o +##@ o#########. O", +"#O .#o +##@ X#########. @", +"#O .#o +##@ .#########. #", +"#O #o +##o +#######+ O#", +"#O .#o +##X o#######+ .##", +"#O .#o +#@ @######X @##", +"#O #o +#o +####+ @###", +"#O .#o +# .. .XX. o@####", +"#O .#o +o +##O. .o@######", +"#O #o . .#####++@#########", +"#O .#o .#################", +"#O #o .#################", +"#o .#o o. @###O..X+@#######", +"#O #o ++ X@O. o@#####", +"#O .#o +#. .+@@+. o####", +"#O #o +#+ o######. o###", +"#O .#o +##. .#######o o##", +"#O #o +##X +#######+ @#", +"#O #o +##+ @########. X#", +"#O .#o +##@ X#########. #", +"#O .#o +##@ X#########. O", +"#O #o +###o+#########. O", +"#O .#o +##############. O", +"#O .#o +###@O+########. O", +"#O #o +##+ .#######. O", +"#O .#o +#@ o######. @", +"#O .#o +#X @####+ .#", +"#O #o +#X @####O +#", +"#O .#o +#X o#####. .##", +"#O .#o +#+ o#####+ +##", +"#O #o +##X @####@. +###", +"#O .#o +##@. O@OOo .+####", +"#O .#o +###@X .+######", +"#@oOOOOO#+o@######+oOOO@#########" +}; diff --git a/data/pixmaps/feta/12/clefs-C_change.xpm b/data/pixmaps/feta/12/clefs-C_change.xpm new file mode 100644 index 0000000..7ef2f11 --- /dev/null +++ b/data/pixmaps/feta/12/clefs-C_change.xpm @@ -0,0 +1,53 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"27 39 8 1", +" c #040404", +". c Gray20", +"X c Gray29", +"o c #797979", +"O c #888888", +"+ c #b1b1b1", +"@ c Gray81", +"# c None", +/* pixels */ +"###########################", +"#####@##########+oOO@######", +"#O O# o####o .+####", +"#O O# o##+ +##@X X###", +"#O O# o#+ #####X X##", +"#O O# o#. +####@ +#", +"#O O# o# +#### .#", +"#O O# O# O####X @", +"#O O# o#X @####o O", +"#O o# o##o .@#####o O", +"#O O# o###########O O", +"#O O# o##OO#######o O", +"#O O# o##o #######o +", +"#O O# o##. #######o #", +"#O O# o#@ +######o X#", +"#O o# o#+ o###### @#", +"#O O# o#o O####O @##", +"#O O# O@ .X ... o####", +"#O O# oX O#@o...+@#####", +"#O O# ##############", +"#O O# ##############", +"#O o# X. @##@++@#######", +"#O O# OO X@o .o@####", +"#O O# o#. O@@O O###", +"#O O# o#o .@####@ o##", +"#O O# o#@ O######. O#", +"#O O# o## @######O .#", +"#O O# o##o #######o @", +"#O O# o##o #######o O", +"#O O# o###########O O", +"#O o# o##@O+######o O", +"#O O# o#@ o#####o O", +"#O O# o# O####X @", +"#O o# O# o#### .#", +"#O O# o# X####@ +#", +"#O O# o#o @####X X##", +"#O O# o##X ###@X X###", +"#O O# o###o .. .+####", +"#@oOOo@#o@#####ooOo+#######" +}; diff --git a/data/pixmaps/feta/12/clefs-F.xpm b/data/pixmaps/feta/12/clefs-F.xpm new file mode 100644 index 0000000..c53e90a --- /dev/null +++ b/data/pixmaps/feta/12/clefs-F.xpm @@ -0,0 +1,53 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"34 39 8 1", +" c #040404", +". c Gray19", +"X c Gray33", +"o c #747474", +"O c #8e8e8e", +"+ c Gray69", +"@ c #d0d0d0", +"# c None", +/* pixels */ +"##################################", +"############OoOoo+################", +"#########+. .+#############", +"#######+. o@###O .+###########", +"######+ X########X +##########", +"#####+ X##########X +####+Xo+#", +"##### ###########@ @##O @", +"####o @############X o##o O", +"###@ oo@##########O @#O @", +"###O O########## o#@. X#", +"###. +######### o###O@##", +"### .#########X #######", +"### +########o #######", +"### o########O #######", +"###. o########o #######", +"###o @########o #######", +"###@. o#########o .##@Xo##", +"####@. O##########. o#O .#", +"######+++@########### o#o +", +"####################@ @#o O", +"####################X o##+. .#", +"#################### O###@@+@#", +"###################O .#########", +"##################@. @#########", +"##################X O##########", +"#################O .###########", +"################@ .@###########", +"###############@. .#############", +"##############@ .##############", +"#############@ X@##############", +"############+ O################", +"###########X X@#################", +"#########@. O###################", +"########O o@####################", +"######@X o@######################", +"#####X o@########################", +"###O o###########################", +"#+ o@############################", +"#++###############################" +}; diff --git a/data/pixmaps/feta/12/clefs-F_change.xpm b/data/pixmaps/feta/12/clefs-F_change.xpm new file mode 100644 index 0000000..15e3f44 --- /dev/null +++ b/data/pixmaps/feta/12/clefs-F_change.xpm @@ -0,0 +1,46 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"27 32 8 1", +" c Gray1", +". c #2f2f2f", +"X c #4b4b4b", +"o c #6f6f6f", +"O c Gray54", +"+ c #b1b1b1", +"@ c #d2d2d2", +"# c None", +/* pixels */ +"###########################", +"#########@OoOo@############", +"#######+. .O##########", +"######. o@###o .@########", +"####@. .@######O .@####@@#", +"####o @########X X###X +", +"###@ O#########+ O#+ O", +"###o oo@########. .#@ O", +"###. +#######. @#+.X@", +"### .#######O O#####", +"##@ +######+ o#####", +"### +######+ X#####", +"###. +######+ o#####", +"###O X#######+ o##@@#", +"####o X########O +#X +", +"#####@+@#########. #+ O", +"#################. X#@ O", +"################O o##O.X@", +"################. #######", +"###############O O#######", +"##############@ X########", +"##############. @########", +"#############. @#########", +"############X @##########", +"###########X .@###########", +"#########+ o#############", +"########O X+##############", +"######@. O################", +"#####X O##################", +"###o O####################", +"#+ o######################", +"#++########################" +}; diff --git a/data/pixmaps/feta/12/clefs-G.xpm b/data/pixmaps/feta/12/clefs-G.xpm new file mode 100644 index 0000000..0268958 --- /dev/null +++ b/data/pixmaps/feta/12/clefs-G.xpm @@ -0,0 +1,104 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"32 90 8 1", +" c #040404", +". c #393939", +"X c #484848", +"o c Gray48", +"O c Gray52", +"+ c #b7b7b7", +"@ c Gray77", +"# c None", +/* pixels */ +"################################", +"###################+############", +"##################X +###########", +"#################X ###########", +"################X X##########", +"###############o +#########", +"##############+ X#########", +"##############X +########", +"#############+ X#X X########", +"#############X X##+ ########", +"############+ #### O#######", +"############o +####X X#######", +"############ o#####o #######", +"############ ######o +######", +"###########+ O######o o######", +"###########o #######o X######", +"###########O o#######o ######", +"###########o O#######o ######", +"###########O ########X ######", +"###########o ######## ######", +"###########+ #######+ ######", +"############ #######o X######", +"############ ####### o######", +"############X ######o +######", +"############o ###### #######", +"############o O####o O#######", +"############+ o###+ ########", +"############# o###X o########", +"############# ##o #########", +"#############o #+ o#########", +"#############o o X##########", +"#############O ###########", +"############## +###########", +"#############X +############", +"############X X#############", +"###########X X##############", +"##########+ X###############", +"#########+ o###############", +"########+ o###############", +"######## + ###############", +"#######X +#o ###############", +"######X +##o +##############", +"#####+ o###o O##############", +"##### X##### o##############", +"####X ###### ##############", +"###+ +######X ##############", +"###X o#######o oooO##########", +"### ######+. .@#######", +"##O +#####X .@#####", +"##. X#####X +####", +"## O####o +###", +"#+ ##### .+o @##OX +##", +"#O X####O +##o O####+. X##", +"#O o####X o###O O######X +#", +"#O +#### ##### o#######X o#", +"#O ##### o##### #######+ #", +"#O ##### o#####X ########X +", +"## #####X O#####O +#######O O", +"## #####O X#####o o######## O", +"##o +##### +####+ O######## O", +"##+ o#####O X##### X######## O", +"###X ######X X#### ######## #", +"###+ o######X +##o #######+ X#", +"####O #######O ##o O######o +#", +"#####X X#######@@##O O###### .##", +"######X X########### .#####o +##", +"#######X +######### ####+ +###", +"########+ .@#######. ###o +####", +"##########o oO####o oo .@#####", +"############O. .+#######", +"###############+ooooo o#########", +"##################### #########", +"##################### #########", +"#####################o +########", +"#####################O o########", +"#####################O O########", +"###################### .########", +"########o o#########o ########", +"#######X X########o ########", +"######O o#######o ########", +"######X #######o ########", +"###### #######o ########", +"###### ####### .########", +"######X o######+ O########", +"######O @######. #########", +"####### +######+ O#########", +"#######+ @######O X##########", +"########+ o+##O. X###########", +"##########o +############", +"############+OOOo@##############" +}; diff --git a/data/pixmaps/feta/12/clefs-G_change.xpm b/data/pixmaps/feta/12/clefs-G_change.xpm new file mode 100644 index 0000000..ca3c45e --- /dev/null +++ b/data/pixmaps/feta/12/clefs-G_change.xpm @@ -0,0 +1,86 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"26 72 8 1", +" c #040404", +". c #2d2d2d", +"X c #515151", +"o c Gray46", +"O c Gray54", +"+ c #afafaf", +"@ c Gray82", +"# c None", +/* pixels */ +"##########################", +"###############O##########", +"##############X X#########", +"#############X +########", +"############X ########", +"###########+ o#######", +"##########@ X #######", +"##########o X#+ +######", +"########## X### o######", +"#########o @###o ######", +"#########o O####o +#####", +"######### #####O O#####", +"######### O#####O X#####", +"######### ######o #####", +"######### X######o #####", +"######### O######. #####", +"#########X O#####@ #####", +"#########O O#####O X#####", +"#########O O#####. O#####", +"########## o####+ @#####", +"########## .####. .######", +"##########X ###o O######", +"##########o ##O X#######", +"##########O +@ @#######", +"########### XX o########", +"########### o#########", +"########### .##########", +"##########O @##########", +"#########O @###########", +"########O O############", +"#######O o############", +"######+ o. ############", +"#####@. o#o ############", +"#####. o##o @###########", +"####O X###+ O###########", +"###@ .@#### o###########", +"###. @##### .###########", +"##O o#####@. ..X+@######", +"##X .####@. .o@####", +"## +###@. .@###", +"#@ ####. .X. .@##", +"#O o###+ X+ .##@O. .##", +"#O o###X O##. ####@. O#", +"#O @### .###o @####@. .#", +"#O #### O###o O#####+ @", +"#+ ###@ O###@ o###### O", +"## ####o X#### X######o O", +"##. @###+ @###. ######O O", +"##+ O####. X###o ######O +", +"###. @####. o@#O O#####X #", +"###@ X####@X ++ o##### X#", +"####O o#####@X@# X####O @#", +"#####+ X@####### ###@ O##", +"######+. X@#####o ##+ O###", +"########o X+O+X . .O####", +"##########+X. .+######", +"#############@@#@ X#######", +"################# #######", +"#################. #######", +"#################O O######", +"#################o O######", +"######O. X@####### o######", +"#####X @###### o######", +"####+ X###### o######", +"####O ###### o######", +"####o #####@ O######", +"####+ X#####o #######", +"#####. +##### .#######", +"#####+ .@#####X +#######", +"######+ O+##O +########", +"########X .+#########", +"##########OOOo@###########" +}; diff --git a/data/pixmaps/feta/12/clefs-hufnagel_do.xpm b/data/pixmaps/feta/12/clefs-hufnagel_do.xpm new file mode 100644 index 0000000..ce9fd36 --- /dev/null +++ b/data/pixmaps/feta/12/clefs-hufnagel_do.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"15 19 8 1", +" c Gray1", +". c #2c2c2c", +"X c #555555", +"o c Gray49", +"O c #868686", +"+ c Gray68", +"@ c Gray80", +"# c None", +/* pixels */ +"###############", +"#########O+####", +"#######O X@##", +"#####o O", +"###@. X#", +"##@. X##", +"##. +###", +"#O .+++@####", +"#O .########", +"#O .########", +"#O .########", +"#O .########", +"#O .########", +"#O X@######", +"#O .######", +"#O @######", +"#O @#######", +"#+. @########", +"###+O##########" +}; diff --git a/data/pixmaps/feta/12/clefs-hufnagel_do_change.xpm b/data/pixmaps/feta/12/clefs-hufnagel_do_change.xpm new file mode 100644 index 0000000..e6ce6f9 --- /dev/null +++ b/data/pixmaps/feta/12/clefs-hufnagel_do_change.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 15 8 1", +" c Gray1", +". c Gray16", +"X c Gray34", +"o c #747474", +"O c #818181", +"+ c Gray69", +"@ c Gray81", +"# c None", +/* pixels */ +"############", +"######@o+###", +"####@X XX+", +"###O +", +"##O .+#", +"#+ ...X###", +"#o +######", +"#O +######", +"#O +######", +"#o +######", +"#O o######", +"#O @####", +"#O X#####", +"#O o######", +"##+o@#######" +}; diff --git a/data/pixmaps/feta/12/clefs-hufnagel_do_fa.xpm b/data/pixmaps/feta/12/clefs-hufnagel_do_fa.xpm new file mode 100644 index 0000000..f380ded --- /dev/null +++ b/data/pixmaps/feta/12/clefs-hufnagel_do_fa.xpm @@ -0,0 +1,62 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"15 48 8 1", +" c Gray1", +". c #343434", +"X c Gray32", +"o c #6f6f6f", +"O c Gray53", +"+ c Gray69", +"@ c Gray82", +"# c None", +/* pixels */ +"###############", +"#########O+####", +"#######O o@##", +"#####O O", +"###@. X#", +"###. X##", +"##. +###", +"#o .OOO+####", +"#O .########", +"#O .########", +"#o .########", +"#O .########", +"#O .########", +"#O o#######", +"#O ######", +"#O +######", +"#o O#######", +"#+ +########", +"##@X.@#########", +"###############", +"###############", +"########@Xo####", +"######+. .+@@", +"####@X O", +"###@ o#", +"##@ o##", +"#@ @###", +"#O .@@+@####", +"#O .########", +"#O .##+@####", +"#O .@X +###", +"#O . O", +"#o @", +"#O .@#", +"#O X@##", +"#O oXXO####", +"#O .########", +"#o .########", +"#O .########", +"#O .########", +"#o .########", +"#O .########", +"#O .########", +"#O o########", +"#O @########", +"#O X@#########", +"#O X###########", +"#++############" +}; diff --git a/data/pixmaps/feta/12/clefs-hufnagel_do_fa_change.xpm b/data/pixmaps/feta/12/clefs-hufnagel_do_fa_change.xpm new file mode 100644 index 0000000..3c2fb9a --- /dev/null +++ b/data/pixmaps/feta/12/clefs-hufnagel_do_fa_change.xpm @@ -0,0 +1,57 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 43 8 1", +" c #040404", +". c #2d2d2d", +"X c #4b4b4b", +"o c #767676", +"O c Gray54", +"+ c #b4b4b4", +"@ c #d2d2d2", +"# c None", +/* pixels */ +"############", +"#######O+###", +"####@o Xo+", +"###+ +", +"##+ @#", +"#+ . X@##", +"#O o######", +"#O o######", +"#O o######", +"#O o######", +"#O o######", +"#O X#####", +"#O X#####", +"#O o######", +"#@. o#######", +"###@########", +"############", +"############", +"############", +"############", +"############", +"#######+@###", +"#####+X O@@", +"####o O", +"##@. O#", +"#@ O##", +"#O o@@@###", +"#O o######", +"#O O#oO###", +"#O o+@", +"#O O", +"#O O#", +"#O .@##", +"#O o#@####", +"#O o######", +"#O o######", +"#O O######", +"#O o######", +"#O o######", +"#O O######", +"#O X#######", +"#O o########", +"#++#########" +}; diff --git a/data/pixmaps/feta/12/clefs-hufnagel_fa.xpm b/data/pixmaps/feta/12/clefs-hufnagel_fa.xpm new file mode 100644 index 0000000..a88bb14 --- /dev/null +++ b/data/pixmaps/feta/12/clefs-hufnagel_fa.xpm @@ -0,0 +1,43 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"15 29 8 1", +" c #020202", +". c Gray20", +"X c #535353", +"o c #6d6d6d", +"O c Gray52", +"+ c #aaaaaa", +"@ c #cdcdcd", +"# c None", +/* pixels */ +"###############", +"#########+@####", +"#######+ o@##", +"#####+. .@", +"####O .#", +"###. .##", +"##X .###", +"#+ .O..+####", +"#O .#@######", +"#O .########", +"#O .#@Xo@###", +"#O .o o@#", +"#O @", +"#O +#", +"#O +##", +"#O .+###", +"#O .@o+#####", +"#O .########", +"#O .########", +"#O .########", +"#O .########", +"#O .########", +"#O .########", +"#O .########", +"#O o########", +"#O o#########", +"#O o##########", +"#o @###########", +"#@#############" +}; diff --git a/data/pixmaps/feta/12/clefs-hufnagel_fa_change.xpm b/data/pixmaps/feta/12/clefs-hufnagel_fa_change.xpm new file mode 100644 index 0000000..9d7d231 --- /dev/null +++ b/data/pixmaps/feta/12/clefs-hufnagel_fa_change.xpm @@ -0,0 +1,37 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 23 8 1", +" c #040404", +". c Gray16", +"X c Gray27", +"o c Gray47", +"O c #8b8b8b", +"+ c #afafaf", +"@ c #d2d2d2", +"# c None", +/* pixels */ +"############", +"#######++###", +"#####+. o+#", +"####X O", +"##+ o#", +"#+ . .@##", +"#O O@O####", +"#O o######", +"#O O@XO###", +"#O . ..+", +"#O @", +"#O .@#", +"#O .X.X@##", +"#O O######", +"#O o######", +"#O o######", +"#O o######", +"#O O######", +"#O o######", +"#O +######", +"#O +#######", +"#o.@########", +"#@@#########" +}; diff --git a/data/pixmaps/feta/12/clefs-medicaea_do.xpm b/data/pixmaps/feta/12/clefs-medicaea_do.xpm new file mode 100644 index 0000000..8eb2473 --- /dev/null +++ b/data/pixmaps/feta/12/clefs-medicaea_do.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 37 8 1", +" c Gray1", +". c Gray23", +"X c Gray36", +"o c #717171", +"O c #898989", +"+ c #bbbbbb", +"@ c Gray77", +"# c None", +/* pixels */ +"##############", +"#@+###########", +"#oo###########", +"#oo###########", +"#oo###########", +"#oX###########", +"#oX###########", +"#oX###########", +"#O O##########", +"#O O########", +"#O o######", +"#O o####", +"#O O##", +"#O +", +"#oo@. O", +"#oo##@. O", +"#oo####@. O", +"#oX######+. O", +"#oo########+.O", +"#O +##########", +"#O .+########", +"#O .@######", +"#O .+####", +"#O .@##", +"#O .@", +"#oXO O", +"#oo##o O", +"#oo####O O", +"#oo######o O", +"#oX########O O", +"#oX#########@@", +"#oX###########", +"#oo###########", +"#oo###########", +"#oo###########", +"#oX###########", +"#@+###########" +}; diff --git a/data/pixmaps/feta/12/clefs-medicaea_do_change.xpm b/data/pixmaps/feta/12/clefs-medicaea_do_change.xpm new file mode 100644 index 0000000..8da2fe6 --- /dev/null +++ b/data/pixmaps/feta/12/clefs-medicaea_do_change.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 30 8 1", +" c Gray2", +". c Gray15", +"X c Gray36", +"o c #747474", +"O c Gray54", +"+ c #bbbbbb", +"@ c #c1c1c1", +"# c None", +/* pixels */ +"############", +"#@+#########", +"#oX#########", +"#oX#########", +"#oo#########", +"#O.#########", +"#O o#######", +"#O o#####", +"#O O###", +"#O o#", +"#oXO O", +"#oX##o O", +"#oX####o O", +"#oo######o O", +"#oX#########", +"#oX#########", +"#oX#########", +"#O O########", +"#O o######", +"#O o####", +"#O O##", +"#O.. +", +"#oo#o O", +"#oX###o O", +"#oX#####o O", +"#oX#######o@", +"#oo#########", +"#oo#########", +"#oX#########", +"#@+#########" +}; diff --git a/data/pixmaps/feta/12/clefs-medicaea_fa.xpm b/data/pixmaps/feta/12/clefs-medicaea_fa.xpm new file mode 100644 index 0000000..a2cd7b0 --- /dev/null +++ b/data/pixmaps/feta/12/clefs-medicaea_fa.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"22 37 8 1", +" c Gray1", +". c #2c2c2c", +"X c #515151", +"o c Gray43", +"O c #898989", +"+ c Gray72", +"@ c #cecece", +"# c None", +/* pixels */ +"######################", +"#########@+###########", +"#########+.###########", +"#########@.###########", +"#########+.###########", +"#########+.###########", +"#########+.###########", +"#########+.###########", +"#########@ X@#########", +"#########@ o@#######", +"#########@ o@#####", +"#########@ o@###", +"#########@ o##", +"#+ o##@ +", +"#O .##+.#X O", +"#O .##+.##@X O", +"#O .##+.####@X O", +"#O .##+.######@X O", +"#O .##+.########@.o", +"#O .##@ O##########", +"#o .##@ .+########", +"#O .##@ .+######", +"#O .##@ .+####", +"#O .##@ .+##", +"##ooOo.##@ .@", +"#####@.##+.+. O", +"#####@.##+.##O. O", +"#####@.##+.####O. O", +"#####@.##+.######O O", +"#####@.##+.########O O", +"#####@.##+.#########@@", +"#####@.##+.###########", +"#####@.##+.###########", +"#####@.##+.###########", +"#####@.##+.###########", +"#####@.##+.###########", +"######O##@O###########" +}; diff --git a/data/pixmaps/feta/12/clefs-medicaea_fa_change.xpm b/data/pixmaps/feta/12/clefs-medicaea_fa_change.xpm new file mode 100644 index 0000000..f183fd4 --- /dev/null +++ b/data/pixmaps/feta/12/clefs-medicaea_fa_change.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"19 30 8 1", +" c #070707", +". c Gray15", +"X c #5f5f5f", +"o c #727272", +"O c #8b8b8b", +"+ c #bcbcbc", +"@ c Gray76", +"# c None", +/* pixels */ +"###################", +"########++#########", +"########oo#########", +"########oo#########", +"########oo#########", +"########o.#########", +"########o O#######", +"########o o#####", +"########O o###", +"########o o#", +"########oXO O", +"#+ ##oX##o O", +"#O ##Xo####o O", +"#O ##oo######O O", +"#O ##oX#########", +"#O ##Xo#########", +"#O ##oX#########", +"#O ##o O########", +"#O ##O o######", +"#+ ##o o####", +"####@ ##o o##", +"#####.##o.. @", +"##### @#Xo#o O", +"#####.##oo###o O", +"##### ##XX#####o O", +"##### ##Xo#######o+", +"##### ##Xo#########", +"#####.@#oo#########", +"#####.##oo#########", +"#####O##++#########" +}; diff --git a/data/pixmaps/feta/12/clefs-mensural1_c.xpm b/data/pixmaps/feta/12/clefs-mensural1_c.xpm new file mode 100644 index 0000000..7a3413d --- /dev/null +++ b/data/pixmaps/feta/12/clefs-mensural1_c.xpm @@ -0,0 +1,60 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"32 48 6 1", +" c #040404", +". c Gray25", +"X c #7c7c7c", +"o c #868686", +"O c #c5c5c5", +"+ c None", +/* pixels */ +"++++++++++++++++++++++++++++++++", +"+Oo++oO+++++++++++++++++++Oo++oO", +"+o ++ X+++++++++++++++++++X ++ o", +"+o ++ o+++++++++++++++++++o ++ o", +"+o ++ X+++++++++++++++++++X ++ o", +"+o ++ X+++++++++++++++++++X ++ o", +"+o ++ X+++++++++++++++++++X ++ o", +"+o ++ X+++++++++++++++++++X ++ o", +"+o ++ X+++++++++++++++++++X ++ o", +"+o ++ X+++++++++++++++++++X ++ o", +"+o ++ X+++++++++++++++++++X ++ o", +"+o ++ X+++++++++++++++++++X ++ o", +"+o ++ X+++++++++++++++++++X ++ o", +"+o ++ X+++++++++++++++++++X ++ o", +"+o ++ X+++++++++++++++++++X ++ o", +"+o ++ X+++++++++++++++++++X ++ o", +"+o ++ X+++++++++++++++++++X ++ o", +"+o ++ +++++++++++++++++++ ++ o", +"+o ++ ++ o", +"+o ++ ++ o", +"+o ++ ++ X", +"+o ++ ++ o", +"+o ++ ++ o", +"+o ++ .+++++++++++++++++++. ++ o", +"+o ++ X+++++++++++++++++++X ++ o", +"+o ++ .+++++++++++++++++++. ++ o", +"+o ++ ++ o", +"+o ++ ++ o", +"+o ++ ++ X", +"+o ++ ++ X", +"+o ++ ++ o", +"+o ++ +++++++++++++++++++ ++ o", +"+o ++ X+++++++++++++++++++X ++ o", +"+o ++ X+++++++++++++++++++X ++ o", +"+o ++ X+++++++++++++++++++X ++ o", +"+o ++ X+++++++++++++++++++X ++ o", +"+o ++ X+++++++++++++++++++X ++ o", +"+o ++ X+++++++++++++++++++X ++ o", +"+o ++ X+++++++++++++++++++X ++ o", +"+o ++ X+++++++++++++++++++X ++ o", +"+o ++ X+++++++++++++++++++X ++ o", +"+o ++ X+++++++++++++++++++X ++ o", +"+o ++ X+++++++++++++++++++X ++ o", +"+o ++ X+++++++++++++++++++X ++ o", +"+o ++ X+++++++++++++++++++X ++ o", +"+o ++ X+++++++++++++++++++X ++ o", +"+o ++ X+++++++++++++++++++X ++ o", +"+Oo++oO+++++++++++++++++++Oo++oO" +}; diff --git a/data/pixmaps/feta/12/clefs-mensural1_c_change.xpm b/data/pixmaps/feta/12/clefs-mensural1_c_change.xpm new file mode 100644 index 0000000..2a9468c --- /dev/null +++ b/data/pixmaps/feta/12/clefs-mensural1_c_change.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"26 39 6 1", +" c Gray1", +". c Gray44", +"X c Gray52", +"o c #bbbbbb", +"O c Gray78", +"+ c None", +/* pixels */ +"++++++++++++++++++++++++++", +"+OX+oo+++++++++++++++oo+.O", +"+X +..+++++++++++++++..+ X", +"+X +..+++++++++++++++..+ X", +"+X +..+++++++++++++++..+ X", +"+X +..+++++++++++++++..+ X", +"+X +..+++++++++++++++..+ X", +"+X +..+++++++++++++++..+ X", +"+X +..+++++++++++++++..+ X", +"+X +..+++++++++++++++..+ X", +"+X +..+++++++++++++++..+ X", +"+X +..+++++++++++++++..+ X", +"+X +..+++++++++++++++..+ X", +"+X +..+++++++++++++++..+ X", +"+X +. +++++++++++++++ .+ X", +"+X +X X+ X", +"+X +X X+ X", +"+X +X X+ X", +"+X +X .X.XX..XX.X..X. X+ X", +"+X +..+++++++++++++++..+ X", +"+X +..+++++++++++++++..+ X", +"+X +. .XX..XX..X.XX.. X+ X", +"+X +X X+ X", +"+X +X X+ X", +"+X +X .+ X", +"+X +. +++++++++++++++ X+ X", +"+X +..+++++++++++++++..+ X", +"+X +..+++++++++++++++..+ X", +"+X +..+++++++++++++++..+ X", +"+X +..+++++++++++++++..+ X", +"+X +..+++++++++++++++..+ X", +"+X +..+++++++++++++++..+ X", +"+X +..+++++++++++++++..+ X", +"+X +..+++++++++++++++..+ X", +"+X +..+++++++++++++++..+ X", +"+X +..+++++++++++++++..+ X", +"+X +..+++++++++++++++..+ X", +"+X +..+++++++++++++++..+ X", +"+OX+oo+++++++++++++++oo+XO" +}; diff --git a/data/pixmaps/feta/12/clefs-mensural1_f.xpm b/data/pixmaps/feta/12/clefs-mensural1_f.xpm new file mode 100644 index 0000000..30790d0 --- /dev/null +++ b/data/pixmaps/feta/12/clefs-mensural1_f.xpm @@ -0,0 +1,81 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"25 67 8 1", +" c Gray1", +". c #353535", +"X c #515151", +"o c Gray41", +"O c Gray54", +"+ c #aeaeae", +"@ c #d2d2d2", +"# c None", +/* pixels */ +"#########################", +"###################@o####", +"##################O +###", +"#################@ @##", +"#################o o##", +"################+ +#", +"#+o########OO###. o. .#", +"#O ########..##o .#+ +", +"#O O#@@#@#+ X#@ O##o O", +"#O .o .#o X##@ O", +"#O .o .#. @##X #", +"#O .o .#X .##. o#", +"#O .o X#+ OO ##", +"#O . Xo .. .##X +##", +"#O @####### .##@. @##", +"#o ########..###o O##", +"#O +@@@#@@@ .###+ .##", +"#O .o .###o o#", +"#O .o X##+ @o @", +"#O .o .##. o#@. O", +"#O .o .#+ O##+ o", +"#O . oo .. .#. @##. @", +"#O +######@ .#. X##X X#", +"#o ########..#O @+ @#", +"#@+########..#@. X. O##", +"###########..##+ ###", +"###########..###X O###", +"###########..###+ X####", +"###########..####O .@####", +"###########..####+ o#####", +"###########..####+ o#####", +"###########..####+ o#####", +"###########..####+ o#####", +"###########..####+ o#####", +"###########..#@##+ o#####", +"###########..####+ o#####", +"###########..####+ o#####", +"###########..####+ o#####", +"###########..####+ o#####", +"###########..####+ o#####", +"###########..####+ o#####", +"###########..####+ o#####", +"###########..####+ o#####", +"###########..####+ o#####", +"###########..####+ o#####", +"###########..####+ o#####", +"###########..####+ o#####", +"###########..####+ o#####", +"###########..####+ o#####", +"###########..####+ o#####", +"###########..####+ o#####", +"###########..####+ o#####", +"###########..####+ o#####", +"###########..####+ o#####", +"###########..####+ o#####", +"###########..####+ o#####", +"###########..####+ o#####", +"###########..####+ o#####", +"###########..####+ o#####", +"###########..####+ o#####", +"###########OO####+ o#####", +"#################+ o#####", +"#################+ o#####", +"#################+ o#####", +"#################+ o#####", +"#################+ o#####", +"#################@o+#####" +}; diff --git a/data/pixmaps/feta/12/clefs-mensural1_f_change.xpm b/data/pixmaps/feta/12/clefs-mensural1_f_change.xpm new file mode 100644 index 0000000..9db534f --- /dev/null +++ b/data/pixmaps/feta/12/clefs-mensural1_f_change.xpm @@ -0,0 +1,69 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"21 55 8 1", +" c #070707", +". c Gray18", +"X c #505050", +"o c Gray43", +"O c #8b8b8b", +"+ c #afafaf", +"@ c #d2d2d2", +"# c None", +/* pixels */ +"#####################", +"################++###", +"###############+ ###", +"##############+ o##", +"##############. ##", +"#############+ X .#", +"############# X#X +", +"#oX######Xo#o O#+ O", +"#O @@@#@@ o# @#O #", +"#O O# .#+ O#", +"#O o#X +. ##", +"#O O#@ @##", +"#O X+OO+X O##O X###", +"#O ###### o### .###", +"#O @####@ o###o +##", +"#O .oXXo. O###o .##", +"#O O##@ o#", +"#O o##. @. @", +"#O ...... o#+ o#@ O", +"#o ###### o#. .##X @", +"#OO######oo@ O#+ X#", +"#########oo#. @. @#", +"#########oo#O . O##", +"#########oo##X .###", +"#########oo##@ O###", +"#########oo###o O####", +"#########oo####.#####", +"#########oo###@ @####", +"#########oo####.#####", +"#########oo###@ #####", +"#########oo###@.#####", +"#########oo#### #####", +"#########oo#### #####", +"#########oo#### @####", +"#########oo#### #####", +"#########oo####.#####", +"#########oo###@ #####", +"#########oo####.@####", +"#########oo#### #####", +"#########oo#### #####", +"#########oo#### #####", +"#########oo#### #####", +"#########oo#### @####", +"#########oo####.#####", +"#########oo###@ #####", +"#########oo####.#####", +"#########oo###@.@####", +"#########oo#### #####", +"#########oo###@.#####", +"#########oo####.@####", +"############### #####", +"############### #####", +"##############@.#####", +"###############.#####", +"###############O#####" +}; diff --git a/data/pixmaps/feta/12/clefs-mensural2_c.xpm b/data/pixmaps/feta/12/clefs-mensural2_c.xpm new file mode 100644 index 0000000..7759c9f --- /dev/null +++ b/data/pixmaps/feta/12/clefs-mensural2_c.xpm @@ -0,0 +1,61 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 48 7 1", +" c Gray2", +". c #535353", +"X c #797979", +"o c #838383", +"O c #a5a5a5", +"+ c #c5c5c5", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@", +"@+o@@@@@@@@o+", +"@X @@@@@@@@ X", +"@X @@@@@@@@ X", +"@X @@@@@@@@ X", +"@X @@@@@@@@ X", +"@X @@@@@@@@ X", +"@X @@@@@@@@ X", +"@X @@@@@@@@ X", +"@X @@@@@@@@ X", +"@X @@@@@@@@ X", +"@X @@@@@@@@ X", +"@X @@@@@@@@ X", +"@X @@@@@@@@ X", +"@X ooXOOXoo X", +"@o .. X", +"@X .. o", +"@X +@@@@@@+ X", +"@X @@@@@@@@ X", +"@X @@@@@@@@ X", +"@o .oXOOXo. o", +"@o .. o", +"@X .. X", +"@X @@@@@@@@ X", +"@X @@@@@@@@ X", +"@X @@@@@@@@ X", +"@o .. X", +"@o .. X", +"@o .oXOOXo. o", +"@X @@@@@@@@ X", +"@X @@@@@@@@ X", +"@X O@@@@@@+ X", +"@o .. o", +"@o .. X", +"@X ooXOOXoo X", +"@X @@@@@@@@ X", +"@X @@@@@@@@ X", +"@X @@@@@@@@ X", +"@X @@@@@@@@ X", +"@X @@@@@@@@ X", +"@X @@@@@@@@ X", +"@X @@@@@@@@ X", +"@X @@@@@@@@ X", +"@X @@@@@@@@ X", +"@X @@@@@@@@ X", +"@X @@@@@@@@ X", +"@X @@@@@@@@ X", +"@+o@@@@@@@@o+" +}; diff --git a/data/pixmaps/feta/12/clefs-mensural2_c_change.xpm b/data/pixmaps/feta/12/clefs-mensural2_c_change.xpm new file mode 100644 index 0000000..f26b9dd --- /dev/null +++ b/data/pixmaps/feta/12/clefs-mensural2_c_change.xpm @@ -0,0 +1,54 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 41 7 1", +" c Gray3", +". c #353535", +"X c Gray45", +"o c #848484", +"O c Gray73", +"+ c #c5c5c5", +"@ c None", +/* pixels */ +"@@@@@@@@@@", +"@O+@@@@@+O", +"@Xo@@@@@XX", +"@Xo@@@@@oX", +"@Xo@@@@@oX", +"@Xo@@@@@XX", +"@Xo@@@@@oX", +"@Xo@@@@@XX", +"@XX@@@@@XX", +"@XX@@@@@oX", +"@X.oXXoo.X", +"@X X", +"@X X", +"@XX@@@@@XX", +"@Xo@@@@@oX", +"@XX@@@@@XX", +"@Xo@@@@@oX", +"@X.oXoXo.X", +"@X X", +"@o X", +"@XX@@@@@XX", +"@XX@@@@@XX", +"@o X", +"@X X", +"@X.oooXo.X", +"@Xo@@@@@XX", +"@XX@@@@@XX", +"@Xo@@@@@oX", +"@XX@@@@@XX", +"@X X", +"@X X", +"@X.oXoXo.X", +"@Xo@@@@@XX", +"@XX@@@@@XX", +"@Xo@@@@@oX", +"@Xo@@@@@oX", +"@Xo@@@@@XX", +"@Xo@@@@@XX", +"@XX@@@@@oX", +"@Xo@@@@@XX", +"@O+@@@@@+O" +}; diff --git a/data/pixmaps/feta/12/clefs-mensural2_f.xpm b/data/pixmaps/feta/12/clefs-mensural2_f.xpm new file mode 100644 index 0000000..128b512 --- /dev/null +++ b/data/pixmaps/feta/12/clefs-mensural2_f.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"18 19 8 1", +" c #040404", +". c Gray23", +"X c Gray29", +"o c #7b7b7b", +"O c Gray52", +"+ c #b7b7b7", +"@ c #c3c3c3", +"# c None", +/* pixels */ +"##################", +"###+OO+#######+###", +"##O .@###+ .+#", +"## +## @", +"#@OX +# O", +"####+. X#@. @", +"######X ###X +#", +"#######X O######", +"#######+ o######", +"######## O######", +"########o +######", +"########O #######", +"########X o#######", +"#######+ +##o o##", +"#######X X##X X#", +"###+oO X### O", +"##O O####O O", +"## .@######+ X#", +"#@OO##########++##" +}; diff --git a/data/pixmaps/feta/12/clefs-mensural2_f_change.xpm b/data/pixmaps/feta/12/clefs-mensural2_f_change.xpm new file mode 100644 index 0000000..e630c67 --- /dev/null +++ b/data/pixmaps/feta/12/clefs-mensural2_f_change.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"17 18 8 1", +" c Gray2", +". c #323232", +"X c Gray29", +"o c #747474", +"O c #8e8e8e", +"+ c Gray71", +"@ c #cdcdcd", +"# c None", +/* pixels */ +"#################", +"###OOO######@O###", +"#@ O###@ .+#", +"#O o##o +", +"###+. +#+ +", +"#####O X###o X#", +"######O #######", +"#######. +######", +"#######X @######", +"#######+ @######", +"#######@ .#######", +"#######@ O#######", +"#######O @#######", +"####### .###o o##", +"#####+ .@##O .#", +"##o X@###o O", +"#+ O######@ #", +"#+o@#########@o##" +}; diff --git a/data/pixmaps/feta/12/clefs-mensural3_c.xpm b/data/pixmaps/feta/12/clefs-mensural3_c.xpm new file mode 100644 index 0000000..f7ce8e6 --- /dev/null +++ b/data/pixmaps/feta/12/clefs-mensural3_c.xpm @@ -0,0 +1,73 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 59 8 1", +" c #040404", +". c #343434", +"X c #505050", +"o c #777777", +"O c Gray52", +"+ c Gray71", +"@ c #cacaca", +"# c None", +/* pixels */ +"#############", +"#@O########O@", +"#o ######## o", +"#o ######## o", +"#o ######## o", +"#o ######## o", +"#o ######## o", +"#o ######## o", +"#o ######## o", +"#o ######## o", +"#o ######## o", +"#o ######## o", +"#o ######## o", +"#o ######## o", +"#o oXXOOXoX o", +"#O XX O", +"#o ...Xo .. o", +"#o @######@ o", +"#o ######## o", +"#o ######## o", +"#O .XXOOXX. O", +"#O XX O", +"#o ...oo... O", +"#o ######## o", +"#o ######## o", +"#o @@@@@@@@ o", +"#O XX O", +"#O XX o", +"#O O@+@@+@O O", +"#o ######## o", +"#o ######## o", +"#O O@+@@+@O O", +"#o XX o", +"#O XX O", +"#o @@@@@@@@ o", +"#o ######## o", +"#o ######## o", +"#O ...oo... o", +"#O XX O", +"#O .XXOOXX. O", +"#o ######## o", +"#o ######## o", +"#o @######@ o", +"#O .. oo .. O", +"#O XX O", +"#o ooXOOXXo o", +"#o ######## o", +"#o ######## o", +"#o ######## o", +"#o ######## o", +"#o ######## o", +"#o ######## o", +"#o ######## o", +"#o ######## o", +"#o ######## o", +"#o ######## o", +"#o ######## o", +"#o ######## o", +"#@O########O@" +}; diff --git a/data/pixmaps/feta/12/clefs-mensural3_c_change.xpm b/data/pixmaps/feta/12/clefs-mensural3_c_change.xpm new file mode 100644 index 0000000..3a3df4f --- /dev/null +++ b/data/pixmaps/feta/12/clefs-mensural3_c_change.xpm @@ -0,0 +1,66 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 52 8 1", +" c #010101", +". c Gray18", +"X c #585858", +"o c #686868", +"O c Gray53", +"+ c #b9b9b9", +"@ c Gray78", +"# c None", +/* pixels */ +"###########", +"#@o######o@", +"#O ###### O", +"#O ###### O", +"#O ###### O", +"#O ###### O", +"#O ###### O", +"#O ###### O", +"#O ###### O", +"#O ###### O", +"#O oooooo O", +"#O O", +"#O ...... O", +"#O ###### O", +"#O ###### O", +"#O ###### O", +"#O ###### O", +"#O XXXXXX O", +"#O O", +"#O ...... O", +"#O ###### O", +"#O @@@@@@ O", +"#O O", +"#O O", +"#O ++++++ O", +"#O ###### O", +"#O ###### O", +"#O ###### O", +"#O ++++++ O", +"#O O", +"#O O", +"#O @@@@@@ O", +"#O ###### O", +"#O ...... O", +"#O O", +"#O XXXXXX O", +"#O ###### O", +"#O ###### O", +"#O ###### O", +"#O ###### O", +"#O ...... O", +"#O O", +"#O oooooo O", +"#O ###### O", +"#O ###### O", +"#O ###### O", +"#O ###### O", +"#O ###### O", +"#O ###### O", +"#O ###### O", +"#O ###### O", +"#@O######O@" +}; diff --git a/data/pixmaps/feta/12/clefs-mensural_g.xpm b/data/pixmaps/feta/12/clefs-mensural_g.xpm new file mode 100644 index 0000000..2d708fc --- /dev/null +++ b/data/pixmaps/feta/12/clefs-mensural_g.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"16 28 8 1", +" c Gray2", +". c Gray22", +"X c #4c4c4c", +"o c #797979", +"O c #888888", +"+ c #b6b6b6", +"@ c #c5c5c5", +"# c None", +/* pixels */ +"################", +"#########@o@####", +"########+ +###", +"######## O###", +"######## o@###", +"########X o#####", +"########+ .@##", +"#########X +#", +"##########o X#", +"#######O##### +", +"#####@. +##+ O", +"####+ XX O", +"###+ +", +"###X o. +#", +"##o + #oOO###", +"## X## . X@###", +"## ### +##", +"#O o### ##", +"#O O### O#", +"#O o### ##+ o#", +"#O ### ###o O#", +"#+ +## ###O O#", +"## .## ###o +#", +"##+ X# ###o ##", +"###X ##o o##", +"####X ###", +"#####+o +###", +"#######++@o+####" +}; diff --git a/data/pixmaps/feta/12/clefs-mensural_g_change.xpm b/data/pixmaps/feta/12/clefs-mensural_g_change.xpm new file mode 100644 index 0000000..85e16e9 --- /dev/null +++ b/data/pixmaps/feta/12/clefs-mensural_g_change.xpm @@ -0,0 +1,37 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 23 8 1", +" c Gray1", +". c #2d2d2d", +"X c Gray33", +"o c #747474", +"O c #8d8d8d", +"+ c Gray69", +"@ c Gray81", +"# c None", +/* pixels */ +"#############", +"#######+o+###", +"######+ ###", +"######o O##", +"######o O@##", +"######@ X+##", +"#######o +#", +"########+. .#", +"#####+O###. O", +"####O .X. O", +"###O +", +"##@ Xo. o#", +"##. X+ oOX@##", +"#@ O## O@#", +"#o ### X#", +"#O ### XX #", +"#O O## o##o #", +"#+ X## o##o #", +"##. X# o##X.#", +"##+ . XO. O#", +"###+ @#", +"####@o +##", +"########++###" +}; diff --git a/data/pixmaps/feta/12/clefs-percussion.xpm b/data/pixmaps/feta/12/clefs-percussion.xpm new file mode 100644 index 0000000..8ebcb22 --- /dev/null +++ b/data/pixmaps/feta/12/clefs-percussion.xpm @@ -0,0 +1,37 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"17 25 6 1", +" c #020202", +". c Gray49", +"X c #838383", +"o c #acacac", +"O c Gray81", +"+ c None", +/* pixels */ +"+++++++++++++++++", +"+O.XXXO++++OXXX.O", +"+X o++++o X", +"+X o++++o X", +"+X o++++o X", +"+X o++++o X", +"+X o++++o X", +"+X o++++o X", +"+X o++++o X", +"+X o++++o X", +"+X o++++o X", +"+X o++++o X", +"+X o++++o X", +"+X o++++o X", +"+X o++++o X", +"+X o++++o .", +"+X o++++o X", +"+X o++++o X", +"+X o++++o X", +"+X o++++o X", +"+X o++++o X", +"+X o++++o X", +"+X o++++o X", +"+X o++++o X", +"+O.XXXO++++OXXXXO" +}; diff --git a/data/pixmaps/feta/12/clefs-percussion_change.xpm b/data/pixmaps/feta/12/clefs-percussion_change.xpm new file mode 100644 index 0000000..d731142 --- /dev/null +++ b/data/pixmaps/feta/12/clefs-percussion_change.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 20 6 1", +" c Gray1", +". c Gray49", +"X c Gray51", +"o c #acacac", +"O c Gray81", +"+ c None", +/* pixels */ +"++++++++++++++", +"+O.X.O+++OXXXO", +"+X o+++o X", +"+X o+++o X", +"+X o+++o X", +"+X o+++o .", +"+X o+++o X", +"+X o+++o X", +"+X o+++o X", +"+X o+++o X", +"+X o+++o X", +"+X o+++o X", +"+X o+++o X", +"+X o+++o .", +"+X o+++o X", +"+X o+++o X", +"+X o+++o X", +"+X o+++o X", +"+. o+++o X", +"+O.XXO+++OXX.O" +}; diff --git a/data/pixmaps/feta/12/clefs-tab.xpm b/data/pixmaps/feta/12/clefs-tab.xpm new file mode 100644 index 0000000..3ec6356 --- /dev/null +++ b/data/pixmaps/feta/12/clefs-tab.xpm @@ -0,0 +1,70 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"21 56 8 1", +" c Gray2", +". c Gray24", +"X c Gray28", +"o c Gray49", +"O c #888888", +"+ c #b7b7b7", +"@ c Gray77", +"# c None", +/* pixels */ +"#####################", +"#@oOOOOOOOOOOOOOOOOo@", +"#O O", +"#O O", +"#@oOooooO. oOOooOo@", +"#########o ########", +"#########o ########", +"#########o ########", +"#########o ########", +"#########O ########", +"#########o ########", +"#########o ########", +"#########o ########", +"#########o ########", +"#########o ########", +"#########O ########", +"#########o ########", +"#########O ########", +"#####################", +"#####################", +"######### ########", +"########o O#######", +"########X X#######", +"#######+ +######", +"#######X X######", +"######+ OO +#####", +"######X ## X#####", +"###### o##O #####", +"#####O #### o####", +"##### o####o ####", +"####o o###", +"#### ###", +"###O O##", +"###X X########X X##", +"##+ +########+ +#", +"##X ########## .#", +"#@ o##########o @", +"#####################", +"#####################", +"## oO######", +"## +####", +"## +###", +"## o#######o ###", +"## o########o ###", +"## o#######o ###", +"## +###", +"## X@##", +"## +#", +"## o########+. +", +"## o##########+ O", +"## o########### O", +"## o#########+. O", +"## .OooooooOX X#", +"## X##", +"## .+###", +"##OOOOOOOOOOOo+######" +}; diff --git a/data/pixmaps/feta/12/clefs-tab_change.xpm b/data/pixmaps/feta/12/clefs-tab_change.xpm new file mode 100644 index 0000000..0fe44a0 --- /dev/null +++ b/data/pixmaps/feta/12/clefs-tab_change.xpm @@ -0,0 +1,59 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"17 45 8 1", +" c #040404", +". c #2d2d2d", +"X c #484848", +"o c #777777", +"O c #8b8b8b", +"+ c Gray66", +"@ c #d2d2d2", +"# c None", +/* pixels */ +"#################", +"#@oOOOOOOOOOOOOo@", +"#O O", +"#O .. . . .. O", +"#######o o######", +"#######o o######", +"#######o o######", +"#######o o######", +"#######O o######", +"#######o o######", +"#######o O######", +"#######o o######", +"#######O o######", +"#######O O######", +"#######O. O######", +"#################", +"#######@@@@######", +"#######. .######", +"######+ +#####", +"######. .#####", +"#####@ oo @####", +"#####o ++ o####", +"####@ .##. @###", +"####X +##+ o###", +"###@ XX.X @##", +"###O o##", +"###. XXXXXX .##", +"##O o######o O#", +"## @######@ #", +"#+XXO########OXX@", +"#################", +"#@+++++++++######", +"#O .+####", +"#O o###", +"#O o@@@@@+. O##", +"#O O######O o##", +"#O X++OO+X +##", +"#O +##", +"#O X#", +"#O o#@@#@#@o. O", +"#O o########O O", +"#O o#######+. O", +"#O . . . .#", +"#O o##", +"#@oOoOOOOOOO#####" +}; diff --git a/data/pixmaps/feta/12/clefs-vaticana_do.xpm b/data/pixmaps/feta/12/clefs-vaticana_do.xpm new file mode 100644 index 0000000..03987cf --- /dev/null +++ b/data/pixmaps/feta/12/clefs-vaticana_do.xpm @@ -0,0 +1,35 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 21 8 1", +" c #020202", +". c #343434", +"X c Gray30", +"o c #767676", +"O c #929292", +"+ c Gray68", +"@ c Gray87", +"# c None", +/* pixels */ +"#######", +"###+o+#", +"##O @", +"##. O", +"#+ o", +"#o o", +"#o o", +"#o o", +"#o XO.o", +"#oX####", +"#oO####", +"#oO####", +"#oX####", +"#o XOXo", +"#o o", +"#o o", +"#o o", +"#+ o", +"##. o", +"##O @", +"###+o+#" +}; diff --git a/data/pixmaps/feta/12/clefs-vaticana_do_change.xpm b/data/pixmaps/feta/12/clefs-vaticana_do_change.xpm new file mode 100644 index 0000000..03987cf --- /dev/null +++ b/data/pixmaps/feta/12/clefs-vaticana_do_change.xpm @@ -0,0 +1,35 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 21 8 1", +" c #020202", +". c #343434", +"X c Gray30", +"o c #767676", +"O c #929292", +"+ c Gray68", +"@ c Gray87", +"# c None", +/* pixels */ +"#######", +"###+o+#", +"##O @", +"##. O", +"#+ o", +"#o o", +"#o o", +"#o o", +"#o XO.o", +"#oX####", +"#oO####", +"#oO####", +"#oX####", +"#o XOXo", +"#o o", +"#o o", +"#o o", +"#+ o", +"##. o", +"##O @", +"###+o+#" +}; diff --git a/data/pixmaps/feta/12/clefs-vaticana_fa.xpm b/data/pixmaps/feta/12/clefs-vaticana_fa.xpm new file mode 100644 index 0000000..f8f488b --- /dev/null +++ b/data/pixmaps/feta/12/clefs-vaticana_fa.xpm @@ -0,0 +1,43 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 29 8 1", +" c Gray1", +". c #373737", +"X c #484848", +"o c #777777", +"O c #868686", +"+ c Gray72", +"@ c #cacaca", +"# c None", +/* pixels */ +"#############", +"#########OO+#", +"########o +", +"#######@ O", +"#######o O", +"#######. o", +"#######X O", +"##+oo@#. o", +"#+ OX oO.o", +"#O X.o####", +"#O XX+####", +"#O XX+####", +"#O X.o####", +"#+o##XXX oO.o", +"#####+XX o", +"#####+XX O", +"#####+XX o", +"#####+XO O", +"#####+.# O", +"#####+.#o +", +"#####+.##Oo+#", +"#####+.######", +"#####+.######", +"#####+.######", +"#####+.######", +"#####+.######", +"#####+.######", +"#####+.######", +"#####@+######" +}; diff --git a/data/pixmaps/feta/12/clefs-vaticana_fa_change.xpm b/data/pixmaps/feta/12/clefs-vaticana_fa_change.xpm new file mode 100644 index 0000000..f8f488b --- /dev/null +++ b/data/pixmaps/feta/12/clefs-vaticana_fa_change.xpm @@ -0,0 +1,43 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 29 8 1", +" c Gray1", +". c #373737", +"X c #484848", +"o c #777777", +"O c #868686", +"+ c Gray72", +"@ c #cacaca", +"# c None", +/* pixels */ +"#############", +"#########OO+#", +"########o +", +"#######@ O", +"#######o O", +"#######. o", +"#######X O", +"##+oo@#. o", +"#+ OX oO.o", +"#O X.o####", +"#O XX+####", +"#O XX+####", +"#O X.o####", +"#+o##XXX oO.o", +"#####+XX o", +"#####+XX O", +"#####+XX o", +"#####+XO O", +"#####+.# O", +"#####+.#o +", +"#####+.##Oo+#", +"#####+.######", +"#####+.######", +"#####+.######", +"#####+.######", +"#####+.######", +"#####+.######", +"#####+.######", +"#####@+######" +}; diff --git a/data/pixmaps/feta/12/custodes-hufnagel.xpm b/data/pixmaps/feta/12/custodes-hufnagel.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/12/custodes-medicaea.xpm b/data/pixmaps/feta/12/custodes-medicaea.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/12/custodes-mensural.xpm b/data/pixmaps/feta/12/custodes-mensural.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/12/custodes-rhufnagel.xpm b/data/pixmaps/feta/12/custodes-rhufnagel.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/12/custodes-rmedicaea.xpm b/data/pixmaps/feta/12/custodes-rmedicaea.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/12/custodes-rmensural.xpm b/data/pixmaps/feta/12/custodes-rmensural.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/12/custodes-rvaticana.xpm b/data/pixmaps/feta/12/custodes-rvaticana.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/12/custodes-vaticana.xpm b/data/pixmaps/feta/12/custodes-vaticana.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/12/dots-dot.xpm b/data/pixmaps/feta/12/dots-dot.xpm new file mode 100644 index 0000000..db739c3 --- /dev/null +++ b/data/pixmaps/feta/12/dots-dot.xpm @@ -0,0 +1,18 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 7 5 1", +" c #040404", +". c Gray50", +"X c #8d8d8d", +"o c #bebebe", +"O c None", +/* pixels */ +"OOOOOOO", +"OOOX.oO", +"OO o", +"OX X", +"OX X", +"OO o", +"OOOX.oO" +}; diff --git a/data/pixmaps/feta/12/dots-evenrepeatcolon.xpm b/data/pixmaps/feta/12/dots-evenrepeatcolon.xpm new file mode 100644 index 0000000..ca8d022 --- /dev/null +++ b/data/pixmaps/feta/12/dots-evenrepeatcolon.xpm @@ -0,0 +1,43 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 30 7 1", +" c Gray1", +". c #444444", +"X c Gray47", +"o c Gray55", +"O c #bbbbbb", +"+ c #c0c0c0", +"@ c None", +/* pixels */ +"@@@@@@@", +"@@@oo@@", +"@@. O", +"@o o", +"@o o", +"@+ O", +"@@OXXO@", +"@@@@@@@", +"@@@@@@@", +"@@@@@@@", +"@@@@@@@", +"@@@@@@@", +"@@@@@@@", +"@@@@@@@", +"@@@@@@@", +"@@@@@@@", +"@@@@@@@", +"@@@@@@@", +"@@@@@@@", +"@@@@@@@", +"@@@@@@@", +"@@@@@@@", +"@@@@@@@", +"@@@@@@@", +"@@OXXO@", +"@+ O", +"@o o", +"@o o", +"@@. O", +"@@@oo@@" +}; diff --git a/data/pixmaps/feta/12/dots-repeatcolon.xpm b/data/pixmaps/feta/12/dots-repeatcolon.xpm new file mode 100644 index 0000000..2c9742f --- /dev/null +++ b/data/pixmaps/feta/12/dots-repeatcolon.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 18 7 1", +" c Gray1", +". c #3a3a3a", +"X c #494949", +"o c #898989", +"O c #b7b7b7", +"+ c Gray80", +"@ c None", +/* pixels */ +"@@@@@@@", +"@@OooO@", +"@O o", +"@o o", +"@o o", +"@@X .+", +"@@@OO@@", +"@@@@@@@", +"@@@@@@@", +"@@@@@@@", +"@@@@@@@", +"@@@@@@@", +"@@@OO@@", +"@@X .+", +"@o o", +"@o o", +"@O o", +"@@OooO@" +}; diff --git a/data/pixmaps/feta/12/flags-d3.xpm b/data/pixmaps/feta/12/flags-d3.xpm new file mode 100644 index 0000000..bbe8db8 --- /dev/null +++ b/data/pixmaps/feta/12/flags-d3.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"15 35 8 1", +" c Gray2", +". c Gray16", +"X c #555555", +"o c #747474", +"O c #898989", +"+ c #aeaeae", +"@ c Gray81", +"# c None", +/* pixels */ +"###############", +"##########@o###", +"##########@ O##", +"###########..##", +"###########+ @#", +"############ X#", +"############o.#", +"############O #", +"############@ +", +"############# o", +"#@########### O", +"#oo########## o", +"#oo########## o", +"#oo#########o @", +"#oo######### #", +"#oo########O O#", +"#oo#######+ ##", +"#oo######+ O##", +"#oo#####+ X###", +"#oo####X @###", +"#oo##@X @####", +"#oo#+ +#####", +"#oXo X######", +"#o X#######", +"#O X########", +"#O .#########", +"#O +#########", +"#o X##########", +"#O .###########", +"#O O###########", +"#o ############", +"#o.############", +"#oo############", +"#oo############", +"#+@############" +}; diff --git a/data/pixmaps/feta/12/flags-d4.xpm b/data/pixmaps/feta/12/flags-d4.xpm new file mode 100644 index 0000000..bc9108d --- /dev/null +++ b/data/pixmaps/feta/12/flags-d4.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"15 37 8 1", +" c #040404", +". c Gray20", +"X c Gray31", +"o c Gray45", +"O c #898989", +"+ c Gray72", +"@ c #cbcbcb", +"# c None", +/* pixels */ +"###############", +"############@+#", +"############O #", +"############@ @", +"############# o", +"############# o", +"############# o", +"############@ O", +"############O #", +"###########+ o#", +"###########. ##", +"##########X @#", +"#########X X O#", +"#oo####@. X#.X#", +"#oo###o X##O #", +"#oo#+. X###O #", +"#oXX .####O #", +"#O .#####o #", +"#O .###### o#", +"#o ######o @#", +"#O O###### X##", +"#O X######. @##", +"#o +#####. +###", +"#o.####@X o####", +"#oo###O o#####", +"#oo#@X o######", +"#oXo X#######", +"#O X########", +"#o X#########", +"#O .##########", +"#O +##########", +"#O X###########", +"#O @###########", +"#o ############", +"#oo############", +"#oo############", +"#++############" +}; diff --git a/data/pixmaps/feta/12/flags-d5.xpm b/data/pixmaps/feta/12/flags-d5.xpm new file mode 100644 index 0000000..3fb631b --- /dev/null +++ b/data/pixmaps/feta/12/flags-d5.xpm @@ -0,0 +1,61 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"15 47 8 1", +" c Gray2", +". c #2c2c2c", +"X c #565656", +"o c Gray44", +"O c #898989", +"+ c #aaaaaa", +"@ c #d2d2d2", +"# c None", +/* pixels */ +"###############", +"############@+#", +"############O #", +"############@ @", +"############# O", +"############# o", +"############# o", +"############@ +", +"############X #", +"###########@ o#", +"##########@ .##", +"#########@. @#", +"########o o +#", +"######@. O# X#", +"####@o O##O #", +"###o O###+ #", +"##o o####O #", +"##o o#####X #", +"##o o###### X#", +"##o o######+ +#", +"##X @#####@ .##", +"##Xo#####@. o##", +"#@X#####+. . @#", +"#o.###@X +@ +#", +"#oo##+. O## o#", +"#oo@. o### o#", +"#o o#### o#", +"#O o####+ @#", +"#O o#####..##", +"#o X#####+ +##", +"#O @####@ .###", +"#O +####@. +###", +"#o ####@. O####", +"#oX###O .#####", +"#oo#@o .@#####", +"#oo@. .@######", +"#O .@#######", +"#o +########", +"#O o#########", +"#O X##########", +"#O @##########", +"#O X###########", +"#O @###########", +"#o ############", +"#oo############", +"#oo############", +"#+@############" +}; diff --git a/data/pixmaps/feta/12/flags-d6.xpm b/data/pixmaps/feta/12/flags-d6.xpm new file mode 100644 index 0000000..7be84e2 --- /dev/null +++ b/data/pixmaps/feta/12/flags-d6.xpm @@ -0,0 +1,67 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"15 53 8 1", +" c #060606", +". c #2c2c2c", +"X c #565656", +"o c Gray44", +"O c Gray54", +"+ c Gray67", +"@ c #d2d2d2", +"# c None", +/* pixels */ +"###############", +"#############O#", +"############@ +", +"############# o", +"############# o", +"############# O", +"############@ O", +"############X @", +"###########o o#", +"#########@X o#", +"#######+X XO #", +"###@oo X#O @", +"##o .+##O #", +"##o X@###O #", +"##o +##### X#", +"##o @#####+ +#", +"##o @#####@ @#", +"##XO#####@ o#", +"##O@####@. + o#", +"##+####O O# o#", +"#####+. O## o#", +"###@o O### o#", +"##o o###@ o#", +"##o o####O @#", +"##o o#####..##", +"##o X#####o o##", +"##X @####@ X##", +"##XO####@ . X##", +"#@X####@. +.X##", +"#o.###+. O# X##", +"#oO##O O## X##", +"#oo#. .### o##", +"#o. @##@ @##", +"#O @###X.###", +"#O @###@ O###", +"#o o####o.####", +"#O .####+ O####", +"#O O###@ .#####", +"#o ###@..@#####", +"#oX###. O######", +"#oo#@. O#######", +"#oO@. .@#######", +"#o. @########", +"#O o#########", +"#O .##########", +"#O @##########", +"#o X###########", +"#O +###########", +"#o ############", +"#oX############", +"#oo############", +"#oo############", +"#+@############" +}; diff --git a/data/pixmaps/feta/12/flags-dgrace.xpm b/data/pixmaps/feta/12/flags-dgrace.xpm new file mode 100644 index 0000000..0e449ef --- /dev/null +++ b/data/pixmaps/feta/12/flags-dgrace.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"28 15 8 1", +" c Gray2", +". c #2c2c2c", +"X c Gray32", +"o c #6d6d6d", +"O c Gray57", +"+ c #afafaf", +"@ c #d0d0d0", +"# c None", +/* pixels */ +"############################", +"#@o+########################", +"#O .+######################", +"##@X .+####################", +"####@o .O##################", +"######@o .O################", +"########@o .O##############", +"###########o X@###########", +"#############o. X+#########", +"###############@X .+#######", +"#################@X .+#####", +"###################@o .+###", +"#####################@o .O#", +"#######################@o O", +"#########################@O#" +}; diff --git a/data/pixmaps/feta/12/flags-dstem.xpm b/data/pixmaps/feta/12/flags-dstem.xpm new file mode 100644 index 0000000..0c4459a --- /dev/null +++ b/data/pixmaps/feta/12/flags-dstem.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"3 40 3 1", +" c Gray45", +". c Gray74", +"X c None", +/* pixels */ +"XXX", +"X..", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X.." +}; diff --git a/data/pixmaps/feta/12/flags-stem.xpm b/data/pixmaps/feta/12/flags-stem.xpm new file mode 100644 index 0000000..0c4459a --- /dev/null +++ b/data/pixmaps/feta/12/flags-stem.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"3 40 3 1", +" c Gray45", +". c Gray74", +"X c None", +/* pixels */ +"XXX", +"X..", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X.." +}; diff --git a/data/pixmaps/feta/12/flags-u3.xpm b/data/pixmaps/feta/12/flags-u3.xpm new file mode 100644 index 0000000..174f795 --- /dev/null +++ b/data/pixmaps/feta/12/flags-u3.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 37 8 1", +" c #020202", +". c #2f2f2f", +"X c #414141", +"o c #717171", +"O c #8b8b8b", +"+ c #b1b1b1", +"@ c Gray86", +"# c None", +/* pixels */ +"##############", +"#++###########", +"#oo###########", +"#oo###########", +"#o.###########", +"#O ###########", +"#O +##########", +"#O X##########", +"#O +#########", +"#O .#########", +"#O O########", +"#O @#######", +"#O .#######", +"#oX. O######", +"#oo@. +#####", +"#oo##o .@####", +"#oo###o o####", +"#oo####o O###", +"#oo#####o .@##", +"#oo######. o##", +"#oo######@. @#", +"#oo#######+ O#", +"#oo########. #", +"#oo########o #", +"#oo########@ O", +"#@@######### O", +"############ O", +"############ O", +"############ O", +"###########O @", +"###########o #", +"###########.o#", +"########### o#", +"##########@ @#", +"##########o.##", +"########## o##", +"##########O###" +}; diff --git a/data/pixmaps/feta/12/flags-u4.xpm b/data/pixmaps/feta/12/flags-u4.xpm new file mode 100644 index 0000000..67d2b68 --- /dev/null +++ b/data/pixmaps/feta/12/flags-u4.xpm @@ -0,0 +1,57 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 43 8 1", +" c Gray1", +". c Gray19", +"X c #4c4c4c", +"o c Gray45", +"O c #898989", +"+ c #b7b7b7", +"@ c #c8c8c8", +"# c None", +/* pixels */ +"##############", +"#@+###########", +"#oo###########", +"#oo###########", +"#O ###########", +"#O +##########", +"#O o##########", +"#O ##########", +"#O X#########", +"#O +########", +"#O ########", +"#O X#######", +"#ooO X######", +"#oX#+ O#####", +"#O ###X +####", +"#O +###X +###", +"#O X####X X###", +"#O +####X O##", +"#O X##### ##", +"#O o####+ o#", +"#O +####. #", +"#O.. +###O +", +"#oo@. .#### O", +"#oo##X X### O", +"#oo###+ X## O", +"#++####+ +@ +", +"########+ .o #", +"#########+ O#", +"##########X +#", +"########### .#", +"###########o #", +"###########+ O", +"############ o", +"############ O", +"############ O", +"############ O", +"###########o #", +"###########o #", +"########### o#", +"##########+ +#", +"##########o.##", +"########## o##", +"##########O###" +}; diff --git a/data/pixmaps/feta/12/flags-u5.xpm b/data/pixmaps/feta/12/flags-u5.xpm new file mode 100644 index 0000000..bc78b7e --- /dev/null +++ b/data/pixmaps/feta/12/flags-u5.xpm @@ -0,0 +1,65 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 51 8 1", +" c #040404", +". c #2f2f2f", +"X c #535353", +"o c #747474", +"O c #8b8b8b", +"+ c Gray70", +"@ c Gray84", +"# c None", +/* pixels */ +"##############", +"#++###########", +"#oo###########", +"#oo###########", +"#o.###########", +"#O ###########", +"#O O##########", +"#O @#########", +"#O o#########", +"#O +########", +"#O .########", +"#O .#######", +"#ooo O######", +"#oX#@ O#####", +"#O ##@ @####", +"#O +##@ .####", +"#O .###@ O###", +"#O O###@ @##", +"#O @###o o##", +"#O .@###. @#", +"#O o###@ o#", +"#oX. O###..#", +"#oo#o O##o #", +"#oX##+. o#o #", +"#O ###@o #O #", +"##XO####o . X#", +"##o #####O @#", +"##o O#####X @#", +"##o @####@ X#", +"##o .@####o #", +"##o .####@ O", +"##@. o#### O", +"####O. o### O", +"#####@. o#@ O", +"#######O +O @", +"########O . .#", +"#########O +#", +"##########o O#", +"##########@ #", +"###########o #", +"###########@ O", +"############ O", +"############ O", +"############ O", +"###########+ @", +"###########o #", +"###########.o#", +"########### +#", +"##########o.##", +"########## o##", +"##########O###" +}; diff --git a/data/pixmaps/feta/12/flags-u6.xpm b/data/pixmaps/feta/12/flags-u6.xpm new file mode 100644 index 0000000..b4da8fd --- /dev/null +++ b/data/pixmaps/feta/12/flags-u6.xpm @@ -0,0 +1,77 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 63 8 1", +" c Gray1", +". c Gray21", +"X c Gray29", +"o c #777777", +"O c #888888", +"+ c Gray71", +"@ c Gray78", +"# c None", +/* pixels */ +"##############", +"#@+###########", +"#oo###########", +"#oo###########", +"#o.###########", +"#O ###########", +"#O O##########", +"#O ##########", +"#O O#########", +"#O +########", +"#O X########", +"#O o#######", +"#oXo +######", +"#oo#+ +#####", +"#o.##+ X#####", +"#O ###+ X####", +"#O O###+ +###", +"#O ####+ ###", +"#O X####X O##", +"#O +#### ##", +"#O +###o +#", +"#O X#### o#", +"#oX+ X###. #", +"#oo#+. X##o #", +"#o.###X X#o #", +"#@X@###+ @o #", +"##o+####+ o#", +"##o.#####+ ##", +"##O O#####X +#", +"##o +##### X#", +"##O X#####o #", +"##o X####+ O", +"##+ o#### O", +"####X +### O", +"#####+ +## O", +"##O@###X #O #", +"##o+####X X..#", +"##o.#####X +#", +"##o +#####X ##", +"##o X#####+ o#", +"##o X#####. #", +"##o O####O @", +"##+ +#### O", +"###@. +### O", +"#####X +## O", +"######+ X#o #", +"#######+ . +#", +"########+ o##", +"#########+ ##", +"##########O O#", +"########### #", +"###########o @", +"############ o", +"############ O", +"############ O", +"############ O", +"###########+ #", +"###########o #", +"###########.o#", +"########### +#", +"##########o.##", +"########## o##", +"##########O###" +}; diff --git a/data/pixmaps/feta/12/flags-ugrace.xpm b/data/pixmaps/feta/12/flags-ugrace.xpm new file mode 100644 index 0000000..7874dfe --- /dev/null +++ b/data/pixmaps/feta/12/flags-ugrace.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"25 16 8 1", +" c #070707", +". c #2f2f2f", +"X c #555555", +"o c Gray44", +"O c Gray57", +"+ c Gray69", +"@ c Gray81", +"# c None", +/* pixels */ +"#########################", +"#######################O#", +"#####################+ O", +"###################@. O#", +"#################@o X@##", +"################o .+####", +"##############+. .+######", +"############@X X########", +"###########o X@#########", +"#########+. .+###########", +"#######@X o#############", +"#####@X X@##############", +"####O .+################", +"##@ +##################", +"#O o####################", +"#+o@#####################" +}; diff --git a/data/pixmaps/feta/12/noteheads--1.xpm b/data/pixmaps/feta/12/noteheads--1.xpm new file mode 100644 index 0000000..91a1d68 --- /dev/null +++ b/data/pixmaps/feta/12/noteheads--1.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"29 15 8 1", +" c #040404", +". c #3c3c3c", +"X c #494949", +"o c #797979", +"O c Gray54", +"+ c #b6b6b6", +"@ c #c3c3c3", +"# c None", +/* pixels */ +"#############################", +"##++#######+oOOOOO#########O#", +"#@ ####O. o+####X O", +"#O ##o O###O .+## O", +"#O #X o######X +# O", +"#O X ########X + O", +"#O ########+ . O", +"#O #########X O", +"#O +########o O", +"#O X########O . O", +"#O . +#######o +. O", +"#O #X +###### +# O", +"#O ##o X@##@. .@## O", +"#@ ####OX o+####X O", +"##++#######+oOOOoO#########O#" +}; diff --git a/data/pixmaps/feta/12/noteheads--1mensural.xpm b/data/pixmaps/feta/12/noteheads--1mensural.xpm new file mode 100644 index 0000000..bac4384 --- /dev/null +++ b/data/pixmaps/feta/12/noteheads--1mensural.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"25 20 5 1", +" c Gray2", +". c #888888", +"X c #b4b4b4", +"o c Gray78", +"O c None", +/* pixels */ +"OOOOOOOOOOOOOOOOOOOOOOOOO", +"Oo.OOOOOOOOOOOOOOOOOOOO.o", +"O. OOOOOOOOOOOOOOOOOOOO .", +"O. .OOOOOOOOOOOOOOOOOO. .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. XOOOOOOOOOOOOOOOOOOX .", +"O. OOOOOOOOOOOOOOOOOOOO .", +"O. XOOOOOOOOOOOOOOOOOOX .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .OOOOOOOOOOOOOOOOOO. .", +"O. OOOOOOOOOOOOOOOOOOOO .", +"Oo.OOOOOOOOOOOOOOOOOOOO.o" +}; diff --git a/data/pixmaps/feta/12/noteheads--2mensural.xpm b/data/pixmaps/feta/12/noteheads--2mensural.xpm new file mode 100644 index 0000000..9588473 --- /dev/null +++ b/data/pixmaps/feta/12/noteheads--2mensural.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"26 31 8 1", +" c #020202", +". c Gray15", +"X c Gray26", +"o c Gray49", +"O c #898989", +"+ c #acacac", +"@ c #cdcdcd", +"# c None", +/* pixels */ +"##########################", +"#@o####################O+#", +"#O #################### o#", +"#O o##@##@#@##@#@#@#@#o O#", +"#O o#", +"#O o#", +"#O o#", +"#O o#", +"#O .................... o#", +"#O @##################@ o#", +"#O #################### o#", +"#O O@@@@@@@@@@@@@@@@@@O o#", +"#O o#", +"#O o#", +"#O o#", +"#O o#", +"#O .X.XXXXXXXXXXXXXXXX. o#", +"#O +##################+ O#", +"#O ###################@ o#", +"##@#################### o#", +"####################### o#", +"####################### #", +"####################### #", +"####################### #", +"####################### #", +"####################### #", +"####################### @", +"####################### O", +"#######################o O", +"#######################O O", +"#######################@o#" +}; diff --git a/data/pixmaps/feta/12/noteheads--3mensural.xpm b/data/pixmaps/feta/12/noteheads--3mensural.xpm new file mode 100644 index 0000000..e84e40f --- /dev/null +++ b/data/pixmaps/feta/12/noteheads--3mensural.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"32 31 8 1", +" c #020202", +". c #282828", +"X c #434343", +"o c #7b7b7b", +"O c #898989", +"+ c #aeaeae", +"@ c #cecece", +"# c None", +/* pixels */ +"################################", +"#@o##########################@o#", +"#O ##########################O #", +"#O O#@@#@#@##@#@@#@###@##@#@@ #", +"#O #", +"#O #", +"#O #", +"#O #", +"#O .......................... #", +"#O @#########################X #", +"#O ##########################O #", +"#O O@@@@@@@@@@@@@@@@@@@@@@@@@. #", +"#O #", +"#O #", +"#O #", +"#O @", +"#O .XXXXXXXXXXXXXXXXXXXXXXXXX #", +"#O +#########################. #", +"#O ##########################. #", +"#@@########################## .#", +"############################# #", +"#############################o #", +"#############################O #", +"#############################O #", +"#############################O #", +"#############################O #", +"#############################O O", +"#############################O O", +"#############################O O", +"#############################O O", +"##############################O#" +}; diff --git a/data/pixmaps/feta/12/noteheads-0.xpm b/data/pixmaps/feta/12/noteheads-0.xpm new file mode 100644 index 0000000..9ca415e --- /dev/null +++ b/data/pixmaps/feta/12/noteheads-0.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"24 15 8 1", +" c Gray1", +". c #2d2d2d", +"X c #414141", +"o c Gray44", +"O c #898989", +"+ c Gray69", +"@ c #d5d5d5", +"# c None", +/* pixels */ +"########################", +"#########+oOOOO+########", +"#####@O. .O@####", +"####o +##@o o###", +"###. +#####@. X##", +"##X .#######@ X#", +"#+ .########o +", +"#O .########@ O", +"#O @########. O", +"#+ o########. +", +"##X @#######. X#", +"###. .@#####+ .##", +"####o o@##+ o###", +"#####@O. .O@####", +"#########+OOOOo+########" +}; diff --git a/data/pixmaps/feta/12/noteheads-0cross.xpm b/data/pixmaps/feta/12/noteheads-0cross.xpm new file mode 100644 index 0000000..1292c1d --- /dev/null +++ b/data/pixmaps/feta/12/noteheads-0cross.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"21 16 8 1", +" c Gray3", +". c #343434", +"X c #565656", +"o c #6c6c6c", +"O c #929292", +"+ c Gray68", +"@ c Gray80", +"# c None", +/* pixels */ +"#####################", +"#####+@########@+####", +"####. O######O .###", +"##+ @o X@##@X o+ +#", +"#O X###+ ++ +###X O", +"#@. O####X o####O .@", +"###o X####OO####X o##", +"####O @######@ O###", +"#####@ X######. @####", +"####+ @######@ O###", +"###o X####OO####X o##", +"#@. O####X X####O .@", +"#O X###+. ++ .+###X O", +"##+ +o X@##@X o+ +#", +"####. O######O .###", +"#####+@########@+####" +}; diff --git a/data/pixmaps/feta/12/noteheads-0diamond.xpm b/data/pixmaps/feta/12/noteheads-0diamond.xpm new file mode 100644 index 0000000..7d9ef53 --- /dev/null +++ b/data/pixmaps/feta/12/noteheads-0diamond.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"24 15 8 1", +" c #040404", +". c Gray17", +"X c Gray26", +"o c #777777", +"O c #8e8e8e", +"+ c #aaaaaa", +"@ c Gray84", +"# c None", +/* pixels */ +"########################", +"###########+o+##########", +"#########@. .@########", +"########+. .+#######", +"#######O O######", +"###@Oo .@#OO. oO@##", +"##X .####@ .#", +"#O .#####. O", +"#O .#####. O", +"##X @####. X#", +"###@Oo .o+#@ oO@##", +"#######O O######", +"########+. .+#######", +"#########@. .@########", +"###########+o+##########" +}; diff --git a/data/pixmaps/feta/12/noteheads-0mensural.xpm b/data/pixmaps/feta/12/noteheads-0mensural.xpm new file mode 100644 index 0000000..89f342b --- /dev/null +++ b/data/pixmaps/feta/12/noteheads-0mensural.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 15 7 1", +" c #060606", +". c Gray18", +"X c Gray47", +"o c #959595", +"O c #a9a9a9", +"+ c Gray84", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@", +"@@@@@@++@@@@@", +"@@@@@+. +@@@@", +"@@@@@. .@@@@", +"@@@@o . o@@@", +"@@@o X@ o@@", +"@@o X@@o O@", +"@O X@@@X O", +"@O X@@@X O", +"@@O X@@X O@", +"@@@o @X o@@", +"@@@@o . o@@@", +"@@@@@. .@@@@", +"@@@@@+ .+@@@@", +"@@@@@@++@@@@@" +}; diff --git a/data/pixmaps/feta/12/noteheads-0slash.xpm b/data/pixmaps/feta/12/noteheads-0slash.xpm new file mode 100644 index 0000000..6fa57ea --- /dev/null +++ b/data/pixmaps/feta/12/noteheads-0slash.xpm @@ -0,0 +1,39 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"35 25 8 1", +" c #040404", +". c #313131", +"X c Gray34", +"o c #6d6d6d", +"O c Gray54", +"+ c #aaaaaa", +"@ c Gray83", +"# c None", +/* pixels */ +"###################################", +"##############@OOOOOOOOOOOOOOOOOOo@", +"##############. @", +"#############O +#", +"############@. X##", +"############X o########### +##", +"###########@ @##########o o###", +"###########X O##########@ @###", +"##########+ .###########X o####", +"##########. +##########+ .#####", +"#########O .###########. +#####", +"########@ @##########+ .######", +"########o o##########@ @######", +"#######@ @##########o o#######", +"#######. +##########@ @#######", +"######+ .###########. O########", +"######. +##########+ .#########", +"#####o X###########. +#########", +"####@ @##########o X##########", +"####o o##########@ @##########", +"###+ ###########o X###########", +"###X .@###########", +"##+ O############", +"#@ .#############", +"#@oOOOOOOOOOOOOOOOOOO@#############" +}; diff --git a/data/pixmaps/feta/12/noteheads-0triangle.xpm b/data/pixmaps/feta/12/noteheads-0triangle.xpm new file mode 100644 index 0000000..9dd6ac8 --- /dev/null +++ b/data/pixmaps/feta/12/noteheads-0triangle.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"16 13 8 1", +" c Gray1", +". c #272727", +"X c #565656", +"o c #767676", +"O c Gray55", +"+ c #a2a2a2", +"@ c #cdcdcd", +"# c None", +/* pixels */ +"################", +"########O#######", +"#######+ +######", +"######@ @#####", +"######X + X#####", +"#####+ o#o +####", +"#####..###..####", +"####O +###+ O###", +"###@ .#####. @##", +"###X @#####@ X##", +"##@ o#######o @#", +"## #", +"#@oooooooooooOo@" +}; diff --git a/data/pixmaps/feta/12/noteheads-1.xpm b/data/pixmaps/feta/12/noteheads-1.xpm new file mode 100644 index 0000000..e2b22c0 --- /dev/null +++ b/data/pixmaps/feta/12/noteheads-1.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"17 15 7 1", +" c Gray1", +". c Gray21", +"X c Gray44", +"o c Gray54", +"O c Gray69", +"+ c #cecece", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@@@", +"@@@@@@@@@+oooXO@@", +"@@@@@@+X .@", +"@@@@@X XO@+ O", +"@@@@. .+@@@@XX", +"@@@. X@@@@@@XX", +"@@O +@@@@@@+ o", +"@@. X@@@@@@@+ @", +"@@ +@@@@@@@X .@", +"@o +@@@@@@+. O@", +"@XX@@@@@@X .@@", +"@XX@@@@+. .@@@", +"@O +@OX X@@@@", +"@@. X+@@@@@", +"@@@OXooo+@@@@@@@@" +}; diff --git a/data/pixmaps/feta/12/noteheads-1cross.xpm b/data/pixmaps/feta/12/noteheads-1cross.xpm new file mode 100644 index 0000000..18aa980 --- /dev/null +++ b/data/pixmaps/feta/12/noteheads-1cross.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"19 15 8 1", +" c Gray2", +". c #282828", +"X c Gray33", +"o c #6f6f6f", +"O c #959595", +"+ c Gray69", +"@ c Gray81", +"# c None", +/* pixels */ +"###################", +"####+@########@+###", +"###o o######o o##", +"#@. OO @##@ OO .@", +"#O X###. ++ .@##X O", +"##+ X@#@X X##@X +#", +"###+. O##OO##O .+##", +"#####o o####o o####", +"#####o o####o o####", +"###+. O##OO##O .+##", +"##+ X@#@o X##@X +#", +"#O X###. ++ .@##X O", +"#@. OO @##@ OO .@", +"###o o######o o##", +"####+@########@+###" +}; diff --git a/data/pixmaps/feta/12/noteheads-1diamond.xpm b/data/pixmaps/feta/12/noteheads-1diamond.xpm new file mode 100644 index 0000000..beab66d --- /dev/null +++ b/data/pixmaps/feta/12/noteheads-1diamond.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"19 15 8 1", +" c Gray2", +". c Gray24", +"X c #494949", +"o c #7c7c7c", +"O c Gray52", +"+ c Gray75", +"@ c Gray76", +"# c None", +/* pixels */ +"###################", +"###############@o+#", +"############+o +", +"#####o O", +"####o oo +", +"#### .+##o o#", +"#### o####X X##", +"#### .@####X O##", +"###O X####@. ###", +"###X X####o ###", +"##o o##@. ###", +"#@ oo O###", +"#O o####", +"#@ o+###########", +"##+o@##############" +}; diff --git a/data/pixmaps/feta/12/noteheads-1mensural.xpm b/data/pixmaps/feta/12/noteheads-1mensural.xpm new file mode 100644 index 0000000..89f342b --- /dev/null +++ b/data/pixmaps/feta/12/noteheads-1mensural.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 15 7 1", +" c #060606", +". c Gray18", +"X c Gray47", +"o c #959595", +"O c #a9a9a9", +"+ c Gray84", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@", +"@@@@@@++@@@@@", +"@@@@@+. +@@@@", +"@@@@@. .@@@@", +"@@@@o . o@@@", +"@@@o X@ o@@", +"@@o X@@o O@", +"@O X@@@X O", +"@O X@@@X O", +"@@O X@@X O@", +"@@@o @X o@@", +"@@@@o . o@@@", +"@@@@@. .@@@@", +"@@@@@+ .+@@@@", +"@@@@@@++@@@@@" +}; diff --git a/data/pixmaps/feta/12/noteheads-1slash.xpm b/data/pixmaps/feta/12/noteheads-1slash.xpm new file mode 100644 index 0000000..85358b6 --- /dev/null +++ b/data/pixmaps/feta/12/noteheads-1slash.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"31 25 7 1", +" c #040404", +". c #484848", +"X c Gray50", +"o c Gray53", +"O c #b7b7b7", +"+ c #cdcdcd", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@ooooooooooooooo+", +"@@@@@@@@@@@@@@. +", +"@@@@@@@@@@@@@O O@", +"@@@@@@@@@@@@@. .@@", +"@@@@@@@@@@@@X .@@@@@@+ O@@", +"@@@@@@@@@@@@ O@@@@@@. X@@@", +"@@@@@@@@@@@o .@@@@@@O @@@@", +"@@@@@@@@@@O @@@@@@@. o@@@@", +"@@@@@@@@@@. X@@@@@@X .@@@@@", +"@@@@@@@@@O @@@@@@@ O@@@@@", +"@@@@@@@@@ O@@@@@@X .@@@@@@", +"@@@@@@@@X .@@@@@@O @@@@@@@", +"@@@@@@@@ O@@@@@@. o@@@@@@@", +"@@@@@@@. o@@@@@@O @@@@@@@@", +"@@@@@@O @@@@@@@ O@@@@@@@@", +"@@@@@@. X@@@@@@o .@@@@@@@@@", +"@@@@@o .@@@@@@@ O@@@@@@@@@", +"@@@@@ O@@@@@@. o@@@@@@@@@@", +"@@@@X .@@@@@@O @@@@@@@@@@@", +"@@@O +@@@@@@. o@@@@@@@@@@@", +"@@@. .@@@@@@@@@@@@", +"@@O O@@@@@@@@@@@@", +"@+ .@@@@@@@@@@@@@", +"@+ooooooooooooooo@@@@@@@@@@@@@@" +}; diff --git a/data/pixmaps/feta/12/noteheads-1triangle.xpm b/data/pixmaps/feta/12/noteheads-1triangle.xpm new file mode 100644 index 0000000..e4eb662 --- /dev/null +++ b/data/pixmaps/feta/12/noteheads-1triangle.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 13 8 1", +" c #060606", +". c #323232", +"X c #515151", +"o c #777777", +"O c #818181", +"+ c #b4b4b4", +"@ c Gray82", +"# c None", +/* pixels */ +"##############", +"#######@######", +"######@.@#####", +"######o o#####", +"#####+ X +####", +"#####. # .####", +"####+ +#+ +###", +"#### X###X ###", +"###o @###@ o##", +"### X#####X ##", +"##X ####### X#", +"#+ +", +"#+oOoooooooOo+" +}; diff --git a/data/pixmaps/feta/12/noteheads-2.xpm b/data/pixmaps/feta/12/noteheads-2.xpm new file mode 100644 index 0000000..4001ad2 --- /dev/null +++ b/data/pixmaps/feta/12/noteheads-2.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"17 14 6 1", +" c #020202", +". c #4b4b4b", +"X c Gray49", +"o c #898989", +"O c #b9b9b9", +"+ c None", +/* pixels */ +"+++++++++++++++++", +"+++++++++OoooO+++", +"+++++++X O+", +"+++++X +", +"++++. o", +"+++. o", +"++X o", +"++ +", +"+o X+", +"+o .++", +"+o .+++", +"++ X++++", +"++O X++++++", +"++++OoooO++++++++" +}; diff --git a/data/pixmaps/feta/12/noteheads-2cross.xpm b/data/pixmaps/feta/12/noteheads-2cross.xpm new file mode 100644 index 0000000..5742e08 --- /dev/null +++ b/data/pixmaps/feta/12/noteheads-2cross.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"17 15 7 1", +" c Gray1", +". c #3e3e3e", +"X c Gray31", +"o c Gray58", +"O c #b6b6b6", +"+ c Gray77", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@@@", +"@@o@@@@@@@@@@@@o@", +"@o X@@@@@@@@@@X o", +"@@X .+@@@@@@+. X@", +"@@@O O@@@@O O@@", +"@@@@O O@@O O@@@", +"@@@@@O XX O@@@@", +"@@@@@@@X X@@@@@@", +"@@@@@@@X X@@@@@@", +"@@@@@O XX O@@@@", +"@@@@O O@@O O@@@", +"@@@O O@@@@O O@@", +"@@X .+@@@@@@+. X@", +"@o X@@@@@@@@@@X o", +"@@o@@@@@@@@@@@@o@" +}; diff --git a/data/pixmaps/feta/12/noteheads-2diamond.xpm b/data/pixmaps/feta/12/noteheads-2diamond.xpm new file mode 100644 index 0000000..bf3c169 --- /dev/null +++ b/data/pixmaps/feta/12/noteheads-2diamond.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"18 15 7 1", +" c #020202", +". c #484848", +"X c #797979", +"o c #898989", +"O c #b9b9b9", +"+ c #c0c0c0", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@@@@", +"@@@@@@@@+X+@@@@@@@", +"@@@@@@@O Xo. .@", +"@@@@@@@ o", +"@@@@@@o o", +"@@@@@@ .@", +"@@@@@X .@@", +"@@@@@ .@@@", +"@@@@. @@@@", +"@@@. X@@@@", +"@@. @@@@@", +"@o o@@@@@", +"@o @@@@@@", +"@@. .oX O@@@@@@", +"@@@@@@@@+X+@@@@@@@" +}; diff --git a/data/pixmaps/feta/12/noteheads-2mensural.xpm b/data/pixmaps/feta/12/noteheads-2mensural.xpm new file mode 100644 index 0000000..92de7d2 --- /dev/null +++ b/data/pixmaps/feta/12/noteheads-2mensural.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 15 6 1", +" c Gray1", +". c #2a2a2a", +"X c Gray59", +"o c Gray66", +"O c Gray84", +"+ c None", +/* pixels */ +"+++++++++++++", +"++++++OO+++++", +"+++++O..O++++", +"+++++. .++++", +"++++X X+++", +"+++X X++", +"++o o+", +"+o o", +"+o o", +"++o o+", +"+++X X++", +"++++X X+++", +"+++++. .++++", +"+++++O..O++++", +"++++++OO+++++" +}; diff --git a/data/pixmaps/feta/12/noteheads-2slash.xpm b/data/pixmaps/feta/12/noteheads-2slash.xpm new file mode 100644 index 0000000..965d093 --- /dev/null +++ b/data/pixmaps/feta/12/noteheads-2slash.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"22 25 7 1", +" c Gray1", +". c #484848", +"X c Gray50", +"o c Gray53", +"O c #b7b7b7", +"+ c #cdcdcd", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@oooooo+", +"@@@@@@@@@@@@@@. +", +"@@@@@@@@@@@@@O O@", +"@@@@@@@@@@@@@. .@@", +"@@@@@@@@@@@@X O@@", +"@@@@@@@@@@@@ o@@@", +"@@@@@@@@@@@o @@@@", +"@@@@@@@@@@O X@@@@", +"@@@@@@@@@@. .@@@@@", +"@@@@@@@@@O O@@@@@", +"@@@@@@@@@ .@@@@@@", +"@@@@@@@@X @@@@@@@", +"@@@@@@@@ X@@@@@@@", +"@@@@@@@. @@@@@@@@", +"@@@@@@O O@@@@@@@@", +"@@@@@@. .@@@@@@@@@", +"@@@@@X O@@@@@@@@@", +"@@@@@ X@@@@@@@@@@", +"@@@@X @@@@@@@@@@@", +"@@@O X@@@@@@@@@@@", +"@@@. .@@@@@@@@@@@@", +"@@O O@@@@@@@@@@@@", +"@+ .@@@@@@@@@@@@@", +"@+oooooo@@@@@@@@@@@@@@" +}; diff --git a/data/pixmaps/feta/12/noteheads-2triangle.xpm b/data/pixmaps/feta/12/noteheads-2triangle.xpm new file mode 100644 index 0000000..9ce9b31 --- /dev/null +++ b/data/pixmaps/feta/12/noteheads-2triangle.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 13 8 1", +" c Gray1", +". c #282828", +"X c #4c4c4c", +"o c #767676", +"O c #818181", +"+ c #b7b7b7", +"@ c #d5d5d5", +"# c None", +/* pixels */ +"##############", +"#######@######", +"######@.@#####", +"######o o#####", +"#####+ +####", +"#####. X####", +"####+ +###", +"#### @##", +"###o o##", +"### ##", +"##X X#", +"#+ +", +"#+oOOOOOOOOOo+" +}; diff --git a/data/pixmaps/feta/12/noteheads-2xcircle.xpm b/data/pixmaps/feta/12/noteheads-2xcircle.xpm new file mode 100644 index 0000000..a48774c --- /dev/null +++ b/data/pixmaps/feta/12/noteheads-2xcircle.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"17 16 7 1", +" c Gray1", +". c #343434", +"X c #484848", +"o c Gray49", +"O c #888888", +"+ c #b7b7b7", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@@@", +"@@@@@@@OOOO@@@@@@", +"@@@@@X X@@@@", +"@@@+ o@@@@o +@@", +"@@+ X@@@@@@X +@", +"@@.X+ X@@@@X +X.@", +"@@ o@+ X@@X +@O @", +"@O @@@+ XX +@@@ O", +"@O @@@@o o@@@@ O", +"@O @@@+ XX +@@@ O", +"@@ O@+ X@@X +@o @", +"@@.X+ X@@@@X +X.@", +"@@+ X@@@@@@X +@", +"@@@+ O@@@@o +@@", +"@@@@@. X@@@@", +"@@@@@@@OOOO@@@@@@" +}; diff --git a/data/pixmaps/feta/12/noteheads-ledgerending.xpm b/data/pixmaps/feta/12/noteheads-ledgerending.xpm new file mode 100644 index 0000000..b19fb30 --- /dev/null +++ b/data/pixmaps/feta/12/noteheads-ledgerending.xpm @@ -0,0 +1,14 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 4 4 1", +" c #010101", +". c Gray55", +"X c #cbcbcb", +"o c None", +/* pixels */ +"ooooooooooooo", +"oX..........X", +"o. .", +"oX..........X" +}; diff --git a/data/pixmaps/feta/12/rests--1.xpm b/data/pixmaps/feta/12/rests--1.xpm new file mode 100644 index 0000000..b7c9ae7 --- /dev/null +++ b/data/pixmaps/feta/12/rests--1.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 13 5 1", +" c #020202", +". c Gray45", +"X c Gray53", +"o c Gray77", +"O c None", +/* pixels */ +"OOOOOOOOO", +"Oo.XX.X.o", +"OX X", +"OX X", +"OX X", +"OX X", +"OX X", +"OX X", +"OX X", +"OX X", +"OX X", +"OX X", +"Oo.XX.X.o" +}; diff --git a/data/pixmaps/feta/12/rests--1o.xpm b/data/pixmaps/feta/12/rests--1o.xpm new file mode 100644 index 0000000..351fda2 --- /dev/null +++ b/data/pixmaps/feta/12/rests--1o.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char * rests__1o_xpm[] = { +"20 12 11 1", +" c None", +". c #828282", +"+ c #7D7D7D", +"@ c #737373", +"# c #878787", +"$ c #020202", +"% c #CFCFCF", +"& c #323232", +"* c #BDBDBD", +"= c #030303", +"- c #898989", +" .+@@##@##@##@##@++ ", +".$$$$$$$$$$$$$$$$$$.", +"%&&$$$$$$$$$$$$$$&&%", +" #$$$$$$# ", +" #$$$$$$# ", +" #$$$$$$# ", +" #$$$$$$# ", +" #$$$$$$# ", +" #$$$$$$# ", +"*==================*", +"-==================-", +" -------------------"}; diff --git a/data/pixmaps/feta/12/rests--2.xpm b/data/pixmaps/feta/12/rests--2.xpm new file mode 100644 index 0000000..d0d3891 --- /dev/null +++ b/data/pixmaps/feta/12/rests--2.xpm @@ -0,0 +1,36 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 25 5 1", +" c #020202", +". c Gray49", +"X c #898989", +"o c #c8c8c8", +"O c None", +/* pixels */ +"OOOOOOOOO", +"Oo.XXXX.o", +"OX X", +"OX X", +"OX X", +"OX X", +"OX X", +"OX X", +"OX X", +"OX X", +"OX X", +"OX X", +"OX X", +"OX X", +"OX X", +"OX X", +"OX X", +"OX X", +"OX X", +"OX X", +"OX X", +"OX X", +"OX X", +"OX X", +"Oo.XXXX.o" +}; diff --git a/data/pixmaps/feta/12/rests--4.xpm b/data/pixmaps/feta/12/rests--4.xpm new file mode 100644 index 0000000..c218731 --- /dev/null +++ b/data/pixmaps/feta/12/rests--4.xpm @@ -0,0 +1,35 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"93 25 4 1", +" c #040404", +". c Gray53", +"X c Gray78", +"o c None", +/* pixels */ +"ooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo", +"oX.oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo.X", +"o. oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo .", +"o. oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo .", +"o. oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo .", +"o. oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo .", +"o. oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo .", +"o. oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo .", +"o. oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo .", +"o. .", +"o. .", +"o. .", +"o. .", +"o. .", +"o. .", +"o. .", +"o. .", +"o. oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo .", +"o. oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo .", +"o. oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo .", +"o. oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo .", +"o. oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo .", +"o. oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo .", +"o. oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo .", +"oX.oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo.X" +}; diff --git a/data/pixmaps/feta/12/rests-0.xpm b/data/pixmaps/feta/12/rests-0.xpm new file mode 100644 index 0000000..ed33aa1 --- /dev/null +++ b/data/pixmaps/feta/12/rests-0.xpm @@ -0,0 +1,20 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"19 9 5 1", +" c #020202", +". c Gray49", +"X c #898989", +"o c #c8c8c8", +"O c None", +/* pixels */ +"OOOOOOOOOOOOOOOOOOO", +"Oo.XXXXXXXXXXXXXXXo", +"OX X", +"OX X", +"OX X", +"OX X", +"OX X", +"OX X", +"Oo.XXXXXXXXXXXXXX.o" +}; diff --git a/data/pixmaps/feta/12/rests-0o.xpm b/data/pixmaps/feta/12/rests-0o.xpm new file mode 100644 index 0000000..4a52b54 --- /dev/null +++ b/data/pixmaps/feta/12/rests-0o.xpm @@ -0,0 +1,23 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"33 10 7 1", +" c #020202", +". c #323232", +"X c Gray49", +"o c Gray51", +"O c #bebebe", +"+ c Gray81", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@", +"@@oXooooXXXXXXXXXXXXXoXXXXXXooXo@", +"@o o", +"@+....... .......+", +"@@@@@@@@X X@@@@@@@", +"@@@@@@@@X X@@@@@@@", +"@@@@@@@@o X@@@@@@@", +"@@@@@@@@o o@@@@@@@", +"@@@@@@@@X X@@@@@@@", +"@@@@@@@@OXXXXXXXXXXXXXXXXO@@@@@@@" +}; diff --git a/data/pixmaps/feta/12/rests-1.xpm b/data/pixmaps/feta/12/rests-1.xpm new file mode 100644 index 0000000..ed33aa1 --- /dev/null +++ b/data/pixmaps/feta/12/rests-1.xpm @@ -0,0 +1,20 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"19 9 5 1", +" c #020202", +". c Gray49", +"X c #898989", +"o c #c8c8c8", +"O c None", +/* pixels */ +"OOOOOOOOOOOOOOOOOOO", +"Oo.XXXXXXXXXXXXXXXo", +"OX X", +"OX X", +"OX X", +"OX X", +"OX X", +"OX X", +"Oo.XXXXXXXXXXXXXX.o" +}; diff --git a/data/pixmaps/feta/12/rests-1o.xpm b/data/pixmaps/feta/12/rests-1o.xpm new file mode 100644 index 0000000..3c787e1 --- /dev/null +++ b/data/pixmaps/feta/12/rests-1o.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"33 10 6 1", +" c Gray1", +". c Gray", +"X c #898989", +"o c Gray74", +"O c Gray77", +"+ c None", +/* pixels */ +"+++++++++++++++++++++++++++++++++", +"++++++++O.XXXXXXXXXXXXXXXO+++++++", +"++++++++. .+++++++", +"++++++++X X+++++++", +"++++++++. .+++++++", +"++++++++. X+++++++", +"++++++++. .+++++++", +"+o o", +"+X X", +"++XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX+" +}; diff --git a/data/pixmaps/feta/12/rests-2.xpm b/data/pixmaps/feta/12/rests-2.xpm new file mode 100644 index 0000000..d2dfd7b --- /dev/null +++ b/data/pixmaps/feta/12/rests-2.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 35 8 1", +" c Gray1", +". c Gray19", +"X c #565656", +"o c Gray45", +"O c #8d8d8d", +"+ c #acacac", +"@ c #d3d3d3", +"# c None", +/* pixels */ +"##############", +"####@o########", +"####O X#######", +"#####X o######", +"######X +#####", +"####### +####", +"#######O +###", +"#######o .###", +"#######o .##", +"######@ .#", +"######o +", +"#####O O", +"###@X .#", +"##@. @#", +"#@. .@##", +"#O o####", +"#+ X#####", +"##X @#####", +"##@. X######", +"###@. o######", +"####@ O######", +"#####O .######", +"##@++@O o#####", +"#@ . O####", +"#O @###", +"#O @##", +"#O .XXX @#", +"#@ @####+ o#", +"##. o######@##", +"##O O#########", +"### o#########", +"###XX#########", +"###@ #########", +"####+X########", +"#####+########" +}; diff --git a/data/pixmaps/feta/12/rests-2mensural.xpm b/data/pixmaps/feta/12/rests-2mensural.xpm new file mode 100644 index 0000000..b7ca53f --- /dev/null +++ b/data/pixmaps/feta/12/rests-2mensural.xpm @@ -0,0 +1,23 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 11 6 1", +" c #070707", +". c #484848", +"X c Gray46", +"o c #8b8b8b", +"O c #b9b9b9", +"+ c None", +/* pixels */ +"+++++++++++", +"++OO+++++++", +"+O Xo++++", +"+o .o+", +"+o X o", +"+o +++o. O", +"+o +++++++", +"+o +++++++", +"+o +++++++", +"+O +++++++", +"++OO+++++++" +}; diff --git a/data/pixmaps/feta/12/rests-3.xpm b/data/pixmaps/feta/12/rests-3.xpm new file mode 100644 index 0000000..6eb4645 --- /dev/null +++ b/data/pixmaps/feta/12/rests-3.xpm @@ -0,0 +1,37 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"17 23 8 1", +" c Gray1", +". c Gray19", +"X c #4e4e4e", +"o c Gray45", +"O c Gray52", +"+ c #afafaf", +"@ c #d3d3d3", +"# c None", +/* pixels */ +"#################", +"###@OO@##########", +"##+ o#######o+", +"#@ +#####@ o", +"#O X#####X #", +"#O .####@ .#", +"#@ o##@X o#", +"##+ @#", +"###@o .OO .##", +"############+ o##", +"############. @##", +"###########@ .###", +"###########o o###", +"###########. @###", +"##########+ .####", +"##########. o####", +"#########@ @####", +"#########+ .#####", +"#########X X#####", +"########@ @#####", +"########O .######", +"########X X######", +"########@O@######" +}; diff --git a/data/pixmaps/feta/12/rests-3mensural.xpm b/data/pixmaps/feta/12/rests-3mensural.xpm new file mode 100644 index 0000000..c2d2c6c --- /dev/null +++ b/data/pixmaps/feta/12/rests-3mensural.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 11 8 1", +" c #070707", +". c #3e3e3e", +"X c #4e4e4e", +"o c Gray46", +"O c #8b8b8b", +"+ c #bcbcbc", +"@ c #c3c3c3", +"# c None", +/* pixels */ +"###########", +"########+O#", +"#####Oo O", +"##@X O", +"#+ o O", +"##..O### O", +"######## O", +"######## O", +"######## O", +"########X O", +"#########O#" +}; diff --git a/data/pixmaps/feta/12/rests-4.xpm b/data/pixmaps/feta/12/rests-4.xpm new file mode 100644 index 0000000..92ec572 --- /dev/null +++ b/data/pixmaps/feta/12/rests-4.xpm @@ -0,0 +1,48 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"19 34 8 1", +" c #040404", +". c Gray17", +"X c Gray30", +"o c Gray46", +"O c Gray54", +"+ c #b1b1b1", +"@ c #cdcdcd", +"# c None", +/* pixels */ +"###################", +"#######+oO#########", +"######. .@#####o+", +"#####X X####@ O", +"####@ @###O +", +"####@ @### #", +"#####o .@#+. o#", +"######X . O#", +"#######@.... X@X @#", +"############### ##", +"##############+ o##", +"##############O @##", +"####@@########. @##", +"##@. .+#####@ X###", +"##. @####O O###", +"#+ X####. @###", +"#O .####. ####", +"#@ .@@O. X####", +"##o O####", +"###+. X. @####", +"#####@@@@@@+ X#####", +"###########O X#####", +"###########. +#####", +"##########@ @#####", +"##########O X######", +"##########X o######", +"##########. @######", +"#########+ .@######", +"#########X X#######", +"#########. o#######", +"########@ @#######", +"########O .########", +"########X X########", +"########@o@########" +}; diff --git a/data/pixmaps/feta/12/rests-4mensural.xpm b/data/pixmaps/feta/12/rests-4mensural.xpm new file mode 100644 index 0000000..8291912 --- /dev/null +++ b/data/pixmaps/feta/12/rests-4mensural.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 13 8 1", +" c Gray2", +". c #2d2d2d", +"X c #4b4b4b", +"o c #727272", +"O c #8b8b8b", +"+ c #aeaeae", +"@ c #d5d5d5", +"# c None", +/* pixels */ +"###########", +"########@O#", +"######@o O", +"####@o O", +"##@X . O", +"#+ .+# O", +"#@.X@##o O", +"#####o O", +"##@o . O", +"#@ .O@. O", +"#+ .+### O", +"##@#####X O", +"#########o#" +}; diff --git a/data/pixmaps/feta/12/rests-5.xpm b/data/pixmaps/feta/12/rests-5.xpm new file mode 100644 index 0000000..6965b9d --- /dev/null +++ b/data/pixmaps/feta/12/rests-5.xpm @@ -0,0 +1,60 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"22 46 8 1", +" c Gray2", +". c Gray23", +"X c #484848", +"o c #7b7b7b", +"O c Gray52", +"+ c Gray72", +"@ c Gray78", +"# c None", +/* pixels */ +"######################", +"##########Oo+#########", +"########+ X######o@", +"######## o####+ O", +"#######O ####o @", +"#######O ####X #", +"######## X##@. X#", +"########+ o#", +"##########o .@O +#", +"##################X ##", +"################## ##", +"#################+ o##", +"#################O O##", +"######O .+######X ###", +"#####X +##### ###", +"####+ X####+ o###", +"####o ####o O###", +"####+ ####X ####", +"#####X .OOo ####", +"######o . X####", +"########OooOOO#O O####", +"###############X +####", +"############### #####", +"##############+ X#####", +"####Oo+#######O O#####", +"##+ X######X O#####", +"## O##### ######", +"#O ####+ ######", +"#O ####X o######", +"## oOo O######", +"##+ #######", +"####O O+ #######", +"##########@#O o#######", +"############X O#######", +"############ +#######", +"###########+ ########", +"###########O X########", +"###########X O########", +"########### +########", +"##########+ #########", +"##########O X#########", +"########## O#########", +"########## O#########", +"#########O ##########", +"#########O ##########", +"##########O+##########" +}; diff --git a/data/pixmaps/feta/12/rests-6.xpm b/data/pixmaps/feta/12/rests-6.xpm new file mode 100644 index 0000000..1ddb77e --- /dev/null +++ b/data/pixmaps/feta/12/rests-6.xpm @@ -0,0 +1,71 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"23 57 8 1", +" c Gray1", +". c Gray18", +"X c Gray31", +"o c Gray43", +"O c #8d8d8d", +"+ c #b1b1b1", +"@ c #d0d0d0", +"# c None", +/* pixels */ +"#######################", +"###########+o+#########", +"#########@. .@#####o+", +"#########X X####@ O", +"########@ @###O +", +"########@ @###X #", +"#########X .@#@X #", +"#########@. X o#", +"###########+ .@@ o#", +"###################O +#", +"###################X ##", +"###################. @#", +"################### o##", +"########o X@#####+ o##", +"#######. .#####O +##", +"######O O####. @##", +"######o X#### @##", +"######O X###@ o###", +"#######. oOOX o###", +"#######@o oO +###", +"#########@oOoOO@#. @###", +"################# .####", +"################+ o####", +"################+ o####", +"######+oO#######o @####", +"#####. .@#####. @####", +"####o X####@ .#####", +"###@ +###+ o#####", +"###@ +###o o#####", +"####o oOo @#####", +"#####. @#####", +"######+. oO .######", +"########@###@#+ X######", +"##############o o######", +"##############. @######", +"##############. @######", +"###o X@#####+ .#######", +"##X @####+ X#######", +"#+ o####X o#######", +"#O .####. @#######", +"#+ .##@o @#######", +"##. .########", +"###o .. X########", +"#####oOoOoO#. X########", +"############. @########", +"###########@ @########", +"###########+ X#########", +"###########X X#########", +"###########X O#########", +"########### @#########", +"##########@ @#########", +"##########+ X##########", +"##########X X##########", +"##########X O##########", +"#########@ +##########", +"#########@ @##########", +"##########+O###########" +}; diff --git a/data/pixmaps/feta/12/rests-7.xpm b/data/pixmaps/feta/12/rests-7.xpm new file mode 100644 index 0000000..12b5198 --- /dev/null +++ b/data/pixmaps/feta/12/rests-7.xpm @@ -0,0 +1,82 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"26 68 8 1", +" c #040404", +". c Gray19", +"X c Gray31", +"o c Gray43", +"O c Gray54", +"+ c #afafaf", +"@ c #d0d0d0", +"# c None", +/* pixels */ +"##########################", +"##############Oo+#########", +"############+ X########", +"############ o##### O", +"###########O ####O O", +"###########O ####o #", +"###########+ .##@o #", +"############X X#", +"#############O. X+ o#", +"###############OOOOO@#O O#", +"######################o ##", +"###################### ##", +"############@@######## X##", +"##########+. o######+ o##", +"#########+ .#####o @##", +"#########. +####. ###", +"######### o#### ###", +"#########X O###O O###", +"#########@ ooX. o###", +"##########@o oX @###", +"############@O+++O@# ####", +"#################### .####", +"###################+ O####", +"###################O o####", +"########@XXO#######. @####", +"#######O .@##### #####", +"######@ o####@ X#####", +"######O ####O O#####", +"######O ####o O#####", +"#######. X@@@. ######", +"#######@. . ######", +"#########+X....X@+ X######", +"#################O O######", +"#################o O######", +"################# #######", +"######@+@#######@ #######", +"#####O .@#####o o#######", +"####O .#####O O#######", +"####. O####. @#######", +"#### O###@ ########", +"####o X@+o .########", +"####@. o########", +"######O. .OX O########", +"#######@@@@@@@# @########", +"##############@ #########", +"##############o .#########", +"##############O O#########", +"###+..o@######. o#########", +"##o @##### @#########", +"#@ X####O ##########", +"#O ####o o##########", +"#+ ###+. O##########", +"##. ... +##########", +"##@o . ###########", +"####@oooXoo#o ###########", +"############O o###########", +"############ O###########", +"############ +###########", +"###########@ ############", +"###########o ############", +"###########X o############", +"########### O############", +"########### @############", +"##########O #############", +"##########o X#############", +"##########. o#############", +"########## O#############", +"##########+O##############" +}; diff --git a/data/pixmaps/feta/12/scripts-arpeggio.xpm b/data/pixmaps/feta/12/scripts-arpeggio.xpm new file mode 100644 index 0000000..a402782 --- /dev/null +++ b/data/pixmaps/feta/12/scripts-arpeggio.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 18 8 1", +" c Gray2", +". c Gray22", +"X c #535353", +"o c #747474", +"O c #929292", +"+ c #a9a9a9", +"@ c Gray82", +"# c None", +/* pixels */ +"###########", +"###o@######", +"##@ @#####", +"####. O####", +"####@ o###", +"#####X X@#", +"#####. #", +"####+ o", +"###@ @", +"##@ @#", +"#@ X###", +"#o .####", +"#@. +####", +"##@ @####", +"####o X####", +"#####o +###", +"######o X##", +"#######++##" +}; diff --git a/data/pixmaps/feta/12/scripts-coda.xpm b/data/pixmaps/feta/12/scripts-coda.xpm new file mode 100644 index 0000000..0587984 --- /dev/null +++ b/data/pixmaps/feta/12/scripts-coda.xpm @@ -0,0 +1,48 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"26 34 8 1", +" c #020202", +". c Gray19", +"X c Gray36", +"o c #6d6d6d", +"O c Gray56", +"+ c #b2b2b2", +"@ c Gray79", +"# c None", +/* pixels */ +"##########################", +"#############o@###########", +"############@ @###########", +"############@ @###########", +"############@ +###########", +"############+ @###########", +"##########@X .+##########", +"#########O .X . .#########", +"########O #@ @O .########", +"#######@ o#+ @# X#######", +"#######X +#@ @#. @######", +"######@ .##@ +#+ X######", +"######O .##@ @#+ .######", +"######X .##@ @#+ @#####", +"######. .##+ +#+ O#####", +"#####@ .##@ @#+ X#####", +"#+oooo oOX XOX .Oooo#", +"#O @", +"#####@ .##+ +#+ X#####", +"###### .##@ @#+ X#####", +"######. .##@ +#+ O#####", +"######X .##@ @#+ @#####", +"######O .##@ +#+ .######", +"######@ .##@ @#O X######", +"#######X +#@ +#. @######", +"#######@ o#+ @# X#######", +"########O #@ @O .########", +"#########O .X X .#########", +"##########@X +##########", +"############+ @###########", +"############@ @###########", +"############@ @###########", +"############@ @###########", +"############@O############" +}; diff --git a/data/pixmaps/feta/12/scripts-dfermata.xpm b/data/pixmaps/feta/12/scripts-dfermata.xpm new file mode 100644 index 0000000..24ff94f --- /dev/null +++ b/data/pixmaps/feta/12/scripts-dfermata.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"32 19 8 1", +" c Gray1", +". c Gray19", +"X c #484848", +"o c Gray44", +"O c #8b8b8b", +"+ c #b1b1b1", +"@ c #d2d2d2", +"# c None", +/* pixels */ +"################################", +"#@O############+o+############o@", +"#O +##########X X##########+ O", +"#@ o#########+ +#########o @", +"## .#########O O#########. #", +"##X @########O O########@ X#", +"##O o#########o o#########o O#", +"### @#########+++#########@ ##", +"###o .#####################. o##", +"###@ O###################O @##", +"####o o#################o o###", +"####@ o@#############@o @###", +"#####O .+###########+. O####", +"######. .o+@###@+o. .#####", +"#######. ... .######", +"########. .#######", +"#########+ +########", +"##########@o o@#########", +"#############@OOOOO@############" +}; diff --git a/data/pixmaps/feta/12/scripts-dmarcato.xpm b/data/pixmaps/feta/12/scripts-dmarcato.xpm new file mode 100644 index 0000000..6d4b283 --- /dev/null +++ b/data/pixmaps/feta/12/scripts-dmarcato.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 14 8 1", +" c Gray2", +". c #323232", +"X c #555555", +"o c #6c6c6c", +"O c #888888", +"+ c Gray69", +"@ c #d3d3d3", +"# c None", +/* pixels */ +"#############", +"#@oOo@#####++", +"#O .#####.O", +"## +###+ #", +"##O o###.O#", +"### @#@ ##", +"###X o#XX##", +"###@ + @##", +"####o o###", +"####@ @###", +"#####. .####", +"#####+ +####", +"######..#####", +"######++#####" +}; diff --git a/data/pixmaps/feta/12/scripts-downbow.xpm b/data/pixmaps/feta/12/scripts-downbow.xpm new file mode 100644 index 0000000..4313267 --- /dev/null +++ b/data/pixmaps/feta/12/scripts-downbow.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"19 17 6 1", +" c #020202", +". c Gray", +"X c #888888", +"o c Gray70", +"O c Gray77", +"+ c None", +/* pixels */ +"+++++++++++++++++++", +"+O.XXXXXXXXXXXXXX.O", +"+X X", +"+X X", +"+X X", +"+X X", +"+X X", +"+X .X..........X. X", +"+X ++++++++++++++ .", +"+X ++++++++++++++ X", +"+X ++++++++++++++ X", +"+X ++++++++++++++ X", +"+X ++++++++++++++ X", +"+X ++++++++++++++ .", +"+X ++++++++++++++ X", +"+. ++++++++++++++ X", +"+oo++++++++++++++oO" +}; diff --git a/data/pixmaps/feta/12/scripts-downmordent.xpm b/data/pixmaps/feta/12/scripts-downmordent.xpm new file mode 100644 index 0000000..def5801 --- /dev/null +++ b/data/pixmaps/feta/12/scripts-downmordent.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"41 19 8 1", +" c #040404", +". c Gray18", +"X c #4c4c4c", +"o c #686868", +"O c #8e8e8e", +"+ c #acacac", +"@ c #d5d5d5", +"# c None", +/* pixels */ +"#########################################", +"####++###################################", +"###+ O###################################", +"##@ ####################################", +"##. O######################..############", +"#@ @####@@#########@###### #@@#########", +"#O ####+ .########. O##### .O .#########", +"#O ###@. .@#####O O#### . .@#######", +"#O ###o .@###@ O### .@####@@", +"#@ @#O O##. X@# O##O O", +"##o O#. OO .+ O@ @", +"##@ .X O. . . . +#", +"###O .#@. o#O @. o##", +"####OX@###O .@##@. ##O .@##", +"###########O +#####. . ###O +###", +"############O o#######. @ ####+ o####", +"#############+o@########o+# #####+o@####", +"########################### ############", +"###########################++############" +}; diff --git a/data/pixmaps/feta/12/scripts-downprall.xpm b/data/pixmaps/feta/12/scripts-downprall.xpm new file mode 100644 index 0000000..c2a5741 --- /dev/null +++ b/data/pixmaps/feta/12/scripts-downprall.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"41 17 8 1", +" c #020202", +". c Gray19", +"X c #555555", +"o c #747474", +"O c #8d8d8d", +"+ c Gray67", +"@ c #d5d5d5", +"# c None", +/* pixels */ +"#########################################", +"####++###################################", +"###+ O###################################", +"##@ ####################################", +"##. O####################################", +"#@ @####@@########@@#########@@#########", +"#O ####+ .@#######. O#######+ .@########", +"#O ###@. .@#####O O#####@. .@#######", +"#O ###o .@###@ O####o .@####+@", +"#@ @#O O##. .@#O O##O O", +"##o O@. oo .+. O@ .@", +"##@ .X O. X .. +#", +"###O .##. o#O @#. o##", +"####+X@###O .###@. O###O .###", +"###########+ +#####. X#####+ +###", +"############+ o#######X @######+ o####", +"#############+o#########o+########+O#####" +}; diff --git a/data/pixmaps/feta/12/scripts-dpedalheel.xpm b/data/pixmaps/feta/12/scripts-dpedalheel.xpm new file mode 100644 index 0000000..65303b5 --- /dev/null +++ b/data/pixmaps/feta/12/scripts-dpedalheel.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 15 5 1", +" c #020202", +". c #888888", +"X c #b4b4b4", +"o c Gray78", +"O c None", +/* pixels */ +"OOOOOOOOOOOOO", +"OOOOO....OOOO", +"OOOX XOO", +"OOX .OO. XO", +"OO XOOOOX O", +"O. .OOOOOO. .", +"O. OOOOOOOO .", +"O. OOOOOOOO .", +"O. OOOOOOOO .", +"O. OOOOOOOO .", +"O. OOOOOOOO .", +"O. OOOOOOOO .", +"O. OOOOOOOO .", +"O. OOOOOOOO .", +"Oo.OOOOOOOO.o" +}; diff --git a/data/pixmaps/feta/12/scripts-dpedaltoe.xpm b/data/pixmaps/feta/12/scripts-dpedaltoe.xpm new file mode 100644 index 0000000..e9064c3 --- /dev/null +++ b/data/pixmaps/feta/12/scripts-dpedaltoe.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 19 7 1", +" c #040404", +". c #434343", +"X c #777777", +"o c #888888", +"O c Gray73", +"+ c #c8c8c8", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@", +"@+o@@@@@@@@o+", +"@o O@@@@@@O o", +"@+ X@@@@@@X +", +"@@ @@@@@@ @", +"@@X @@@@@@ X@", +"@@o o@@@@o o@", +"@@@ .@@@@. @@", +"@@@. @@@@ .@@", +"@@@o o@@o o@@", +"@@@@ .@@. @@@", +"@@@@. @@ .@@@", +"@@@@o ++ o@@@", +"@@@@O oo O@@@", +"@@@@@ @@@@", +"@@@@@X X@@@@", +"@@@@@O O@@@@", +"@@@@@@ @@@@@", +"@@@@@@Oo@@@@@" +}; diff --git a/data/pixmaps/feta/12/scripts-dstaccatissimo.xpm b/data/pixmaps/feta/12/scripts-dstaccatissimo.xpm new file mode 100644 index 0000000..01d8031 --- /dev/null +++ b/data/pixmaps/feta/12/scripts-dstaccatissimo.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 14 7 1", +" c #040404", +". c #393939", +"X c #434343", +"o c Gray49", +"O c Gray53", +"+ c #bcbcbc", +"@ c None", +/* pixels */ +"@@@@@@@", +"@@@++@@", +"@@@..@@", +"@@@ @@", +"@@@ @@", +"@@o O@", +"@@o o@", +"@@X X@", +"@@ @", +"@@ @", +"@O O", +"@O O", +"@+ +", +"@@+OO+@" +}; diff --git a/data/pixmaps/feta/12/scripts-flageolet.xpm b/data/pixmaps/feta/12/scripts-flageolet.xpm new file mode 100644 index 0000000..08d3d07 --- /dev/null +++ b/data/pixmaps/feta/12/scripts-flageolet.xpm @@ -0,0 +1,23 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 14 3 1", +" c #929292", +". c Gray85", +"X c None", +/* pixels */ +"XXXXXXXXXXXXXX", +"XXXXX. .XXXX", +"XXX. ... .XX", +"XXX .XXXXX. XX", +"XX .XXXXXXX. X", +"X. XXXXXXXXX .", +"X .XXXXXXXXX. ", +"X .XXXXXXXXX. ", +"X .XXXXXXXXX. ", +"X. XXXXXXXXX .", +"XX .XXXXXXX. X", +"XXX .XXXXX. XX", +"XXX. ... .XX", +"XXXXX. .XXXX" +}; diff --git a/data/pixmaps/feta/12/scripts-lcomma.xpm b/data/pixmaps/feta/12/scripts-lcomma.xpm new file mode 100644 index 0000000..9911ebe --- /dev/null +++ b/data/pixmaps/feta/12/scripts-lcomma.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 16 8 1", +" c Gray1", +". c Gray14", +"X c Gray32", +"o c Gray47", +"O c Gray54", +"+ c #b4b4b4", +"@ c #d3d3d3", +"# c None", +/* pixels */ +"#######", +"#####o+", +"####+ +", +"#### X#", +"###o @#", +"##@ X##", +"##O O##", +"##. ###", +"#@ ###", +"#O ###", +"#O @##", +"#O o##", +"#O .##", +"## O#", +"##o o#", +"###OO##" +}; diff --git a/data/pixmaps/feta/12/scripts-lineprall.xpm b/data/pixmaps/feta/12/scripts-lineprall.xpm new file mode 100644 index 0000000..874e2c4 --- /dev/null +++ b/data/pixmaps/feta/12/scripts-lineprall.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"38 31 8 1", +" c #020202", +". c Gray18", +"X c #535353", +"o c #727272", +"O c #8d8d8d", +"+ c Gray70", +"@ c #cecece", +"# c None", +/* pixels */ +"######################################", +"##O###################################", +"#O O##################################", +"#O O##################################", +"#O O##################################", +"#O O##################################", +"#O O##################################", +"#O O##################################", +"#O O##################################", +"#O O##################################", +"#O O##################################", +"#O O##################################", +"#O O##################################", +"#O O##################################", +"#O O##################################", +"#O O##################################", +"#O O##################################", +"#O O##################################", +"#O O##################################", +"#O O##@+#########+#########+@#########", +"#O O## O#######X X#######+ @########", +"#O O#X O#####+ .######. +#######", +"#O O@ O####. .####o @####+@", +"#O O. .@#X O#+ X##o O", +"#O .O O. X@ .#", +"#O XO X. .X +#", +"#O +#O .#@ @#X X##", +"#+ +###@. @###o o###+ .###", +"########@. o#####o .#####@ +###", +"##########. .#######o @######@ o####", +"###########o@########OO########@o#####" +}; diff --git a/data/pixmaps/feta/12/scripts-mordent.xpm b/data/pixmaps/feta/12/scripts-mordent.xpm new file mode 100644 index 0000000..a0a3037 --- /dev/null +++ b/data/pixmaps/feta/12/scripts-mordent.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"27 17 8 1", +" c #020202", +". c #343434", +"X c #494949", +"o c Gray45", +"O c Gray58", +"+ c #b6b6b6", +"@ c Gray80", +"# c None", +/* pixels */ +"###########################", +"#############O@############", +"############@ X############", +"######o@####@ X#OO#########", +"#####o @###@ X@ O########", +"####+ @##@ .. O#######", +"####. @#@ O####O+", +"###o o@ .##X O", +"##+ X X@ .#", +"##. +X .o +#", +"#O X##. .#o o##", +"#+o####O X##@ .###", +"########O X###@ +###", +"#########O O .####@ o####", +"##########OO@ X#####@o#####", +"############@ X############", +"#############O@############" +}; diff --git a/data/pixmaps/feta/12/scripts-open.xpm b/data/pixmaps/feta/12/scripts-open.xpm new file mode 100644 index 0000000..84803c0 --- /dev/null +++ b/data/pixmaps/feta/12/scripts-open.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 13 6 1", +" c #040404", +". c Gray30", +"X c Gray", +"o c Gray53", +"O c Gray75", +"+ c None", +/* pixels */ +"+++++++++++", +"++++OooO+++", +"+++. .++", +"++o .++. o+", +"++ ++++ +", +"+o X++++X o", +"+o o++++o o", +"+o X++++o o", +"+o o++++X o", +"++ ++++ +", +"++o .++. X+", +"+++. .++", +"++++OooO+++" +}; diff --git a/data/pixmaps/feta/12/scripts-prall.xpm b/data/pixmaps/feta/12/scripts-prall.xpm new file mode 100644 index 0000000..d374bd1 --- /dev/null +++ b/data/pixmaps/feta/12/scripts-prall.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"27 13 8 1", +" c Gray1", +". c #373737", +"X c #515151", +"o c #747474", +"O c #929292", +"+ c #b4b4b4", +"@ c Gray81", +"# c None", +/* pixels */ +"###########################", +"######o@########OO#########", +"#####o @######+ O########", +"####+ @##### O#######", +"####. @###o O####o+", +"###o o#+ .##X O", +"##+ X. X+ .#", +"##. +X .o +#", +"#O X##. +#o o##", +"#@o####O o###@ .###", +"########O .@####@ +###", +"#########O +######@ o####", +"##########+O########@o#####" +}; diff --git a/data/pixmaps/feta/12/scripts-pralldown.xpm b/data/pixmaps/feta/12/scripts-pralldown.xpm new file mode 100644 index 0000000..989bb44 --- /dev/null +++ b/data/pixmaps/feta/12/scripts-pralldown.xpm @@ -0,0 +1,34 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"40 20 8 1", +" c Gray1", +". c Gray18", +"X c #505050", +"o c Gray46", +"O c Gray56", +"+ c #acacac", +"@ c Gray83", +"# c None", +/* pixels */ +"########################################", +"##########+o#########O+########+o#######", +"#########+ o#######X @######+ o######", +"########+ +#####. .#####+ +#####", +"#+X####O .###@. +###O .#####", +"#O .##. o#O @#. o####", +"##X O. X .. +###", +"##@. oo .+. O@ .@##", +"###O o##. .@#O o##o o##", +"####X .@###@ o####X .@####. @#", +"####@. .@#####O o#####@. .@#####o .#", +"#####+ .@#######. O#######+ .@######@ @", +"######@@########@@#########@@######## O", +"##################################### O", +"##################################### O", +"####################################@ @", +"####################################O o#", +"#################################### @#", +"###################################O +##", +"###################################++###" +}; diff --git a/data/pixmaps/feta/12/scripts-prallmordent.xpm b/data/pixmaps/feta/12/scripts-prallmordent.xpm new file mode 100644 index 0000000..70e6683 --- /dev/null +++ b/data/pixmaps/feta/12/scripts-prallmordent.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"38 17 8 1", +" c #040404", +". c #3f3f3f", +"X c #4c4c4c", +"o c #797979", +"O c #848484", +"+ c #b6b6b6", +"@ c Gray76", +"# c None", +/* pixels */ +"######################################", +"########################++############", +"######################## ############", +"######o+########+o###### #o+#########", +"#####O +####### X##### o +########", +"####+ +#####X X#### +#######", +"####X +###+ X### +####o@", +"###o X## +# X##X O", +"##+ XX o X+ X#", +"##X +X o X +#", +"#O X##X o#+ #X O##", +"#+o####+ X####X ##+ X###", +"########+ +#####X . ###+ +###", +"#########+ O#######X # ####+ O####", +"##########+o#########o@# #####+o#####", +"######################## ############", +"########################++############" +}; diff --git a/data/pixmaps/feta/12/scripts-prallprall.xpm b/data/pixmaps/feta/12/scripts-prallprall.xpm new file mode 100644 index 0000000..bebee8f --- /dev/null +++ b/data/pixmaps/feta/12/scripts-prallprall.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"38 13 7 1", +" c Gray1", +". c #4c4c4c", +"X c #7b7b7b", +"o c Gray52", +"O c #b6b6b6", +"+ c Gray76", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@oO@@@@@@@@Oo@@@@@@@@@oO@@@@@@@@@", +"@@@@@o O@@@@@@@ .@@@@@@@o O@@@@@@@@", +"@@@@O O@@@@@. .@@@@@O O@@@@@@@", +"@@@@. O@@@O .@@@@. O@@@@X+", +"@@@o .@@ O@X .@@. o", +"@@O .. X .O .@", +"@@. O. X .. O@", +"@o .@@. X@O @@. X@@", +"@+X@@@@O .@@@@. O@@@O .@@@", +"@@@@@@@@O O@@@@@. .@@@@@O O@@@", +"@@@@@@@@@O X@@@@@@@. @@@@@@@O X@@@@", +"@@@@@@@@@@Oo@@@@@@@@@oO@@@@@@@@Oo@@@@@" +}; diff --git a/data/pixmaps/feta/12/scripts-prallup.xpm b/data/pixmaps/feta/12/scripts-prallup.xpm new file mode 100644 index 0000000..2440221 --- /dev/null +++ b/data/pixmaps/feta/12/scripts-prallup.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"41 17 8 1", +" c #020202", +". c Gray19", +"X c #555555", +"o c #747474", +"O c #8d8d8d", +"+ c Gray67", +"@ c #d5d5d5", +"# c None", +/* pixels */ +"#########################################", +"####################################++###", +"####################################O +##", +"#####################################. @#", +"#####################################O X#", +"##########@@#########@@########@@####@ @", +"#########@. +#######O .########. +#### O", +"########@. .@#####O O#####@. .@##@ O", +"#@@####@. X####O @###@. o### O", +"#O O##O +#@. .##O O#@ @", +"#@. @O .+. oo .@O o#", +"##+ .. X .O X. @#", +"###o .#@ O#o .@#. O##", +"####. O###O .@###. O###@X+###", +"####+ +#####X .#####+ +##########", +"#####o +######@ .#######o +###########", +"######O+########+O#########o+############" +}; diff --git a/data/pixmaps/feta/12/scripts-rcomma.xpm b/data/pixmaps/feta/12/scripts-rcomma.xpm new file mode 100644 index 0000000..ddf920c --- /dev/null +++ b/data/pixmaps/feta/12/scripts-rcomma.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 16 8 1", +" c Gray1", +". c Gray14", +"X c Gray32", +"o c Gray47", +"O c Gray54", +"+ c #b4b4b4", +"@ c #d3d3d3", +"# c None", +/* pixels */ +"#######", +"###OO##", +"##o o#", +"##O @", +"###. O", +"###o O", +"###@ O", +"#### O", +"#### @", +"#### .#", +"###O O#", +"###X @#", +"##@ o##", +"##X ###", +"#+ +###", +"#+o####" +}; diff --git a/data/pixmaps/feta/12/scripts-reverseturn.xpm b/data/pixmaps/feta/12/scripts-reverseturn.xpm new file mode 100644 index 0000000..2f48439 --- /dev/null +++ b/data/pixmaps/feta/12/scripts-reverseturn.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"27 14 8 1", +" c #040404", +". c Gray24", +"X c #4b4b4b", +"o c #7c7c7c", +"O c #888888", +"+ c #b7b7b7", +"@ c #c1c1c1", +"# c None", +/* pixels */ +"###########################", +"#####OOO##########+OOO#####", +"###+ +######+. o###", +"##+ #####X X##", +"##. ####X o#", +"#@ X#X X###X .@##O #", +"#O ###OoO##+ +#####+ O", +"#O #######+ +####### O", +"#O +#####+ +##OoO### O", +"## o##@. X###X X#X @", +"##o X#### .#", +"###X X##### +#", +"####o .@######+ +##", +"######OOO+##########OOO####" +}; diff --git a/data/pixmaps/feta/12/scripts-segno.xpm b/data/pixmaps/feta/12/scripts-segno.xpm new file mode 100644 index 0000000..705bedf --- /dev/null +++ b/data/pixmaps/feta/12/scripts-segno.xpm @@ -0,0 +1,50 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"25 36 8 1", +" c #040404", +". c #2d2d2d", +"X c Gray29", +"o c #7c7c7c", +"O c Gray52", +"+ c #b6b6b6", +"@ c #c8c8c8", +"# c None", +/* pixels */ +"#########################", +"######OOOO###########@Oo@", +"####o o#########X #", +"###X O##@. X#######O +#", +"##o o##### O###### X##", +"## #####+ #####X +##", +"#+ ##### +###+ o###", +"#O ####O O###X ####", +"#O +###O o##O +####", +"#O X###+ +## X#####", +"#+ +###X X##X +#####", +"## X########+ O######", +"##o X#######X #######", +"### X#####+ +#######", +"###+ +### X########", +"####+ X#O +##+ .###", +"#####+ O###o ###", +"#######X o####OO###", +"########+ +#######", +"####OO####o X######", +"#### o###O +####", +"####. +##+ o#X +###", +"#########X ###+ +##", +"########+ +#####X ##", +"######## X#######X o#", +"#######o +########X #", +"######+ X##X X###+ +", +"######X ##+ +###X O", +"#####+ O##O O###+ O", +"##### X###O O#### O", +"####o +###+ ##### @", +"###+ X##### +##### #", +"###X ######O #####O o#", +"##+ o#######X .@##O X##", +"## X#########O o###", +"#@OO@###########OOOO#####" +}; diff --git a/data/pixmaps/feta/12/scripts-sforzato.xpm b/data/pixmaps/feta/12/scripts-sforzato.xpm new file mode 100644 index 0000000..86331f5 --- /dev/null +++ b/data/pixmaps/feta/12/scripts-sforzato.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"23 13 7 1", +" c Gray2", +". c Gray26", +"X c #717171", +"o c Gray54", +"O c #bbbbbb", +"+ c #c5c5c5", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@@@@@@@@@", +"@+Xo@@@@@@@@@@@@@@@@@@@", +"@o Xo@@@@@@@@@@@@@@@", +"@@@oX Xo@@@@@@@@@@@", +"@@@@@@@oX Xo@@@@@@@", +"@@@@@@@@@@@oo. XXO@@", +"@@@@@@@@@@@@@@@@+oo. o", +"@@@@@@@@@@@@@@@@+oo. O", +"@@@@@@@@@@@oX. XXO@@", +"@@@@@@@oX Xo@@@@@@@", +"@@@oX Xo@@@@@@@@@@@", +"@o Xo@@@@@@@@@@@@@@@", +"@+Xo@@@@@@@@@@@@@@@@@@@" +}; diff --git a/data/pixmaps/feta/12/scripts-staccato.xpm b/data/pixmaps/feta/12/scripts-staccato.xpm new file mode 100644 index 0000000..fe09428 --- /dev/null +++ b/data/pixmaps/feta/12/scripts-staccato.xpm @@ -0,0 +1,14 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"5 5 3 1", +" c Gray0", +". c #8b8b8b", +"X c None", +/* pixels */ +"XXXXX", +"XX..X", +"X. .", +"X. .", +"XX..X" +}; diff --git a/data/pixmaps/feta/12/scripts-stopped.xpm b/data/pixmaps/feta/12/scripts-stopped.xpm new file mode 100644 index 0000000..2028a9d --- /dev/null +++ b/data/pixmaps/feta/12/scripts-stopped.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"15 15 7 1", +" c #070707", +". c #494949", +"X c #7b7b7b", +"o c Gray52", +"O c #bcbcbc", +"+ c #c3c3c3", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@", +"@@@@@@@@o@@@@@@", +"@@@@@@@. o@@@@@", +"@@@@@@@ X@@@@@", +"@@@@@@@ X@@@@@", +"@@@@@@@ X@@@@@", +"@@OXoXX .oXXo@", +"@O o", +"@@. O", +"@@@@@@@ X@@@@@", +"@@@@@@@ X@@@@@", +"@@@@@@@ o@@@@@", +"@@@@@@@ X@@@@@", +"@@@@@@@. o@@@@@", +"@@@@@@@@o@@@@@@" +}; diff --git a/data/pixmaps/feta/12/scripts-tenuto.xpm b/data/pixmaps/feta/12/scripts-tenuto.xpm new file mode 100644 index 0000000..8863285 --- /dev/null +++ b/data/pixmaps/feta/12/scripts-tenuto.xpm @@ -0,0 +1,12 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"16 3 3 1", +" c #515151", +". c Gray69", +"X c None", +/* pixels */ +"XXXXXXXXXXXXXXXX", +"X. .", +"X. ." +}; diff --git a/data/pixmaps/feta/12/scripts-thumb.xpm b/data/pixmaps/feta/12/scripts-thumb.xpm new file mode 100644 index 0000000..28d405f --- /dev/null +++ b/data/pixmaps/feta/12/scripts-thumb.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 17 5 1", +" c #060606", +". c #4b4b4b", +"X c Gray52", +"o c Gray72", +"O c None", +/* pixels */ +"OOOOOOOOOOO", +"OOOOo.XoOOO", +"OOO. .OO", +"OOX .OO. XO", +"OO XOOX O", +"OX XOO. X", +"OX OOOO X", +"OX OOOO X", +"OX XOOX X", +"OO XOO. O", +"OOX .OO. XO", +"OOO. .OO", +"OOOOo oOOO", +"OOOOO OOOO", +"OOOOO OOOO", +"OOOOO OOOO", +"OOOOOooOOOO" +}; diff --git a/data/pixmaps/feta/12/scripts-trilelement.xpm b/data/pixmaps/feta/12/scripts-trilelement.xpm new file mode 100644 index 0000000..b4ebe54 --- /dev/null +++ b/data/pixmaps/feta/12/scripts-trilelement.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"17 13 7 1", +" c #020202", +". c #4c4c4c", +"X c #7c7c7c", +"o c Gray52", +"O c #b7b7b7", +"+ c Gray76", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@@@", +"@@@@@@oO@@@@@@@@@", +"@@@@@X O@@@@@@@@", +"@@@@O O@@@@@@@", +"@@@@. O@@@@X+", +"@@@X .@@. o", +"@@O .O .@", +"@@. O. O@", +"@o .@@. X@@", +"@OX@@@@O .@@@", +"@@@@@@@@O O@@@", +"@@@@@@@@@O X@@@@", +"@@@@@@@@@@Oo@@@@@" +}; diff --git a/data/pixmaps/feta/12/scripts-trill-element.xpm b/data/pixmaps/feta/12/scripts-trill-element.xpm new file mode 100644 index 0000000..2476e7a --- /dev/null +++ b/data/pixmaps/feta/12/scripts-trill-element.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"18 11 8 1", +" c Gray2", +". c Gray20", +"X c Gray34", +"o c Gray46", +"O c #8d8d8d", +"+ c Gray67", +"@ c Gray83", +"# c None", +/* pixels */ +"##################", +"######@o@#########", +"#####@. @########", +"#####X @#####X+", +"####o X####+ @", +"###O .+@X o#", +"##@ X. o##", +"#@ .@##+ o###", +"#o #####@ ####", +"##@######@ .@####", +"##########@o@#####" +}; diff --git a/data/pixmaps/feta/12/scripts-trill.xpm b/data/pixmaps/feta/12/scripts-trill.xpm new file mode 100644 index 0000000..1065dfb --- /dev/null +++ b/data/pixmaps/feta/12/scripts-trill.xpm @@ -0,0 +1,43 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"36 29 8 1", +" c Gray1", +". c Gray19", +"X c Gray33", +"o c Gray43", +"O c #909090", +"+ c #b1b1b1", +"@ c #d2d2d2", +"# c None", +/* pixels */ +"####################################", +"#################+##################", +"##############+X o##################", +"#############X +##################", +"#############. +##################", +"############@ .@##################", +"############@ .###################", +"############X X###################", +"############X +###################", +"############. +###################", +"###########@ @###################", +"###########O .####@@@#######@oo+##", +"###########X .###@OO. o+#@. X#", +"####+OOO@##X +#@OO###o XXoO O", +"##@O+@@@OOO OOO@####+ .@##O O", +"##O#######O +#######+ o###. #", +"#@O#######+ .########. @###. X#", +"#+@#######X .########. @###+oO@#", +"#O@####@OO. OO@######. .#########", +"#++@@+OO@@ +#O@####+ X#########", +"##+OO+@##@ @##O@###+ o#########", +"#########O .###++###o @#########", +"#########X .###++###. @#########", +"#########o .###O@###. .##########", +"#########o @#@X###+ X##########", +"#########O .O +###+ X##########", +"#########@ o####o @##########", +"##########O o#####. @##########", +"###########@OO@#####################" +}; diff --git a/data/pixmaps/feta/12/scripts-turn.xpm b/data/pixmaps/feta/12/scripts-turn.xpm new file mode 100644 index 0000000..ef25205 --- /dev/null +++ b/data/pixmaps/feta/12/scripts-turn.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"27 14 8 1", +" c #040404", +". c Gray24", +"X c #4b4b4b", +"o c #7c7c7c", +"O c #888888", +"+ c #b7b7b7", +"@ c #c1c1c1", +"# c None", +/* pixels */ +"###########################", +"######OOO+##########OOO####", +"####o .+######+ +##", +"###X X##### +#", +"##o X#### X#", +"## o##@. X###X X#X +", +"#O +#####+ +##OoO### O", +"#O #######+ +####### O", +"#O ###OoO##+ +#####+ O", +"#+ X#X X###X .@##O #", +"##X ####X o#", +"##+ #####X X##", +"###+ +######+. o###", +"#####OOO##########+OOO#####" +}; diff --git a/data/pixmaps/feta/12/scripts-ufermata.xpm b/data/pixmaps/feta/12/scripts-ufermata.xpm new file mode 100644 index 0000000..ba2bc32 --- /dev/null +++ b/data/pixmaps/feta/12/scripts-ufermata.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"32 19 8 1", +" c Gray1", +". c Gray19", +"X c #484848", +"o c Gray44", +"O c #8b8b8b", +"+ c #b1b1b1", +"@ c #d2d2d2", +"# c None", +/* pixels */ +"################################", +"#############@OOOoO#############", +"##########@o o@#########", +"#########+ O########", +"########. .#######", +"#######. ... .######", +"######. .o+@###@+o. .#####", +"#####O .+###########+. O####", +"####@ o@#############@o @###", +"####o o#################o o###", +"###@ O###################O @##", +"###o .#####################. o##", +"### @#########+++#########@ ##", +"##O o#########o o#########o O#", +"##X @########O O########@ X#", +"## .#########O O#########. #", +"#@ O#########+ +#########O @", +"#O +##########X X##########+ O", +"#@o############+o+############o@" +}; diff --git a/data/pixmaps/feta/12/scripts-umarcato.xpm b/data/pixmaps/feta/12/scripts-umarcato.xpm new file mode 100644 index 0000000..78fb0a5 --- /dev/null +++ b/data/pixmaps/feta/12/scripts-umarcato.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 14 8 1", +" c Gray2", +". c #323232", +"X c #555555", +"o c #6c6c6c", +"O c #888888", +"+ c Gray69", +"@ c #d3d3d3", +"# c None", +/* pixels */ +"#############", +"######++#####", +"######..#####", +"#####+ +####", +"#####. .####", +"####@ @###", +"####o o###", +"###@ + @##", +"###XX#o X##", +"### @#@ ##", +"##O.###o O#", +"## +###+ .#", +"#o.#####. O", +"#++#####@oOo@" +}; diff --git a/data/pixmaps/feta/12/scripts-upbow.xpm b/data/pixmaps/feta/12/scripts-upbow.xpm new file mode 100644 index 0000000..dccb6a3 --- /dev/null +++ b/data/pixmaps/feta/12/scripts-upbow.xpm @@ -0,0 +1,39 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"17 25 8 1", +" c #040404", +". c #2f2f2f", +"X c #5b5b5b", +"o c #797979", +"O c Gray55", +"+ c #afafaf", +"@ c #d5d5d5", +"# c None", +/* pixels */ +"#################", +"#@o############O@", +"#O +##########+ O", +"#@ o##########o @", +"## ########## #", +"##o @########@ O#", +"##O O########O O#", +"### .########. ##", +"###X @######@ X##", +"###O O######O O##", +"#### .######. ###", +"####X ###### X###", +"####O O####+ O###", +"####@ X####X @###", +"#####. #### .####", +"#####O O##O O####", +"#####@ X##X @####", +"######. ## .#####", +"######O @@ o#####", +"######+ OO +#####", +"####### ######", +"#######o o######", +"#######+ +######", +"######## #######", +"########+O#######" +}; diff --git a/data/pixmaps/feta/12/scripts-upedalheel.xpm b/data/pixmaps/feta/12/scripts-upedalheel.xpm new file mode 100644 index 0000000..c0ff86f --- /dev/null +++ b/data/pixmaps/feta/12/scripts-upedalheel.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 15 5 1", +" c #020202", +". c #888888", +"X c #b4b4b4", +"o c Gray78", +"O c None", +/* pixels */ +"OOOOOOOOOOOOO", +"Oo.OOOOOOOO.o", +"O. OOOOOOOO .", +"O. OOOOOOOO .", +"O. OOOOOOOO .", +"O. OOOOOOOO .", +"O. OOOOOOOO .", +"O. OOOOOOOO .", +"O. OOOOOOOO .", +"O. OOOOOOOO .", +"O. .OOOOOO. .", +"OO XOOOOX O", +"OOX .OO. XO", +"OOOX XOO", +"OOOOO....OOOO" +}; diff --git a/data/pixmaps/feta/12/scripts-upedaltoe.xpm b/data/pixmaps/feta/12/scripts-upedaltoe.xpm new file mode 100644 index 0000000..959bc7d --- /dev/null +++ b/data/pixmaps/feta/12/scripts-upedaltoe.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 19 7 1", +" c #040404", +". c #434343", +"X c #777777", +"o c #888888", +"O c Gray73", +"+ c #c8c8c8", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@", +"@@@@@@Oo@@@@@", +"@@@@@@ @@@@@", +"@@@@@O O@@@@", +"@@@@@X X@@@@", +"@@@@@ @@@@", +"@@@@O oo O@@@", +"@@@@o ++ o@@@", +"@@@@. @@ .@@@", +"@@@@ .@@. @@@", +"@@@o o@@o o@@", +"@@@. @@@@ .@@", +"@@@ .@@@@. @@", +"@@o o@@@@o o@", +"@@X @@@@@@ X@", +"@@ @@@@@@ @", +"@+ X@@@@@@X +", +"@o O@@@@@@O o", +"@+o@@@@@@@@o+" +}; diff --git a/data/pixmaps/feta/12/scripts-upmordent.xpm b/data/pixmaps/feta/12/scripts-upmordent.xpm new file mode 100644 index 0000000..ba3d58f --- /dev/null +++ b/data/pixmaps/feta/12/scripts-upmordent.xpm @@ -0,0 +1,36 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"40 22 8 1", +" c Gray1", +". c #2d2d2d", +"X c #515151", +"o c #6f6f6f", +"O c #8e8e8e", +"+ c #aaaaaa", +"@ c #d3d3d3", +"# c None", +/* pixels */ +"########################################", +"##########################++############", +"########################## ############", +"########o+########+o###### @o+#########", +"#######o +######@ .##### .o +########", +"######+ O#####. .#### O#######", +"######. O###+ .@## O####X+", +"#####o .#@ O# .##. O", +"####+ .. X .O X#", +"###@. @O .+. o .@#", +"###o o##O O#@. #O O##", +"##@ .####@. X####o ##@. X###", +"##. O#####@. .@#####O o ###@. .@###", +"#@ @######@. +#######O .# #####. +####", +"#O #########@#########@## #####@@#####", +"#O ######################..############", +"#O #######################@############", +"#@ @###################################", +"##o o###################################", +"### ###################################", +"###+ O##################################", +"####++##################################" +}; diff --git a/data/pixmaps/feta/12/scripts-upprall.xpm b/data/pixmaps/feta/12/scripts-upprall.xpm new file mode 100644 index 0000000..30dfe68 --- /dev/null +++ b/data/pixmaps/feta/12/scripts-upprall.xpm @@ -0,0 +1,34 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"40 20 8 1", +" c Gray1", +". c Gray18", +"X c #505050", +"o c Gray46", +"O c Gray56", +"+ c #acacac", +"@ c Gray83", +"# c None", +/* pixels */ +"########################################", +"########o+########+o#########o+#########", +"#######o +####### X#######o +########", +"######+ +#####X .#####+ +#######", +"######. O###+ .@###. O####X+", +"#####o .#@ O#o .##X O", +"####+ .. X XO X#", +"####. @o .+ oo @#", +"###o o##o O#@. .##o O##", +"##@ .####@. X####o @###@. X###", +"##. O#####@. .@#####o o#####@. .@###", +"#@ @######@. +#######O .#######@. +####", +"#O ########@@#########@@########@@#####", +"#O ####################################", +"#O ####################################", +"#@ @###################################", +"##o O###################################", +"##@ ###################################", +"###+ O##################################", +"####++##################################" +}; diff --git a/data/pixmaps/feta/12/scripts-ustaccatissimo.xpm b/data/pixmaps/feta/12/scripts-ustaccatissimo.xpm new file mode 100644 index 0000000..25aacf5 --- /dev/null +++ b/data/pixmaps/feta/12/scripts-ustaccatissimo.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 14 7 1", +" c #040404", +". c #393939", +"X c #434343", +"o c Gray49", +"O c Gray53", +"+ c #bcbcbc", +"@ c None", +/* pixels */ +"@@@@@@@", +"@@+OO+@", +"@+ +", +"@O O", +"@O O", +"@@ @", +"@@ @", +"@@X X@", +"@@o o@", +"@@o O@", +"@@@ @@", +"@@@ @@", +"@@@..@@", +"@@@++@@" +}; diff --git a/data/pixmaps/feta/12/unknown.xpm b/data/pixmaps/feta/12/unknown.xpm new file mode 100644 index 0000000..8698b03 --- /dev/null +++ b/data/pixmaps/feta/12/unknown.xpm @@ -0,0 +1,16 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 8 2 1", +"x c Gray0", +" c None", +/* pixels */ +" xxx ", +" x ", +" x ", +" xx ", +" x ", +" ", +" x ", +" " +}; diff --git a/data/pixmaps/feta/4/accidentals-(.xpm b/data/pixmaps/feta/4/accidentals-(.xpm new file mode 100644 index 0000000..1ca2da5 --- /dev/null +++ b/data/pixmaps/feta/4/accidentals-(.xpm @@ -0,0 +1,20 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"4 10 4 1", +" c #515151", +". c Gray45", +"X c #d2d2d2", +"o c None", +/* pixels */ +"oooo", +"oooX", +"oo.X", +"oX o", +"o..o", +"o. o", +"o..o", +"oo o", +"oo.X", +"oooX" +}; diff --git a/data/pixmaps/feta/4/accidentals-).xpm b/data/pixmaps/feta/4/accidentals-).xpm new file mode 100644 index 0000000..ed42cbe --- /dev/null +++ b/data/pixmaps/feta/4/accidentals-).xpm @@ -0,0 +1,20 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"4 10 4 1", +" c #515151", +". c Gray45", +"X c #d2d2d2", +"o c None", +/* pixels */ +"oooo", +"oXoo", +"oX.o", +"oo o", +"oo..", +"oo..", +"oo..", +"oo X", +"oX.o", +"oXoo" +}; diff --git a/data/pixmaps/feta/4/accidentals--1.xpm b/data/pixmaps/feta/4/accidentals--1.xpm new file mode 100644 index 0000000..75cbb6f --- /dev/null +++ b/data/pixmaps/feta/4/accidentals--1.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"5 12 8 1", +" c #0b0b0b", +". c Gray23", +"X c Gray30", +"o c #686868", +"O c #939393", +"+ c #b1b1b1", +"@ c #cbcbcb", +"# c None", +/* pixels */ +"#####", +"#+@##", +"#oO##", +"#oO##", +"#oO##", +"#oO##", +"#ooO#", +"#oX o", +"#O#Oo", +"#@+X#", +"##.@#", +"#@@##" +}; diff --git a/data/pixmaps/feta/4/accidentals--2.xpm b/data/pixmaps/feta/4/accidentals--2.xpm new file mode 100644 index 0000000..244957e --- /dev/null +++ b/data/pixmaps/feta/4/accidentals--2.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 12 7 1", +" c Gray6", +". c Gray31", +"X c #717171", +"o c #8b8b8b", +"O c #b9b9b9", +"+ c Gray81", +"@ c None", +/* pixels */ +"@@@@@@@@", +"@+O@o@@@", +"@XX@ @@@", +"@XX@ @@@", +"@XX@ @@@", +"@XX@ @@@", +"@X.X .X@", +"@o.. X o", +"@o+XX@.X", +"@+O.oO.@", +"@@.+.O@@", +"@@O@O@@@" +}; diff --git a/data/pixmaps/feta/4/accidentals-0.xpm b/data/pixmaps/feta/4/accidentals-0.xpm new file mode 100644 index 0000000..8b2fe67 --- /dev/null +++ b/data/pixmaps/feta/4/accidentals-0.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"4 13 6 1", +" c Gray0", +". c Gray20", +"X c Gray45", +"o c Gray59", +"O c Gray81", +"+ c None", +/* pixels */ +"++++", +"+O++", +"+o++", +"+o++", +"+X X", +"+X.o", +"+o+o", +"+oOo", +"+o.X", +"+X X", +"+++o", +"+++o", +"+++O" +}; diff --git a/data/pixmaps/feta/4/accidentals-1.xpm b/data/pixmaps/feta/4/accidentals-1.xpm new file mode 100644 index 0000000..72fee1e --- /dev/null +++ b/data/pixmaps/feta/4/accidentals-1.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 14 6 1", +" c Gray0", +". c #323232", +"X c Gray57", +"o c #bbbbbb", +"O c #cbcbcb", +"+ c None", +/* pixels */ +"++++++", +"++++O+", +"++XoX+", +"++XoX+", +"++XX X", +"+O. .O", +"+X XX+", +"++XoX+", +"++XX X", +"+O. .O", +"+X XX+", +"++XoX+", +"++XoX+", +"++O+++" +}; diff --git a/data/pixmaps/feta/4/accidentals-2.xpm b/data/pixmaps/feta/4/accidentals-2.xpm new file mode 100644 index 0000000..68bc1c2 --- /dev/null +++ b/data/pixmaps/feta/4/accidentals-2.xpm @@ -0,0 +1,16 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 6 4 1", +" c Gray3", +". c Gray53", +"X c #c5c5c5", +"o c None", +/* pixels */ +"oooooo", +"oX.o.X", +"o. .", +"oo o", +"o. .", +"oX.o.X" +}; diff --git a/data/pixmaps/feta/4/accordion-accBB.xpm b/data/pixmaps/feta/4/accordion-accBB.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/4/accordion-accBayanbase.xpm b/data/pixmaps/feta/4/accordion-accBayanbase.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/4/accordion-accDiscant.xpm b/data/pixmaps/feta/4/accordion-accDiscant.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/4/accordion-accDot.xpm b/data/pixmaps/feta/4/accordion-accDot.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/4/accordion-accFreebase.xpm b/data/pixmaps/feta/4/accordion-accFreebase.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/4/accordion-accOldEE.xpm b/data/pixmaps/feta/4/accordion-accOldEE.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/4/accordion-accOldEES.xpm b/data/pixmaps/feta/4/accordion-accOldEES.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/4/accordion-accSB.xpm b/data/pixmaps/feta/4/accordion-accSB.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/4/accordion-accStdbase.xpm b/data/pixmaps/feta/4/accordion-accStdbase.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/4/clefs-C.xpm b/data/pixmaps/feta/4/clefs-C.xpm new file mode 100644 index 0000000..46c5d20 --- /dev/null +++ b/data/pixmaps/feta/4/clefs-C.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 17 8 1", +" c #040404", +". c #2d2d2d", +"X c #4e4e4e", +"o c #6f6f6f", +"O c Gray53", +"+ c Gray68", +"@ c #d0d0d0", +"# c None", +/* pixels */ +"############", +"#######oo@##", +"#O oX@XOX O#", +"#o oXX ## @", +"#O oXo X#. O", +"#O oX+X##. o", +"#O oX+.##. @", +"#O oX. +O o#", +"#O O Oo.+##", +"#O o @@+###", +"#O o. ....+#", +"#O oXo.##. @", +"#o oX+o##. O", +"#O oX+ O#. O", +"#O oXX O# @", +"#O oXo.+X O#", +"#@o++#+oo@##" +}; diff --git a/data/pixmaps/feta/4/clefs-C_change.xpm b/data/pixmaps/feta/4/clefs-C_change.xpm new file mode 100644 index 0000000..48c05b2 --- /dev/null +++ b/data/pixmaps/feta/4/clefs-C_change.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 14 8 1", +" c #0b0b0b", +". c Gray16", +"X c Gray33", +"o c #727272", +"O c Gray58", +"+ c #aeaeae", +"@ c #cdcdcd", +"# c None", +/* pixels */ +"##########", +"#####@XO##", +"#o O@.o. #", +"#o +X #+ O", +"#o O@+#+ o", +"#o O+o#+ O", +"#o +X.@oX#", +"#o o O+@##", +"#o O.X+O@#", +"#o +O.#O @", +"#o O@+#+ o", +"#o +O.#+ O", +"#o Oo o .#", +"#+O@#+oO##" +}; diff --git a/data/pixmaps/feta/4/clefs-F.xpm b/data/pixmaps/feta/4/clefs-F.xpm new file mode 100644 index 0000000..72ce308 --- /dev/null +++ b/data/pixmaps/feta/4/clefs-F.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 14 8 1", +" c Gray1", +". c #323232", +"X c #4e4e4e", +"o c #717171", +"O c Gray57", +"+ c Gray71", +"@ c #cdcdcd", +"# c None", +/* pixels */ +"############", +"####+Oo@####", +"##@X@#o O#@#", +"##Xo###X @ o", +"#@ X##+ o+@", +"## .##+ o##", +"##o.O##+ oXO", +"#######X +XO", +"######@ X###", +"######. @###", +"#####. @####", +"###@.X######", +"##oX+#######", +"#+O#########" +}; diff --git a/data/pixmaps/feta/4/clefs-F_change.xpm b/data/pixmaps/feta/4/clefs-F_change.xpm new file mode 100644 index 0000000..122d93b --- /dev/null +++ b/data/pixmaps/feta/4/clefs-F_change.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 12 8 1", +" c Gray2", +". c #282828", +"X c Gray28", +"o c #6f6f6f", +"O c Gray54", +"+ c #b1b1b1", +"@ c Gray82", +"# c None", +/* pixels */ +"##########", +"###@OO@###", +"##OO#@ O#@", +"##.o##o.OO", +"#@ +#+ @#", +"## @#+ +@", +"##@@##XX+O", +"#####@ +##", +"#####.o###", +"####Xo####", +"##+X+#####", +"#@@#######" +}; diff --git a/data/pixmaps/feta/4/clefs-G.xpm b/data/pixmaps/feta/4/clefs-G.xpm new file mode 100644 index 0000000..b3e80b9 --- /dev/null +++ b/data/pixmaps/feta/4/clefs-G.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 31 8 1", +" c Gray3", +". c Gray17", +"X c #4e4e4e", +"o c #727272", +"O c Gray55", +"+ c Gray69", +"@ c #d5d5d5", +"# c None", +/* pixels */ +"############", +"#######O####", +"######. +###", +"#####o @##", +"##### @Xo##", +"####O X#o.##", +"####o @#o ##", +"####o @#o ##", +"####O #@ ##", +"#####.#o O##", +"####@ X .###", +"#####o @###", +"####@. @####", +"###@. #####", +"###. o.@####", +"##+ o# #####", +"##. @+ .X+##", +"#+ o+ o#", +"#O @..XX@X @", +"#O @ O#.##XO", +"#@ @.X# @#oo", +"##.X#.XX@#oO", +"###.X+@oO+X#", +"####O.. X@#", +"######@O.###", +"######## ###", +"###o X##X###", +"### ##O@##", +"### .##O###", +"###+ .+++###", +"####@Oo+####" +}; diff --git a/data/pixmaps/feta/4/clefs-G_change.xpm b/data/pixmaps/feta/4/clefs-G_change.xpm new file mode 100644 index 0000000..64b5bca --- /dev/null +++ b/data/pixmaps/feta/4/clefs-G_change.xpm @@ -0,0 +1,39 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 25 8 1", +" c #0b0b0b", +". c #2f2f2f", +"X c #505050", +"o c Gray46", +"O c #8d8d8d", +"+ c Gray69", +"@ c #d3d3d3", +"# c None", +/* pixels */ +"##########", +"######O###", +"#####. o##", +"####o O ##", +"#### X# +#", +"#### +# o#", +"####.#+ o#", +"####O@. @#", +"####O. o##", +"####o X###", +"###O @###", +"##@ .####", +"##. #O+###", +"#+ O#X X@#", +"#O #o ...#", +"#oo# @X@ O", +"#@o#.+.#oo", +"##O@#oXoXO", +"###+O+X.+#", +"####@@XX##", +"######@.##", +"##@ X#@O##", +"##O #@O##", +"##+ .+++##", +"###+oo+###" +}; diff --git a/data/pixmaps/feta/4/clefs-hufnagel_do.xpm b/data/pixmaps/feta/4/clefs-hufnagel_do.xpm new file mode 100644 index 0000000..5e06827 --- /dev/null +++ b/data/pixmaps/feta/4/clefs-hufnagel_do.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 8 7 1", +" c Gray0", +". c Gray33", +"X c Gray48", +"o c #8d8d8d", +"O c #aeaeae", +"+ c #cacaca", +"@ c None", +/* pixels */ +"@@@@@@", +"@@@+O@", +"@@o O", +"@O .O@", +"@X +@@", +"@X X@@", +"@X X@@", +"@@+@@@" +}; diff --git a/data/pixmaps/feta/4/clefs-hufnagel_do_change.xpm b/data/pixmaps/feta/4/clefs-hufnagel_do_change.xpm new file mode 100644 index 0000000..8e93a84 --- /dev/null +++ b/data/pixmaps/feta/4/clefs-hufnagel_do_change.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"5 6 7 1", +" c Gray8", +". c #252525", +"X c #6f6f6f", +"o c Gray61", +"O c #b7b7b7", +"+ c #d5d5d5", +"@ c None", +/* pixels */ +"@@@@@", +"@@+o+", +"@+. O", +"@X.@@", +"@X @@", +"@OX@@" +}; diff --git a/data/pixmaps/feta/4/clefs-hufnagel_do_fa.xpm b/data/pixmaps/feta/4/clefs-hufnagel_do_fa.xpm new file mode 100644 index 0000000..894ab20 --- /dev/null +++ b/data/pixmaps/feta/4/clefs-hufnagel_do_fa.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 17 7 1", +" c Gray1", +". c #313131", +"X c #767676", +"o c #939393", +"O c Gray70", +"+ c #c8c8c8", +"@ c None", +/* pixels */ +"@@@@@@", +"@@@+o@", +"@@o O", +"@o X+@", +"@X O@@", +"@X X@@", +"@o o@@", +"@@@@+@", +"@@+ O", +"@+ .X@", +"@X O@@", +"@X O", +"@X .o@", +"@X +@@", +"@X O@@", +"@X @@@", +"@+@@@@" +}; diff --git a/data/pixmaps/feta/4/clefs-hufnagel_do_fa_change.xpm b/data/pixmaps/feta/4/clefs-hufnagel_do_fa_change.xpm new file mode 100644 index 0000000..af2e19e --- /dev/null +++ b/data/pixmaps/feta/4/clefs-hufnagel_do_fa_change.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"5 16 7 1", +" c Gray4", +". c #252525", +"X c Gray42", +"o c #959595", +"O c Gray70", +"+ c #cbcbcb", +"@ c None", +/* pixels */ +"@@@@@", +"@@@O@", +"@@. O", +"@X.@@", +"@X.@@", +"@X @@", +"@@@@@", +"@@@@@", +"@@+o@", +"@o O", +"@X @@", +"@X O", +"@X.+@", +"@X.@@", +"@XX@@", +"@+@@@" +}; diff --git a/data/pixmaps/feta/4/clefs-hufnagel_fa.xpm b/data/pixmaps/feta/4/clefs-hufnagel_fa.xpm new file mode 100644 index 0000000..ed9ba48 --- /dev/null +++ b/data/pixmaps/feta/4/clefs-hufnagel_fa.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 11 7 1", +" c Gray0", +". c #555555", +"X c #727272", +"o c Gray55", +"O c Gray71", +"+ c #cacaca", +"@ c None", +/* pixels */ +"@@@@@@", +"@@@+O@", +"@@o O", +"@O XO@", +"@X XO@", +"@X O", +"@X .+@", +"@X +@@", +"@X +@@", +"@X.@@@", +"@+@@@@" +}; diff --git a/data/pixmaps/feta/4/clefs-hufnagel_fa_change.xpm b/data/pixmaps/feta/4/clefs-hufnagel_fa_change.xpm new file mode 100644 index 0000000..0567326 --- /dev/null +++ b/data/pixmaps/feta/4/clefs-hufnagel_fa_change.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"5 9 6 1", +" c #0c0c0c", +". c #232323", +"X c #6a6a6a", +"o c #acacac", +"O c #d0d0d0", +"+ c None", +/* pixels */ +"+++++", +"++OXO", +"+o .O", +"+X O+", +"+X o", +"+X.++", +"+X.++", +"+XX++", +"+O+++" +}; diff --git a/data/pixmaps/feta/4/clefs-medicaea_do.xpm b/data/pixmaps/feta/4/clefs-medicaea_do.xpm new file mode 100644 index 0000000..ed883f8 --- /dev/null +++ b/data/pixmaps/feta/4/clefs-medicaea_do.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 14 5 1", +" c #010101", +". c Gray56", +"X c #bebebe", +"o c #d0d0d0", +"O c None", +/* pixels */ +"OOOOOO", +"OoOOOO", +"O.oOOO", +"O.oOOO", +"O. .OO", +"O. X", +"O.o. .", +"O.oOoo", +"O. .OO", +"O. o", +"O.o. .", +"O.oOoo", +"O.oOOO", +"OoOOOO" +}; diff --git a/data/pixmaps/feta/4/clefs-medicaea_do_change.xpm b/data/pixmaps/feta/4/clefs-medicaea_do_change.xpm new file mode 100644 index 0000000..361a614 --- /dev/null +++ b/data/pixmaps/feta/4/clefs-medicaea_do_change.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 12 6 1", +" c #0e0e0e", +". c #2f2f2f", +"X c #929292", +"o c #bcbcbc", +"O c #d0d0d0", +"+ c None", +/* pixels */ +"++++++", +"+O++++", +"+XO+++", +"+X O++", +"+X .+", +"+XOO.O", +"+XO+++", +"+X O++", +"+X. .+", +"+XOO.o", +"+XO+++", +"+O++++" +}; diff --git a/data/pixmaps/feta/4/clefs-medicaea_fa.xpm b/data/pixmaps/feta/4/clefs-medicaea_fa.xpm new file mode 100644 index 0000000..32d5472 --- /dev/null +++ b/data/pixmaps/feta/4/clefs-medicaea_fa.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 14 8 1", +" c Gray2", +". c #323232", +"X c #565656", +"o c Gray44", +"O c Gray57", +"+ c Gray68", +"@ c #cecece", +"# c None", +/* pixels */ +"#########", +"####@####", +"###@O####", +"###@O####", +"#### .@##", +"#+o# X#", +"#O OO@. O", +"#O oo##@@", +"#O o. O##", +"#@Xoo #", +"###oO#O O", +"##@oO####", +"###oO####", +"###+@####" +}; diff --git a/data/pixmaps/feta/4/clefs-medicaea_fa_change.xpm b/data/pixmaps/feta/4/clefs-medicaea_fa_change.xpm new file mode 100644 index 0000000..d74e951 --- /dev/null +++ b/data/pixmaps/feta/4/clefs-medicaea_fa_change.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 12 8 1", +" c #0c0c0c", +". c Gray16", +"X c Gray30", +"o c Gray45", +"O c #8e8e8e", +"+ c Gray68", +"@ c Gray79", +"# c None", +/* pixels */ +"#######", +"###@###", +"###O###", +"###oO##", +"###X .@", +"#o.O@.o", +"#o O###", +"#o.XX##", +"##Oo +", +"##Oo#oO", +"##Oo###", +"##@@###" +}; diff --git a/data/pixmaps/feta/4/clefs-mensural1_c.xpm b/data/pixmaps/feta/4/clefs-mensural1_c.xpm new file mode 100644 index 0000000..0114ae9 --- /dev/null +++ b/data/pixmaps/feta/4/clefs-mensural1_c.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 17 7 1", +" c #010101", +". c #4c4c4c", +"X c #6c6c6c", +"o c #8e8e8e", +"O c Gray65", +"+ c #d3d3d3", +"@ c None", +/* pixels */ +"@@@@@@@@@@@", +"@+O@@@@@@O+", +"@OX@@@@@@XO", +"@OX@@@@@@XO", +"@OX@@@@@@XO", +"@OX@@@@@@XO", +"@OX@@@@@+XO", +"@O. .O", +"@O.oOooooXO", +"@OXoooooo.O", +"@O. .O", +"@OX@@@@@@XO", +"@OX@@@@@@XO", +"@OX@@@@@@XO", +"@OX@@@@@@XO", +"@oX@@@@@@Xo", +"@+O@@@@@@O+" +}; diff --git a/data/pixmaps/feta/4/clefs-mensural1_c_change.xpm b/data/pixmaps/feta/4/clefs-mensural1_c_change.xpm new file mode 100644 index 0000000..aaa19bf --- /dev/null +++ b/data/pixmaps/feta/4/clefs-mensural1_c_change.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 14 7 1", +" c #020202", +". c #505050", +"X c #6f6f6f", +"o c #979797", +"O c Gray65", +"+ c #d2d2d2", +"@ c None", +/* pixels */ +"@@@@@@@@@", +"@+@@@@@@+", +"@o@@@@@@o", +"@o@@@@@@o", +"@o+@@@@@o", +"@OXXoXX.O", +"@O. .O", +"@o+@@@@+o", +"@O. .O", +"@OXXXoXXO", +"@o+@@@@+o", +"@o@@@@@@o", +"@o@@@@@@o", +"@+@@@@@@+" +}; diff --git a/data/pixmaps/feta/4/clefs-mensural1_f.xpm b/data/pixmaps/feta/4/clefs-mensural1_f.xpm new file mode 100644 index 0000000..81bb270 --- /dev/null +++ b/data/pixmaps/feta/4/clefs-mensural1_f.xpm @@ -0,0 +1,37 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 23 8 1", +" c Gray2", +". c Gray20", +"X c #4c4c4c", +"o c Gray44", +"O c #909090", +"+ c #b1b1b1", +"@ c #d7d7d7", +"# c None", +/* pixels */ +"##########", +"#######O##", +"######+ .#", +"#O@#@OX+.O", +"#O o.OX+", +"#OO@OOO O#", +"#OXoXOO .#", +"#O o.@ +", +"#+@#@O.oX#", +"####@OO O#", +"####@O#o##", +"####@O#O##", +"####@O#O##", +"####@O#O##", +"####@O#O##", +"####@O@O##", +"####@O#O##", +"####@O#O##", +"####@O#O##", +"####@O#o##", +"#####@@O##", +"######@O##", +"#######@##" +}; diff --git a/data/pixmaps/feta/4/clefs-mensural1_f_change.xpm b/data/pixmaps/feta/4/clefs-mensural1_f_change.xpm new file mode 100644 index 0000000..3295fe6 --- /dev/null +++ b/data/pixmaps/feta/4/clefs-mensural1_f_change.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 19 8 1", +" c #070707", +". c #2d2d2d", +"X c #505050", +"o c Gray45", +"O c Gray56", +"+ c #b4b4b4", +"@ c #c5c5c5", +"# c None", +/* pixels */ +"########", +"#####@O#", +"#####o @", +"#OXXOoX+", +"#o o o#", +"#O@+@o #", +"#o +o O", +"#O+Oo.X+", +"###++.o#", +"###++O@#", +"###+@++#", +"###+@+@#", +"###+@+@#", +"###+@+@#", +"###+@+@#", +"###+@++#", +"###+@+@#", +"#####+@#", +"#####@@#" +}; diff --git a/data/pixmaps/feta/4/clefs-mensural2_c.xpm b/data/pixmaps/feta/4/clefs-mensural2_c.xpm new file mode 100644 index 0000000..53cd0e5 --- /dev/null +++ b/data/pixmaps/feta/4/clefs-mensural2_c.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 17 5 1", +" c #484848", +". c #646464", +"X c #929292", +"o c #d7d7d7", +"O c None", +/* pixels */ +"OOOOOO", +"OoOOOo", +"OXoOoX", +"OXoOoX", +"OXoOoX", +"OX . X", +"OX.X.X", +"OX.X.X", +"OX.X.X", +"OX.X.X", +"OX.X.X", +"OX.X.X", +"OX . X", +"OXoOoX", +"OXoOoX", +"OXoOoX", +"OoOOOo" +}; diff --git a/data/pixmaps/feta/4/clefs-mensural2_c_change.xpm b/data/pixmaps/feta/4/clefs-mensural2_c_change.xpm new file mode 100644 index 0000000..487ef17 --- /dev/null +++ b/data/pixmaps/feta/4/clefs-mensural2_c_change.xpm @@ -0,0 +1,20 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"4 9 5 1", +" c Gray49", +". c Gray53", +"X c Gray73", +"o c #cdcdcd", +"O c None", +/* pixels */ +"OOOO", +"OX X", +"Oooo", +"Oooo", +"OX.X", +"OX.X", +"Oooo", +"Oooo", +"OX X" +}; diff --git a/data/pixmaps/feta/4/clefs-mensural2_f.xpm b/data/pixmaps/feta/4/clefs-mensural2_f.xpm new file mode 100644 index 0000000..e6bad78 --- /dev/null +++ b/data/pixmaps/feta/4/clefs-mensural2_f.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 8 7 1", +" c #0b0b0b", +". c #4b4b4b", +"X c Gray49", +"o c #898989", +"O c Gray70", +"+ c Gray82", +"@ c None", +/* pixels */ +"@@@@@@@", +"@+o@@@@", +"@+ X+ +", +"@@@ Oo+", +"@@@.O@@", +"@@@.oO@", +"@+.o+ O", +"@+O@@@@" +}; diff --git a/data/pixmaps/feta/4/clefs-mensural2_f_change.xpm b/data/pixmaps/feta/4/clefs-mensural2_f_change.xpm new file mode 100644 index 0000000..f07ea1a --- /dev/null +++ b/data/pixmaps/feta/4/clefs-mensural2_f_change.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 8 7 1", +" c Gray2", +". c #2c2c2c", +"X c Gray46", +"o c #8d8d8d", +"O c #b2b2b2", +"+ c Gray78", +"@ c None", +/* pixels */ +"@@@@@@@", +"@@X+@+@", +"@+. O o", +"@@@.X+@", +"@@@XX@@", +"@@@X@O@", +"@@X+@ o", +"@+O@@O@" +}; diff --git a/data/pixmaps/feta/4/clefs-mensural3_c.xpm b/data/pixmaps/feta/4/clefs-mensural3_c.xpm new file mode 100644 index 0000000..1478946 --- /dev/null +++ b/data/pixmaps/feta/4/clefs-mensural3_c.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 21 5 1", +" c #484848", +". c Gray39", +"X c Gray57", +"o c #d7d7d7", +"O c None", +/* pixels */ +"OOOOOO", +"OoOOOo", +"OXoOoX", +"OXoOoX", +"OXoOoX", +"OX . X", +"OX.X.X", +"OX.X.X", +"OX...X", +"OX.X.X", +"OX.X.X", +"OX.X.X", +"OX.X.X", +"OX.X.X", +"OX.X.X", +"OX.X.X", +"OX . X", +"OXoOoX", +"OXoOoX", +"OXoOoX", +"OoOOOo" +}; diff --git a/data/pixmaps/feta/4/clefs-mensural3_c_change.xpm b/data/pixmaps/feta/4/clefs-mensural3_c_change.xpm new file mode 100644 index 0000000..558ce4d --- /dev/null +++ b/data/pixmaps/feta/4/clefs-mensural3_c_change.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"5 19 4 1", +" c #747474", +". c #909090", +"X c #cacaca", +"o c None", +/* pixels */ +"ooooo", +"oXooX", +"o.oX.", +"o.oo.", +"o. .", +"o.XX.", +"o.XX.", +"o....", +"o....", +"o.XX.", +"o.XX.", +"o....", +"o....", +"o.XX.", +"o.XX.", +"o. .", +"o.Xo.", +"o.oo.", +"oXooX" +}; diff --git a/data/pixmaps/feta/4/clefs-mensural_g.xpm b/data/pixmaps/feta/4/clefs-mensural_g.xpm new file mode 100644 index 0000000..40133b4 --- /dev/null +++ b/data/pixmaps/feta/4/clefs-mensural_g.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 10 8 1", +" c Gray10", +". c #353535", +"X c #4e4e4e", +"o c Gray43", +"O c Gray55", +"+ c Gray68", +"@ c Gray79", +"# c None", +/* pixels */ +"######", +"###@O#", +"###..#", +"###O O", +"##X .o", +"#@OX.#", +"#O#o O", +"#O++Oo", +"#@XXX@", +"###OO#" +}; diff --git a/data/pixmaps/feta/4/clefs-mensural_g_change.xpm b/data/pixmaps/feta/4/clefs-mensural_g_change.xpm new file mode 100644 index 0000000..8474642 --- /dev/null +++ b/data/pixmaps/feta/4/clefs-mensural_g_change.xpm @@ -0,0 +1,23 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"5 9 8 1", +" c Gray0", +". c Gray20", +"X c #434343", +"o c #6f6f6f", +"O c Gray54", +"+ c Gray66", +"@ c #cdcdcd", +"# c None", +/* pixels */ +"#####", +"###@#", +"###.@", +"##+OO", +"#@ O", +"#OO +", +"#++++", +"#+..O", +"##@o#" +}; diff --git a/data/pixmaps/feta/4/clefs-percussion.xpm b/data/pixmaps/feta/4/clefs-percussion.xpm new file mode 100644 index 0000000..312684d --- /dev/null +++ b/data/pixmaps/feta/4/clefs-percussion.xpm @@ -0,0 +1,20 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 10 4 1", +" c Gray0", +". c #868686", +"X c Gray78", +"o c None", +/* pixels */ +"ooooooo", +"oX.oo.X", +"o. oo .", +"o. oo .", +"o. oo .", +"o. oo .", +"o. oo .", +"o. oo .", +"o. oo .", +"oX.oo.X" +}; diff --git a/data/pixmaps/feta/4/clefs-percussion_change.xpm b/data/pixmaps/feta/4/clefs-percussion_change.xpm new file mode 100644 index 0000000..7489678 --- /dev/null +++ b/data/pixmaps/feta/4/clefs-percussion_change.xpm @@ -0,0 +1,18 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 8 4 1", +" c Gray0", +". c #868686", +"X c #c6c6c6", +"o c None", +/* pixels */ +"oooooo", +"oX.o.X", +"o. o .", +"o. o .", +"o. o .", +"o. o .", +"o. o .", +"oX.o.X" +}; diff --git a/data/pixmaps/feta/4/clefs-tab.xpm b/data/pixmaps/feta/4/clefs-tab.xpm new file mode 100644 index 0000000..cd5e053 --- /dev/null +++ b/data/pixmaps/feta/4/clefs-tab.xpm @@ -0,0 +1,34 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 20 8 1", +" c #111111", +". c Gray17", +"X c Gray31", +"o c #717171", +"O c Gray54", +"+ c Gray70", +"@ c #c3c3c3", +"# c None", +/* pixels */ +"########", +"#@ooOoo@", +"#+Xo XX+", +"####.###", +"#### ###", +"#### ###", +"####.###", +"####o###", +"###O O##", +"### o ##", +"##+.#.+#", +"##X . .#", +"#+ ### +", +"#+O###++", +"#O .. +#", +"#oX##Xo#", +"#O . .#", +"#oo###.O", +"#O.ooo +", +"#@oooo+#" +}; diff --git a/data/pixmaps/feta/4/clefs-tab_change.xpm b/data/pixmaps/feta/4/clefs-tab_change.xpm new file mode 100644 index 0000000..4e92e50 --- /dev/null +++ b/data/pixmaps/feta/4/clefs-tab_change.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 17 8 1", +" c Gray5", +". c Gray20", +"X c #494949", +"o c Gray43", +"O c #8b8b8b", +"+ c #b1b1b1", +"@ c #c3c3c3", +"# c None", +/* pixels */ +"#######", +"#@oOoo@", +"#+o..o+", +"###oo##", +"###oo##", +"###oo##", +"#######", +"###..##", +"##+XX+#", +"##.XX.#", +"#+.ooX+", +"#######", +"#O ..+#", +"#O oXX#", +"#O.OOX+", +"#o.OO.+", +"#@ooo+#" +}; diff --git a/data/pixmaps/feta/4/clefs-vaticana_do.xpm b/data/pixmaps/feta/4/clefs-vaticana_do.xpm new file mode 100644 index 0000000..b91a02d --- /dev/null +++ b/data/pixmaps/feta/4/clefs-vaticana_do.xpm @@ -0,0 +1,20 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"4 8 6 1", +" c Gray0", +". c #777777", +"X c #959595", +"o c #aaaaaa", +"O c #d0d0d0", +"+ c None", +/* pixels */ +"++++", +"++.+", +"+. o", +"+. O", +"+XO+", +"+. O", +"+. o", +"++.+" +}; diff --git a/data/pixmaps/feta/4/clefs-vaticana_do_change.xpm b/data/pixmaps/feta/4/clefs-vaticana_do_change.xpm new file mode 100644 index 0000000..b91a02d --- /dev/null +++ b/data/pixmaps/feta/4/clefs-vaticana_do_change.xpm @@ -0,0 +1,20 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"4 8 6 1", +" c Gray0", +". c #777777", +"X c #959595", +"o c #aaaaaa", +"O c #d0d0d0", +"+ c None", +/* pixels */ +"++++", +"++.+", +"+. o", +"+. O", +"+XO+", +"+. O", +"+. o", +"++.+" +}; diff --git a/data/pixmaps/feta/4/clefs-vaticana_fa.xpm b/data/pixmaps/feta/4/clefs-vaticana_fa.xpm new file mode 100644 index 0000000..98d38a7 --- /dev/null +++ b/data/pixmaps/feta/4/clefs-vaticana_fa.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 11 7 1", +" c Gray5", +". c #4c4c4c", +"X c #727272", +"o c #8b8b8b", +"O c Gray74", +"+ c #cdcdcd", +"@ c None", +/* pixels */ +"@@@@@@", +"@@@Oo@", +"@@@ O", +"@+X @", +"@o X@@", +"@+X @", +"@@@ O", +"@@+.o@", +"@@+o@@", +"@@@o@@", +"@@@+@@" +}; diff --git a/data/pixmaps/feta/4/clefs-vaticana_fa_change.xpm b/data/pixmaps/feta/4/clefs-vaticana_fa_change.xpm new file mode 100644 index 0000000..98d38a7 --- /dev/null +++ b/data/pixmaps/feta/4/clefs-vaticana_fa_change.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 11 7 1", +" c Gray5", +". c #4c4c4c", +"X c #727272", +"o c #8b8b8b", +"O c Gray74", +"+ c #cdcdcd", +"@ c None", +/* pixels */ +"@@@@@@", +"@@@Oo@", +"@@@ O", +"@+X @", +"@o X@@", +"@+X @", +"@@@ O", +"@@+.o@", +"@@+o@@", +"@@@o@@", +"@@@+@@" +}; diff --git a/data/pixmaps/feta/4/custodes-hufnagel.xpm b/data/pixmaps/feta/4/custodes-hufnagel.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/4/custodes-medicaea.xpm b/data/pixmaps/feta/4/custodes-medicaea.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/4/custodes-mensural.xpm b/data/pixmaps/feta/4/custodes-mensural.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/4/custodes-rhufnagel.xpm b/data/pixmaps/feta/4/custodes-rhufnagel.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/4/custodes-rmedicaea.xpm b/data/pixmaps/feta/4/custodes-rmedicaea.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/4/custodes-rmensural.xpm b/data/pixmaps/feta/4/custodes-rmensural.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/4/custodes-rvaticana.xpm b/data/pixmaps/feta/4/custodes-rvaticana.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/4/custodes-vaticana.xpm b/data/pixmaps/feta/4/custodes-vaticana.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/4/dots-dot.xpm b/data/pixmaps/feta/4/dots-dot.xpm new file mode 100644 index 0000000..f2e038d --- /dev/null +++ b/data/pixmaps/feta/4/dots-dot.xpm @@ -0,0 +1,12 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"3 3 3 1", +" c #8d8d8d", +". c #b4b4b4", +"X c None", +/* pixels */ +"XXX", +"X. ", +"X " +}; diff --git a/data/pixmaps/feta/4/dots-evenrepeatcolon.xpm b/data/pixmaps/feta/4/dots-evenrepeatcolon.xpm new file mode 100644 index 0000000..017db61 --- /dev/null +++ b/data/pixmaps/feta/4/dots-evenrepeatcolon.xpm @@ -0,0 +1,20 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"3 11 3 1", +" c #535353", +". c Gray68", +"X c None", +/* pixels */ +"XXX", +"X..", +"X ", +"XXX", +"XXX", +"XXX", +"XXX", +"XXX", +"XXX", +"X ", +"X.." +}; diff --git a/data/pixmaps/feta/4/dots-repeatcolon.xpm b/data/pixmaps/feta/4/dots-repeatcolon.xpm new file mode 100644 index 0000000..9f6d897 --- /dev/null +++ b/data/pixmaps/feta/4/dots-repeatcolon.xpm @@ -0,0 +1,17 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"3 7 4 1", +" c #565656", +". c Gray49", +"X c #aaaaaa", +"o c None", +/* pixels */ +"ooo", +"oXX", +"o. ", +"ooo", +"ooo", +"o. ", +"oXX" +}; diff --git a/data/pixmaps/feta/4/flags-d3.xpm b/data/pixmaps/feta/4/flags-d3.xpm new file mode 100644 index 0000000..40d9f94 --- /dev/null +++ b/data/pixmaps/feta/4/flags-d3.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 13 7 1", +" c Gray3", +". c #535353", +"X c Gray42", +"o c Gray57", +"O c Gray72", +"+ c Gray80", +"@ c None", +/* pixels */ +"@@@@@@", +"@@@@+@", +"@@@@o+", +"@@@@+O", +"@+@@@o", +"@o@@OX", +"@o@@.+", +"@o+.o@", +"@o X@@", +"@X.@@@", +"@X+@@@", +"@o@@@@", +"@+@@@@" +}; diff --git a/data/pixmaps/feta/4/flags-d4.xpm b/data/pixmaps/feta/4/flags-d4.xpm new file mode 100644 index 0000000..b86d5af --- /dev/null +++ b/data/pixmaps/feta/4/flags-d4.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 13 7 1", +" c Gray7", +". c Gray36", +"X c Gray44", +"o c #939393", +"O c #acacac", +"+ c #d5d5d5", +"@ c None", +/* pixels */ +"@@@@@@", +"@@@@+O", +"@@@@+o", +"@@@@+O", +"@@@@ +", +"@oo..+", +"@X @O+", +"@o+@o@", +"@OOX@@", +"@X O@@", +"@XO@@@", +"@o@@@@", +"@+@@@@" +}; diff --git a/data/pixmaps/feta/4/flags-d5.xpm b/data/pixmaps/feta/4/flags-d5.xpm new file mode 100644 index 0000000..8130407 --- /dev/null +++ b/data/pixmaps/feta/4/flags-d5.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 17 8 1", +" c Gray2", +". c Gray20", +"X c #555555", +"o c Gray46", +"O c Gray58", +"+ c Gray69", +"@ c #d3d3d3", +"# c None", +/* pixels */ +"######", +"####@+", +"####@O", +"####@O", +"####X@", +"##@X.@", +"#+ ++@", +"#o+#O#", +"#O#oX#", +"#O O+@", +"#XX#O@", +"#O#@O#", +"#OO.@#", +"#o @##", +"#o+###", +"#O####", +"#@####" +}; diff --git a/data/pixmaps/feta/4/flags-d6.xpm b/data/pixmaps/feta/4/flags-d6.xpm new file mode 100644 index 0000000..391a598 --- /dev/null +++ b/data/pixmaps/feta/4/flags-d6.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 19 8 1", +" c Gray1", +". c Gray19", +"X c Gray32", +"o c #727272", +"O c Gray56", +"+ c #b2b2b2", +"@ c Gray83", +"# c None", +/* pixels */ +"######", +"####@+", +"####@O", +"####Oo", +"##@o.@", +"#o O+@", +"#O+#X@", +"##@OO@", +"#+ @+@", +"#o+#o#", +"#O#Oo#", +"#OX+O#", +"#oX@@#", +"#O#O##", +"#OX@##", +"#oX###", +"#O@###", +"#O####", +"#@####" +}; diff --git a/data/pixmaps/feta/4/flags-dgrace.xpm b/data/pixmaps/feta/4/flags-dgrace.xpm new file mode 100644 index 0000000..7761b3d --- /dev/null +++ b/data/pixmaps/feta/4/flags-dgrace.xpm @@ -0,0 +1,18 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 6 6 1", +" c Gray37", +". c #686868", +"X c Gray54", +"o c #aeaeae", +"O c #cacaca", +"+ c None", +/* pixels */ +"++++++++++", +"+Oo+++++++", +"++OXoO++++", +"++++O .O++", +"++++++O. O", +"++++++++Oo" +}; diff --git a/data/pixmaps/feta/4/flags-dstem.xpm b/data/pixmaps/feta/4/flags-dstem.xpm new file mode 100644 index 0000000..17fd0cc --- /dev/null +++ b/data/pixmaps/feta/4/flags-dstem.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"2 15 3 1", +" c #a7a7a7", +". c Gray84", +"X c None", +/* pixels */ +"XX", +"X.", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X." +}; diff --git a/data/pixmaps/feta/4/flags-stem.xpm b/data/pixmaps/feta/4/flags-stem.xpm new file mode 100644 index 0000000..17fd0cc --- /dev/null +++ b/data/pixmaps/feta/4/flags-stem.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"2 15 3 1", +" c #a7a7a7", +". c Gray84", +"X c None", +/* pixels */ +"XX", +"X.", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X." +}; diff --git a/data/pixmaps/feta/4/flags-u3.xpm b/data/pixmaps/feta/4/flags-u3.xpm new file mode 100644 index 0000000..50a2771 --- /dev/null +++ b/data/pixmaps/feta/4/flags-u3.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 13 6 1", +" c #0e0e0e", +". c Gray47", +"X c #909090", +"o c #b1b1b1", +"O c Gray82", +"+ c None", +/* pixels */ +"++++++", +"+O++++", +"+XO+++", +"+XO+++", +"+. +++", +"+X .++", +"+X+.X+", +"+XO+.+", +"+XO+Oo", +"++++OX", +"++++oo", +"++++XO", +"++++O+" +}; diff --git a/data/pixmaps/feta/4/flags-u4.xpm b/data/pixmaps/feta/4/flags-u4.xpm new file mode 100644 index 0000000..6fd09bb --- /dev/null +++ b/data/pixmaps/feta/4/flags-u4.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 15 8 1", +" c Gray3", +". c Gray21", +"X c Gray27", +"o c Gray49", +"O c Gray57", +"+ c #a4a4a4", +"@ c #d3d3d3", +"# c None", +/* pixels */ +"######", +"#@####", +"#O@###", +"#OO###", +"#O ###", +"#Oo.@#", +"#O@@.#", +"#O #OO", +"#OOX++", +"#@#@.@", +"####+@", +"####@O", +"####@O", +"####O@", +"####@#" +}; diff --git a/data/pixmaps/feta/4/flags-u5.xpm b/data/pixmaps/feta/4/flags-u5.xpm new file mode 100644 index 0000000..abc63d7 --- /dev/null +++ b/data/pixmaps/feta/4/flags-u5.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 18 8 1", +" c #131313", +". c #373737", +"X c Gray30", +"o c Gray44", +"O c #8e8e8e", +"+ c Gray65", +"@ c Gray83", +"# c None", +/* pixels */ +"######", +"#@####", +"#O@###", +"#O@###", +"#O ###", +"#+.o##", +"#O@oO#", +"#O @X#", +"#+XXo@", +"#O@@ #", +"#oX#++", +"#@.o@O", +"###O #", +"####O@", +"####@+", +"####@O", +"####O@", +"####@#" +}; diff --git a/data/pixmaps/feta/4/flags-u6.xpm b/data/pixmaps/feta/4/flags-u6.xpm new file mode 100644 index 0000000..32fbcce --- /dev/null +++ b/data/pixmaps/feta/4/flags-u6.xpm @@ -0,0 +1,36 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 22 8 1", +" c #0e0e0e", +". c #323232", +"X c Gray31", +"o c #767676", +"O c #939393", +"+ c #afafaf", +"@ c Gray84", +"# c None", +/* pixels */ +"######", +"#@####", +"#O@###", +"#O@###", +"#O.###", +"#O o##", +"#O@X+#", +"#o.#X#", +"#O XO@", +"#O@X.#", +"#OO#X@", +"#@ +@O", +"##+.OO", +"#O@#X@", +"#o.#+O", +"##oX@O", +"###+ #", +"####++", +"####@O", +"####@O", +"####O@", +"####@#" +}; diff --git a/data/pixmaps/feta/4/flags-ugrace.xpm b/data/pixmaps/feta/4/flags-ugrace.xpm new file mode 100644 index 0000000..86624ff --- /dev/null +++ b/data/pixmaps/feta/4/flags-ugrace.xpm @@ -0,0 +1,18 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 6 6 1", +" c Gray34", +". c Gray41", +"X c Gray57", +"o c #bbbbbb", +"O c #cdcdcd", +"+ c None", +/* pixels */ +"+++++++++", +"+++++++Oo", +"+++++O. O", +"++++X O++", +"++X X++++", +"+oX++++++" +}; diff --git a/data/pixmaps/feta/4/noteheads--1.xpm b/data/pixmaps/feta/4/noteheads--1.xpm new file mode 100644 index 0000000..4c9de15 --- /dev/null +++ b/data/pixmaps/feta/4/noteheads--1.xpm @@ -0,0 +1,18 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 6 6 1", +" c #070707", +". c Gray19", +"X c #797979", +"o c #8d8d8d", +"O c #cecece", +"+ c None", +/* pixels */ +"+++++++++++", +"++OOXooo++O", +"+o o+o .o", +"+o +++o o", +"+o .O+. .o", +"++OOXooo+OO" +}; diff --git a/data/pixmaps/feta/4/noteheads--1mensural.xpm b/data/pixmaps/feta/4/noteheads--1mensural.xpm new file mode 100644 index 0000000..8edf37e --- /dev/null +++ b/data/pixmaps/feta/4/noteheads--1mensural.xpm @@ -0,0 +1,20 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 8 6 1", +" c #010101", +". c #5a5a5a", +"X c #7b7b7b", +"o c Gray56", +"O c #cdcdcd", +"+ c None", +/* pixels */ +"++++++++++", +"+O+++++++O", +"+o.oXXXX.o", +"+o o", +"+oO+++++Oo", +"+o o", +"+o.XXXXX.o", +"+O+++++++O" +}; diff --git a/data/pixmaps/feta/4/noteheads--2mensural.xpm b/data/pixmaps/feta/4/noteheads--2mensural.xpm new file mode 100644 index 0000000..4fdd7df --- /dev/null +++ b/data/pixmaps/feta/4/noteheads--2mensural.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 12 7 1", +" c #010101", +". c #5a5a5a", +"X c Gray47", +"o c Gray55", +"O c #a9a9a9", +"+ c #cdcdcd", +"@ c None", +/* pixels */ +"@@@@@@@@@@", +"@+@@@@@@@+", +"@o.oXXXX.o", +"@o o", +"@o+@@@@@+o", +"@o o", +"@o.oXXXX.o", +"@+@@@@@@oO", +"@@@@@@@@Xo", +"@@@@@@@@XX", +"@@@@@@@@+o", +"@@@@@@@@@+" +}; diff --git a/data/pixmaps/feta/4/noteheads--3mensural.xpm b/data/pixmaps/feta/4/noteheads--3mensural.xpm new file mode 100644 index 0000000..d2c498f --- /dev/null +++ b/data/pixmaps/feta/4/noteheads--3mensural.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 12 6 1", +" c #010101", +". c #5b5b5b", +"X c Gray48", +"o c Gray56", +"O c #d2d2d2", +"+ c None", +/* pixels */ +"++++++++++++", +"+O+++++++++O", +"+o.oXXXXXX.o", +"+o o", +"+oO+++O+++Oo", +"+o o", +"+o.oXXXXoo.o", +"+O++++++++Oo", +"++++++++++Oo", +"++++++++++Oo", +"+++++++++++o", +"+++++++++++O" +}; diff --git a/data/pixmaps/feta/4/noteheads-0.xpm b/data/pixmaps/feta/4/noteheads-0.xpm new file mode 100644 index 0000000..6c3316b --- /dev/null +++ b/data/pixmaps/feta/4/noteheads-0.xpm @@ -0,0 +1,17 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 6 5 1", +" c #040404", +". c Gray36", +"X c Gray53", +"o c #b6b6b6", +"O c None", +/* pixels */ +"OOOOOOOOO", +"OOO.XXXOO", +"Oo .Oo o", +"OX oOOo X", +"Oo oO. o", +"OOOXXX.OO" +}; diff --git a/data/pixmaps/feta/4/noteheads-0cross.xpm b/data/pixmaps/feta/4/noteheads-0cross.xpm new file mode 100644 index 0000000..5c46508 --- /dev/null +++ b/data/pixmaps/feta/4/noteheads-0cross.xpm @@ -0,0 +1,17 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 7 4 1", +" c #9a9a9a", +". c #b4b4b4", +"X c #cacaca", +"o c None", +/* pixels */ +"oooooooo", +"oo.XoX.o", +"o. . . .", +"oo XXX o", +"oo XXX o", +"o. . . .", +"oo.XoX.o" +}; diff --git a/data/pixmaps/feta/4/noteheads-0diamond.xpm b/data/pixmaps/feta/4/noteheads-0diamond.xpm new file mode 100644 index 0000000..c85d317 --- /dev/null +++ b/data/pixmaps/feta/4/noteheads-0diamond.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 6 7 1", +" c #090909", +". c #252525", +"X c Gray30", +"o c #929292", +"O c Gray70", +"+ c #c6c6c6", +"@ c None", +/* pixels */ +"@@@@@@@@@", +"@@@@oo@@@", +"@@O.X..O@", +"@o +O o", +"@@O. X.O@", +"@@@@oo@@@" +}; diff --git a/data/pixmaps/feta/4/noteheads-0mensural.xpm b/data/pixmaps/feta/4/noteheads-0mensural.xpm new file mode 100644 index 0000000..71f903e --- /dev/null +++ b/data/pixmaps/feta/4/noteheads-0mensural.xpm @@ -0,0 +1,18 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"5 6 6 1", +" c Gray10", +". c #3c3c3c", +"X c Gray31", +"o c Gray43", +"O c #cecece", +"+ c None", +/* pixels */ +"+++++", +"++OO+", +"++o +", +"+oOoo", +"++.X+", +"++OO+" +}; diff --git a/data/pixmaps/feta/4/noteheads-0slash.xpm b/data/pixmaps/feta/4/noteheads-0slash.xpm new file mode 100644 index 0000000..171b23e --- /dev/null +++ b/data/pixmaps/feta/4/noteheads-0slash.xpm @@ -0,0 +1,23 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 10 7 1", +" c #090909", +". c #323232", +"X c #727272", +"o c #838383", +"O c #b7b7b7", +"+ c #cdcdcd", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@", +"@@@@@@oXXXoo+", +"@@@@@X.XXX. @", +"@@@@O O@@@ O@", +"@@@@..@@@X.@@", +"@@@O O@@O O@@", +"@@@.X@@@..@@@", +"@@O.@@@O O@@@", +"@@ .XXX.X@@@@", +"@+XXXXXo@@@@@" +}; diff --git a/data/pixmaps/feta/4/noteheads-0triangle.xpm b/data/pixmaps/feta/4/noteheads-0triangle.xpm new file mode 100644 index 0000000..e40a3c1 --- /dev/null +++ b/data/pixmaps/feta/4/noteheads-0triangle.xpm @@ -0,0 +1,18 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 6 6 1", +" c #5b5b5b", +". c #727272", +"X c Gray53", +"o c Gray67", +"O c #d5d5d5", +"+ c None", +/* pixels */ +"++++++", +"+++o++", +"++O O+", +"++XO.+", +"+o.+.o", +"+o.oXo" +}; diff --git a/data/pixmaps/feta/4/noteheads-1.xpm b/data/pixmaps/feta/4/noteheads-1.xpm new file mode 100644 index 0000000..5f7225c --- /dev/null +++ b/data/pixmaps/feta/4/noteheads-1.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 6 7 1", +" c Gray0", +". c Gray26", +"X c #7b7b7b", +"o c Gray59", +"O c #b2b2b2", +"+ c Gray80", +"@ c None", +/* pixels */ +"@@@@@@@", +"@@@OXo@", +"@@. O+o", +"@O.@@.O", +"@o+O .@", +"@@oXO@@" +}; diff --git a/data/pixmaps/feta/4/noteheads-1cross.xpm b/data/pixmaps/feta/4/noteheads-1cross.xpm new file mode 100644 index 0000000..686889e --- /dev/null +++ b/data/pixmaps/feta/4/noteheads-1cross.xpm @@ -0,0 +1,17 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 6 5 1", +" c Gray42", +". c #8e8e8e", +"X c #b7b7b7", +"o c Gray81", +"O c None", +/* pixels */ +"OOOOOOOO", +"OOooOooO", +"OX ... X", +"OO .O. O", +"OX ... X", +"OOooOoXO" +}; diff --git a/data/pixmaps/feta/4/noteheads-1diamond.xpm b/data/pixmaps/feta/4/noteheads-1diamond.xpm new file mode 100644 index 0000000..652b51c --- /dev/null +++ b/data/pixmaps/feta/4/noteheads-1diamond.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 6 7 1", +" c Gray0", +". c #323232", +"X c Gray33", +"o c #8d8d8d", +"O c #b7b7b7", +"+ c #dddddd", +"@ c None", +/* pixels */ +"@@@@@@@", +"@@@@@XO", +"@@X oXo", +"@+.++.+", +"@o.o X@", +"@Oo@@@@" +}; diff --git a/data/pixmaps/feta/4/noteheads-1mensural.xpm b/data/pixmaps/feta/4/noteheads-1mensural.xpm new file mode 100644 index 0000000..71f903e --- /dev/null +++ b/data/pixmaps/feta/4/noteheads-1mensural.xpm @@ -0,0 +1,18 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"5 6 6 1", +" c Gray10", +". c #3c3c3c", +"X c Gray31", +"o c Gray43", +"O c #cecece", +"+ c None", +/* pixels */ +"+++++", +"++OO+", +"++o +", +"+oOoo", +"++.X+", +"++OO+" +}; diff --git a/data/pixmaps/feta/4/noteheads-1slash.xpm b/data/pixmaps/feta/4/noteheads-1slash.xpm new file mode 100644 index 0000000..c376740 --- /dev/null +++ b/data/pixmaps/feta/4/noteheads-1slash.xpm @@ -0,0 +1,23 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 10 7 1", +" c #0e0e0e", +". c Gray20", +"X c Gray27", +"o c Gray46", +"O c #8e8e8e", +"+ c Gray84", +"@ c None", +/* pixels */ +"@@@@@@@@@@@", +"@@@@@+oooO+", +"@@@@@XXo. +", +"@@@@O @@.O@", +"@@@@ o@O.@@", +"@@@O +@ O@@", +"@@@.O@o @@@", +"@@O.@@ O@@@", +"@+ .o.X@@@@", +"@+Oooo+@@@@" +}; diff --git a/data/pixmaps/feta/4/noteheads-1triangle.xpm b/data/pixmaps/feta/4/noteheads-1triangle.xpm new file mode 100644 index 0000000..7307fac --- /dev/null +++ b/data/pixmaps/feta/4/noteheads-1triangle.xpm @@ -0,0 +1,15 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 5 4 1", +" c #646464", +". c #8b8b8b", +"X c Gray80", +"o c None", +/* pixels */ +"oooooo", +"ooo.oo", +"ooX Xo", +"oX o X", +"oX...X" +}; diff --git a/data/pixmaps/feta/4/noteheads-2.xpm b/data/pixmaps/feta/4/noteheads-2.xpm new file mode 100644 index 0000000..3369561 --- /dev/null +++ b/data/pixmaps/feta/4/noteheads-2.xpm @@ -0,0 +1,18 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 6 6 1", +" c Gray1", +". c Gray27", +"X c Gray50", +"o c #8d8d8d", +"O c Gray74", +"+ c None", +/* pixels */ +"+++++++", +"+++Ooo+", +"++. o", +"+o o", +"+o .+", +"++oXO++" +}; diff --git a/data/pixmaps/feta/4/noteheads-2cross.xpm b/data/pixmaps/feta/4/noteheads-2cross.xpm new file mode 100644 index 0000000..da01332 --- /dev/null +++ b/data/pixmaps/feta/4/noteheads-2cross.xpm @@ -0,0 +1,16 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 6 4 1", +" c Gray32", +". c #bcbcbc", +"X c Gray84", +"o c None", +/* pixels */ +"ooooooo", +"oXXooXX", +"oo .. o", +"ooo oo", +"oo .. o", +"oXXooXX" +}; diff --git a/data/pixmaps/feta/4/noteheads-2diamond.xpm b/data/pixmaps/feta/4/noteheads-2diamond.xpm new file mode 100644 index 0000000..a39b5b6 --- /dev/null +++ b/data/pixmaps/feta/4/noteheads-2diamond.xpm @@ -0,0 +1,18 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 6 6 1", +" c #060606", +". c Gray49", +"X c #848484", +"o c #b7b7b7", +"O c #c0c0c0", +"+ c None", +/* pixels */ +"+++++++", +"+++oX.O", +"+++ o", +"++o o+", +"+o ++", +"+O.Xo++" +}; diff --git a/data/pixmaps/feta/4/noteheads-2mensural.xpm b/data/pixmaps/feta/4/noteheads-2mensural.xpm new file mode 100644 index 0000000..7a79bf1 --- /dev/null +++ b/data/pixmaps/feta/4/noteheads-2mensural.xpm @@ -0,0 +1,16 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"5 6 4 1", +" c #151515", +". c Gray49", +"X c #d7d7d7", +"o c None", +/* pixels */ +"ooooo", +"ooXXo", +"oo o", +"o. .", +"oo o", +"ooXXo" +}; diff --git a/data/pixmaps/feta/4/noteheads-2slash.xpm b/data/pixmaps/feta/4/noteheads-2slash.xpm new file mode 100644 index 0000000..5770bd5 --- /dev/null +++ b/data/pixmaps/feta/4/noteheads-2slash.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 10 6 1", +" c #060606", +". c Gray17", +"X c Gray47", +"o c #909090", +"O c #d2d2d2", +"+ c None", +/* pixels */ +"++++++++", +"+++++OXO", +"+++++. O", +"++++o o+", +"+++O .++", +"+++o o++", +"+++. +++", +"++o o+++", +"+O .++++", +"+OXO++++" +}; diff --git a/data/pixmaps/feta/4/noteheads-2triangle.xpm b/data/pixmaps/feta/4/noteheads-2triangle.xpm new file mode 100644 index 0000000..1020404 --- /dev/null +++ b/data/pixmaps/feta/4/noteheads-2triangle.xpm @@ -0,0 +1,17 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 5 6 1", +" c Gray1", +". c Gray50", +"X c #929292", +"o c #b4b4b4", +"O c #cdcdcd", +"+ c None", +/* pixels */ +"++++++", +"+++X++", +"++o o+", +"++ O", +"+OXX.O" +}; diff --git a/data/pixmaps/feta/4/noteheads-2xcircle.xpm b/data/pixmaps/feta/4/noteheads-2xcircle.xpm new file mode 100644 index 0000000..e149172 --- /dev/null +++ b/data/pixmaps/feta/4/noteheads-2xcircle.xpm @@ -0,0 +1,17 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 7 4 1", +" c #535353", +". c #979797", +"X c Gray80", +"o c None", +/* pixels */ +"ooooooo", +"ooo..oo", +"oo XX o", +"o.X..X.", +"o.X..X.", +"oo XX o", +"ooo..oo" +}; diff --git a/data/pixmaps/feta/4/noteheads-ledgerending.xpm b/data/pixmaps/feta/4/noteheads-ledgerending.xpm new file mode 100644 index 0000000..99ba1a3 --- /dev/null +++ b/data/pixmaps/feta/4/noteheads-ledgerending.xpm @@ -0,0 +1,12 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 3 3 1", +" c Gray42", +". c #bebebe", +"X c None", +/* pixels */ +"XXXXXX", +"X. .", +"X. ." +}; diff --git a/data/pixmaps/feta/4/rests--1.xpm b/data/pixmaps/feta/4/rests--1.xpm new file mode 100644 index 0000000..df2a459 --- /dev/null +++ b/data/pixmaps/feta/4/rests--1.xpm @@ -0,0 +1,16 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"4 6 4 1", +" c Gray0", +". c #747474", +"X c #bebebe", +"o c None", +/* pixels */ +"oooo", +"oX.X", +"o. .", +"o. .", +"o. .", +"oX.X" +}; diff --git a/data/pixmaps/feta/4/rests--1o.xpm b/data/pixmaps/feta/4/rests--1o.xpm new file mode 100644 index 0000000..ba2d6d6 --- /dev/null +++ b/data/pixmaps/feta/4/rests--1o.xpm @@ -0,0 +1,18 @@ +/* XPM */ +static char * rests__1o_xpm[] = { +"9 6 9 1", +" c None", +". c #B5B5B5", +"+ c #646464", +"@ c #878787", +"# c #5D5D5D", +"$ c #292929", +"% c #020202", +"& c #747474", +"* c #000000", +" ", +" .+@@@+. ", +" .#$%$#. ", +" &*& ", +" .#$%$#. ", +" .+@@@+. "}; diff --git a/data/pixmaps/feta/4/rests--2.xpm b/data/pixmaps/feta/4/rests--2.xpm new file mode 100644 index 0000000..9151f93 --- /dev/null +++ b/data/pixmaps/feta/4/rests--2.xpm @@ -0,0 +1,20 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"4 10 4 1", +" c Gray0", +". c Gray45", +"X c #bebebe", +"o c None", +/* pixels */ +"oooo", +"oX.X", +"o. .", +"o. .", +"o. .", +"o. .", +"o. .", +"o. .", +"o. .", +"oX.X" +}; diff --git a/data/pixmaps/feta/4/rests--4.xpm b/data/pixmaps/feta/4/rests--4.xpm new file mode 100644 index 0000000..7862c4c --- /dev/null +++ b/data/pixmaps/feta/4/rests--4.xpm @@ -0,0 +1,20 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"32 10 4 1", +" c Gray4", +". c Gray57", +"X c #d3d3d3", +"o c None", +/* pixels */ +"oooooooooooooooooooooooooooooooo", +"oXoooooooooooooooooooooooooooooX", +"o.XoooooooooooooooooooooooooooX.", +"o.XoooooooooooooooooXoooooooooX.", +"o. .", +"o. .", +"o. .", +"o.XoooooXooooooooooXooooooXoooX.", +"o.XoooooooooooooooooooooooooooX.", +"oXoooooooooooooooooooooooooooooX" +}; diff --git a/data/pixmaps/feta/4/rests-0.xpm b/data/pixmaps/feta/4/rests-0.xpm new file mode 100644 index 0000000..cd3ae12 --- /dev/null +++ b/data/pixmaps/feta/4/rests-0.xpm @@ -0,0 +1,14 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 4 4 1", +" c #020202", +". c #6f6f6f", +"X c Gray71", +"o c None", +/* pixels */ +"ooooooo", +"oX....X", +"o. .", +"oX....X" +}; diff --git a/data/pixmaps/feta/4/rests-0o.xpm b/data/pixmaps/feta/4/rests-0o.xpm new file mode 100644 index 0000000..12ed55e --- /dev/null +++ b/data/pixmaps/feta/4/rests-0o.xpm @@ -0,0 +1,18 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 5 7 1", +" c #020202", +". c Gray16", +"X c #5d5d5d", +"o c #646464", +"O c Gray53", +"+ c Gray71", +"@ c None", +/* pixels */ +"@@@@@@@@@@@", +"@+oOOOOOOo+", +"@+X. .X+", +"@@@X X@@", +"@@@+OOOO+@@" +}; diff --git a/data/pixmaps/feta/4/rests-1.xpm b/data/pixmaps/feta/4/rests-1.xpm new file mode 100644 index 0000000..cd3ae12 --- /dev/null +++ b/data/pixmaps/feta/4/rests-1.xpm @@ -0,0 +1,14 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 4 4 1", +" c #020202", +". c #6f6f6f", +"X c Gray71", +"o c None", +/* pixels */ +"ooooooo", +"oX....X", +"o. .", +"oX....X" +}; diff --git a/data/pixmaps/feta/4/rests-1o.xpm b/data/pixmaps/feta/4/rests-1o.xpm new file mode 100644 index 0000000..4fb45b8 --- /dev/null +++ b/data/pixmaps/feta/4/rests-1o.xpm @@ -0,0 +1,18 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 5 7 1", +" c #020202", +". c Gray16", +"X c #5d5d5d", +"o c #646464", +"O c Gray53", +"+ c Gray71", +"@ c None", +/* pixels */ +"@@@@@@@@@@@", +"@@@+OOOO+@@", +"@@@X X@@", +"@+X. .X+", +"@+oOOOOOOo+" +}; diff --git a/data/pixmaps/feta/4/rests-2.xpm b/data/pixmaps/feta/4/rests-2.xpm new file mode 100644 index 0000000..d9d9f4c --- /dev/null +++ b/data/pixmaps/feta/4/rests-2.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 13 8 1", +" c Gray1", +". c #393939", +"X c #484848", +"o c #767676", +"O c #8d8d8d", +"+ c Gray70", +"@ c #c8c8c8", +"# c None", +/* pixels */ +"######", +"##@@##", +"###O##", +"###o.#", +"##+ O", +"#+ X#", +"#+ X##", +"##+O##", +"#@O.O#", +"#O @", +"#+X###", +"##+###", +"##@###" +}; diff --git a/data/pixmaps/feta/4/rests-2mensural.xpm b/data/pixmaps/feta/4/rests-2mensural.xpm new file mode 100644 index 0000000..205d612 --- /dev/null +++ b/data/pixmaps/feta/4/rests-2mensural.xpm @@ -0,0 +1,16 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"5 5 5 1", +" c Gray9", +". c Gray44", +"X c Gray54", +"o c #c6c6c6", +"O c None", +/* pixels */ +"OOOOO", +"OOXOO", +"OX X", +"O..OO", +"OOoOO" +}; diff --git a/data/pixmaps/feta/4/rests-3.xpm b/data/pixmaps/feta/4/rests-3.xpm new file mode 100644 index 0000000..9fba802 --- /dev/null +++ b/data/pixmaps/feta/4/rests-3.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 9 6 1", +" c #0e0e0e", +". c #505050", +"X c #8e8e8e", +"o c Gray74", +"O c #d5d5d5", +"+ c None", +/* pixels */ +"+++++++", +"++Xo++O", +"+X +X.", +"+o +", +"++++O.+", +"++++OX+", +"++++XO+", +"++++.++", +"++++o++" +}; diff --git a/data/pixmaps/feta/4/rests-3mensural.xpm b/data/pixmaps/feta/4/rests-3mensural.xpm new file mode 100644 index 0000000..9bb63db --- /dev/null +++ b/data/pixmaps/feta/4/rests-3mensural.xpm @@ -0,0 +1,17 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"4 5 6 1", +" c Gray3", +". c #6a6a6a", +"X c #888888", +"o c #acacac", +"O c #cdcdcd", +"+ c None", +/* pixels */ +"++++", +"++Xo", +"+X .", +"++o.", +"+++O" +}; diff --git a/data/pixmaps/feta/4/rests-4.xpm b/data/pixmaps/feta/4/rests-4.xpm new file mode 100644 index 0000000..36254ec --- /dev/null +++ b/data/pixmaps/feta/4/rests-4.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 12 8 1", +" c #010101", +". c #2d2d2d", +"X c #4c4c4c", +"o c Gray44", +"O c #909090", +"+ c Gray69", +"@ c Gray82", +"# c None", +/* pixels */ +"#######", +"###o@#@", +"##X X++", +"##+.. @", +"##@##o#", +"#O o#o#", +"#O .O+#", +"##@@.@#", +"####o##", +"###+o##", +"###X+##", +"###O@##" +}; diff --git a/data/pixmaps/feta/4/rests-4mensural.xpm b/data/pixmaps/feta/4/rests-4mensural.xpm new file mode 100644 index 0000000..f02c904 --- /dev/null +++ b/data/pixmaps/feta/4/rests-4mensural.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"4 6 7 1", +" c Gray5", +". c #2a2a2a", +"X c Gray43", +"o c #9d9d9d", +"O c #aeaeae", +"+ c Gray79", +"@ c None", +/* pixels */ +"@@@@", +"@@+O", +"@O X", +"@O X", +"@o.X", +"@@@+" +}; diff --git a/data/pixmaps/feta/4/rests-5.xpm b/data/pixmaps/feta/4/rests-5.xpm new file mode 100644 index 0000000..e82b8a8 --- /dev/null +++ b/data/pixmaps/feta/4/rests-5.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 16 8 1", +" c Gray3", +". c Gray22", +"X c #555555", +"o c #767676", +"O c Gray57", +"+ c #b2b2b2", +"@ c Gray82", +"# c None", +/* pixels */ +"########", +"###@o@##", +"###X X#O", +"###O XX+", +"######o@", +"##@X@#o#", +"##X .@o#", +"##@.. +#", +"##@@#O@#", +"#O X#o##", +"#O .+o##", +"##@@o+##", +"####X+##", +"####o###", +"###+.###", +"###@@###" +}; diff --git a/data/pixmaps/feta/4/rests-6.xpm b/data/pixmaps/feta/4/rests-6.xpm new file mode 100644 index 0000000..b46c2a4 --- /dev/null +++ b/data/pixmaps/feta/4/rests-6.xpm @@ -0,0 +1,34 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 20 8 1", +" c #060606", +". c #2f2f2f", +"X c #555555", +"o c #6a6a6a", +"O c #8e8e8e", +"+ c #afafaf", +"@ c Gray83", +"# c None", +/* pixels */ +"#########", +"####+O###", +"#### O@O", +"####X XO@", +"#######O@", +"###+X@#O@", +"### o+O#", +"###O..XO#", +"###@@#+O#", +"##O .#O@#", +"##O +.##", +"###@@+o##", +"##+@#@O##", +"#O .#OO##", +"#+ .X###", +"##@@@o@##", +"#####X###", +"####@O###", +"####oo###", +"####@@###" +}; diff --git a/data/pixmaps/feta/4/rests-7.xpm b/data/pixmaps/feta/4/rests-7.xpm new file mode 100644 index 0000000..1c882ab --- /dev/null +++ b/data/pixmaps/feta/4/rests-7.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 24 8 1", +" c #090909", +". c Gray16", +"X c #4c4c4c", +"o c #717171", +"O c #8d8d8d", +"+ c Gray68", +"@ c #d3d3d3", +"# c None", +/* pixels */ +"##########", +"#####+O###", +"##### O@O", +"##### ..@", +"#####@OOX#", +"####+o##O@", +"#### O#O#", +"####o X+O#", +"#######+@#", +"###@XO#O@#", +"###O +X##", +"###@X..o##", +"###@@#@O##", +"##O .#O@##", +"##O +O@##", +"###@@+X###", +"##+@#@O###", +"#O .#oo###", +"#+ ..@###", +"##@@@X####", +"####@X####", +"####@O####", +"####oo####", +"####+#####" +}; diff --git a/data/pixmaps/feta/4/scripts-arpeggio.xpm b/data/pixmaps/feta/4/scripts-arpeggio.xpm new file mode 100644 index 0000000..6e69d91 --- /dev/null +++ b/data/pixmaps/feta/4/scripts-arpeggio.xpm @@ -0,0 +1,18 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"5 7 5 1", +" c Gray0", +". c #929292", +"X c #acacac", +"o c Gray78", +"O c None", +/* pixels */ +"OOOOO", +"OOXOO", +"OOo.O", +"OO. X", +"OX .O", +"OO.oO", +"OOOXO" +}; diff --git a/data/pixmaps/feta/4/scripts-coda.xpm b/data/pixmaps/feta/4/scripts-coda.xpm new file mode 100644 index 0000000..dd62c53 --- /dev/null +++ b/data/pixmaps/feta/4/scripts-coda.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 12 8 1", +" c Gray6", +". c #2f2f2f", +"X c #505050", +"o c #656565", +"O c #909090", +"+ c #aaaaaa", +"@ c Gray81", +"# c None", +/* pixels */ +"##########", +"#####@####", +"####O.@###", +"###Ooo.###", +"### ++.O##", +"##+ OO X#@", +"#@o oX .O@", +"##@ ++.X##", +"### ++.O##", +"###Ooo.###", +"####O.@###", +"#####@####" +}; diff --git a/data/pixmaps/feta/4/scripts-dfermata.xpm b/data/pixmaps/feta/4/scripts-dfermata.xpm new file mode 100644 index 0000000..584fc1f --- /dev/null +++ b/data/pixmaps/feta/4/scripts-dfermata.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 8 7 1", +" c #010101", +". c Gray26", +"X c Gray47", +"o c #888888", +"O c #afafaf", +"+ c #d5d5d5", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@", +"@+@@@@o@@@@+", +"@oO@@o o@@Oo", +"@+o@@+XO@@o+", +"@@.O@@@@@O.@", +"@@O X@@@X O@", +"@@@O O@@", +"@@@@@ooo@@@@" +}; diff --git a/data/pixmaps/feta/4/scripts-dmarcato.xpm b/data/pixmaps/feta/4/scripts-dmarcato.xpm new file mode 100644 index 0000000..433522b --- /dev/null +++ b/data/pixmaps/feta/4/scripts-dmarcato.xpm @@ -0,0 +1,18 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 6 6 1", +" c #020202", +". c Gray44", +"X c #848484", +"o c #afafaf", +"O c #c8c8c8", +"+ c None", +/* pixels */ +"++++++", +"+OX++O", +"++ Xoo", +"++X .+", +"+++ o+", +"+++O++" +}; diff --git a/data/pixmaps/feta/4/scripts-downbow.xpm b/data/pixmaps/feta/4/scripts-downbow.xpm new file mode 100644 index 0000000..50e7080 --- /dev/null +++ b/data/pixmaps/feta/4/scripts-downbow.xpm @@ -0,0 +1,18 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 7 5 1", +" c #020202", +". c Gray40", +"X c #8e8e8e", +"o c #d3d3d3", +"O c None", +/* pixels */ +"OOOOOOOO", +"OoXXXXXo", +"OX X", +"OX.XXX.X", +"OXoOOOoX", +"OXoOOOoX", +"OoOOOOOo" +}; diff --git a/data/pixmaps/feta/4/scripts-downmordent.xpm b/data/pixmaps/feta/4/scripts-downmordent.xpm new file mode 100644 index 0000000..f677374 --- /dev/null +++ b/data/pixmaps/feta/4/scripts-downmordent.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"15 8 8 1", +" c #090909", +". c Gray17", +"X c Gray31", +"o c Gray43", +"O c #898989", +"+ c #aaaaaa", +"@ c #c6c6c6", +"# c None", +/* pixels */ +"###############", +"##@############", +"#+o#######@####", +"#oo@X##X+#.X###", +"#+X. oo +. o+O", +"##X+X .+ oo #", +"#####X+#+.O#.+#", +"##########@####" +}; diff --git a/data/pixmaps/feta/4/scripts-downprall.xpm b/data/pixmaps/feta/4/scripts-downprall.xpm new file mode 100644 index 0000000..6fb7d66 --- /dev/null +++ b/data/pixmaps/feta/4/scripts-downprall.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"15 7 8 1", +" c #070707", +". c Gray19", +"X c #515151", +"o c Gray44", +"O c Gray58", +"+ c #b1b1b1", +"@ c Gray83", +"# c None", +/* pixels */ +"###############", +"##@############", +"#Oo#@######@###", +"#ooO ## O#o.##@", +"#@X. .X o. .oO", +"##O@+ .#. ++ .#", +"#####+@#@+##+@#" +}; diff --git a/data/pixmaps/feta/4/scripts-dpedalheel.xpm b/data/pixmaps/feta/4/scripts-dpedalheel.xpm new file mode 100644 index 0000000..cab3ca7 --- /dev/null +++ b/data/pixmaps/feta/4/scripts-dpedalheel.xpm @@ -0,0 +1,18 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 6 6 1", +" c #555555", +". c Gray49", +"X c Gray59", +"o c #a4a4a4", +"O c #d3d3d3", +"+ c None", +/* pixels */ +"++++++", +"++o.o+", +"+o + o", +"+XO+OX", +"+XO+OX", +"+O+++O" +}; diff --git a/data/pixmaps/feta/4/scripts-dpedaltoe.xpm b/data/pixmaps/feta/4/scripts-dpedaltoe.xpm new file mode 100644 index 0000000..c0eeb14 --- /dev/null +++ b/data/pixmaps/feta/4/scripts-dpedaltoe.xpm @@ -0,0 +1,20 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 7 7 1", +" c #101010", +". c #585858", +"X c Gray47", +"o c #8d8d8d", +"O c #b7b7b7", +"+ c Gray86", +"@ c None", +/* pixels */ +"@@@@@@", +"@O+@+O", +"@OX@XO", +"@@.+.@", +"@@oXo@", +"@@+ +@", +"@@@o@@" +}; diff --git a/data/pixmaps/feta/4/scripts-dstaccatissimo.xpm b/data/pixmaps/feta/4/scripts-dstaccatissimo.xpm new file mode 100644 index 0000000..4a805ab --- /dev/null +++ b/data/pixmaps/feta/4/scripts-dstaccatissimo.xpm @@ -0,0 +1,17 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"4 6 5 1", +" c #0e0e0e", +". c #6f6f6f", +"X c Gray56", +"o c Gray79", +"O c None", +/* pixels */ +"OOOO", +"OOXO", +"OO O", +"OO O", +"OX X", +"Oo.o" +}; diff --git a/data/pixmaps/feta/4/scripts-flageolet.xpm b/data/pixmaps/feta/4/scripts-flageolet.xpm new file mode 100644 index 0000000..1d5afb3 --- /dev/null +++ b/data/pixmaps/feta/4/scripts-flageolet.xpm @@ -0,0 +1,16 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 6 4 1", +" c #909090", +". c Gray71", +"X c Gray86", +"o c None", +/* pixels */ +"oooooo", +"oo. .o", +"oX.X..", +"o XoX ", +"o..X..", +"oo. .o" +}; diff --git a/data/pixmaps/feta/4/scripts-lcomma.xpm b/data/pixmaps/feta/4/scripts-lcomma.xpm new file mode 100644 index 0000000..58426ec --- /dev/null +++ b/data/pixmaps/feta/4/scripts-lcomma.xpm @@ -0,0 +1,20 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"4 7 7 1", +" c #202020", +". c Gray32", +"X c #6f6f6f", +"o c #868686", +"O c #acacac", +"+ c #d7d7d7", +"@ c None", +/* pixels */ +"@@@@", +"@@++", +"@@.+", +"@OX@", +"@XX@", +"@o @", +"@@o@" +}; diff --git a/data/pixmaps/feta/4/scripts-lineprall.xpm b/data/pixmaps/feta/4/scripts-lineprall.xpm new file mode 100644 index 0000000..f72aea7 --- /dev/null +++ b/data/pixmaps/feta/4/scripts-lineprall.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 12 7 1", +" c #090909", +". c Gray20", +"X c Gray29", +"o c #959595", +"O c Gray73", +"+ c Gray80", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@", +"@+@@@@@@@@@@@@", +"@o+@@@@@@@@@@@", +"@o+@@@@@@@@@@@", +"@o+@@@@@@@@@@@", +"@o+@@@@@@@@@@@", +"@o+@@@@@@@@@@@", +"@o++@@O@@@O@@@", +"@o O+ X@X O@O", +"@o. X. .X .o", +"@+@O X@X ++ .@", +"@@@@O@@@+@@+@@" +}; diff --git a/data/pixmaps/feta/4/scripts-mordent.xpm b/data/pixmaps/feta/4/scripts-mordent.xpm new file mode 100644 index 0000000..5ce3758 --- /dev/null +++ b/data/pixmaps/feta/4/scripts-mordent.xpm @@ -0,0 +1,20 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 7 7 1", +" c Gray0", +". c Gray23", +"X c #555555", +"o c #8b8b8b", +"O c #a9a9a9", +"+ c #d3d3d3", +"@ c None", +/* pixels */ +"@@@@@@@@@@", +"@@@@@+@@@@", +"@@oX@X.+@@", +"@+ oX XOo", +"@oOX Xo +", +"@@@+.X@Xo@", +"@@@@@+@@@@" +}; diff --git a/data/pixmaps/feta/4/scripts-open.xpm b/data/pixmaps/feta/4/scripts-open.xpm new file mode 100644 index 0000000..302a86b --- /dev/null +++ b/data/pixmaps/feta/4/scripts-open.xpm @@ -0,0 +1,14 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"5 6 2 1", +" c #8e8e8e", +". c None", +/* pixels */ +".....", +".. .", +". ", +". .. ", +". ", +".. ." +}; diff --git a/data/pixmaps/feta/4/scripts-prall.xpm b/data/pixmaps/feta/4/scripts-prall.xpm new file mode 100644 index 0000000..4920990 --- /dev/null +++ b/data/pixmaps/feta/4/scripts-prall.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 6 7 1", +" c #0c0c0c", +". c Gray18", +"X c Gray30", +"o c #929292", +"O c #b1b1b1", +"+ c #c8c8c8", +"@ c None", +/* pixels */ +"@@@@@@@@@@", +"@@@+@@+@@@", +"@@. @o o@O", +"@O. X .O", +"@O@o o@ .@", +"@@@@O@@+@@" +}; diff --git a/data/pixmaps/feta/4/scripts-pralldown.xpm b/data/pixmaps/feta/4/scripts-pralldown.xpm new file mode 100644 index 0000000..f4a6b2c --- /dev/null +++ b/data/pixmaps/feta/4/scripts-pralldown.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 8 8 1", +" c Gray4", +". c #323232", +"X c Gray34", +"o c #6f6f6f", +"O c Gray56", +"+ c #b7b7b7", +"@ c Gray81", +"# c None", +/* pixels */ +"##############", +"####+##@@##+##", +"#+@O o@ @X O#", +"#@ .X o XX#", +"##X.#+ +#.X#O@", +"############oo", +"############OO", +"############@#" +}; diff --git a/data/pixmaps/feta/4/scripts-prallmordent.xpm b/data/pixmaps/feta/4/scripts-prallmordent.xpm new file mode 100644 index 0000000..4fc8fc2 --- /dev/null +++ b/data/pixmaps/feta/4/scripts-prallmordent.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 7 8 1", +" c #090909", +". c Gray18", +"X c Gray31", +"o c Gray39", +"O c #8b8b8b", +"+ c Gray66", +"@ c #cacaca", +"# c None", +/* pixels */ +"##############", +"#########@####", +"##+X##.+#.X###", +"## oO + o+O", +"#O+o + oo #", +"####X+#+.O#X+#", +"#########@####" +}; diff --git a/data/pixmaps/feta/4/scripts-prallprall.xpm b/data/pixmaps/feta/4/scripts-prallprall.xpm new file mode 100644 index 0000000..8ee833b --- /dev/null +++ b/data/pixmaps/feta/4/scripts-prallprall.xpm @@ -0,0 +1,18 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 6 6 1", +" c #070707", +". c Gray22", +"X c #494949", +"o c #b7b7b7", +"O c Gray77", +"+ c None", +/* pixels */ +"++++++++++++++", +"+++O++O+++O+++", +"++X oO X+X o+o", +"+o. X. .X .o", +"+o+o X+X Oo X+", +"++++O+++O++O++" +}; diff --git a/data/pixmaps/feta/4/scripts-prallup.xpm b/data/pixmaps/feta/4/scripts-prallup.xpm new file mode 100644 index 0000000..f02c529 --- /dev/null +++ b/data/pixmaps/feta/4/scripts-prallup.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"15 7 8 1", +" c #070707", +". c Gray19", +"X c #515151", +"o c Gray44", +"O c Gray58", +"+ c #b1b1b1", +"@ c Gray83", +"# c None", +/* pixels */ +"###############", +"#############@#", +"#############oO", +"#@##.o#O #@ Ooo", +"#Oo. .o o. .X@", +"##. O+ .#X O@O#", +"##@+##+@#@+####" +}; diff --git a/data/pixmaps/feta/4/scripts-rcomma.xpm b/data/pixmaps/feta/4/scripts-rcomma.xpm new file mode 100644 index 0000000..92660fb --- /dev/null +++ b/data/pixmaps/feta/4/scripts-rcomma.xpm @@ -0,0 +1,20 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"4 7 7 1", +" c #202020", +". c Gray32", +"X c #6f6f6f", +"o c #868686", +"O c #acacac", +"+ c #d7d7d7", +"@ c None", +/* pixels */ +"@@@@", +"@@o@", +"@@ o", +"@@XX", +"@@XO", +"@+.@", +"@++@" +}; diff --git a/data/pixmaps/feta/4/scripts-reverseturn.xpm b/data/pixmaps/feta/4/scripts-reverseturn.xpm new file mode 100644 index 0000000..baa4ece --- /dev/null +++ b/data/pixmaps/feta/4/scripts-reverseturn.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 6 7 1", +" c #040404", +". c Gray24", +"X c #686868", +"o c #8d8d8d", +"O c #b4b4b4", +"+ c Gray78", +"@ c None", +/* pixels */ +"@@@@@@@@@@", +"@@oo@@OXO@", +"@o @O X.O", +"@o+@O O@+o", +"@O.X O@ o", +"@@OXO@@oo@" +}; diff --git a/data/pixmaps/feta/4/scripts-segno.xpm b/data/pixmaps/feta/4/scripts-segno.xpm new file mode 100644 index 0000000..66a08c2 --- /dev/null +++ b/data/pixmaps/feta/4/scripts-segno.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 13 8 1", +" c Gray5", +". c #343434", +"X c #515151", +"o c #6f6f6f", +"O c #929292", +"+ c Gray70", +"@ c Gray82", +"# c None", +/* pixels */ +"##########", +"##+OO###++", +"#+.#o.#@X#", +"#oo#o #X+#", +"#O.#+OOo##", +"##..## #@#", +"###o..O#O#", +"##O#O..o##", +"###@ ##..#", +"###oOO+#.O", +"##+X# o#oo", +"##X@#.o#.+", +"#@+###OO+#" +}; diff --git a/data/pixmaps/feta/4/scripts-sforzato.xpm b/data/pixmaps/feta/4/scripts-sforzato.xpm new file mode 100644 index 0000000..e0af282 --- /dev/null +++ b/data/pixmaps/feta/4/scripts-sforzato.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 6 7 1", +" c #161616", +". c #5d5d5d", +"X c #7c7c7c", +"o c #8b8b8b", +"O c #b7b7b7", +"+ c #d2d2d2", +"@ c None", +/* pixels */ +"@@@@@@@@@", +"@+o+@@@@@", +"@@oo.X+@@", +"@@@@@O+ o", +"@@oo.X+@@", +"@+o++@@@@" +}; diff --git a/data/pixmaps/feta/4/scripts-staccato.xpm b/data/pixmaps/feta/4/scripts-staccato.xpm new file mode 100644 index 0000000..63ec602 --- /dev/null +++ b/data/pixmaps/feta/4/scripts-staccato.xpm @@ -0,0 +1,11 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"3 3 2 1", +" c #b2b2b2", +". c None", +/* pixels */ +"...", +". ", +". " +}; diff --git a/data/pixmaps/feta/4/scripts-stopped.xpm b/data/pixmaps/feta/4/scripts-stopped.xpm new file mode 100644 index 0000000..a60423e --- /dev/null +++ b/data/pixmaps/feta/4/scripts-stopped.xpm @@ -0,0 +1,18 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"5 6 6 1", +" c #020202", +". c Gray25", +"X c #838383", +"o c #a4a4a4", +"O c Gray86", +"+ c None", +/* pixels */ +"+++++", +"++OO+", +"++.o+", +"+X X", +"++.o+", +"++OO+" +}; diff --git a/data/pixmaps/feta/4/scripts-tenuto.xpm b/data/pixmaps/feta/4/scripts-tenuto.xpm new file mode 100644 index 0000000..b33855f --- /dev/null +++ b/data/pixmaps/feta/4/scripts-tenuto.xpm @@ -0,0 +1,12 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 2 4 1", +" c Gray62", +". c #a9a9a9", +"X c Gray84", +"o c None", +/* pixels */ +"ooooooo", +"oX .. X" +}; diff --git a/data/pixmaps/feta/4/scripts-thumb.xpm b/data/pixmaps/feta/4/scripts-thumb.xpm new file mode 100644 index 0000000..35e8fe3 --- /dev/null +++ b/data/pixmaps/feta/4/scripts-thumb.xpm @@ -0,0 +1,18 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"5 7 5 1", +" c #5b5b5b", +". c Gray45", +"X c #8d8d8d", +"o c #b1b1b1", +"O c None", +/* pixels */ +"OOOOO", +"OOXXO", +"O....", +"O.XX.", +"OX X", +"OO O", +"OOooO" +}; diff --git a/data/pixmaps/feta/4/scripts-trilelement.xpm b/data/pixmaps/feta/4/scripts-trilelement.xpm new file mode 100644 index 0000000..af6cccd --- /dev/null +++ b/data/pixmaps/feta/4/scripts-trilelement.xpm @@ -0,0 +1,17 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 6 5 1", +" c #0b0b0b", +". c Gray22", +"X c #b7b7b7", +"o c Gray77", +"O c None", +/* pixels */ +"OOOOOOO", +"OOOoOOO", +"OO. XOX", +"OX. .X", +"OXOX .O", +"OOOOoOO" +}; diff --git a/data/pixmaps/feta/4/scripts-trill-element.xpm b/data/pixmaps/feta/4/scripts-trill-element.xpm new file mode 100644 index 0000000..adc82d3 --- /dev/null +++ b/data/pixmaps/feta/4/scripts-trill-element.xpm @@ -0,0 +1,16 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 5 5 1", +" c Gray0", +". c Gray57", +"X c #acacac", +"o c Gray78", +"O c None", +/* pixels */ +"OOOOOOO", +"OOOXOOO", +"OO. .oX", +"OXo. .O", +"OOOOXOO" +}; diff --git a/data/pixmaps/feta/4/scripts-trill.xpm b/data/pixmaps/feta/4/scripts-trill.xpm new file mode 100644 index 0000000..c9f14ca --- /dev/null +++ b/data/pixmaps/feta/4/scripts-trill.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 11 8 1", +" c #090909", +". c #2d2d2d", +"X c #494949", +"o c #626262", +"O c Gray55", +"+ c #afafaf", +"@ c #d0d0d0", +"# c None", +/* pixels */ +"#############", +"######@######", +"##### +######", +"####@ +######", +"####@ #@o##@#", +"##++X.+OX.@ +", +"#++@. @#+.#.@", +"#+OO X##.O###", +"##@@ +O#.@###", +"###@ X+@ @###", +"####+O#@O####" +}; diff --git a/data/pixmaps/feta/4/scripts-turn.xpm b/data/pixmaps/feta/4/scripts-turn.xpm new file mode 100644 index 0000000..2a07d97 --- /dev/null +++ b/data/pixmaps/feta/4/scripts-turn.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 6 7 1", +" c #040404", +". c Gray24", +"X c #686868", +"o c #8d8d8d", +"O c #b4b4b4", +"+ c Gray78", +"@ c None", +/* pixels */ +"@@@@@@@@@@", +"@@OX+@@oo@", +"@O.X O@ o", +"@o+@O O@+o", +"@o @O X.O", +"@@oo@@OXO@" +}; diff --git a/data/pixmaps/feta/4/scripts-ufermata.xpm b/data/pixmaps/feta/4/scripts-ufermata.xpm new file mode 100644 index 0000000..8ec0622 --- /dev/null +++ b/data/pixmaps/feta/4/scripts-ufermata.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 8 7 1", +" c #010101", +". c Gray26", +"X c Gray47", +"o c #888888", +"O c #afafaf", +"+ c #d5d5d5", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@", +"@@@@@ooo@@@@", +"@@@O O@@", +"@@O X@@@o O@", +"@@.O@@@@@O.@", +"@+X@@OX+@@o+", +"@oO@@o X@@Oo", +"@+@@@@o@@@++" +}; diff --git a/data/pixmaps/feta/4/scripts-umarcato.xpm b/data/pixmaps/feta/4/scripts-umarcato.xpm new file mode 100644 index 0000000..c4ccf08 --- /dev/null +++ b/data/pixmaps/feta/4/scripts-umarcato.xpm @@ -0,0 +1,18 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 6 6 1", +" c #020202", +". c Gray44", +"X c #848484", +"o c #afafaf", +"O c #c8c8c8", +"+ c None", +/* pixels */ +"++++++", +"+++O++", +"++o ++", +"++. .+", +"+ooX +", +"+O++XO" +}; diff --git a/data/pixmaps/feta/4/scripts-upbow.xpm b/data/pixmaps/feta/4/scripts-upbow.xpm new file mode 100644 index 0000000..c27fa61 --- /dev/null +++ b/data/pixmaps/feta/4/scripts-upbow.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 10 6 1", +" c #5a5a5a", +". c #717171", +"X c #8d8d8d", +"o c #b1b1b1", +"O c #d3d3d3", +"+ c None", +/* pixels */ +"+++++++", +"+O++++O", +"+Xo++oX", +"+OX++.O", +"++ ++ +", +"++.oo.+", +"++OXXO+", +"+++ ++", +"+++. ++", +"+++oO++" +}; diff --git a/data/pixmaps/feta/4/scripts-upedalheel.xpm b/data/pixmaps/feta/4/scripts-upedalheel.xpm new file mode 100644 index 0000000..a3351a5 --- /dev/null +++ b/data/pixmaps/feta/4/scripts-upedalheel.xpm @@ -0,0 +1,18 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 6 6 1", +" c #555555", +". c Gray49", +"X c Gray59", +"o c #a4a4a4", +"O c #d3d3d3", +"+ c None", +/* pixels */ +"++++++", +"+O+++O", +"+XO+OX", +"+XO+OX", +"+o + o", +"++o.o+" +}; diff --git a/data/pixmaps/feta/4/scripts-upedaltoe.xpm b/data/pixmaps/feta/4/scripts-upedaltoe.xpm new file mode 100644 index 0000000..1aeab50 --- /dev/null +++ b/data/pixmaps/feta/4/scripts-upedaltoe.xpm @@ -0,0 +1,20 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 7 7 1", +" c #101010", +". c #585858", +"X c Gray47", +"o c #8d8d8d", +"O c #b7b7b7", +"+ c Gray86", +"@ c None", +/* pixels */ +"@@@@@@", +"@@@o@@", +"@@+ +@", +"@@oXo@", +"@@.+.@", +"@OX@XO", +"@O+@+O" +}; diff --git a/data/pixmaps/feta/4/scripts-upmordent.xpm b/data/pixmaps/feta/4/scripts-upmordent.xpm new file mode 100644 index 0000000..fb0a226 --- /dev/null +++ b/data/pixmaps/feta/4/scripts-upmordent.xpm @@ -0,0 +1,23 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 9 8 1", +" c #010101", +". c Gray20", +"X c Gray31", +"o c Gray44", +"O c Gray56", +"+ c #a5a5a5", +"@ c Gray80", +"# c None", +/* pixels */ +"##############", +"#########@####", +"###.@#oo#X.###", +"##o .+ OX X+O", +"#@o+ +. XO #", +"#+O#OX#@.o#XO#", +"#oo######@####", +"#+O###########", +"##@###########" +}; diff --git a/data/pixmaps/feta/4/scripts-upprall.xpm b/data/pixmaps/feta/4/scripts-upprall.xpm new file mode 100644 index 0000000..52411e3 --- /dev/null +++ b/data/pixmaps/feta/4/scripts-upprall.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 8 8 1", +" c Gray4", +". c #323232", +"X c Gray34", +"o c #6f6f6f", +"O c Gray56", +"+ c #b7b7b7", +"@ c Gray81", +"# c None", +/* pixels */ +"##############", +"###+##@@##+###", +"##O X# @o O@+", +"##XX o X. @", +"#@O#X.#+ +#.X#", +"#oo##@########", +"#OO###########", +"##@###########" +}; diff --git a/data/pixmaps/feta/4/scripts-ustaccatissimo.xpm b/data/pixmaps/feta/4/scripts-ustaccatissimo.xpm new file mode 100644 index 0000000..fe7b754 --- /dev/null +++ b/data/pixmaps/feta/4/scripts-ustaccatissimo.xpm @@ -0,0 +1,17 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"4 6 5 1", +" c #0e0e0e", +". c #6f6f6f", +"X c Gray56", +"o c Gray79", +"O c None", +/* pixels */ +"OOOO", +"Oo.o", +"OX X", +"OO O", +"OO O", +"OOXO" +}; diff --git a/data/pixmaps/feta/4/unknown.xpm b/data/pixmaps/feta/4/unknown.xpm new file mode 100644 index 0000000..8698b03 --- /dev/null +++ b/data/pixmaps/feta/4/unknown.xpm @@ -0,0 +1,16 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 8 2 1", +"x c Gray0", +" c None", +/* pixels */ +" xxx ", +" x ", +" x ", +" xx ", +" x ", +" ", +" x ", +" " +}; diff --git a/data/pixmaps/feta/6/accidentals-(.xpm b/data/pixmaps/feta/6/accidentals-(.xpm new file mode 100644 index 0000000..2887b0e --- /dev/null +++ b/data/pixmaps/feta/6/accidentals-(.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"4 14 6 1", +" c Gray26", +". c Gray38", +"X c Gray56", +"o c #a2a2a2", +"O c #c8c8c8", +"+ c None", +/* pixels */ +"++++", +"+++o", +"++oX", +"++.+", +"+O +", +"+Xo+", +"+.o+", +"+.o+", +"+.o+", +"+Xo+", +"+O +", +"++.+", +"++oX", +"+++O" +}; diff --git a/data/pixmaps/feta/6/accidentals-).xpm b/data/pixmaps/feta/6/accidentals-).xpm new file mode 100644 index 0000000..428228d --- /dev/null +++ b/data/pixmaps/feta/6/accidentals-).xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"4 14 6 1", +" c Gray26", +". c Gray38", +"X c Gray56", +"o c #a2a2a2", +"O c #c8c8c8", +"+ c None", +/* pixels */ +"++++", +"+O++", +"+Xo+", +"++.+", +"++ O", +"++oX", +"++o.", +"++o.", +"++o.", +"++oX", +"++ O", +"++.+", +"+Xo+", +"+O++" +}; diff --git a/data/pixmaps/feta/6/accidentals--1.xpm b/data/pixmaps/feta/6/accidentals--1.xpm new file mode 100644 index 0000000..0033ae5 --- /dev/null +++ b/data/pixmaps/feta/6/accidentals--1.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 17 7 1", +" c #040404", +". c #282828", +"X c #6f6f6f", +"o c #888888", +"O c #b4b4b4", +"+ c #c5c5c5", +"@ c None", +/* pixels */ +"@@@@@@@", +"@+O@@@@", +"@XX@@@@", +"@XX@@@@", +"@XX@@@@", +"@XX@@@@", +"@XX@@@@", +"@XX@@@@", +"@XX@@@@", +"@XX+XO@", +"@o +", +"@o.@O o", +"@XX@@ O", +"@XX@Xo@", +"@XXXO@@", +"@o O@@@", +"@OO@@@@" +}; diff --git a/data/pixmaps/feta/6/accidentals--2.xpm b/data/pixmaps/feta/6/accidentals--2.xpm new file mode 100644 index 0000000..813f6ea --- /dev/null +++ b/data/pixmaps/feta/6/accidentals--2.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 17 8 1", +" c Gray4", +". c Gray21", +"X c #515151", +"o c #727272", +"O c Gray54", +"+ c Gray70", +"@ c #c5c5c5", +"# c None", +/* pixels */ +"###########", +"#@+##O@####", +"#oo## o####", +"#oo## +####", +"#oo## @####", +"#oo## #####", +"#oo##.#####", +"#oo#@ #####", +"#oo##X#####", +"#oo@oX#+o+#", +"#O . +", +"#oX#X O#X O", +"#oo#o ##o @", +"#oo+ X##.+#", +"#O X@+O.+##", +"#o.##o +###", +"#@+##++####" +}; diff --git a/data/pixmaps/feta/6/accidentals-0.xpm b/data/pixmaps/feta/6/accidentals-0.xpm new file mode 100644 index 0000000..1cd3b38 --- /dev/null +++ b/data/pixmaps/feta/6/accidentals-0.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 19 6 1", +" c #060606", +". c #2f2f2f", +"X c #5f5f5f", +"o c Gray57", +"O c Gray84", +"+ c None", +/* pixels */ +"++++++", +"+O++++", +"+oO+++", +"+oO+++", +"+oO+++", +"+oXo.o", +"+o o", +"+o o", +"+oO+Oo", +"+oO+Oo", +"+oO+Oo", +"+oO+Oo", +"+o o", +"+o o", +"+o.oXo", +"++++Oo", +"++++Oo", +"++++Oo", +"+++++O" +}; diff --git a/data/pixmaps/feta/6/accidentals-1.xpm b/data/pixmaps/feta/6/accidentals-1.xpm new file mode 100644 index 0000000..d44e4f4 --- /dev/null +++ b/data/pixmaps/feta/6/accidentals-1.xpm @@ -0,0 +1,34 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 20 8 1", +" c #020202", +". c #2d2d2d", +"X c Gray31", +"o c #777777", +"O c Gray59", +"+ c Gray66", +"@ c #c6c6c6", +"# c None", +/* pixels */ +"########", +"#####@##", +"##@@#+@#", +"##@+#+@#", +"##@+#+@#", +"##++#+X@", +"##@Oo o", +"#@. .@", +"#o oO@#", +"#@XO#++#", +"##@+#+@#", +"##@+#OX@", +"##@Oo o", +"#@. .@", +"#o oO@#", +"#@XO#++#", +"##@+#+@#", +"##@+#+@#", +"##@+#@@#", +"##@@####" +}; diff --git a/data/pixmaps/feta/6/accidentals-2.xpm b/data/pixmaps/feta/6/accidentals-2.xpm new file mode 100644 index 0000000..8ecbe47 --- /dev/null +++ b/data/pixmaps/feta/6/accidentals-2.xpm @@ -0,0 +1,20 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 8 6 1", +" c #0e0e0e", +". c #767676", +"X c Gray54", +"o c Gray75", +"O c Gray80", +"+ c None", +/* pixels */ +"++++++++", +"+O.o+O.O", +"+X + X", +"+O . o", +"+++. .++", +"+o . o", +"+X O X", +"+O.O+o.O" +}; diff --git a/data/pixmaps/feta/6/accordion-accBB.xpm b/data/pixmaps/feta/6/accordion-accBB.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/6/accordion-accBayanbase.xpm b/data/pixmaps/feta/6/accordion-accBayanbase.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/6/accordion-accDiscant.xpm b/data/pixmaps/feta/6/accordion-accDiscant.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/6/accordion-accDot.xpm b/data/pixmaps/feta/6/accordion-accDot.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/6/accordion-accFreebase.xpm b/data/pixmaps/feta/6/accordion-accFreebase.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/6/accordion-accOldEE.xpm b/data/pixmaps/feta/6/accordion-accOldEE.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/6/accordion-accOldEES.xpm b/data/pixmaps/feta/6/accordion-accOldEES.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/6/accordion-accSB.xpm b/data/pixmaps/feta/6/accordion-accSB.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/6/accordion-accStdbase.xpm b/data/pixmaps/feta/6/accordion-accStdbase.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/6/clefs-C.xpm b/data/pixmaps/feta/6/clefs-C.xpm new file mode 100644 index 0000000..74f0e4e --- /dev/null +++ b/data/pixmaps/feta/6/clefs-C.xpm @@ -0,0 +1,39 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"18 25 8 1", +" c #040404", +". c Gray21", +"X c #515151", +"o c #747474", +"O c #909090", +"+ c #b1b1b1", +"@ c #cdcdcd", +"# c None", +/* pixels */ +"##################", +"##########+oo+####", +"#O OOo##oXo .+##", +"#O OOX#. @##X +#", +"#O Ooo@ .##O #", +"#O Ooo+ ### +", +"#O Ooo#o @### O", +"#O +OX####### O", +"#O OOX#XO#### O", +"#O Ooo# o###@ @", +"#O OOo# @##o o#", +"#O OooO ..X. O##", +"#O OO #@o.O@###", +"#O OO ###@@####", +"#O OOXX +o o###", +"#O Ooo+ o@@. @#", +"#O Ooo# o###+ #", +"#O OOo# o#### +", +"#O OOX#+@#### O", +"#O Ooo#@+#### O", +"#O Ooo@ o### +", +"#O OOOO ##@ #", +"#O OOo# +##X +#", +"#O Ooo#+ oo .+##", +"#@oo@@+###ooo+####" +}; diff --git a/data/pixmaps/feta/6/clefs-C_change.xpm b/data/pixmaps/feta/6/clefs-C_change.xpm new file mode 100644 index 0000000..6e595fe --- /dev/null +++ b/data/pixmaps/feta/6/clefs-C_change.xpm @@ -0,0 +1,34 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 20 8 1", +" c #010101", +". c Gray19", +"X c #565656", +"o c #6f6f6f", +"O c Gray53", +"+ c Gray69", +"@ c #c8c8c8", +"# c None", +/* pixels */ +"##############", +"########Oo+###", +"#O .@+#oXo .##", +"#O .@+O ##+ .#", +"#O .@+o X##. +", +"#O .@++ +##. O", +"#O .@+#+###. o", +"#O .@++.###. @", +"#O .++X +#+ o#", +"#O .@X ....o##", +"#O .@ @#+@###", +"#O .@. OO.X+##", +"#O .@O. X@O o#", +"#O .@+o.###. @", +"#O .@+@o###. o", +"#O .++#O###. O", +"#O .@+o X##. +", +"#O .@+X O#+ .#", +"#O .@+#.oo .##", +"#@o+#@#@oX+###" +}; diff --git a/data/pixmaps/feta/6/clefs-F.xpm b/data/pixmaps/feta/6/clefs-F.xpm new file mode 100644 index 0000000..48ae4b2 --- /dev/null +++ b/data/pixmaps/feta/6/clefs-F.xpm @@ -0,0 +1,35 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"18 21 8 1", +" c #040404", +". c #353535", +"X c #484848", +"o c #7b7b7b", +"O c Gray54", +"+ c Gray71", +"@ c #c6c6c6", +"# c None", +/* pixels */ +"##################", +"######+OOo+#######", +"####+.o@#O .@#####", +"###+ +####O +#+o#", +"###..###### X# O", +"##+ +####X @@ +", +"##o X####o O###", +"##o ####o O###", +"##+ ####O o###", +"###X +####o O@ +", +"########### # O", +"##########+ X#+o#", +"##########X +####", +"#########o X#####", +"########+ X######", +"#######+ X#######", +"######+ O########", +"#####X .@#########", +"###+..@###########", +"##o.+#############", +"#@O###############" +}; diff --git a/data/pixmaps/feta/6/clefs-F_change.xpm b/data/pixmaps/feta/6/clefs-F_change.xpm new file mode 100644 index 0000000..6cb9327 --- /dev/null +++ b/data/pixmaps/feta/6/clefs-F_change.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"15 17 8 1", +" c Gray3", +". c Gray19", +"X c Gray33", +"o c #747474", +"O c #939393", +"+ c Gray68", +"@ c #d3d3d3", +"# c None", +/* pixels */ +"###############", +"#####+ooo######", +"####. oO. +####", +"###.X####X +@ +", +"##+ X+###O o@ O", +"##o +### ###", +"##o o### ###", +"##@. @### #@@", +"###@+@###@ o+ O", +"#########o @#o@", +"######### X####", +"########X.#####", +"#######X.######", +"#####@XX@######", +"####O.O########", +"##oXO##########", +"#@O############" +}; diff --git a/data/pixmaps/feta/6/clefs-G.xpm b/data/pixmaps/feta/6/clefs-G.xpm new file mode 100644 index 0000000..e121ee9 --- /dev/null +++ b/data/pixmaps/feta/6/clefs-G.xpm @@ -0,0 +1,60 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"17 46 8 1", +" c #070707", +". c Gray20", +"X c #4b4b4b", +"o c #747474", +"O c Gray54", +"+ c #b2b2b2", +"@ c #d2d2d2", +"# c None", +/* pixels */ +"#################", +"##########O######", +"#########X O#####", +"########+ #####", +"######## o####", +"#######o OO ####", +"####### X## +###", +"######+ @## o###", +"######O o### ###", +"######O +### ###", +"######O ###+ ###", +"######O ###o ###", +"######@ ### o###", +"####### @#o +###", +"####### O@ X####", +"#######ooX +####", +"#######o O#####", +"#######X X######", +"######o X#######", +"#####+ @#######", +"####+ .o#######", +"#### @oo#######", +"###X +#oo#######", +"##+ X##+ @######", +"##X ##@X O####", +"## o#+ +##", +"#O @# ..O +#", +"#O X#O X#oo##X X#", +"#O O#o ##oo###X @", +"#O o#O ##+ ###+ O", +"## o## o#@ #### O", +"##. @#+ +#.@### +", +"##+ o##+.+oo##+.#", +"###+ +####oo##.+#", +"####+.Xo@#o.+X+##", +"######+X . o@###", +"##########@ #####", +"########### +####", +"###########oo####", +"####X +###+o####", +"###+ ###@O####", +"###o ###@O####", +"###O ###+O####", +"#### +###X@####", +"####+ o++.+#####", +"######OoOO@######" +}; diff --git a/data/pixmaps/feta/6/clefs-G_change.xpm b/data/pixmaps/feta/6/clefs-G_change.xpm new file mode 100644 index 0000000..480086d --- /dev/null +++ b/data/pixmaps/feta/6/clefs-G_change.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 37 8 1", +" c #060606", +". c #2f2f2f", +"X c #4e4e4e", +"o c Gray46", +"O c Gray55", +"+ c Gray68", +"@ c #cecece", +"# c None", +/* pixels */ +"##############", +"########+#####", +"#######o @####", +"######O X####", +"###### ..@###", +"#####@ @+X###", +"#####X O#+ ###", +"#####X @#+ @##", +"#####X.##O @##", +"#####X.##. ###", +"#####+.#@ .###", +"#####@.#X +###", +"######.X .####", +"######X +####", +"#####@ +#####", +"####@ .######", +"####X X######", +"###o X@ @#####", +"##@ ##.+#####", +"##X +#@..X+###", +"#@ .#+ o##", +"#O +#. X o#", +"#o ## X+ #@X @", +"#o #@ +#.+#+ O", +"#@.##.o#.O## o", +"##XO#@ O.X## o", +"##@.@#@XoX#+ @", +"###@.o@#+ O.O#", +"#####oX. .O##", +"#######@@.@###", +"#########.X###", +"####O+###Oo###", +"###X O##+@###", +"##@ .##++###", +"###. @##X####", +"####. O+XO####", +"#####+oo@#####" +}; diff --git a/data/pixmaps/feta/6/clefs-hufnagel_do.xpm b/data/pixmaps/feta/6/clefs-hufnagel_do.xpm new file mode 100644 index 0000000..1e4bd09 --- /dev/null +++ b/data/pixmaps/feta/6/clefs-hufnagel_do.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 10 8 1", +" c #040404", +". c Gray22", +"X c Gray29", +"o c #7b7b7b", +"O c Gray60", +"+ c Gray73", +"@ c Gray80", +"# c None", +/* pixels */ +"########", +"####@O##", +"##@X .+", +"#@. X#", +"#o .+@##", +"#o .####", +"#o .####", +"#o O###", +"#o +###", +"##o@####" +}; diff --git a/data/pixmaps/feta/6/clefs-hufnagel_do_change.xpm b/data/pixmaps/feta/6/clefs-hufnagel_do_change.xpm new file mode 100644 index 0000000..2efcd7e --- /dev/null +++ b/data/pixmaps/feta/6/clefs-hufnagel_do_change.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 9 7 1", +" c Gray1", +". c Gray28", +"X c Gray49", +"o c Gray55", +"O c #b7b7b7", +"+ c Gray76", +"@ c None", +/* pixels */ +"@@@@@@@", +"@@@+XO@", +"@@O +", +"@+ O@", +"@o X@@@", +"@o o@@@", +"@o O@@", +"@o .@@@", +"@@o@@@@" +}; diff --git a/data/pixmaps/feta/6/clefs-hufnagel_do_fa.xpm b/data/pixmaps/feta/6/clefs-hufnagel_do_fa.xpm new file mode 100644 index 0000000..1783328 --- /dev/null +++ b/data/pixmaps/feta/6/clefs-hufnagel_do_fa.xpm @@ -0,0 +1,39 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 25 8 1", +" c #020202", +". c #2f2f2f", +"X c Gray31", +"o c #797979", +"O c #868686", +"+ c #aeaeae", +"@ c #cacaca", +"# c None", +/* pixels */ +"########", +"####@+##", +"###X X+", +"##. .#", +"#O .o+##", +"#o .####", +"#o .####", +"#O .@###", +"#o O###", +"#+ o####", +"########", +"####@+##", +"###X X@", +"##. X#", +"#O .O+##", +"#o .####", +"#o ...o+", +"#o .#", +"#o .Oo@#", +"#O .####", +"#o .####", +"#O .####", +"#O X####", +"#o @####", +"#+@#####" +}; diff --git a/data/pixmaps/feta/6/clefs-hufnagel_do_fa_change.xpm b/data/pixmaps/feta/6/clefs-hufnagel_do_fa_change.xpm new file mode 100644 index 0000000..ca15e0b --- /dev/null +++ b/data/pixmaps/feta/6/clefs-hufnagel_do_fa_change.xpm @@ -0,0 +1,37 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 23 8 1", +" c Gray1", +". c #202020", +"X c Gray31", +"o c Gray47", +"O c #8d8d8d", +"+ c Gray70", +"@ c Gray81", +"# c None", +/* pixels */ +"#######", +"###+O@#", +"##O +", +"#+ O#", +"#o +###", +"#O +###", +"#o .###", +"#O o###", +"##O####", +"#######", +"#######", +"###@O##", +"##O +", +"#+ O#", +"#o +###", +"#o X.X@", +"#o .#", +"#o XO@#", +"#O +###", +"#o +###", +"#o +###", +"#oX####", +"#@#####" +}; diff --git a/data/pixmaps/feta/6/clefs-hufnagel_fa.xpm b/data/pixmaps/feta/6/clefs-hufnagel_fa.xpm new file mode 100644 index 0000000..f728313 --- /dev/null +++ b/data/pixmaps/feta/6/clefs-hufnagel_fa.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 15 8 1", +" c #040404", +". c #373737", +"X c #4c4c4c", +"o c Gray47", +"O c #9a9a9a", +"+ c #b2b2b2", +"@ c Gray79", +"# c None", +/* pixels */ +"########", +"####@O##", +"###O X+", +"## .#", +"#o .+@##", +"#o X####", +"#o . o#", +"#o X#", +"#O .oX##", +"#o .####", +"#o .####", +"#o .####", +"#O .####", +"#o.#####", +"#@######" +}; diff --git a/data/pixmaps/feta/6/clefs-hufnagel_fa_change.xpm b/data/pixmaps/feta/6/clefs-hufnagel_fa_change.xpm new file mode 100644 index 0000000..ec04757 --- /dev/null +++ b/data/pixmaps/feta/6/clefs-hufnagel_fa_change.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 13 8 1", +" c #010101", +". c Gray17", +"X c #4b4b4b", +"o c #767676", +"O c Gray54", +"+ c #b4b4b4", +"@ c #c5c5c5", +"# c None", +/* pixels */ +"#######", +"####+##", +"###. .#", +"##. O#", +"#O O+##", +"#O oXX@", +"#o .#", +"#o XO@#", +"#O +###", +"#o +###", +"#o +###", +"#oX####", +"#@#####" +}; diff --git a/data/pixmaps/feta/6/clefs-medicaea_do.xpm b/data/pixmaps/feta/6/clefs-medicaea_do.xpm new file mode 100644 index 0000000..04eedf3 --- /dev/null +++ b/data/pixmaps/feta/6/clefs-medicaea_do.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 20 7 1", +" c #020202", +". c #323232", +"X c #444444", +"o c Gray57", +"O c Gray72", +"+ c #d3d3d3", +"@ c None", +/* pixels */ +"@@@@@@@@", +"@+@@@@@@", +"@o+@@@@@", +"@o+@@@@@", +"@o+@@@@@", +"@o.+@@@@", +"@o .O@@", +"@o .+", +"@ooX o", +"@o+@OX o", +"@oo@@@OO", +"@o XO@@@", +"@o XO@", +"@o. o", +"@o++. o", +"@o+@@O.o", +"@o+@@@@@", +"@o+@@@@@", +"@o+@@@@@", +"@+@@@@@@" +}; diff --git a/data/pixmaps/feta/6/clefs-medicaea_do_change.xpm b/data/pixmaps/feta/6/clefs-medicaea_do_change.xpm new file mode 100644 index 0000000..72c9a83 --- /dev/null +++ b/data/pixmaps/feta/6/clefs-medicaea_do_change.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 16 7 1", +" c Gray1", +". c Gray18", +"X c #464646", +"o c Gray57", +"O c #b7b7b7", +"+ c Gray82", +"@ c None", +/* pixels */ +"@@@@@@@", +"@+@@@@@", +"@o+@@@@", +"@oo@@@@", +"@o X+@@", +"@o .+", +"@ooX o", +"@o+@+.o", +"@o+@@@@", +"@o.+@@@", +"@o XO@", +"@o. o", +"@o++. o", +"@o+@@OO", +"@o+@@@@", +"@+@@@@@" +}; diff --git a/data/pixmaps/feta/6/clefs-medicaea_fa.xpm b/data/pixmaps/feta/6/clefs-medicaea_fa.xpm new file mode 100644 index 0000000..4f42fe4 --- /dev/null +++ b/data/pixmaps/feta/6/clefs-medicaea_fa.xpm @@ -0,0 +1,34 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 20 8 1", +" c #040404", +". c Gray20", +"X c #444444", +"o c Gray46", +"O c #8d8d8d", +"+ c Gray72", +"@ c Gray82", +"# c None", +/* pixels */ +"############", +"#####@######", +"#####O@#####", +"#####O@#####", +"#####O@#####", +"#####o.@####", +"#####o .@##", +"#@oO#O .@", +"#O #OOX O", +"#O #O@#+X O", +"#O #OO###++", +"#O #O .+###", +"#O #O .+#", +"###O#O. O", +"###O#O@@. O", +"###O#O@##@.O", +"###O#O@#####", +"###O#O@#####", +"###O#O@#####", +"###@#@######" +}; diff --git a/data/pixmaps/feta/6/clefs-medicaea_fa_change.xpm b/data/pixmaps/feta/6/clefs-medicaea_fa_change.xpm new file mode 100644 index 0000000..8d6159d --- /dev/null +++ b/data/pixmaps/feta/6/clefs-medicaea_fa_change.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 16 8 1", +" c Gray1", +". c Gray19", +"X c #535353", +"o c #6c6c6c", +"O c #8e8e8e", +"+ c #aeaeae", +"@ c #cbcbcb", +"# c None", +/* pixels */ +"##########", +"####@#####", +"####O#####", +"####oO####", +"####X .+##", +"####X .#", +"#O +O@X O", +"#O +O##@.+", +"#O +O#####", +"#O +oX@###", +"#@X+o o##", +"##@+o. @", +"##@+O#O. O", +"##@+O###O#", +"##++O#####", +"###@@#####" +}; diff --git a/data/pixmaps/feta/6/clefs-mensural1_c.xpm b/data/pixmaps/feta/6/clefs-mensural1_c.xpm new file mode 100644 index 0000000..d97abf4 --- /dev/null +++ b/data/pixmaps/feta/6/clefs-mensural1_c.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"16 25 7 1", +" c #0b0b0b", +". c Gray17", +"X c Gray49", +"o c #979797", +"O c Gray75", +"+ c #c6c6c6", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@@", +"@+@o@@@@@@@@@o@+", +"@oO.@@@@@@@@@.Oo", +"@oO.@@@@@@@@@.+o", +"@oO.@@@@@@@@@.+o", +"@o+.@@@@@@@@@.+o", +"@o+.@@@@@@@@@.+o", +"@o+.@@@@@@@@@.+o", +"@o+.@@@@@@@@@.+o", +"@o+ XXXXOoXXX +o", +"@o+ X +o", +"@o+ X +o", +"@o+.@@@@@@@@@.+o", +"@o+.@@@@@@@@@.+o", +"@o+ X +o", +"@o+ X +o", +"@o+ oXXoOoXXX +o", +"@o+.@@@@@@@@@.+o", +"@o+.@@@@@@@@@.Oo", +"@o+.@@@@@@@@@.Oo", +"@oO.@@@@@@@@@.+o", +"@oO.@@@@@@@@@.+o", +"@o+.@@@@@@@@@.+o", +"@o+.@@@@@@@@@.Oo", +"@+@o@@@@@@@@@o@+" +}; diff --git a/data/pixmaps/feta/6/clefs-mensural1_c_change.xpm b/data/pixmaps/feta/6/clefs-mensural1_c_change.xpm new file mode 100644 index 0000000..77919b0 --- /dev/null +++ b/data/pixmaps/feta/6/clefs-mensural1_c_change.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 20 5 1", +" c Gray6", +". c Gray60", +"X c #b6b6b6", +"o c #d2d2d2", +"O c None", +/* pixels */ +"OOOOOOOOOOOOOO", +"OoooOOOOOOOooo", +"O.X.OOOOOOO.o.", +"O.X.OOOOOOO.X.", +"O.X.OOOOOOO.X.", +"O.X.OOOOOOO.X.", +"O.o.OOOOOOO.o.", +"O.X.OOOOOOO.X.", +"O.o o.", +"O.o o.", +"O.X.OoooooO.X.", +"O.o o.", +"O.o o.", +"O.X.OOoOOOO.X.", +"O.X.OOOOOOO.X.", +"O.X.OOOOOOO.X.", +"O.X.OOOOOOO.X.", +"O.o.OOOOOOO.X.", +"O.X.OOOOOOO.XX", +"OoooOOOOOOOooo" +}; diff --git a/data/pixmaps/feta/6/clefs-mensural1_f.xpm b/data/pixmaps/feta/6/clefs-mensural1_f.xpm new file mode 100644 index 0000000..9be21ad --- /dev/null +++ b/data/pixmaps/feta/6/clefs-mensural1_f.xpm @@ -0,0 +1,48 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 34 8 1", +" c Gray4", +". c #323232", +"X c #535353", +"o c #717171", +"O c #8d8d8d", +"+ c #aeaeae", +"@ c #dadada", +"# c None", +/* pixels */ +"##############", +"##########++##", +"########## .##", +"#########X. o#", +"#oX#@@ #+X# @", +"#O #.o#O @", +"#O @ ++X#", +"#o.+OO #@ . @#", +"#oo### @#X @#", +"#O oXX ##X o#", +"#O #OX#. @", +"#O ... @ .#+ #", +"#OO###.#X +oo#", +"######O@@ X##", +"######O@#O @##", +"######O@#@O###", +"######O@#@O###", +"######O@#@O###", +"######O@#@O###", +"######O@#@O###", +"######O@#@O###", +"######O@#@O###", +"######O@#@O###", +"######O@#@O###", +"######O@#@O###", +"######O@#@O###", +"######O@#@O###", +"######O@#@O###", +"######O@#@O###", +"######O@#@O###", +"######O@#@O###", +"#########@O###", +"#########@O###", +"##########@###" +}; diff --git a/data/pixmaps/feta/6/clefs-mensural1_f_change.xpm b/data/pixmaps/feta/6/clefs-mensural1_f_change.xpm new file mode 100644 index 0000000..943f427 --- /dev/null +++ b/data/pixmaps/feta/6/clefs-mensural1_f_change.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 28 8 1", +" c #060606", +". c Gray19", +"X c Gray29", +"o c Gray43", +"O c Gray56", +"+ c #afafaf", +"@ c #d0d0d0", +"# c None", +/* pixels */ +"###########", +"########O@#", +"#######+ o#", +"#######oO @", +"#O@#@O+.# +", +"#O X@ +o#", +"#O ..X#X +#", +"#O@@@o#+ @#", +"#o .#O .#", +"#O ..X@X@ O", +"#+###Oo.#X+", +"#####O@ .o#", +"#####O#O ##", +"#####o#OX##", +"#####O#OX##", +"#####O#OX##", +"#####o#OX##", +"#####O#+X##", +"#####O#OX##", +"#####O#OX##", +"#####o#OX##", +"#####O#+X##", +"#####O#OX##", +"#####O#OX##", +"#####O#OX##", +"#####+#OX##", +"#######OX##", +"#######@+##" +}; diff --git a/data/pixmaps/feta/6/clefs-mensural2_c.xpm b/data/pixmaps/feta/6/clefs-mensural2_c.xpm new file mode 100644 index 0000000..252eca2 --- /dev/null +++ b/data/pixmaps/feta/6/clefs-mensural2_c.xpm @@ -0,0 +1,39 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 25 8 1", +" c #020202", +". c #393939", +"X c Gray27", +"o c #6c6c6c", +"O c #8e8e8e", +"+ c #b9b9b9", +"@ c #cacaca", +"# c None", +/* pixels */ +"#######", +"#+@##@+", +"#oO##Oo", +"#oO##Oo", +"#oO##Oo", +"#oO##Oo", +"#oO##Oo", +"#oO##oo", +"#o o", +"#o.OO.o", +"#oO##Oo", +"#o O", +"#oXOOXo", +"#oX+OXo", +"#o o", +"#oO##Oo", +"#o.OO.o", +"#o o", +"#oO##Oo", +"#oO##Oo", +"#oO##Oo", +"#oO##Oo", +"#oO##Oo", +"#oO##Oo", +"#++##@+" +}; diff --git a/data/pixmaps/feta/6/clefs-mensural2_c_change.xpm b/data/pixmaps/feta/6/clefs-mensural2_c_change.xpm new file mode 100644 index 0000000..c57f7c1 --- /dev/null +++ b/data/pixmaps/feta/6/clefs-mensural2_c_change.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 21 5 1", +" c Gray0", +". c #767676", +"X c #929292", +"o c Gray80", +"O c None", +/* pixels */ +"OOOOOO", +"OoOOOo", +"OXOOOX", +"OXOOOX", +"OXOOOX", +"OXOOoX", +"O. . .", +"OX.o.X", +"OXOOOX", +"O. . .", +"OX.o.X", +"OX.o.X", +"O. X .", +"OXOOOX", +"OX.o..", +"O. . .", +"OXOOOX", +"OXOOOX", +"OXOOOX", +"OXOOOX", +"OoOOOo" +}; diff --git a/data/pixmaps/feta/6/clefs-mensural2_f.xpm b/data/pixmaps/feta/6/clefs-mensural2_f.xpm new file mode 100644 index 0000000..0dad4cc --- /dev/null +++ b/data/pixmaps/feta/6/clefs-mensural2_f.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 10 8 1", +" c Gray2", +". c Gray21", +"X c #444444", +"o c #767676", +"O c #8b8b8b", +"+ c #b4b4b4", +"@ c #c5c5c5", +"# c None", +/* pixels */ +"##########", +"##O+###O##", +"#O X#O @", +"##@X O#oX#", +"#### ####", +"####o ####", +"####o.####", +"####.+@.+#", +"#+ +#+ #", +"#@o####+O#" +}; diff --git a/data/pixmaps/feta/6/clefs-mensural2_f_change.xpm b/data/pixmaps/feta/6/clefs-mensural2_f_change.xpm new file mode 100644 index 0000000..20f326f --- /dev/null +++ b/data/pixmaps/feta/6/clefs-mensural2_f_change.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 10 8 1", +" c #060606", +". c Gray24", +"X c #444444", +"o c #747474", +"O c Gray55", +"+ c #b1b1b1", +"@ c Gray80", +"# c None", +/* pixels */ +"#########", +"##o@##@+#", +"#@ o#o +", +"###O @#o+", +"####.X###", +"####+.###", +"####+o###", +"###@.#+o#", +"#@oX@#O O", +"#@o####@#" +}; diff --git a/data/pixmaps/feta/6/clefs-mensural3_c.xpm b/data/pixmaps/feta/6/clefs-mensural3_c.xpm new file mode 100644 index 0000000..540d579 --- /dev/null +++ b/data/pixmaps/feta/6/clefs-mensural3_c.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 30 8 1", +" c Gray2", +". c Gray18", +"X c Gray34", +"o c Gray43", +"O c #8d8d8d", +"+ c #bbbbbb", +"@ c #d0d0d0", +"# c None", +/* pixels */ +"#######", +"#+@##@+", +"#oO##Oo", +"#oO##Oo", +"#oO##Oo", +"#oO##OX", +"#oO##Oo", +"#oo##oo", +"#o o", +"#oX+@Xo", +"#oo##oo", +"#o o", +"#oo@@oo", +"#o XX o", +"#o .. o", +"#oO##Oo", +"#o .. o", +"#o XX.o", +"#oo@@oo", +"#o o", +"#oo##oo", +"#oX++Xo", +"#o o", +"#oo##oo", +"#oO##Oo", +"#oO##Oo", +"#oO##Oo", +"#oO##Oo", +"#oO##OX", +"#+@##@+" +}; diff --git a/data/pixmaps/feta/6/clefs-mensural3_c_change.xpm b/data/pixmaps/feta/6/clefs-mensural3_c_change.xpm new file mode 100644 index 0000000..552039c --- /dev/null +++ b/data/pixmaps/feta/6/clefs-mensural3_c_change.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 26 8 1", +" c #060606", +". c #343434", +"X c #565656", +"o c Gray47", +"O c #929292", +"+ c #b2b2b2", +"@ c Gray82", +"# c None", +/* pixels */ +"######", +"#@###@", +"#O##@O", +"#O###O", +"#O###O", +"#O@#@O", +"#o o", +"#OO+OO", +"#O@#@O", +"#o o", +"#O+@+O", +"#O.X.O", +"#o . o", +"#O###O", +"#o . o", +"#O.X.O", +"#O+@+O", +"#o o", +"#O@#@O", +"#OO+OO", +"#o o", +"#O@#@O", +"#O###O", +"#O@##O", +"#O###O", +"#@###@" +}; diff --git a/data/pixmaps/feta/6/clefs-mensural_g.xpm b/data/pixmaps/feta/6/clefs-mensural_g.xpm new file mode 100644 index 0000000..501c19f --- /dev/null +++ b/data/pixmaps/feta/6/clefs-mensural_g.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 15 8 1", +" c #060606", +". c #323232", +"X c Gray31", +"o c #717171", +"O c #868686", +"+ c Gray72", +"@ c #c3c3c3", +"# c None", +/* pixels */ +"#########", +"#####++##", +"##### .##", +"##### .+#", +"#####+ +", +"####o##Xo", +"###X o o", +"##o . +", +"## @O X##", +"#oo#o X#", +"#oX#oo@ #", +"#O #oo# #", +"## X.o+.#", +"##+ +#", +"####@o@##" +}; diff --git a/data/pixmaps/feta/6/clefs-mensural_g_change.xpm b/data/pixmaps/feta/6/clefs-mensural_g_change.xpm new file mode 100644 index 0000000..b3d89b3 --- /dev/null +++ b/data/pixmaps/feta/6/clefs-mensural_g_change.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 13 8 1", +" c Gray1", +". c #252525", +"X c #565656", +"o c #6c6c6c", +"O c #959595", +"+ c Gray70", +"@ c #cecece", +"# c None", +/* pixels */ +"#######", +"####O@#", +"###@ o#", +"###@ O#", +"####O +", +"###.X o", +"##. X.+", +"#OoX O#", +"#oOo #", +"#oOX++@", +"#@..@o@", +"##O X#", +"####O@#" +}; diff --git a/data/pixmaps/feta/6/clefs-percussion.xpm b/data/pixmaps/feta/6/clefs-percussion.xpm new file mode 100644 index 0000000..7827bdc --- /dev/null +++ b/data/pixmaps/feta/6/clefs-percussion.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 13 7 1", +" c Gray0", +". c Gray21", +"X c Gray49", +"o c #818181", +"O c #a2a2a2", +"+ c Gray77", +"@ c None", +/* pixels */ +"@@@@@@@@@", +"@+XO@@OX+", +"@X .@@. X", +"@o .@@. o", +"@X .@@. X", +"@X .@@. X", +"@X .@@. X", +"@X .@@. X", +"@X .@@. X", +"@X .@@. X", +"@o .@@. o", +"@X .@@. X", +"@+XO@@OX+" +}; diff --git a/data/pixmaps/feta/6/clefs-percussion_change.xpm b/data/pixmaps/feta/6/clefs-percussion_change.xpm new file mode 100644 index 0000000..b0c723c --- /dev/null +++ b/data/pixmaps/feta/6/clefs-percussion_change.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 11 5 1", +" c Gray0", +". c #7c7c7c", +"X c Gray55", +"o c #c8c8c8", +"O c None", +/* pixels */ +"OOOOOOOO", +"Oo.oOo.o", +"OX .O. X", +"OX XOX X", +"OX XO. X", +"OX .O. X", +"OX .O. X", +"OX .OX X", +"OX XO. X", +"OX .O. X", +"Oo.oOo.o" +}; diff --git a/data/pixmaps/feta/6/clefs-tab.xpm b/data/pixmaps/feta/6/clefs-tab.xpm new file mode 100644 index 0000000..faf3d14 --- /dev/null +++ b/data/pixmaps/feta/6/clefs-tab.xpm @@ -0,0 +1,43 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 29 8 1", +" c #010101", +". c #323232", +"X c #4c4c4c", +"o c #767676", +"O c #888888", +"+ c #b1b1b1", +"@ c Gray82", +"# c None", +/* pixels */ +"###########", +"#@oOoOOOOo@", +"#o o", +"#####X @###", +"#####X @###", +"#####X @###", +"#####X @###", +"#####X @###", +"#####X @###", +"#####o @###", +"###########", +"####@XX@###", +"####o o###", +"####....###", +"###+ ++ +##", +"###X @+ X##", +"##+ +#", +"##X +@@+ X#", +"## X####X #", +"##@#####@@#", +"#@+++++@###", +"#o X##", +"#O O###o o#", +"#O o+O+. O#", +"#o X#", +"#O O#@##o O", +"#O +####o O", +"#O .#", +"#@oOoOoo@##" +}; diff --git a/data/pixmaps/feta/6/clefs-tab_change.xpm b/data/pixmaps/feta/6/clefs-tab_change.xpm new file mode 100644 index 0000000..e6da9a9 --- /dev/null +++ b/data/pixmaps/feta/6/clefs-tab_change.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 24 8 1", +" c Gray2", +". c #343434", +"X c Gray30", +"o c Gray45", +"O c #868686", +"+ c Gray71", +"@ c #c3c3c3", +"# c None", +/* pixels */ +"#########", +"#@ooOooo#", +"#+Xo .oo#", +"#### o###", +"#### o###", +"#### o###", +"#### o###", +"#### O###", +"#########", +"#### o###", +"###O ###", +"### o o##", +"##O #o ##", +"##X . +#", +"#+ +##..#", +"#O ###O #", +"####@####", +"#O O##", +"#O ##+ o#", +"#O oo. +#", +"#O oooX @", +"#O #### O", +"#O oXo. @", +"#@ooooo##" +}; diff --git a/data/pixmaps/feta/6/clefs-vaticana_do.xpm b/data/pixmaps/feta/6/clefs-vaticana_do.xpm new file mode 100644 index 0000000..e2e3b7c --- /dev/null +++ b/data/pixmaps/feta/6/clefs-vaticana_do.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"5 11 4 1", +" c #020202", +". c #898989", +"X c Gray72", +"o c None", +/* pixels */ +"ooooo", +"ooX.o", +"oX .", +"o. .", +"o. X", +"o.Xoo", +"o.Xoo", +"o. X", +"o. .", +"oX .", +"ooX.o" +}; diff --git a/data/pixmaps/feta/6/clefs-vaticana_do_change.xpm b/data/pixmaps/feta/6/clefs-vaticana_do_change.xpm new file mode 100644 index 0000000..e2e3b7c --- /dev/null +++ b/data/pixmaps/feta/6/clefs-vaticana_do_change.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"5 11 4 1", +" c #020202", +". c #898989", +"X c Gray72", +"o c None", +/* pixels */ +"ooooo", +"ooX.o", +"oX .", +"o. .", +"o. X", +"o.Xoo", +"o.Xoo", +"o. X", +"o. .", +"oX .", +"ooX.o" +}; diff --git a/data/pixmaps/feta/6/clefs-vaticana_fa.xpm b/data/pixmaps/feta/6/clefs-vaticana_fa.xpm new file mode 100644 index 0000000..0f74f94 --- /dev/null +++ b/data/pixmaps/feta/6/clefs-vaticana_fa.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 15 8 1", +" c Gray2", +". c #2a2a2a", +"X c #4e4e4e", +"o c #777777", +"O c #898989", +"+ c #afafaf", +"@ c #d0d0d0", +"# c None", +/* pixels */ +"#######", +"####@o+", +"###@ O", +"###+ o", +"#+ . O", +"#o +##", +"#o. o@@", +"#@#X O", +"###X o", +"###OX o", +"###O#@#", +"###O###", +"###O###", +"###O###", +"###@###" +}; diff --git a/data/pixmaps/feta/6/clefs-vaticana_fa_change.xpm b/data/pixmaps/feta/6/clefs-vaticana_fa_change.xpm new file mode 100644 index 0000000..0f74f94 --- /dev/null +++ b/data/pixmaps/feta/6/clefs-vaticana_fa_change.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 15 8 1", +" c Gray2", +". c #2a2a2a", +"X c #4e4e4e", +"o c #777777", +"O c #898989", +"+ c #afafaf", +"@ c #d0d0d0", +"# c None", +/* pixels */ +"#######", +"####@o+", +"###@ O", +"###+ o", +"#+ . O", +"#o +##", +"#o. o@@", +"#@#X O", +"###X o", +"###OX o", +"###O#@#", +"###O###", +"###O###", +"###O###", +"###@###" +}; diff --git a/data/pixmaps/feta/6/custodes-hufnagel.xpm b/data/pixmaps/feta/6/custodes-hufnagel.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/6/custodes-medicaea.xpm b/data/pixmaps/feta/6/custodes-medicaea.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/6/custodes-mensural.xpm b/data/pixmaps/feta/6/custodes-mensural.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/6/custodes-rhufnagel.xpm b/data/pixmaps/feta/6/custodes-rhufnagel.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/6/custodes-rmedicaea.xpm b/data/pixmaps/feta/6/custodes-rmedicaea.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/6/custodes-rmensural.xpm b/data/pixmaps/feta/6/custodes-rmensural.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/6/custodes-rvaticana.xpm b/data/pixmaps/feta/6/custodes-rvaticana.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/6/custodes-vaticana.xpm b/data/pixmaps/feta/6/custodes-vaticana.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/6/dots-dot.xpm b/data/pixmaps/feta/6/dots-dot.xpm new file mode 100644 index 0000000..b78d7fd --- /dev/null +++ b/data/pixmaps/feta/6/dots-dot.xpm @@ -0,0 +1,17 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"4 4 7 1", +" c Gray0", +". c Gray35", +"X c #717171", +"o c #898989", +"O c #a9a9a9", +"+ c #d3d3d3", +"@ c None", +/* pixels */ +"@@@@", +"@@O@", +"@o X", +"@+.O" +}; diff --git a/data/pixmaps/feta/6/dots-evenrepeatcolon.xpm b/data/pixmaps/feta/6/dots-evenrepeatcolon.xpm new file mode 100644 index 0000000..800f78e --- /dev/null +++ b/data/pixmaps/feta/6/dots-evenrepeatcolon.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"4 16 4 1", +" c Gray0", +". c #767676", +"X c #a5a5a5", +"o c None", +/* pixels */ +"oooo", +"oo.o", +"o. .", +"oX X", +"oooo", +"oooo", +"oooo", +"oooo", +"oooo", +"oooo", +"oooo", +"oooo", +"oooo", +"oX X", +"o. .", +"oo.o" +}; diff --git a/data/pixmaps/feta/6/dots-repeatcolon.xpm b/data/pixmaps/feta/6/dots-repeatcolon.xpm new file mode 100644 index 0000000..b656783 --- /dev/null +++ b/data/pixmaps/feta/6/dots-repeatcolon.xpm @@ -0,0 +1,20 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"4 10 4 1", +" c Gray0", +". c #767676", +"X c #a5a5a5", +"o c None", +/* pixels */ +"oooo", +"oo.o", +"o. .", +"oX X", +"oooo", +"oooo", +"oooo", +"oX X", +"o. .", +"oo.o" +}; diff --git a/data/pixmaps/feta/6/flags-d3.xpm b/data/pixmaps/feta/6/flags-d3.xpm new file mode 100644 index 0000000..7b4e1da --- /dev/null +++ b/data/pixmaps/feta/6/flags-d3.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 19 8 1", +" c #040404", +". c #2d2d2d", +"X c Gray33", +"o c #727272", +"O c Gray56", +"+ c Gray68", +"@ c #d2d2d2", +"# c None", +/* pixels */ +"########", +"#####@@#", +"#####@X#", +"######.@", +"######X+", +"######Oo", +"#@####OX", +"#O####Oo", +"#+####.@", +"#O@##XX#", +"#O@#o.##", +"#O@o O##", +"#o O###", +"#O o####", +"#o @####", +"#oX#####", +"#O+#####", +"#O@#####", +"#@######" +}; diff --git a/data/pixmaps/feta/6/flags-d4.xpm b/data/pixmaps/feta/6/flags-d4.xpm new file mode 100644 index 0000000..0860fcb --- /dev/null +++ b/data/pixmaps/feta/6/flags-d4.xpm @@ -0,0 +1,34 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 20 8 1", +" c Gray6", +". c Gray20", +"X c #515151", +"o c #6f6f6f", +"O c #8d8d8d", +"+ c Gray69", +"@ c #d5d5d5", +"# c None", +/* pixels */ +"########", +"######@@", +"######Oo", +"######Oo", +"######Oo", +"######.@", +"#####XX#", +"#@##o O#", +"#O@. #+@", +"#o @#O@", +"#o @##X#", +"#oX##oO#", +"#O+#o.##", +"#O@o ###", +"#O @###", +"#o @####", +"#oX#####", +"#O+#####", +"#O@#####", +"#@######" +}; diff --git a/data/pixmaps/feta/6/flags-d5.xpm b/data/pixmaps/feta/6/flags-d5.xpm new file mode 100644 index 0000000..e14e509 --- /dev/null +++ b/data/pixmaps/feta/6/flags-d5.xpm @@ -0,0 +1,39 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 25 8 1", +" c #0c0c0c", +". c Gray17", +"X c Gray32", +"o c #6f6f6f", +"O c #8d8d8d", +"+ c #aeaeae", +"@ c Gray83", +"# c None", +/* pixels */ +"########", +"######@@", +"######Oo", +"######Oo", +"######Oo", +"######.@", +"#####o #", +"###@X.X@", +"##o #Oo", +"#@ @#oo", +"#@ @##.+", +"#@o##oX#", +"#+@#o.X@", +"#++. #+@", +"#o @#O@", +"#o @##O#", +"#oX##o@#", +"#O+#oo##", +"#+@..###", +"#o @###", +"#o @####", +"#oX#####", +"#O+#####", +"#O@#####", +"#@######" +}; diff --git a/data/pixmaps/feta/6/flags-d6.xpm b/data/pixmaps/feta/6/flags-d6.xpm new file mode 100644 index 0000000..f513b63 --- /dev/null +++ b/data/pixmaps/feta/6/flags-d6.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 27 8 1", +" c #070707", +". c #2c2c2c", +"X c Gray31", +"o c #727272", +"O c #8e8e8e", +"+ c #aeaeae", +"@ c #d3d3d3", +"# c None", +/* pixels */ +"########", +"######@+", +"######oo", +"######Oo", +"######XO", +"####@. O", +"##o. Ooo", +"#@ .+#Xo", +"#@.@#+ @", +"#@+#+.X@", +"##@o ++@", +"##. +#O@", +"#@ +##O#", +"#@X##OX#", +"#@+#+XO#", +"#O#XX@o#", +"#O .#+o#", +"#o +#X@#", +"#o.#Oo##", +"#o++ @##", +"#+O @###", +"#O o####", +"#o #####", +"#oo#####", +"#O@#####", +"#O######", +"#@######" +}; diff --git a/data/pixmaps/feta/6/flags-dgrace.xpm b/data/pixmaps/feta/6/flags-dgrace.xpm new file mode 100644 index 0000000..7f1ff2e --- /dev/null +++ b/data/pixmaps/feta/6/flags-dgrace.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"15 9 7 1", +" c Gray5", +". c #2f2f2f", +"X c Gray36", +"o c #6f6f6f", +"O c #b1b1b1", +"+ c Gray80", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@", +"@++@@@@@@@@@@@@", +"@O o+@@@@@@@@@@", +"@@@o.o@@@@@@@@@", +"@@@@@o XO@@@@@@", +"@@@@@@@oX.O@@@@", +"@@@@@@@@@O..O@@", +"@@@@@@@@@@@O..+", +"@@@@@@@@@@@@@OO" +}; diff --git a/data/pixmaps/feta/6/flags-dstem.xpm b/data/pixmaps/feta/6/flags-dstem.xpm new file mode 100644 index 0000000..2d3884e --- /dev/null +++ b/data/pixmaps/feta/6/flags-dstem.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"2 21 3 1", +" c #a7a7a7", +". c Gray84", +"X c None", +/* pixels */ +"XX", +"X.", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X." +}; diff --git a/data/pixmaps/feta/6/flags-stem.xpm b/data/pixmaps/feta/6/flags-stem.xpm new file mode 100644 index 0000000..2d3884e --- /dev/null +++ b/data/pixmaps/feta/6/flags-stem.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"2 21 3 1", +" c #a7a7a7", +". c Gray84", +"X c None", +/* pixels */ +"XX", +"X.", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X." +}; diff --git a/data/pixmaps/feta/6/flags-u3.xpm b/data/pixmaps/feta/6/flags-u3.xpm new file mode 100644 index 0000000..05b4dfd --- /dev/null +++ b/data/pixmaps/feta/6/flags-u3.xpm @@ -0,0 +1,34 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 20 8 1", +" c Gray3", +". c Gray22", +"X c #4b4b4b", +"o c #6f6f6f", +"O c #929292", +"+ c #b2b2b2", +"@ c #d3d3d3", +"# c None", +/* pixels */ +"########", +"#@######", +"#O@#####", +"#OO#####", +"#oX#####", +"#O #####", +"#O O####", +"#O +###", +"#OO ###", +"#O@@ X##", +"#O@#+ +#", +"#O@##o.#", +"#O@### +", +"#@####oo", +"######oo", +"######oo", +"######.+", +"###### #", +"#####Oo#", +"#####++#" +}; diff --git a/data/pixmaps/feta/6/flags-u4.xpm b/data/pixmaps/feta/6/flags-u4.xpm new file mode 100644 index 0000000..404aaf3 --- /dev/null +++ b/data/pixmaps/feta/6/flags-u4.xpm @@ -0,0 +1,37 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 23 8 1", +" c #070707", +". c #353535", +"X c #484848", +"o c #727272", +"O c #8d8d8d", +"+ c Gray68", +"@ c Gray82", +"# c None", +/* pixels */ +"########", +"#@######", +"#O@#####", +"#O+#####", +"#o.#####", +"#O +####", +"#O X####", +"#+O o###", +"#o+@ +##", +"#o.#+ ##", +"#O +#oo#", +"#O ##O#", +"#O+..#O@", +"#@##.XO@", +"#####.X#", +"#####+X#", +"######X+", +"######oo", +"######oo", +"######oo", +"###### @", +"#####+.#", +"#####++#" +}; diff --git a/data/pixmaps/feta/6/flags-u5.xpm b/data/pixmaps/feta/6/flags-u5.xpm new file mode 100644 index 0000000..d36eb12 --- /dev/null +++ b/data/pixmaps/feta/6/flags-u5.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 27 8 1", +" c Gray3", +". c #323232", +"X c Gray29", +"o c #727272", +"O c #8e8e8e", +"+ c #b1b1b1", +"@ c #cecece", +"# c None", +/* pixels */ +"########", +"#@######", +"#O@#####", +"#O+#####", +"#o.#####", +"#O +####", +"#O X####", +"#+O X###", +"#O+@ +##", +"#o.#+ ##", +"#O +#.o#", +"#O #+ #", +"#O+.X# @", +"#++#...#", +"#@X##.o#", +"## +#@X#", +"## +#o@", +"##@. @+@", +"####X O#", +"#####.X#", +"###### +", +"######oo", +"######oo", +"######oo", +"###### #", +"#####+.#", +"#####++#" +}; diff --git a/data/pixmaps/feta/6/flags-u6.xpm b/data/pixmaps/feta/6/flags-u6.xpm new file mode 100644 index 0000000..e078090 --- /dev/null +++ b/data/pixmaps/feta/6/flags-u6.xpm @@ -0,0 +1,47 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 33 8 1", +" c #070707", +". c #343434", +"X c Gray28", +"o c #767676", +"O c #8e8e8e", +"+ c #aeaeae", +"@ c #d5d5d5", +"# c None", +/* pixels */ +"########", +"#@######", +"#O@#####", +"#O+#####", +"#o.#####", +"#O +####", +"#O X####", +"#+O O###", +"#O+@ +##", +"#o.#+X##", +"#O +#X+#", +"#O X#+.#", +"#OO X# #", +"#@@#XO.#", +"#@O##..#", +"## ##+o#", +"## .##O#", +"##+ o#O@", +"####X+O@", +"#@O##.o#", +"## ##+o#", +"## X##O@", +"##X X#O@", +"###+ +O#", +"####+ o#", +"#####+.#", +"######X+", +"######oo", +"######oo", +"######oo", +"###### #", +"#####+.#", +"#####++#" +}; diff --git a/data/pixmaps/feta/6/flags-ugrace.xpm b/data/pixmaps/feta/6/flags-ugrace.xpm new file mode 100644 index 0000000..da65d73 --- /dev/null +++ b/data/pixmaps/feta/6/flags-ugrace.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 10 8 1", +" c #1d1d1d", +". c Gray18", +"X c #505050", +"o c #747474", +"O c #868686", +"+ c #acacac", +"@ c #cbcbcb", +"# c None", +/* pixels */ +"#############", +"###########++", +"##########o.+", +"########@XX@#", +"#######o +###", +"#####@ o#####", +"####o @######", +"##+XO########", +"#+.@#########", +"#@@##########" +}; diff --git a/data/pixmaps/feta/6/noteheads--1.xpm b/data/pixmaps/feta/6/noteheads--1.xpm new file mode 100644 index 0000000..b64eaba --- /dev/null +++ b/data/pixmaps/feta/6/noteheads--1.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"15 8 8 1", +" c #070707", +". c Gray19", +"X c Gray36", +"o c Gray45", +"O c #8d8d8d", +"+ c Gray72", +"@ c #d2d2d2", +"# c None", +/* pixels */ +"###############", +"#@+##+OOoO###++", +"#oXO X@@X .@Xo", +"#O O###O ..O", +"#O o#### O", +"#O #### .o", +"#oXO .+#O .@oo", +"#@+##+ooOO###+@" +}; diff --git a/data/pixmaps/feta/6/noteheads--1mensural.xpm b/data/pixmaps/feta/6/noteheads--1mensural.xpm new file mode 100644 index 0000000..7f5169f --- /dev/null +++ b/data/pixmaps/feta/6/noteheads--1mensural.xpm @@ -0,0 +1,23 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 11 6 1", +" c Gray3", +". c #2a2a2a", +"X c #777777", +"o c #888888", +"O c #cdcdcd", +"+ c None", +/* pixels */ +"+++++++++++++", +"+O++++++++++O", +"+o.oXXXXXXo.X", +"+o o", +"+o o", +"+XX++++++++XX", +"+XX++++++++XX", +"+o . o", +"+o o", +"+o.oXoXXXXo.X", +"+O++++++++++O" +}; diff --git a/data/pixmaps/feta/6/noteheads--2mensural.xpm b/data/pixmaps/feta/6/noteheads--2mensural.xpm new file mode 100644 index 0000000..23eca92 --- /dev/null +++ b/data/pixmaps/feta/6/noteheads--2mensural.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 16 8 1", +" c #020202", +". c #2a2a2a", +"X c #4e4e4e", +"o c #727272", +"O c Gray53", +"+ c #b9b9b9", +"@ c #c8c8c8", +"# c None", +/* pixels */ +"##############", +"#@#########@@#", +"#o.oooooooo.o#", +"#O O#", +"#O ........ o#", +"#oo########oo#", +"#oX#@@@@@@@Xo#", +"#O o#", +"#O o#", +"#Oo@@@@@@@@oX#", +"############ #", +"############X#", +"############oO", +"############oo", +"############oo", +"############++" +}; diff --git a/data/pixmaps/feta/6/noteheads--3mensural.xpm b/data/pixmaps/feta/6/noteheads--3mensural.xpm new file mode 100644 index 0000000..61415bd --- /dev/null +++ b/data/pixmaps/feta/6/noteheads--3mensural.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"17 16 8 1", +" c #040404", +". c Gray17", +"X c Gray35", +"o c #727272", +"O c Gray53", +"+ c Gray73", +"@ c #c8c8c8", +"# c None", +/* pixels */ +"#################", +"#++############O#", +"#o.oooooooooooo #", +"#O #", +"#O ............ #", +"#oo############.@", +"#oX@@@@@@@@@@@+ @", +"#O #", +"#O #", +"#oX@+@@@@@@@@@@ #", +"###############.@", +"###############.#", +"###############.+", +"###############Oo", +"###############oo", +"###############@+" +}; diff --git a/data/pixmaps/feta/6/noteheads-0.xpm b/data/pixmaps/feta/6/noteheads-0.xpm new file mode 100644 index 0000000..3fd6ae2 --- /dev/null +++ b/data/pixmaps/feta/6/noteheads-0.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 8 7 1", +" c Gray1", +". c #2c2c2c", +"X c Gray", +"o c #8e8e8e", +"O c #b7b7b7", +"+ c Gray85", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@", +"@@@@+ooXo+@@@", +"@@O. O@o .O@", +"@O .@@@O O", +"@X .@@@@. o", +"@O O@@@. O", +"@@O. o+O .O@", +"@@@@+oooo+@@@" +}; diff --git a/data/pixmaps/feta/6/noteheads-0cross.xpm b/data/pixmaps/feta/6/noteheads-0cross.xpm new file mode 100644 index 0000000..ce84365 --- /dev/null +++ b/data/pixmaps/feta/6/noteheads-0cross.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 9 7 1", +" c #2a2a2a", +". c Gray30", +"X c Gray43", +"o c #8d8d8d", +"O c #b4b4b4", +"+ c Gray82", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@", +"@@@O+@@@+O@@", +"@@.o.o@o.o.@", +"@O +@X X@+ O", +"@@@.X@@@..@@", +"@@@.X@@@X.@@", +"@O +@X X@+ O", +"@@.o.o@o.o.@", +"@@@O+@@@+O@@" +}; diff --git a/data/pixmaps/feta/6/noteheads-0diamond.xpm b/data/pixmaps/feta/6/noteheads-0diamond.xpm new file mode 100644 index 0000000..4d54160 --- /dev/null +++ b/data/pixmaps/feta/6/noteheads-0diamond.xpm @@ -0,0 +1,20 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 8 6 1", +" c #040404", +". c #2f2f2f", +"X c Gray46", +"o c #8d8d8d", +"O c Gray63", +"+ c None", +/* pixels */ +"+++++++++++++", +"++++++OO+++++", +"+++++. .++++", +"++oX .+O Xo+", +"+o .++. o", +"++oX O+. Xo+", +"+++++. .++++", +"++++++OO+++++" +}; diff --git a/data/pixmaps/feta/6/noteheads-0mensural.xpm b/data/pixmaps/feta/6/noteheads-0mensural.xpm new file mode 100644 index 0000000..837b37d --- /dev/null +++ b/data/pixmaps/feta/6/noteheads-0mensural.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 8 7 1", +" c #131313", +". c #252525", +"X c #464646", +"o c Gray50", +"O c Gray72", +"+ c #d8d8d8", +"@ c None", +/* pixels */ +"@@@@@@@", +"@@@++@@", +"@@+..@@", +"@@XO .@", +"@o @@ o", +"@@. OX+", +"@@@..+@", +"@@@++@@" +}; diff --git a/data/pixmaps/feta/6/noteheads-0slash.xpm b/data/pixmaps/feta/6/noteheads-0slash.xpm new file mode 100644 index 0000000..5e0cb24 --- /dev/null +++ b/data/pixmaps/feta/6/noteheads-0slash.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"18 13 8 1", +" c #020202", +". c Gray17", +"X c Gray25", +"o c #727272", +"O c #8b8b8b", +"+ c #b2b2b2", +"@ c #d5d5d5", +"# c None", +/* pixels */ +"##################", +"#######@OOOOOOOOo@", +"#######O .#", +"######@ .OOOOO +#", +"######. +####+ X##", +"#####O o#####. @##", +"#####. @####o o###", +"####o o####@ .####", +"###@ .#####o O####", +"###. +####+ .#####", +"##+ OOOOO. @#####", +"##. O######", +"#@oOOOOOOOO@######" +}; diff --git a/data/pixmaps/feta/6/noteheads-0triangle.xpm b/data/pixmaps/feta/6/noteheads-0triangle.xpm new file mode 100644 index 0000000..9173460 --- /dev/null +++ b/data/pixmaps/feta/6/noteheads-0triangle.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 7 8 1", +" c #161616", +". c Gray20", +"X c Gray32", +"o c #6f6f6f", +"O c #979797", +"+ c Gray67", +"@ c #cacaca", +"# c None", +/* pixels */ +"#########", +"####++###", +"####..###", +"###XOOX##", +"##@.##.@#", +"## @##@ #", +"#@oOOOOo@" +}; diff --git a/data/pixmaps/feta/6/noteheads-1.xpm b/data/pixmaps/feta/6/noteheads-1.xpm new file mode 100644 index 0000000..e6f75e5 --- /dev/null +++ b/data/pixmaps/feta/6/noteheads-1.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 8 8 1", +" c Gray1", +". c #3c3c3c", +"X c #4c4c4c", +"o c Gray43", +"O c #8b8b8b", +"+ c Gray71", +"@ c Gray77", +"# c None", +/* pixels */ +"##########", +"#####OoOO#", +"###O o#OO", +"##X .@##+O", +"#+ O###O +", +"#O+##@. X#", +"#OO#o o##", +"##OOoO####" +}; diff --git a/data/pixmaps/feta/6/noteheads-1cross.xpm b/data/pixmaps/feta/6/noteheads-1cross.xpm new file mode 100644 index 0000000..32ee9fc --- /dev/null +++ b/data/pixmaps/feta/6/noteheads-1cross.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 9 7 1", +" c Gray22", +". c #434343", +"X c #6c6c6c", +"o c Gray60", +"O c #b9b9b9", +"+ c #d3d3d3", +"@ c None", +/* pixels */ +"@@@@@@@@@@", +"@@++@@@O+@", +"@o.XX@XX.o", +"@O +o o+ O", +"@@@ +@+ @@", +"@@+ +@+ @@", +"@O +o o+ O", +"@o XX@XX.o", +"@@+O@@@O+@" +}; diff --git a/data/pixmaps/feta/6/noteheads-1diamond.xpm b/data/pixmaps/feta/6/noteheads-1diamond.xpm new file mode 100644 index 0000000..b067cb8 --- /dev/null +++ b/data/pixmaps/feta/6/noteheads-1diamond.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 8 7 1", +" c Gray3", +". c Gray20", +"X c Gray47", +"o c #8b8b8b", +"O c #b7b7b7", +"+ c Gray81", +"@ c None", +/* pixels */ +"@@@@@@@@@@", +"@@@@@@@Oo@", +"@@O o", +"@@o .+@ @", +"@@X.+@+.X@", +"@@ @+. o@", +"@o O@", +"@@XO@@@@@@" +}; diff --git a/data/pixmaps/feta/6/noteheads-1mensural.xpm b/data/pixmaps/feta/6/noteheads-1mensural.xpm new file mode 100644 index 0000000..837b37d --- /dev/null +++ b/data/pixmaps/feta/6/noteheads-1mensural.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 8 7 1", +" c #131313", +". c #252525", +"X c #464646", +"o c Gray50", +"O c Gray72", +"+ c #d8d8d8", +"@ c None", +/* pixels */ +"@@@@@@@", +"@@@++@@", +"@@+..@@", +"@@XO .@", +"@o @@ o", +"@@. OX+", +"@@@..+@", +"@@@++@@" +}; diff --git a/data/pixmaps/feta/6/noteheads-1slash.xpm b/data/pixmaps/feta/6/noteheads-1slash.xpm new file mode 100644 index 0000000..b2de115 --- /dev/null +++ b/data/pixmaps/feta/6/noteheads-1slash.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"16 13 7 1", +" c #020202", +". c Gray18", +"X c #747474", +"o c Gray54", +"O c Gray71", +"+ c Gray81", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@@", +"@@@@@@@+ooooooX+", +"@@@@@@@o .@", +"@@@@@@+ .ooo O@", +"@@@@@@. O@@O .@@", +"@@@@@o X@@@. +@@", +"@@@@@. +@@X X@@@", +"@@@@X X@@+ .@@@@", +"@@@+ .@@@X o@@@@", +"@@@. O@@+ .@@@@@", +"@@O ooo. +@@@@@", +"@@. o@@@@@@", +"@+Xoooooo+@@@@@@" +}; diff --git a/data/pixmaps/feta/6/noteheads-1triangle.xpm b/data/pixmaps/feta/6/noteheads-1triangle.xpm new file mode 100644 index 0000000..db7ad45 --- /dev/null +++ b/data/pixmaps/feta/6/noteheads-1triangle.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 7 6 1", +" c #434343", +". c #6d6d6d", +"X c #939393", +"o c Gray73", +"O c Gray86", +"+ c None", +/* pixels */ +"+++++++", +"+++OO++", +"+++..++", +"++o o+", +"++.OO.+", +"+X +O X", +"+oXXXXo" +}; diff --git a/data/pixmaps/feta/6/noteheads-2.xpm b/data/pixmaps/feta/6/noteheads-2.xpm new file mode 100644 index 0000000..90b6ede --- /dev/null +++ b/data/pixmaps/feta/6/noteheads-2.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 8 7 1", +" c Gray1", +". c Gray21", +"X c #717171", +"o c #848484", +"O c #b2b2b2", +"+ c #d8d8d8", +"@ c None", +/* pixels */ +"@@@@@@@@@", +"@@@@+ooO@", +"@@@X O", +"@@. X", +"@O O", +"@X .@", +"@O X+@", +"@@Ooo+@@@" +}; diff --git a/data/pixmaps/feta/6/noteheads-2cross.xpm b/data/pixmaps/feta/6/noteheads-2cross.xpm new file mode 100644 index 0000000..f965bf4 --- /dev/null +++ b/data/pixmaps/feta/6/noteheads-2cross.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 8 5 1", +" c Gray0", +". c #252525", +"X c #848484", +"o c #b7b7b7", +"O c None", +/* pixels */ +"OOOOOOOOO", +"OooOOOOoo", +"Oo.oOOo.o", +"OOO.XX.OO", +"OOOo oOO", +"OOO.XX.OO", +"Oo.oOOo.o", +"OooOOOOoo" +}; diff --git a/data/pixmaps/feta/6/noteheads-2diamond.xpm b/data/pixmaps/feta/6/noteheads-2diamond.xpm new file mode 100644 index 0000000..2421e19 --- /dev/null +++ b/data/pixmaps/feta/6/noteheads-2diamond.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 8 8 1", +" c #020202", +". c #313131", +"X c #5d5d5d", +"o c Gray", +"O c #888888", +"+ c #a7a7a7", +"@ c #c5c5c5", +"# c None", +/* pixels */ +"#########", +"####+OOO@", +"###@ o", +"###X .#", +"###. .##", +"##. X##", +"#o @##", +"#+oOO+###" +}; diff --git a/data/pixmaps/feta/6/noteheads-2mensural.xpm b/data/pixmaps/feta/6/noteheads-2mensural.xpm new file mode 100644 index 0000000..548a377 --- /dev/null +++ b/data/pixmaps/feta/6/noteheads-2mensural.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 8 5 1", +" c #0b0b0b", +". c #313131", +"X c #838383", +"o c #d7d7d7", +"O c None", +/* pixels */ +"OOOOOOO", +"OOOooOO", +"OOO OO", +"OO. .O", +"OX X", +"OO. .O", +"OOo..oO", +"OOOooOO" +}; diff --git a/data/pixmaps/feta/6/noteheads-2slash.xpm b/data/pixmaps/feta/6/noteheads-2slash.xpm new file mode 100644 index 0000000..6c28fd8 --- /dev/null +++ b/data/pixmaps/feta/6/noteheads-2slash.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 13 8 1", +" c Gray1", +". c #343434", +"X c Gray29", +"o c #797979", +"O c #898989", +"+ c #b6b6b6", +"@ c #cbcbcb", +"# c None", +/* pixels */ +"############", +"########OOo@", +"#######+ .#", +"####### +#", +"######X X##", +"#####+ ###", +"#####X O###", +"####o X####", +"#### +####", +"###X X#####", +"##+ ######", +"##. +######", +"#@oOO#######" +}; diff --git a/data/pixmaps/feta/6/noteheads-2triangle.xpm b/data/pixmaps/feta/6/noteheads-2triangle.xpm new file mode 100644 index 0000000..be8ebf9 --- /dev/null +++ b/data/pixmaps/feta/6/noteheads-2triangle.xpm @@ -0,0 +1,20 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 7 7 1", +" c #010101", +". c Gray37", +"X c Gray47", +"o c Gray55", +"O c #aeaeae", +"+ c #d5d5d5", +"@ c None", +/* pixels */ +"@@@@@@@", +"@@@++@@", +"@@@XX@@", +"@@+ +@", +"@@. .@", +"@O O", +"@OXooXO" +}; diff --git a/data/pixmaps/feta/6/noteheads-2xcircle.xpm b/data/pixmaps/feta/6/noteheads-2xcircle.xpm new file mode 100644 index 0000000..d7ce357 --- /dev/null +++ b/data/pixmaps/feta/6/noteheads-2xcircle.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 9 7 1", +" c Gray20", +". c #585858", +"X c #797979", +"o c #929292", +"O c #a5a5a5", +"+ c #d7d7d7", +"@ c None", +/* pixels */ +"@@@@@@@@@", +"@@@OooO@@", +"@@ .@@. @", +"@OX.++.XO", +"@o@@ .+@o", +"@o++ +@o", +"@OX.++.XO", +"@@ .+@. @", +"@@@OooO@@" +}; diff --git a/data/pixmaps/feta/6/noteheads-ledgerending.xpm b/data/pixmaps/feta/6/noteheads-ledgerending.xpm new file mode 100644 index 0000000..ca66749 --- /dev/null +++ b/data/pixmaps/feta/6/noteheads-ledgerending.xpm @@ -0,0 +1,12 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 3 3 1", +" c #6f6f6f", +". c #bebebe", +"X c None", +/* pixels */ +"XXXXXXXX", +"X. .", +"X. ." +}; diff --git a/data/pixmaps/feta/6/rests--1.xpm b/data/pixmaps/feta/6/rests--1.xpm new file mode 100644 index 0000000..7cb06b2 --- /dev/null +++ b/data/pixmaps/feta/6/rests--1.xpm @@ -0,0 +1,17 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"5 7 4 1", +" c Gray0", +". c #727272", +"X c Gray71", +"o c None", +/* pixels */ +"ooooo", +"oX..X", +"o. .", +"o. .", +"o. .", +"o. .", +"oX..X" +}; diff --git a/data/pixmaps/feta/6/rests--1o.xpm b/data/pixmaps/feta/6/rests--1o.xpm new file mode 100644 index 0000000..8ae32b3 --- /dev/null +++ b/data/pixmaps/feta/6/rests--1o.xpm @@ -0,0 +1,17 @@ +/* XPM */ +static char * rests__1o_xpm[] = { +"11 7 7 1", +" c None", +". c #B9B9B9", +"+ c #727272", +"@ c #898989", +"# c #595959", +"$ c #030303", +"% c #D9D9D9", +" ", +" .+++@@+++.", +" .#+#$$#+#.", +" %$$% ", +" %$$% ", +" .#+#$$#+#.", +" .+++@@+++."}; diff --git a/data/pixmaps/feta/6/rests--2.xpm b/data/pixmaps/feta/6/rests--2.xpm new file mode 100644 index 0000000..4bc5415 --- /dev/null +++ b/data/pixmaps/feta/6/rests--2.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"5 13 5 1", +" c Gray0", +". c #747474", +"X c #808080", +"o c #bebebe", +"O c None", +/* pixels */ +"OOOOO", +"OoXXo", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"OoXXo" +}; diff --git a/data/pixmaps/feta/6/rests--4.xpm b/data/pixmaps/feta/6/rests--4.xpm new file mode 100644 index 0000000..c46fa5e --- /dev/null +++ b/data/pixmaps/feta/6/rests--4.xpm @@ -0,0 +1,23 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"48 13 4 1", +" c #070707", +". c Gray57", +"X c #d5d5d5", +"o c None", +/* pixels */ +"oooooooooooooooooooooooooooooooooooooooooooooooo", +"oXoooooooooooooooooooooooooooooooooooooooooooooX", +"o.XoooooooooooooooooooooooooooooooooooooooooooX.", +"o.XoooooooooooooooooooooooooooooooooooooooooooX.", +"o.XooooooooooooooooooXooooooooooooooooooooooooX.", +"o. .", +"o. .", +"o. .", +"o. .", +"o.XoooooooooooooooooooooooooooooooooooooooooooX.", +"o.XoooooooooooooooooooooooooooooooooooooooooooX.", +"o.XoooooooooooooooooooooooooooooooooooooooooooX.", +"oXoooooooooooooooooooooooooooooooooooooooooooooX" +}; diff --git a/data/pixmaps/feta/6/rests-0.xpm b/data/pixmaps/feta/6/rests-0.xpm new file mode 100644 index 0000000..938ab3f --- /dev/null +++ b/data/pixmaps/feta/6/rests-0.xpm @@ -0,0 +1,15 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 5 4 1", +" c #010101", +". c Gray45", +"X c Gray72", +"o c None", +/* pixels */ +"oooooooooo", +"oX.......X", +"oX .", +"o. .", +"oX.......X" +}; diff --git a/data/pixmaps/feta/6/rests-0o.xpm b/data/pixmaps/feta/6/rests-0o.xpm new file mode 100644 index 0000000..7616ad0 --- /dev/null +++ b/data/pixmaps/feta/6/rests-0o.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"17 6 7 1", +" c Gray1", +". c Gray35", +"X c #727272", +"o c #898989", +"O c #b9b9b9", +"+ c Gray85", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@@@", +"@OXXXooooooooXXXO", +"@O.X. .X.O", +"@@@@+ +@@@", +"@@@@+ +@@@", +"@@@@@oooooooo@@@@" +}; diff --git a/data/pixmaps/feta/6/rests-1.xpm b/data/pixmaps/feta/6/rests-1.xpm new file mode 100644 index 0000000..938ab3f --- /dev/null +++ b/data/pixmaps/feta/6/rests-1.xpm @@ -0,0 +1,15 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 5 4 1", +" c #010101", +". c Gray45", +"X c Gray72", +"o c None", +/* pixels */ +"oooooooooo", +"oX.......X", +"oX .", +"o. .", +"oX.......X" +}; diff --git a/data/pixmaps/feta/6/rests-1o.xpm b/data/pixmaps/feta/6/rests-1o.xpm new file mode 100644 index 0000000..7e282a2 --- /dev/null +++ b/data/pixmaps/feta/6/rests-1o.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"17 6 7 1", +" c Gray1", +". c Gray35", +"X c #727272", +"o c #898989", +"O c #b9b9b9", +"+ c Gray85", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@@@", +"@@@@@oooooooo@@@@", +"@@@@+ +@@@", +"@@@@+ +@@@", +"@O.X. .X.O", +"@OXXXooooooooXXXO" +}; diff --git a/data/pixmaps/feta/6/rests-2.xpm b/data/pixmaps/feta/6/rests-2.xpm new file mode 100644 index 0000000..3656dee --- /dev/null +++ b/data/pixmaps/feta/6/rests-2.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 18 8 1", +" c #040404", +". c #343434", +"X c #494949", +"o c #747474", +"O c Gray52", +"+ c Gray69", +"@ c Gray77", +"# c None", +/* pixels */ +"########", +"###@####", +"###+X###", +"####o.##", +"####O +#", +"####o +", +"###+ O", +"##+ X#", +"## X##", +"##o ###", +"###X ###", +"####X+##", +"#@ ...##", +"#O .#", +"#+ X##o#", +"##.o####", +"##+o####", +"###@####" +}; diff --git a/data/pixmaps/feta/6/rests-2mensural.xpm b/data/pixmaps/feta/6/rests-2mensural.xpm new file mode 100644 index 0000000..7994d61 --- /dev/null +++ b/data/pixmaps/feta/6/rests-2mensural.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 6 7 1", +" c Gray0", +". c Gray15", +"X c Gray43", +"o c #9a9a9a", +"O c #afafaf", +"+ c Gray82", +"@ c None", +/* pixels */ +"@@@@@@", +"@OX+@@", +"@X ..o", +"@Xo@o+", +"@Xo@@@", +"@O+@@@" +}; diff --git a/data/pixmaps/feta/6/rests-3.xpm b/data/pixmaps/feta/6/rests-3.xpm new file mode 100644 index 0000000..31d35ee --- /dev/null +++ b/data/pixmaps/feta/6/rests-3.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 12 8 1", +" c #090909", +". c #353535", +"X c #464646", +"o c #727272", +"O c #8e8e8e", +"+ c #b1b1b1", +"@ c #d0d0d0", +"# c None", +/* pixels */ +"#########", +"##OO#####", +"#o o##+O", +"#O .#@X@", +"##. .X#", +"######Oo#", +"######o@#", +"#####@.##", +"#####+X##", +"#####.+##", +"####+ ###", +"####@+###" +}; diff --git a/data/pixmaps/feta/6/rests-3mensural.xpm b/data/pixmaps/feta/6/rests-3mensural.xpm new file mode 100644 index 0000000..65d248e --- /dev/null +++ b/data/pixmaps/feta/6/rests-3mensural.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 6 7 1", +" c Gray0", +". c #282828", +"X c Gray43", +"o c #989898", +"O c #afafaf", +"+ c Gray82", +"@ c None", +/* pixels */ +"@@@@@@", +"@@@+XO", +"@+.. X", +"@+o@oX", +"@@@@oX", +"@@@@OO" +}; diff --git a/data/pixmaps/feta/6/rests-4.xpm b/data/pixmaps/feta/6/rests-4.xpm new file mode 100644 index 0000000..9417098 --- /dev/null +++ b/data/pixmaps/feta/6/rests-4.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 18 8 1", +" c #060606", +". c #323232", +"X c #4b4b4b", +"o c #767676", +"O c Gray53", +"+ c #aeaeae", +"@ c #d3d3d3", +"# c None", +/* pixels */ +"##########", +"###@o+####", +"###. O#+o", +"##@ X#X+", +"###+. X.@", +"#######@O#", +"#######OX#", +"##. @##o@#", +"#O .##.@#", +"#o .OXX##", +"##. ..X##", +"###@##X+##", +"#####@.###", +"#####+X###", +"#####oo###", +"#####.+###", +"####@ ####", +"####@+####" +}; diff --git a/data/pixmaps/feta/6/rests-4mensural.xpm b/data/pixmaps/feta/6/rests-4mensural.xpm new file mode 100644 index 0000000..d3a5359 --- /dev/null +++ b/data/pixmaps/feta/6/rests-4mensural.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 7 8 1", +" c #060606", +". c #343434", +"X c #535353", +"o c #717171", +"O c Gray57", +"+ c #afafaf", +"@ c #c3c3c3", +"# c None", +/* pixels */ +"######", +"####++", +"##+. o", +"#+X+Xo", +"##O. o", +"#O +Oo", +"####@+" +}; diff --git a/data/pixmaps/feta/6/rests-5.xpm b/data/pixmaps/feta/6/rests-5.xpm new file mode 100644 index 0000000..9a1aa47 --- /dev/null +++ b/data/pixmaps/feta/6/rests-5.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 24 8 1", +" c #060606", +". c #313131", +"X c #4e4e4e", +"o c #747474", +"O c #8b8b8b", +"+ c #acacac", +"@ c Gray81", +"# c None", +/* pixels */ +"###########", +"####@o+####", +"####. O#+O", +"###@ X#O+", +"####. @", +"####@oOo+X#", +"########OX#", +"###+o@##OO#", +"##+ .##.@#", +"##X +#.@#", +"##@o ..X##", +"#######OX##", +"#######.@##", +"##. @##.@##", +"#O .#+X###", +"#o OXX###", +"##. . +###", +"######.@###", +"#####+.####", +"#####+.####", +"#####Xo####", +"#####.+####", +"####@ #####", +"####@+#####" +}; diff --git a/data/pixmaps/feta/6/rests-6.xpm b/data/pixmaps/feta/6/rests-6.xpm new file mode 100644 index 0000000..4149256 --- /dev/null +++ b/data/pixmaps/feta/6/rests-6.xpm @@ -0,0 +1,43 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 29 8 1", +" c Gray2", +". c #313131", +"X c Gray30", +"o c Gray44", +"O c #8e8e8e", +"+ c #b1b1b1", +"@ c Gray83", +"# c None", +/* pixels */ +"############", +"#####@o+####", +"#####. O#+o", +"####@ X#o+", +"#####. #", +"#####@OOO+.@", +"#########@O#", +"####OX@##OX#", +"###@ @#O+#", +"###@ O@ @#", +"####+...O.@#", +"########+o##", +"###@+###OX##", +"##@. X##X+##", +"##o +#.@##", +"##O ..X###", +"###o.XXXX###", +"#######Oo###", +"##o.###.+###", +"#O X##.@###", +"#o .#+.####", +"#@. ..X####", +"###@@@.o####", +"######.+####", +"###### +####", +"#####+.#####", +"#####O.#####", +"#####.o#####", +"#####+@#####" +}; diff --git a/data/pixmaps/feta/6/rests-7.xpm b/data/pixmaps/feta/6/rests-7.xpm new file mode 100644 index 0000000..73c43ac --- /dev/null +++ b/data/pixmaps/feta/6/rests-7.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 35 8 1", +" c Gray2", +". c #313131", +"X c Gray30", +"o c #727272", +"O c Gray55", +"+ c Gray67", +"@ c Gray82", +"# c None", +/* pixels */ +"#############", +"######@o+####", +"######. O#+O", +"#####@ X#o+", +"######+. X @", +"###########.#", +"######@###@O#", +"#####O O##OX#", +"####@ @#OO#", +"####@ Xo @#", +"#####O o.@#", +"#########@o##", +"#####@###OX##", +"####. o##OO##", +"###o @#.@##", +"###+ XO.@##", +"####@oOoOo###", +"########OX###", +"###+O###oO###", +"##+ o##.@###", +"##o .#@ @###", +"##+ X####", +"###+oo++X####", +"#######oo####", +"##. @##.+####", +"#o .## @####", +"#O .#O.#####", +"##. XXX#####", +"######Xo#####", +"######.+#####", +"#####@.@#####", +"#####@.######", +"#####O.######", +"#####X+######", +"#####+@######" +}; diff --git a/data/pixmaps/feta/6/scripts-arpeggio.xpm b/data/pixmaps/feta/6/scripts-arpeggio.xpm new file mode 100644 index 0000000..1b85028 --- /dev/null +++ b/data/pixmaps/feta/6/scripts-arpeggio.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 10 6 1", +" c #090909", +". c #3f3f3f", +"X c #777777", +"o c #929292", +"O c Gray80", +"+ c None", +/* pixels */ +"++++++", +"++oO++", +"++o O+", +"+++. O", +"++O o", +"+O O", +"+X O+", +"+O .++", +"++O o+", +"+++Oo+" +}; diff --git a/data/pixmaps/feta/6/scripts-coda.xpm b/data/pixmaps/feta/6/scripts-coda.xpm new file mode 100644 index 0000000..729a59a --- /dev/null +++ b/data/pixmaps/feta/6/scripts-coda.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 17 8 1", +" c Gray2", +". c Gray18", +"X c #505050", +"o c #767676", +"O c Gray56", +"+ c Gray71", +"@ c #d0d0d0", +"# c None", +/* pixels */ +"##############", +"#######@######", +"#######O######", +"######@o######", +"#####OOXo@####", +"####o.#O+ ####", +"#### O#o#.o###", +"###O +#o#. ###", +"#@+X o@X+. O+@", +"#@+X o@X+ ++@", +"###X +#o#. @##", +"###@ +#o#..###", +"####.o#O# +###", +"####@.@Ooo####", +"######O.+#####", +"#######O######", +"#######@######" +}; diff --git a/data/pixmaps/feta/6/scripts-dfermata.xpm b/data/pixmaps/feta/6/scripts-dfermata.xpm new file mode 100644 index 0000000..0705e84 --- /dev/null +++ b/data/pixmaps/feta/6/scripts-dfermata.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"17 11 8 1", +" c #060606", +". c #3e3e3e", +"X c Gray28", +"o c #6f6f6f", +"O c Gray52", +"+ c #b7b7b7", +"@ c #c3c3c3", +"# c None", +/* pixels */ +"#################", +"#@+#####OO#####++", +"#oo####O O####oo", +"##X####o O####X#", +"##.+####Oo####+.#", +"##+X##########X+#", +"###X.########..##", +"###+ O####O +##", +"####+ +###", +"#####@. .@####", +"#######+OO+######" +}; diff --git a/data/pixmaps/feta/6/scripts-dmarcato.xpm b/data/pixmaps/feta/6/scripts-dmarcato.xpm new file mode 100644 index 0000000..81c5845 --- /dev/null +++ b/data/pixmaps/feta/6/scripts-dmarcato.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 8 8 1", +" c Gray2", +". c Gray21", +"X c Gray36", +"o c #6d6d6d", +"O c #888888", +"+ c Gray70", +"@ c #d2d2d2", +"# c None", +/* pixels */ +"########", +"#+oO##@+", +"#@ @#o+", +"##X o@X#", +"##@ .X@#", +"###. .##", +"###+ +##", +"####O###" +}; diff --git a/data/pixmaps/feta/6/scripts-downbow.xpm b/data/pixmaps/feta/6/scripts-downbow.xpm new file mode 100644 index 0000000..6826845 --- /dev/null +++ b/data/pixmaps/feta/6/scripts-downbow.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 9 6 1", +" c #010101", +". c #797979", +"X c #929292", +"o c Gray72", +"O c #d3d3d3", +"+ c None", +/* pixels */ +"+++++++++++", +"+O........O", +"+X X", +"+X X", +"+XXooooooXX", +"+XO++++++OX", +"+XO++++++OX", +"+XO++++++OX", +"+O++++++++O" +}; diff --git a/data/pixmaps/feta/6/scripts-downmordent.xpm b/data/pixmaps/feta/6/scripts-downmordent.xpm new file mode 100644 index 0000000..a8965fc --- /dev/null +++ b/data/pixmaps/feta/6/scripts-downmordent.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"22 10 8 1", +" c Gray2", +". c Gray17", +"X c Gray30", +"o c Gray42", +"O c #959595", +"+ c #afafaf", +"@ c #d8d8d8", +"# c None", +/* pixels */ +"######################", +"##O@##################", +"#@ @##########@#######", +"#oo#@O####O@#@.@O#####", +"#oo#o X@#@ O#.X X@#@#", +"#Oo+ .+. o .+.+", +"##. X .. X o#", +"##@O#O .##. #O .##", +"######@.+###O..@#@.+##", +"#############@O#######" +}; diff --git a/data/pixmaps/feta/6/scripts-downprall.xpm b/data/pixmaps/feta/6/scripts-downprall.xpm new file mode 100644 index 0000000..856b6c4 --- /dev/null +++ b/data/pixmaps/feta/6/scripts-downprall.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"22 10 8 1", +" c Gray2", +". c #373737", +"X c #494949", +"o c #767676", +"O c Gray51", +"+ c #b9b9b9", +"@ c #c6c6c6", +"# c None", +/* pixels */ +"######################", +"##+@##################", +"## @##################", +"#Oo#@+####@#####+#####", +"#oo#o O### .@##o O####", +"#oo@ X#X +@ X#.+", +"## . .#", +"##+X#X @+ X#X +#", +"######o o##@. ###O o##", +"#######+#####+####@###" +}; diff --git a/data/pixmaps/feta/6/scripts-dpedalheel.xpm b/data/pixmaps/feta/6/scripts-dpedalheel.xpm new file mode 100644 index 0000000..32887dc --- /dev/null +++ b/data/pixmaps/feta/6/scripts-dpedalheel.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 9 4 1", +" c #555555", +". c #717171", +"X c #cdcdcd", +"o c None", +/* pixels */ +"oooooooo", +"ooo...oo", +"oo . o", +"o..ooo..", +"o..ooo..", +"o..ooo..", +"o..ooo..", +"o..ooo..", +"oXoooooX" +}; diff --git a/data/pixmaps/feta/6/scripts-dpedaltoe.xpm b/data/pixmaps/feta/6/scripts-dpedaltoe.xpm new file mode 100644 index 0000000..5f79ae7 --- /dev/null +++ b/data/pixmaps/feta/6/scripts-dpedaltoe.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 10 8 1", +" c #090909", +". c Gray18", +"X c #565656", +"o c #6c6c6c", +"O c #888888", +"+ c #b7b7b7", +"@ c Gray81", +"# c None", +/* pixels */ +"########", +"#@@###@@", +"#OX###.+", +"## ##@.#", +"##XO#oo#", +"##OX#.@#", +"###.+.##", +"###o O##", +"###+ @##", +"####+###" +}; diff --git a/data/pixmaps/feta/6/scripts-dstaccatissimo.xpm b/data/pixmaps/feta/6/scripts-dstaccatissimo.xpm new file mode 100644 index 0000000..dbd58b4 --- /dev/null +++ b/data/pixmaps/feta/6/scripts-dstaccatissimo.xpm @@ -0,0 +1,18 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"4 7 5 1", +" c Gray4", +". c #7b7b7b", +"X c Gray54", +"o c #a4a4a4", +"O c None", +/* pixels */ +"OOOO", +"OOXO", +"OO O", +"OO O", +"Oo o", +"OX X", +"OO.O" +}; diff --git a/data/pixmaps/feta/6/scripts-flageolet.xpm b/data/pixmaps/feta/6/scripts-flageolet.xpm new file mode 100644 index 0000000..f516984 --- /dev/null +++ b/data/pixmaps/feta/6/scripts-flageolet.xpm @@ -0,0 +1,17 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 8 3 1", +" c Gray59", +". c #d5d5d5", +"X c None", +/* pixels */ +"XXXXXXXX", +"XXX XX", +"XX ... X", +"X .XXX. ", +"X .XXX. ", +"X .XXX. ", +"XX ... X", +"XXX XX" +}; diff --git a/data/pixmaps/feta/6/scripts-lcomma.xpm b/data/pixmaps/feta/6/scripts-lcomma.xpm new file mode 100644 index 0000000..76058ce --- /dev/null +++ b/data/pixmaps/feta/6/scripts-lcomma.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"4 9 7 1", +" c Gray0", +". c #323232", +"X c Gray42", +"o c Gray56", +"O c #a2a2a2", +"+ c Gray81", +"@ c None", +/* pixels */ +"@@@@", +"@@@+", +"@@Xo", +"@@.@", +"@o.@", +"@X.@", +"@X.@", +"@O +", +"@@X@" +}; diff --git a/data/pixmaps/feta/6/scripts-lineprall.xpm b/data/pixmaps/feta/6/scripts-lineprall.xpm new file mode 100644 index 0000000..dbd5c88 --- /dev/null +++ b/data/pixmaps/feta/6/scripts-lineprall.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"21 17 8 1", +" c #040404", +". c #343434", +"X c Gray29", +"o c #727272", +"O c #868686", +"+ c #bbbbbb", +"@ c Gray76", +"# c None", +/* pixels */ +"#####################", +"#@+##################", +"#oo##################", +"#oo##################", +"#oo##################", +"#oo##################", +"#oo##################", +"#oo##################", +"#oo##################", +"#oo##################", +"#oo#+####+#####+#####", +"#ooO o### .+##o o####", +"#O. X#X +@ X#X+", +"#O .#", +"#O.#X @+ X#X +#", +"#####O o##+. ###o o##", +"######@#####+####+###" +}; diff --git a/data/pixmaps/feta/6/scripts-mordent.xpm b/data/pixmaps/feta/6/scripts-mordent.xpm new file mode 100644 index 0000000..5043edd --- /dev/null +++ b/data/pixmaps/feta/6/scripts-mordent.xpm @@ -0,0 +1,23 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"15 9 8 1", +" c #060606", +". c #313131", +"X c Gray32", +"o c #6f6f6f", +"O c #939393", +"+ c Gray70", +"@ c Gray85", +"# c None", +/* pixels */ +"###############", +"#######@O######", +"###OX##+ X@####", +"###. @@ O#+@", +"##o .o o +", +"#+ o .. o#", +"#@+#O .X@ .##", +"#####@XOX##XO##", +"#######@+######" +}; diff --git a/data/pixmaps/feta/6/scripts-open.xpm b/data/pixmaps/feta/6/scripts-open.xpm new file mode 100644 index 0000000..b7a6d18 --- /dev/null +++ b/data/pixmaps/feta/6/scripts-open.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 8 5 1", +" c #464646", +". c #717171", +"X c Gray55", +"o c #a7a7a7", +"O c None", +/* pixels */ +"OOOOOOO", +"OOOXXOO", +"OO oo O", +"Oo.OO.o", +"O..OO..", +"Oo.OO.o", +"OO Xo O", +"OOOXXOO" +}; diff --git a/data/pixmaps/feta/6/scripts-prall.xpm b/data/pixmaps/feta/6/scripts-prall.xpm new file mode 100644 index 0000000..9bf049d --- /dev/null +++ b/data/pixmaps/feta/6/scripts-prall.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"15 8 8 1", +" c Gray2", +". c Gray20", +"X c #505050", +"o c #6c6c6c", +"O c #989898", +"+ c Gray70", +"@ c Gray80", +"# c None", +/* pixels */ +"###############", +"###@@####@#####", +"###o O##+ o####", +"##+ o# .#X+", +"##. .#", +"#+X#. .#o +#", +"#####o +##O X##", +"######+####@@##" +}; diff --git a/data/pixmaps/feta/6/scripts-pralldown.xpm b/data/pixmaps/feta/6/scripts-pralldown.xpm new file mode 100644 index 0000000..c72e279 --- /dev/null +++ b/data/pixmaps/feta/6/scripts-pralldown.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"21 11 8 1", +" c #060606", +". c #2f2f2f", +"X c #505050", +"o c Gray45", +"O c #939393", +"+ c Gray69", +"@ c Gray82", +"# c None", +/* pixels */ +"#####################", +"######+####@@####+###", +"####@X O##O X##+. @##", +"#+.@. @o o+ .##", +"##X . . .O#", +"##@ O#X X#O @@ #", +"###O.@##@ O###XX###XO", +"####@##############oo", +"###################oo", +"################### @", +"##################@+#" +}; diff --git a/data/pixmaps/feta/6/scripts-prallmordent.xpm b/data/pixmaps/feta/6/scripts-prallmordent.xpm new file mode 100644 index 0000000..c9be15e --- /dev/null +++ b/data/pixmaps/feta/6/scripts-prallmordent.xpm @@ -0,0 +1,23 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"21 9 8 1", +" c #060606", +". c #323232", +"X c #494949", +"o c #797979", +"O c #989898", +"+ c Gray69", +"@ c #c0c0c0", +"# c None", +/* pixels */ +"#####################", +"#############O#######", +"###+X####XO##.OX#####", +"###X +#+ X@.. +#+#", +"##o o . o @", +"#@ o XX o o#", +"##+#+ X##X #+ X##", +"######X+###+..###X+##", +"#############O#######" +}; diff --git a/data/pixmaps/feta/6/scripts-prallprall.xpm b/data/pixmaps/feta/6/scripts-prallprall.xpm new file mode 100644 index 0000000..22aeb6a --- /dev/null +++ b/data/pixmaps/feta/6/scripts-prallprall.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"21 8 8 1", +" c #040404", +". c #393939", +"X c #494949", +"o c #7c7c7c", +"O c #818181", +"+ c Gray73", +"@ c Gray76", +"# c None", +/* pixels */ +"#####################", +"####@####@#####@#####", +"###o o### .@##o O####", +"##+ X#X ++ X#X+", +"##. .#", +"#+X#X @+ X#X +#", +"#####O o##+. ###O o##", +"######@#####@####@###" +}; diff --git a/data/pixmaps/feta/6/scripts-prallup.xpm b/data/pixmaps/feta/6/scripts-prallup.xpm new file mode 100644 index 0000000..c25cf4b --- /dev/null +++ b/data/pixmaps/feta/6/scripts-prallup.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"22 10 8 1", +" c Gray2", +". c #373737", +"X c #494949", +"o c #767676", +"O c Gray51", +"+ c #b9b9b9", +"@ c #c6c6c6", +"# c None", +/* pixels */ +"######################", +"###################@+#", +"###################@ #", +"######+#####@####+##oo", +"#####o o##@. ###O o#oo", +"#+X#X @+ X#X @oo", +"##. . #", +"##+ X#X ++ X#.+#", +"###o o### .+##o O#####", +"####+####@#####@######" +}; diff --git a/data/pixmaps/feta/6/scripts-rcomma.xpm b/data/pixmaps/feta/6/scripts-rcomma.xpm new file mode 100644 index 0000000..99e94fb --- /dev/null +++ b/data/pixmaps/feta/6/scripts-rcomma.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"4 9 7 1", +" c Gray0", +". c #323232", +"X c Gray42", +"o c Gray56", +"O c #a2a2a2", +"+ c Gray81", +"@ c None", +/* pixels */ +"@@@@", +"@@X@", +"@+ O", +"@@.X", +"@@.X", +"@@.o", +"@@.@", +"@oX@", +"@+@@" +}; diff --git a/data/pixmaps/feta/6/scripts-reverseturn.xpm b/data/pixmaps/feta/6/scripts-reverseturn.xpm new file mode 100644 index 0000000..e432a75 --- /dev/null +++ b/data/pixmaps/feta/6/scripts-reverseturn.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 8 8 1", +" c #010101", +". c Gray21", +"X c #484848", +"o c #777777", +"O c Gray56", +"+ c #b9b9b9", +"@ c #c8c8c8", +"# c None", +/* pixels */ +"##############", +"###OO####OO@##", +"##. o#+. .#", +"#@oX @+ XO.+", +"#O@##+ +##@O", +"#+.OX @@ Xo@", +"##X .@#o .#", +"###+OO####OO##" +}; diff --git a/data/pixmaps/feta/6/scripts-segno.xpm b/data/pixmaps/feta/6/scripts-segno.xpm new file mode 100644 index 0000000..42c5c7b --- /dev/null +++ b/data/pixmaps/feta/6/scripts-segno.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 19 8 1", +" c Gray1", +". c #373737", +"X c #4c4c4c", +"o c Gray48", +"O c Gray55", +"+ c Gray70", +"@ c Gray78", +"# c None", +/* pixels */ +"#############", +"###+OO#####O@", +"##..#O +##o #", +"#@ O## X## +#", +"#O o#o #o.##", +"#O X#+ X+ +##", +"#@ +###X.###", +"##X +#+ ####", +"###X O.O#.O#", +"####X +#o+#", +"##+o#+ X###", +"##O.#O.O X##", +"##### +#+ X#", +"####X.###+ @", +"###+ +X +#X O", +"###.O# o#o O", +"##+ ##X ##o @", +"## o##+ O#..#", +"#@O#####OO+##" +}; diff --git a/data/pixmaps/feta/6/scripts-sforzato.xpm b/data/pixmaps/feta/6/scripts-sforzato.xpm new file mode 100644 index 0000000..7e03ac4 --- /dev/null +++ b/data/pixmaps/feta/6/scripts-sforzato.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 8 7 1", +" c Gray0", +". c #2a2a2a", +"X c Gray43", +"o c #8d8d8d", +"O c Gray70", +"+ c Gray84", +"@ c None", +/* pixels */ +"@@@@@@@@@@@", +"@OO@@@@@@@@", +"@O..Xo@@@@@", +"@@@+XX.Xo+@", +"@@@@@@++X o", +"@@@+XX.Xo+@", +"@O..Xo@@@@@", +"@OO@@@@@@@@" +}; diff --git a/data/pixmaps/feta/6/scripts-staccato.xpm b/data/pixmaps/feta/6/scripts-staccato.xpm new file mode 100644 index 0000000..5da730f --- /dev/null +++ b/data/pixmaps/feta/6/scripts-staccato.xpm @@ -0,0 +1,12 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"3 3 3 1", +" c #8e8e8e", +". c #b7b7b7", +"X c None", +/* pixels */ +"XXX", +"X..", +"X " +}; diff --git a/data/pixmaps/feta/6/scripts-stopped.xpm b/data/pixmaps/feta/6/scripts-stopped.xpm new file mode 100644 index 0000000..99da16f --- /dev/null +++ b/data/pixmaps/feta/6/scripts-stopped.xpm @@ -0,0 +1,18 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 8 4 1", +" c Gray8", +". c Gray59", +"X c #dddddd", +"o c None", +/* pixels */ +"oooooooo", +"oooo.ooo", +"oooo ooo", +"oooX Xoo", +"o. .", +"ooXX Xoo", +"oooo ooo", +"oooo.ooo" +}; diff --git a/data/pixmaps/feta/6/scripts-tenuto.xpm b/data/pixmaps/feta/6/scripts-tenuto.xpm new file mode 100644 index 0000000..3a06d14 --- /dev/null +++ b/data/pixmaps/feta/6/scripts-tenuto.xpm @@ -0,0 +1,12 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 3 3 1", +" c Gray43", +". c #b6b6b6", +"X c None", +/* pixels */ +"XXXXXXXX", +"X. .", +"X. ." +}; diff --git a/data/pixmaps/feta/6/scripts-thumb.xpm b/data/pixmaps/feta/6/scripts-thumb.xpm new file mode 100644 index 0000000..97602f5 --- /dev/null +++ b/data/pixmaps/feta/6/scripts-thumb.xpm @@ -0,0 +1,23 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 10 7 1", +" c Gray1", +". c #3e3e3e", +"X c #414141", +"o c Gray42", +"O c Gray57", +"+ c Gray72", +"@ c None", +/* pixels */ +"@@@@@@@", +"@@@OO@@", +"@@XOO.@", +"@+ @@ +", +"@O @@ O", +"@+ @@ +", +"@@.++.@", +"@@@..@@", +"@@@oo@@", +"@@@++@@" +}; diff --git a/data/pixmaps/feta/6/scripts-trilelement.xpm b/data/pixmaps/feta/6/scripts-trilelement.xpm new file mode 100644 index 0000000..5fb396b --- /dev/null +++ b/data/pixmaps/feta/6/scripts-trilelement.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 8 8 1", +" c Gray1", +". c Gray24", +"X c Gray28", +"o c #7c7c7c", +"O c #818181", +"+ c #b9b9b9", +"@ c #c3c3c3", +"# c None", +/* pixels */ +"##########", +"####@#####", +"###o O####", +"##+ X#X+", +"##. .#", +"#+X#X +#", +"#####O o##", +"######+###" +}; diff --git a/data/pixmaps/feta/6/scripts-trill-element.xpm b/data/pixmaps/feta/6/scripts-trill-element.xpm new file mode 100644 index 0000000..61cf5a9 --- /dev/null +++ b/data/pixmaps/feta/6/scripts-trill-element.xpm @@ -0,0 +1,18 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 6 6 1", +" c #0e0e0e", +". c #414141", +"X c #6a6a6a", +"o c #909090", +"O c Gray81", +"+ c None", +/* pixels */ +"++++++++++", +"+++OXO++++", +"++O O+oo", +"+O . . O", +"+oo+O O+", +"+++++OXO++" +}; diff --git a/data/pixmaps/feta/6/scripts-trill.xpm b/data/pixmaps/feta/6/scripts-trill.xpm new file mode 100644 index 0000000..8a1fce1 --- /dev/null +++ b/data/pixmaps/feta/6/scripts-trill.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"19 15 8 1", +" c #060606", +". c #2c2c2c", +"X c Gray37", +"o c Gray47", +"O c Gray54", +"+ c #aeaeae", +"@ c Gray81", +"# c None", +/* pixels */ +"###################", +"########o+#########", +"#######o +#########", +"####### ##########", +"####### .##########", +"######+ o##@@###@@#", +"###++#O O#O. .+O. +", +"##+++OX oO@#O X#. O", +"#@O### @###o +#. #", +"#O@#+O .+###. ###@#", +"##oO@@ o#O## #####", +"#####o O#o## .#####", +"#####O Xoo#@ o#####", +"###### .##o o#####", +"######+o###########" +}; diff --git a/data/pixmaps/feta/6/scripts-turn.xpm b/data/pixmaps/feta/6/scripts-turn.xpm new file mode 100644 index 0000000..fa1bc6d --- /dev/null +++ b/data/pixmaps/feta/6/scripts-turn.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 8 8 1", +" c #010101", +". c Gray21", +"X c #484848", +"o c #777777", +"O c Gray56", +"+ c #b9b9b9", +"@ c #c8c8c8", +"# c None", +/* pixels */ +"##############", +"###@OO####OO##", +"##X .+#o .#", +"#+.OX @@ Xo@", +"#O@##+ +##@O", +"#@oX @@ XO.+", +"##. o#+. X#", +"###OO####OO@##" +}; diff --git a/data/pixmaps/feta/6/scripts-ufermata.xpm b/data/pixmaps/feta/6/scripts-ufermata.xpm new file mode 100644 index 0000000..d5ff0a0 --- /dev/null +++ b/data/pixmaps/feta/6/scripts-ufermata.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"17 11 8 1", +" c #060606", +". c #3e3e3e", +"X c Gray28", +"o c #6f6f6f", +"O c Gray52", +"+ c #b7b7b7", +"@ c #c3c3c3", +"# c None", +/* pixels */ +"#################", +"#######+OO+######", +"#####+. X@####", +"####+ +###", +"###+ O####o +##", +"###..########X.##", +"##+X##########X+#", +"##.+####Oo####+.#", +"##X####O O####X#", +"#oo####O O####oo", +"#++#####OO#####++" +}; diff --git a/data/pixmaps/feta/6/scripts-umarcato.xpm b/data/pixmaps/feta/6/scripts-umarcato.xpm new file mode 100644 index 0000000..fda4e01 --- /dev/null +++ b/data/pixmaps/feta/6/scripts-umarcato.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 8 8 1", +" c Gray2", +". c Gray21", +"X c Gray36", +"o c #6d6d6d", +"O c #888888", +"+ c Gray70", +"@ c #d2d2d2", +"# c None", +/* pixels */ +"########", +"####O###", +"###+ +##", +"###. .##", +"##@X @#", +"##X@o X#", +"#+o#@ @", +"#+@##Oo+" +}; diff --git a/data/pixmaps/feta/6/scripts-upbow.xpm b/data/pixmaps/feta/6/scripts-upbow.xpm new file mode 100644 index 0000000..c25301f --- /dev/null +++ b/data/pixmaps/feta/6/scripts-upbow.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 14 8 1", +" c #181818", +". c #2d2d2d", +"X c Gray26", +"o c #6a6a6a", +"O c #818181", +"+ c Gray69", +"@ c Gray79", +"# c None", +/* pixels */ +"#########", +"##@#####@", +"#oo####oo", +"## #### #", +"## ###+X#", +"##oo##oo#", +"##+.##X+#", +"### ## ##", +"###X++X##", +"###oOoo##", +"###+. ###", +"#### ###", +"####oo###", +"#####@###" +}; diff --git a/data/pixmaps/feta/6/scripts-upedalheel.xpm b/data/pixmaps/feta/6/scripts-upedalheel.xpm new file mode 100644 index 0000000..87dadf9 --- /dev/null +++ b/data/pixmaps/feta/6/scripts-upedalheel.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 9 4 1", +" c #555555", +". c #717171", +"X c #cdcdcd", +"o c None", +/* pixels */ +"oooooooo", +"oXoooooX", +"o..ooo..", +"o..ooo..", +"o..ooo .", +"o..ooo..", +"o. ooo .", +"oo . o", +"ooo...oo" +}; diff --git a/data/pixmaps/feta/6/scripts-upedaltoe.xpm b/data/pixmaps/feta/6/scripts-upedaltoe.xpm new file mode 100644 index 0000000..4080a16 --- /dev/null +++ b/data/pixmaps/feta/6/scripts-upedaltoe.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 10 8 1", +" c #090909", +". c Gray18", +"X c #565656", +"o c #6c6c6c", +"O c #888888", +"+ c #b7b7b7", +"@ c Gray81", +"# c None", +/* pixels */ +"########", +"####+###", +"###+ @##", +"###o O##", +"###.+.##", +"##OX#.@#", +"##XO#oo#", +"## ##@.#", +"#OX###.+", +"#@@###@@" +}; diff --git a/data/pixmaps/feta/6/scripts-upmordent.xpm b/data/pixmaps/feta/6/scripts-upmordent.xpm new file mode 100644 index 0000000..b3a6abe --- /dev/null +++ b/data/pixmaps/feta/6/scripts-upmordent.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"21 12 8 1", +" c Gray2", +". c #2f2f2f", +"X c Gray29", +"o c Gray44", +"O c #939393", +"+ c #b4b4b4", +"@ c #d3d3d3", +"# c None", +/* pixels */ +"#####################", +"#############O@######", +"####.+###oo##.OX#####", +"###+ o##. .#X. O#+@", +"##@ o. .. o +", +"##.XX .o o. o#", +"#@.##. @#o @@ .##", +"#oo###Oo###@X @##oO##", +"#oo##########O@######", +"#oo##################", +"#@ ##################", +"##+@#################" +}; diff --git a/data/pixmaps/feta/6/scripts-upprall.xpm b/data/pixmaps/feta/6/scripts-upprall.xpm new file mode 100644 index 0000000..78b4a57 --- /dev/null +++ b/data/pixmaps/feta/6/scripts-upprall.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"21 11 8 1", +" c #060606", +". c #2f2f2f", +"X c #505050", +"o c Gray45", +"O c #939393", +"+ c Gray69", +"@ c Gray82", +"# c None", +/* pixels */ +"#####################", +"####+####@@####+#####", +"###@ .@##. O##O X@###", +"###. +o o@ .@.+", +"##O. . . X#", +"## @@ +#X X#O @#", +"#OX###X.###O @##@.O##", +"#oo##################", +"#oo##################", +"#@ ##################", +"##+@#################" +}; diff --git a/data/pixmaps/feta/6/scripts-ustaccatissimo.xpm b/data/pixmaps/feta/6/scripts-ustaccatissimo.xpm new file mode 100644 index 0000000..2bd7272 --- /dev/null +++ b/data/pixmaps/feta/6/scripts-ustaccatissimo.xpm @@ -0,0 +1,18 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"4 7 5 1", +" c Gray4", +". c #7b7b7b", +"X c Gray54", +"o c #a4a4a4", +"O c None", +/* pixels */ +"OOOO", +"OO.O", +"OX X", +"Oo o", +"OO O", +"OO O", +"OOXO" +}; diff --git a/data/pixmaps/feta/6/unknown.xpm b/data/pixmaps/feta/6/unknown.xpm new file mode 100644 index 0000000..8698b03 --- /dev/null +++ b/data/pixmaps/feta/6/unknown.xpm @@ -0,0 +1,16 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 8 2 1", +"x c Gray0", +" c None", +/* pixels */ +" xxx ", +" x ", +" x ", +" xx ", +" x ", +" ", +" x ", +" " +}; diff --git a/data/pixmaps/feta/8/accidentals-(.xpm b/data/pixmaps/feta/8/accidentals-(.xpm new file mode 100644 index 0000000..7b48b75 --- /dev/null +++ b/data/pixmaps/feta/8/accidentals-(.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"5 18 7 1", +" c #1b1b1b", +". c #2c2c2c", +"X c #6f6f6f", +"o c Gray56", +"O c #b7b7b7", +"+ c #d2d2d2", +"@ c None", +/* pixels */ +"@@@@@", +"@@@+O", +"@@@Xo", +"@@+.@", +"@@XX@", +"@@ O@", +"@+.@@", +"@X.@@", +"@X @@", +"@X.@@", +"@X @@", +"@X.@@", +"@+.@@", +"@@ O@", +"@@XX@", +"@@+.@", +"@@@Xo", +"@@@+O" +}; diff --git a/data/pixmaps/feta/8/accidentals-).xpm b/data/pixmaps/feta/8/accidentals-).xpm new file mode 100644 index 0000000..7b59f8c --- /dev/null +++ b/data/pixmaps/feta/8/accidentals-).xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"5 18 7 1", +" c #1b1b1b", +". c #2c2c2c", +"X c #6f6f6f", +"o c Gray56", +"O c #b7b7b7", +"+ c #d2d2d2", +"@ c None", +/* pixels */ +"@@@@@", +"@O+@@", +"@oX@@", +"@@.+@", +"@@Xo@", +"@@O @", +"@@@.+", +"@@@.X", +"@@@ X", +"@@@ X", +"@@@ X", +"@@@ X", +"@@@.+", +"@@+ @", +"@@XX@", +"@@.+@", +"@oX@@", +"@O+@@" +}; diff --git a/data/pixmaps/feta/8/accidentals--1.xpm b/data/pixmaps/feta/8/accidentals--1.xpm new file mode 100644 index 0000000..69bf1dd --- /dev/null +++ b/data/pixmaps/feta/8/accidentals--1.xpm @@ -0,0 +1,36 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 22 8 1", +" c Gray5", +". c Gray18", +"X c #4c4c4c", +"o c #717171", +"O c Gray55", +"+ c #b7b7b7", +"@ c #cbcbcb", +"# c None", +/* pixels */ +"#########", +"#@o+#####", +"#+ +#####", +"## ######", +"## ######", +"## ######", +"## ######", +"## ######", +"## ######", +"## ######", +"## ######", +"## ##++##", +"## o o#", +"## X. @", +"## O#@ O", +"## @## +", +"## @#@ .#", +"## ##X.##", +"## #X.###", +"##...####", +"## .#####", +"##O######" +}; diff --git a/data/pixmaps/feta/8/accidentals--2.xpm b/data/pixmaps/feta/8/accidentals--2.xpm new file mode 100644 index 0000000..4d80580 --- /dev/null +++ b/data/pixmaps/feta/8/accidentals--2.xpm @@ -0,0 +1,36 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 22 8 1", +" c #0c0c0c", +". c #2c2c2c", +"X c #4c4c4c", +"o c #747474", +"O c #8d8d8d", +"+ c #b4b4b4", +"@ c Gray80", +"# c None", +/* pixels */ +"##############", +"#@o+##@O######", +"#+ +##o ######", +"## ###o ######", +"## ###o ######", +"## ###O ######", +"## #### ######", +"## #### ######", +"## @### ######", +"## #### ######", +"## #### @#####", +"## ##@+ ##+@##", +"## o o o#", +"## X. X. +", +"## X#@ O#@ O", +"## @## ### +", +"## ##O ##@ .#", +"## ## O.##X.##", +"## #XO# #X.###", +"##..O##...####", +"## o### .#####", +"##O####O######" +}; diff --git a/data/pixmaps/feta/8/accidentals-0.xpm b/data/pixmaps/feta/8/accidentals-0.xpm new file mode 100644 index 0000000..1300396 --- /dev/null +++ b/data/pixmaps/feta/8/accidentals-0.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 25 7 1", +" c Gray2", +". c Gray16", +"X c #6f6f6f", +"o c Gray53", +"O c #b9b9b9", +"+ c #c5c5c5", +"@ c None", +/* pixels */ +"@@@@@@@", +"@+O@@@@", +"@XX@@@@", +"@XX@@@@", +"@XX@@@@", +"@XX@@@@", +"@XX@@XO", +"@o o", +"@o o", +"@o o", +"@o.X+XX", +"@XX@@XX", +"@XX@@XX", +"@XX@@XX", +"@XX@@XX", +"@XX+o.o", +"@o o", +"@o o", +"@o o", +"@+X@@XX", +"@@@@@XX", +"@@@@@XX", +"@@@@@XX", +"@@@@@XX", +"@@@@@O+" +}; diff --git a/data/pixmaps/feta/8/accidentals-1.xpm b/data/pixmaps/feta/8/accidentals-1.xpm new file mode 100644 index 0000000..0e90b59 --- /dev/null +++ b/data/pixmaps/feta/8/accidentals-1.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 26 8 1", +" c #040404", +". c #2f2f2f", +"X c #4c4c4c", +"o c #777777", +"O c #9a9a9a", +"+ c #acacac", +"@ c Gray80", +"# c None", +/* pixels */ +"##########", +"######@+##", +"######OX##", +"###XO#OX##", +"###XO#OX##", +"###XO#OX##", +"###XO#OX@+", +"###XO#o o", +"###X. o", +"#@. .@", +"#o .X##", +"#o o#OX##", +"#+@XO#OX##", +"###XO#OX##", +"###XO#OX@+", +"###XO#o o", +"###X. o", +"#@. .@", +"#o .X##", +"#o o#OX##", +"#+@XO#OX##", +"###XO#OX##", +"###XO#OX##", +"###XO#OX##", +"###XO#####", +"###+@#####" +}; diff --git a/data/pixmaps/feta/8/accidentals-2.xpm b/data/pixmaps/feta/8/accidentals-2.xpm new file mode 100644 index 0000000..485acb4 --- /dev/null +++ b/data/pixmaps/feta/8/accidentals-2.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 10 6 1", +" c #020202", +". c Gray27", +"X c #7c7c7c", +"o c Gray55", +"O c Gray79", +"+ c None", +/* pixels */ +"++++++++++", +"+OXo+++oXO", +"+o o+X o", +"+o .+. o", +"++o. X .o+", +"++++X X+++", +"++o. X .o+", +"+o .+. o", +"+o X+X o", +"+OXo+++oXO" +}; diff --git a/data/pixmaps/feta/8/accordion-accBB.xpm b/data/pixmaps/feta/8/accordion-accBB.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/8/accordion-accBayanbase.xpm b/data/pixmaps/feta/8/accordion-accBayanbase.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/8/accordion-accDiscant.xpm b/data/pixmaps/feta/8/accordion-accDiscant.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/8/accordion-accDot.xpm b/data/pixmaps/feta/8/accordion-accDot.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/8/accordion-accFreebase.xpm b/data/pixmaps/feta/8/accordion-accFreebase.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/8/accordion-accOldEE.xpm b/data/pixmaps/feta/8/accordion-accOldEE.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/8/accordion-accOldEES.xpm b/data/pixmaps/feta/8/accordion-accOldEES.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/8/accordion-accSB.xpm b/data/pixmaps/feta/8/accordion-accSB.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/8/accordion-accStdbase.xpm b/data/pixmaps/feta/8/accordion-accStdbase.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/8/clefs-C.xpm b/data/pixmaps/feta/8/clefs-C.xpm new file mode 100644 index 0000000..87d232a --- /dev/null +++ b/data/pixmaps/feta/8/clefs-C.xpm @@ -0,0 +1,46 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"23 32 8 1", +" c #040404", +". c Gray19", +"X c Gray29", +"o c Gray46", +"O c #888888", +"+ c #afafaf", +"@ c #cdcdcd", +"# c None", +/* pixels */ +"#######################", +"#############+oOO######", +"#O O# O##+. .+###", +"#O O# o#+ X###@ +##", +"#O O# O# X####o +#", +"#O o# O+ X###O .#", +"#O O# OO #### #", +"#O O# O@ o#### O", +"#O O# o#@++##### O", +"#O o# o#++###### O", +"#O O# o#o ###### +", +"#O O# o#o #####@ .#", +"#O O# o#. +####o O#", +"#O O# O# .+###. o##", +"#O o# OO . .X. O###", +"#O O# o##o .+@####", +"#O O# o###########", +"#O O# o##@+@######", +"#O O# XX .@o .o####", +"#O o# O+ .@@O @##", +"#O O# O# o####o @#", +"#O o# o#o @####+ X#", +"#O O# o#o ###### @", +"#O O# o#o.###### O", +"#O O# o######### O", +"#O O# o#o .@#### O", +"#O O# O+ #### #", +"#O O# OO ###+ .#", +"#O o# O@ +###o +#", +"#O O# O#X o###@ +##", +"#O O# o##X X .+###", +"#@oOo@#o+###+oOoO######" +}; diff --git a/data/pixmaps/feta/8/clefs-C_change.xpm b/data/pixmaps/feta/8/clefs-C_change.xpm new file mode 100644 index 0000000..2f112f1 --- /dev/null +++ b/data/pixmaps/feta/8/clefs-C_change.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"19 26 8 1", +" c #070707", +". c Gray17", +"X c #4e4e4e", +"o c #727272", +"O c #898989", +"+ c #aeaeae", +"@ c #d7d7d7", +"# c None", +/* pixels */ +"###################", +"###########ooO#####", +"#O .@.##+.o. .+##", +"#O @ #@ O###X +#", +"#O @ #X .###O #", +"#O @.@ O### +", +"#O @.#o @### O", +"#O .@.##o@#### O", +"#O @.##.##### O", +"#O @ #+ @#### @", +"#O .@.#o o###+ o#", +"#O .@.@ o@+. O##", +"#O @.X .@o..o@###", +"#O # o#########", +"#O # . X#@++@####", +"#O @.O ..X. o###", +"#O @.#. .@##o .@#", +"#O @ #O +###@ .#", +"#O @.#@ ##### O", +"#O @.##o##### O", +"#O @.#@.o#### O", +"#O .@.@. o### +", +"#O @.@ +##O #", +"#O .@.#o O###X +#", +"#O @.##..O. .+##", +"#@oOO#O###+ooO#####" +}; diff --git a/data/pixmaps/feta/8/clefs-F.xpm b/data/pixmaps/feta/8/clefs-F.xpm new file mode 100644 index 0000000..4addcdd --- /dev/null +++ b/data/pixmaps/feta/8/clefs-F.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"23 27 8 1", +" c Gray1", +". c Gray18", +"X c #4b4b4b", +"o c #717171", +"O c Gray56", +"+ c #b1b1b1", +"@ c Gray84", +"# c None", +/* pixels */ +"#######################", +"#######@oooo@##########", +"#####+. Xoo. .@########", +"####+ @####o O#######", +"###+ @######X O##X X#", +"###X O#######+ .##. @", +"##@ X@######. o#. @", +"##o @#####o .##O@#", +"##o o#####+ @####", +"##o .#####+ @####", +"##+ .#####+ @####", +"###X +#####+ @#O@#", +"####o .O######o o#. @", +"##############. O#. @", +"#############+ @#X X#", +"#############o X######", +"############@. .#######", +"############. O#######", +"###########o O########", +"##########O O#########", +"#########O .+##########", +"########o .@###########", +"######+. o#############", +"####@o X@##############", +"###+..@################", +"##..+##################", +"#@+####################" +}; diff --git a/data/pixmaps/feta/8/clefs-F_change.xpm b/data/pixmaps/feta/8/clefs-F_change.xpm new file mode 100644 index 0000000..b2ba711 --- /dev/null +++ b/data/pixmaps/feta/8/clefs-F_change.xpm @@ -0,0 +1,36 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"19 22 8 1", +" c #040404", +". c #323232", +"X c #505050", +"o c Gray45", +"O c #929292", +"+ c Gray69", +"@ c Gray81", +"# c None", +/* pixels */ +"###################", +"######@ooo+########", +"#####X.oo. o######", +"####.X####@ .##+o#", +"###o ######O o# O", +"##@ O##### @. O", +"##o @####X +###", +"##o o####o O###", +"##@ O####o o###", +"###o o#####O o@+#", +"####++######o O. O", +"############ #. +", +"###########O X#@@#", +"##########@. .@####", +"##########X +#####", +"#########o O######", +"########o O#######", +"######@X X@########", +"#####O O##########", +"###@. o############", +"##X.o@#############", +"#@O################" +}; diff --git a/data/pixmaps/feta/8/clefs-G.xpm b/data/pixmaps/feta/8/clefs-G.xpm new file mode 100644 index 0000000..deea1a5 --- /dev/null +++ b/data/pixmaps/feta/8/clefs-G.xpm @@ -0,0 +1,74 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"22 60 8 1", +" c Gray2", +". c #2c2c2c", +"X c #535353", +"o c #727272", +"O c Gray55", +"+ c Gray67", +"@ c Gray82", +"# c None", +/* pixels */ +"######################", +"############@@########", +"############X +#######", +"###########X #######", +"##########o o######", +"#########+ ######", +"#########X X@ o#####", +"########@ X## #####", +"########o .###o +####", +"########. +###O O####", +"######## X####O X####", +"######## O####o ####", +"######## @####O ####", +"######## #####. ####", +"########. ####@ .####", +"########o ####o o####", +"########o ###@ +####", +"########O +##o .#####", +"######### o#+ O#####", +"######### o#. .######", +"#########X.. @######", +"#########o o#######", +"#########o o########", +"########O X#########", +"#######O .@#########", +"######+ o##########", +"#####@. .X ##########", +"####@. #O ##########", +"####o O#@ +#########", +"###+ o### o#########", +"###. X####.o#########", +"##O @####X X.o@#####", +"##X o###O .@###", +"## @##o .@##", +"#+ o##@ .X. .##", +"#O +##X O@ o#@O o#", +"#O ### o##o ###@. #", +"#O ### @##o ####+ +", +"#+ ### ###@ #####. O", +"## @##X @### O####O O", +"##o O##@ X###.o####O O", +"##@..###O X@#oX####X @", +"###+ o###+ #o ###@ .#", +"####O o####@#O ###X +#", +"#####O .+##### @#X +##", +"######@X X++O O###", +"########@o. .o@####", +"###########@@#o ######", +"##############+ ######", +"##############@.######", +"############### O#####", +"#####@. X@#####.o#####", +"##### .#####oo#####", +"####O O####Xo#####", +"####o o####oo#####", +"####O +####.+#####", +"##### X####o.######", +"#####+ o####+ +######", +"######@. XoX.+#######", +"########+ooo+#########" +}; diff --git a/data/pixmaps/feta/8/clefs-G_change.xpm b/data/pixmaps/feta/8/clefs-G_change.xpm new file mode 100644 index 0000000..b24e4b1 --- /dev/null +++ b/data/pixmaps/feta/8/clefs-G_change.xpm @@ -0,0 +1,63 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"18 49 8 1", +" c #040404", +". c #2f2f2f", +"X c #515151", +"o c #6d6d6d", +"O c #8e8e8e", +"+ c #aeaeae", +"@ c #d2d2d2", +"# c None", +/* pixels */ +"##################", +"##########@@######", +"#########@ .######", +"########@. O#####", +"########X .#####", +"#######@ o O####", +"#######X O#XX####", +"#######. X##+ @###", +"######@ +##+ +###", +"######@ .###+ o###", +"######@ +###+ o###", +"######@ +###. o###", +"#######.+##@ +###", +"#######.+##o @###", +"#######Xo#@. o####", +"#######+.#o @####", +"#######+.O X#####", +"########. .######", +"########. .@######", +"######@. O#######", +"#####@. .########", +"#####. .X########", +"####o O@ ########", +"###+ o##.+#######", +"###. @##.+#######", +"##o @###o.Oo@####", +"## o##@o o###", +"#+ @##. X##", +"#O .##X .O @@X o#", +"#O O#@ +#.+##X #", +"#O O#@ .##.X###. O", +"#O O#@ .##OX###O O", +"## X##X +#+.###O O", +"##. @##. @@ @##O O", +"##@ X###..#.@##X #", +"###+ X@##+#.O#@ o#", +"####+ o@##o.O .##", +"#####@o o###", +"########OooX @####", +"############.@####", +"############.O####", +"#####oo@####XX####", +"####o .@###OX####", +"###@ +###OX####", +"###@ +###XX####", +"####. .###@ @####", +"####O +###X.#####", +"#####+. Xo.X@#####", +"#######+oo@#######" +}; diff --git a/data/pixmaps/feta/8/clefs-hufnagel_do.xpm b/data/pixmaps/feta/8/clefs-hufnagel_do.xpm new file mode 100644 index 0000000..059ab63 --- /dev/null +++ b/data/pixmaps/feta/8/clefs-hufnagel_do.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 13 8 1", +" c Gray1", +". c #323232", +"X c Gray34", +"o c #6f6f6f", +"O c #888888", +"+ c #aaaaaa", +"@ c Gray80", +"# c None", +/* pixels */ +"###########", +"######++###", +"####+. .X@", +"###. X#", +"##. o##", +"#O +++###", +"#O ######", +"#O ######", +"#O ######", +"#O X@####", +"#O +####", +"#O +#####", +"##oO#######" +}; diff --git a/data/pixmaps/feta/8/clefs-hufnagel_do_change.xpm b/data/pixmaps/feta/8/clefs-hufnagel_do_change.xpm new file mode 100644 index 0000000..e9b95b4 --- /dev/null +++ b/data/pixmaps/feta/8/clefs-hufnagel_do_change.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 11 8 1", +" c #040404", +". c #272727", +"X c #5f5f5f", +"o c Gray45", +"O c Gray55", +"+ c Gray70", +"@ c #d3d3d3", +"# c None", +/* pixels */ +"#########", +"#####@+##", +"###@X .+", +"##O @", +"#+ ..o##", +"#O o####", +"#O O####", +"#O X####", +"#O O###", +"#O X@###", +"##o+#####" +}; diff --git a/data/pixmaps/feta/8/clefs-hufnagel_do_fa.xpm b/data/pixmaps/feta/8/clefs-hufnagel_do_fa.xpm new file mode 100644 index 0000000..7a703d5 --- /dev/null +++ b/data/pixmaps/feta/8/clefs-hufnagel_do_fa.xpm @@ -0,0 +1,47 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 33 8 1", +" c #040404", +". c Gray22", +"X c #494949", +"o c Gray48", +"O c #898989", +"+ c #b7b7b7", +"@ c Gray77", +"# c None", +/* pixels */ +"###########", +"######++###", +"####+. Xo@", +"###X .#", +"##X X##", +"#O ooO###", +"#O ######", +"#O ######", +"#O ######", +"#O +#####", +"#O O####", +"#O X#####", +"#@ o######", +"###########", +"###########", +"#####o O##", +"###+ @", +"##+ +#", +"#+ X .@##", +"#O ######", +"#O #@o###", +"#O . Xo@", +"#O .#", +"#O X##", +"#O ooO###", +"#O ######", +"#O ######", +"#O ######", +"#O ######", +"#O ######", +"#O +######", +"#O +#######", +"#@+########" +}; diff --git a/data/pixmaps/feta/8/clefs-hufnagel_do_fa_change.xpm b/data/pixmaps/feta/8/clefs-hufnagel_do_fa_change.xpm new file mode 100644 index 0000000..7911ffa --- /dev/null +++ b/data/pixmaps/feta/8/clefs-hufnagel_do_fa_change.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 30 8 1", +" c Gray1", +". c #2c2c2c", +"X c #5d5d5d", +"o c #777777", +"O c Gray55", +"+ c #b1b1b1", +"@ c #d3d3d3", +"# c None", +/* pixels */ +"#########", +"#####@@##", +"###@X X#", +"##O .#", +"#+ O##", +"#o +####", +"#O +####", +"#o +####", +"#o .@###", +"#o .@###", +"#+ o#####", +"#########", +"#########", +"#########", +"#########", +"####@X+##", +"###O +", +"##X O#", +"#O XO+##", +"#o +####", +"#o X..+#", +"#o .#", +"#o .##", +"#o O+###", +"#O +####", +"#o +####", +"#o +####", +"#o .@####", +"#o @#####", +"#+@######" +}; diff --git a/data/pixmaps/feta/8/clefs-hufnagel_fa.xpm b/data/pixmaps/feta/8/clefs-hufnagel_fa.xpm new file mode 100644 index 0000000..cd99011 --- /dev/null +++ b/data/pixmaps/feta/8/clefs-hufnagel_fa.xpm @@ -0,0 +1,34 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 20 8 1", +" c #040404", +". c #373737", +"X c #4b4b4b", +"o c #747474", +"O c #898989", +"+ c #b4b4b4", +"@ c #cbcbcb", +"# c None", +/* pixels */ +"###########", +"######++###", +"####@. Xo@", +"###o .#", +"##X X##", +"#O ooO###", +"#O ######", +"#O @oX###", +"#O X@", +"#O .#", +"#O X##", +"#O +o+###", +"#O ######", +"#O ######", +"#O ######", +"#O ######", +"#O ######", +"#O +######", +"#O +#######", +"#@@########" +}; diff --git a/data/pixmaps/feta/8/clefs-hufnagel_fa_change.xpm b/data/pixmaps/feta/8/clefs-hufnagel_fa_change.xpm new file mode 100644 index 0000000..73d6fe6 --- /dev/null +++ b/data/pixmaps/feta/8/clefs-hufnagel_fa_change.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 16 8 1", +" c #020202", +". c Gray18", +"X c #5a5a5a", +"o c Gray44", +"O c #8b8b8b", +"+ c #b2b2b2", +"@ c Gray81", +"# c None", +/* pixels */ +"#########", +"#####++##", +"####. .+", +"##O @", +"#+ .o##", +"#O O#@##", +"#O XX.@@", +"#O +", +"#O .@#", +"#O X@@##", +"#O O####", +"#O O####", +"#O o####", +"#O +####", +"#O +#####", +"#@@######" +}; diff --git a/data/pixmaps/feta/8/clefs-medicaea_do.xpm b/data/pixmaps/feta/8/clefs-medicaea_do.xpm new file mode 100644 index 0000000..281a683 --- /dev/null +++ b/data/pixmaps/feta/8/clefs-medicaea_do.xpm @@ -0,0 +1,39 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 25 8 1", +" c #060606", +". c Gray15", +"X c Gray36", +"o c #747474", +"O c #888888", +"+ c #b9b9b9", +"@ c Gray76", +"# c None", +/* pixels */ +"###########", +"#@+########", +"#oo########", +"#oo########", +"#oo########", +"#O.########", +"#O O######", +"#O o####", +"#O O##", +"#o.. #", +"#oo#o #", +"#oX###o +", +"#oX#####o #", +"#O O#######", +"#O o#####", +"#O o###", +"#O o#", +"#oXO #", +"#oo##o @", +"#oX####O #", +"#oX######O#", +"#oo########", +"#oo########", +"#oo########", +"#@+########" +}; diff --git a/data/pixmaps/feta/8/clefs-medicaea_do_change.xpm b/data/pixmaps/feta/8/clefs-medicaea_do_change.xpm new file mode 100644 index 0000000..b85e408 --- /dev/null +++ b/data/pixmaps/feta/8/clefs-medicaea_do_change.xpm @@ -0,0 +1,34 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 21 7 1", +" c #070707", +". c #5a5a5a", +"X c #7b7b7b", +"o c Gray56", +"O c Gray75", +"+ c #d5d5d5", +"@ c None", +/* pixels */ +"@@@@@@@@@", +"@+@@@@@@@", +"@o+@@@@@@", +"@o+@@@@@@", +"@oX@@@@@@", +"@o X@@@@", +"@o X@@", +"@o. +", +"@o+@X o", +"@o+@@@X o", +"@o+@@@@@@", +"@o+@@@@@@", +"@o o@@@@@", +"@o X@@@", +"@o X@", +"@o+o o", +"@o+@@X o", +"@o+@@@@X+", +"@o+@@@@@@", +"@o+@@@@@@", +"@+@@@@@@@" +}; diff --git a/data/pixmaps/feta/8/clefs-medicaea_fa.xpm b/data/pixmaps/feta/8/clefs-medicaea_fa.xpm new file mode 100644 index 0000000..dcd6d52 --- /dev/null +++ b/data/pixmaps/feta/8/clefs-medicaea_fa.xpm @@ -0,0 +1,39 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"16 25 8 1", +" c Gray3", +". c Gray22", +"X c Gray25", +"o c Gray45", +"O c Gray54", +"+ c Gray73", +"@ c Gray76", +"# c None", +/* pixels */ +"################", +"#######O########", +"#######.########", +"####### ########", +"####### ########", +"####### +#######", +"####### .+#####", +"####### X@###", +"####### .+#", +"#+ O#.. +", +"#O o# #@X O", +"#O O# @##@. O", +"#O o# #####@.O", +"#O O# o#######", +"#O o# o#####", +"#O O# o###", +"##oO.o# o#", +"####oo# o O", +"####oo# ##o O", +"####oo# ####o O", +"####oo# ######o@", +"####oo# ########", +"####oo# ########", +"####oo# ########", +"####++#O########" +}; diff --git a/data/pixmaps/feta/8/clefs-medicaea_fa_change.xpm b/data/pixmaps/feta/8/clefs-medicaea_fa_change.xpm new file mode 100644 index 0000000..9a5b30f --- /dev/null +++ b/data/pixmaps/feta/8/clefs-medicaea_fa_change.xpm @@ -0,0 +1,35 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 21 8 1", +" c #060606", +". c #373737", +"X c Gray29", +"o c #727272", +"O c Gray54", +"+ c #bcbcbc", +"@ c Gray79", +"# c None", +/* pixels */ +"#############", +"######@######", +"#####@O######", +"#####@O######", +"######X@#####", +"###### X+###", +"###### .@#", +"#####@XX @", +"#O ##O#+. O", +"#O #@O###+.O", +"#O @#O######", +"#O o#O######", +"#O O# o#####", +"#O O# o###", +"###oo# o#", +"###oo#oO O", +"###oo#o##o O", +"###oo#O####oO", +"###oo#O######", +"###oo#O######", +"###++#@######" +}; diff --git a/data/pixmaps/feta/8/clefs-mensural1_c.xpm b/data/pixmaps/feta/8/clefs-mensural1_c.xpm new file mode 100644 index 0000000..e7c5397 --- /dev/null +++ b/data/pixmaps/feta/8/clefs-mensural1_c.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"22 32 7 1", +" c Gray3", +". c #222222", +"X c #414141", +"o c #7c7c7c", +"O c #868686", +"+ c #c6c6c6", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@@@@@@@@", +"@+O@O@@@@@@@@@@@@@O@O+", +"@O +.@@@@@@@@@@@@@.@ o", +"@O @.@@@@@@@@@@@@@.@ O", +"@O @.@@@@@@@@@@@@@.@ O", +"@o +.@@@@@@@@@@@@@.+ O", +"@O @.@@@@@@@@@@@@@ @ O", +"@O +.@@@@@@@@@@@@@.+ o", +"@O @.@@@@@@@@@@@@+.@ O", +"@O @ @@@@@@@@@@@@@.@ O", +"@O +.@@@@@@@@@@@@@.+ o", +"@o @.@@@@@@@@@@@@@ @ O", +"@O @ .OoOOooooooO. @ o", +"@O + @ O", +"@O @ @ O", +"@O @.ooooooooooooo @ O", +"@O @.@@@@@@@@@@@@@ @ O", +"@o + ooooooooooooo.+ O", +"@O @ @ o", +"@O @ @ O", +"@O @ .OOooooOOOoO. @ o", +"@O @ @@@@@@@@@@@@@ @ O", +"@O +.@@@@@@@@@@@@@.@ O", +"@o @.@@@@@@@@@@@@@.+ o", +"@O +.@@@@@@@@@@@@+.@ O", +"@O @.@@@@@@@@@@@@@.+ O", +"@O +.@@@@@@@@@@@@@ @ o", +"@O @.@@@@@@@@@@@@@.@ O", +"@o @.@@@@@@@@@@@@@.+ O", +"@O +.@@@@@@@@@@@@@.@ O", +"@O @.@@@@@@@@@@@@@.@ o", +"@+O@O@@@@@@@@@@@@@O@O+" +}; diff --git a/data/pixmaps/feta/8/clefs-mensural1_c_change.xpm b/data/pixmaps/feta/8/clefs-mensural1_c_change.xpm new file mode 100644 index 0000000..75ccb1a --- /dev/null +++ b/data/pixmaps/feta/8/clefs-mensural1_c_change.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"18 26 8 1", +" c Gray3", +". c Gray14", +"X c #5f5f5f", +"o c #717171", +"O c #868686", +"+ c #bbbbbb", +"@ c #c6c6c6", +"# c None", +/* pixels */ +"##################", +"#+@@+#########+@@+", +"#oOOX#########XOOo", +"#oOOX#########XOOo", +"#ooOX#########XOoo", +"#oOOX#########XOOo", +"#oOOX#########XOOo", +"#oOOX#########XOOo", +"#oOOX#########XoOo", +"#oOOX#########XOOo", +"#ooO . OOo", +"#oOO Ooo", +"#oOO.OooOoOooO.Ooo", +"#oOOX#########XOOo", +"#ooO.OoooOoooO.OOo", +"#oo+ +oo", +"#ooO . . Ooo", +"#oOOX#########XOOo", +"#oOOX#########XOOo", +"#oOOX#########XOOo", +"#oOOX#########XOOo", +"#ooOX#########XOOo", +"#oOOX#########XOOo", +"#oOOo#########XOOo", +"#oOOX#########XOOo", +"#+@@+#########+@@+" +}; diff --git a/data/pixmaps/feta/8/clefs-mensural1_f.xpm b/data/pixmaps/feta/8/clefs-mensural1_f.xpm new file mode 100644 index 0000000..6a5758b --- /dev/null +++ b/data/pixmaps/feta/8/clefs-mensural1_f.xpm @@ -0,0 +1,59 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"18 45 8 1", +" c #0b0b0b", +". c #2d2d2d", +"X c #4c4c4c", +"o c #6d6d6d", +"O c #8e8e8e", +"+ c Gray70", +"@ c Gray81", +"# c None", +/* pixels */ +"##################", +"##############+###", +"#############X ###", +"############o o##", +"###########+ X ##", +"#oo##### ##.X# X#", +"#o.#@@#O #+ +#O @", +"#O #X o##..#", +"#O #O ++ +#", +"#O ... ## ..X##", +"#oo####@ ##@ o##", +"#oX#@@@@ @## .##", +"#O ##O O O#", +"#O #@ O#X @", +"#O .... #o +#@. @", +"#oX####@ #o .##.o#", +"#OO####@ #@ OO.##", +"######## ##o O##", +"########.##@ o###", +"#######@ @##o @###", +"########.###oo####", +"######## ###oo####", +"######## ###oo####", +"######## ###oo####", +"######## ###oo####", +"########.@##oo####", +"########.###oo####", +"#######@ ###oo####", +"######## ###oo####", +"######## ###oo####", +"######## ###oo####", +"#######@ ###oo####", +"######## ###oo####", +"######## ###oo####", +"#######@ ###oo####", +"######## ###oo####", +"######## ###oo####", +"#######@ ###oo####", +"########.###oo####", +"######## ###oo####", +"########.@##oo####", +"############oo####", +"############oo####", +"############oo####", +"############++####" +}; diff --git a/data/pixmaps/feta/8/clefs-mensural1_f_change.xpm b/data/pixmaps/feta/8/clefs-mensural1_f_change.xpm new file mode 100644 index 0000000..b1094af --- /dev/null +++ b/data/pixmaps/feta/8/clefs-mensural1_f_change.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 37 8 1", +" c #060606", +". c Gray22", +"X c #535353", +"o c #727272", +"O c Gray53", +"+ c #afafaf", +"@ c #d0d0d0", +"# c None", +/* pixels */ +"##############", +"##########@o##", +"#########@ +#", +"#########o .#", +"########@ @. +", +"#oo#@#.+o #+ O", +"#o @X O@ #", +"#o @@ ..o#", +"#oX+O+ +#X X##", +"#oo###.+## .##", +"#o oXo +#+ X#", +"#O +#.O @", +"#o ... @+ #o O", +"#OO###X+X @@ @", +"######.++ XO.#", +"######.+# +#", +"######.+#O o##", +"######.+#@X###", +"######.+##O###", +"######.+##O###", +"######.+##o###", +"######.+##O###", +"######.+##O###", +"######.+##O###", +"######.+##o###", +"######.+##o###", +"######.+##O###", +"######.+##O###", +"######.+##o###", +"######.+##O###", +"######.+##O###", +"######X+##O###", +"######.+##O###", +"######O@##O###", +"##########O###", +"##########O###", +"##########@###" +}; diff --git a/data/pixmaps/feta/8/clefs-mensural2_c.xpm b/data/pixmaps/feta/8/clefs-mensural2_c.xpm new file mode 100644 index 0000000..249f60c --- /dev/null +++ b/data/pixmaps/feta/8/clefs-mensural2_c.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 32 7 1", +" c Gray2", +". c #393939", +"X c #717171", +"o c Gray53", +"O c Gray73", +"+ c #c6c6c6", +"@ c None", +/* pixels */ +"@@@@@@@@@", +"@O+@@@@+O", +"@Xo@@@@oX", +"@Xo@@@@oX", +"@Xo@@@@oX", +"@Xo@@@@oX", +"@Xo@@@@oX", +"@Xo@@@@oX", +"@XX@@@@oX", +"@XX@@@@XX", +"@X X", +"@X X", +"@Xo@@@@oX", +"@X.oooo.X", +"@X X", +"@X.oXoo.X", +"@Xo@@@@oX", +"@X.oXXo.X", +"@X X", +"@X.oooo.X", +"@Xo@@@@oX", +"@X X", +"@X X", +"@Xo@@@@XX", +"@Xo@@@@oX", +"@Xo@@@@XX", +"@Xo@@@@oX", +"@Xo@@@@oX", +"@Xo@@@@oX", +"@Xo@@@@oX", +"@Xo@@@@oX", +"@O+@@@@+O" +}; diff --git a/data/pixmaps/feta/8/clefs-mensural2_c_change.xpm b/data/pixmaps/feta/8/clefs-mensural2_c_change.xpm new file mode 100644 index 0000000..2a6a335 --- /dev/null +++ b/data/pixmaps/feta/8/clefs-mensural2_c_change.xpm @@ -0,0 +1,42 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 28 8 1", +" c #020202", +". c #252525", +"X c #5f5f5f", +"o c Gray44", +"O c Gray53", +"+ c #b9b9b9", +"@ c #c0c0c0", +"# c None", +/* pixels */ +"########", +"#@+###+@", +"#oo###oo", +"#oo###oo", +"#oo###oo", +"#oX###oo", +"#oo###Xo", +"#O.OoO.O", +"#O O", +"#oX###Xo", +"#oX###Xo", +"#oX###oo", +"#O.OoO.O", +"#O O", +"#oX###Xo", +"#O O", +"#O.OoO.O", +"#oo###oo", +"#oo###Xo", +"#oX###Xo", +"#O O", +"#O.OoO.O", +"#oX###Xo", +"#oX###oo", +"#oo###Xo", +"#oo###oo", +"#oo###oo", +"#@+###+@" +}; diff --git a/data/pixmaps/feta/8/clefs-mensural2_f.xpm b/data/pixmaps/feta/8/clefs-mensural2_f.xpm new file mode 100644 index 0000000..6e15d3d --- /dev/null +++ b/data/pixmaps/feta/8/clefs-mensural2_f.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 13 8 1", +" c Gray2", +". c Gray19", +"X c #4e4e4e", +"o c Gray43", +"O c Gray54", +"+ c Gray69", +"@ c Gray79", +"# c None", +/* pixels */ +"############", +"##+o@###@o##", +"#+ ## .#", +"#+o .#o O", +"####O @#X.#", +"#####X X####", +"#####@ X####", +"#####@ X####", +"#####@ @####", +"#####..#o.##", +"##+o. ## +", +"#+ X@##o +", +"#+O######++#" +}; diff --git a/data/pixmaps/feta/8/clefs-mensural2_f_change.xpm b/data/pixmaps/feta/8/clefs-mensural2_f_change.xpm new file mode 100644 index 0000000..a156eea --- /dev/null +++ b/data/pixmaps/feta/8/clefs-mensural2_f_change.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 13 8 1", +" c #040404", +". c #373737", +"X c Gray32", +"o c Gray44", +"O c Gray56", +"+ c #b6b6b6", +"@ c Gray79", +"# c None", +/* pixels */ +"############", +"##+o@####@##", +"#+ o##X O#", +"###o O#o +", +"####O ##O+#", +"#####X @####", +"#####@ @####", +"#####@ @####", +"#####+ #####", +"#####Xo#@o##", +"####Xo##. .#", +"##. X###@ +", +"#+o@#####@+#" +}; diff --git a/data/pixmaps/feta/8/clefs-mensural3_c.xpm b/data/pixmaps/feta/8/clefs-mensural3_c.xpm new file mode 100644 index 0000000..b46053c --- /dev/null +++ b/data/pixmaps/feta/8/clefs-mensural3_c.xpm @@ -0,0 +1,53 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 39 8 1", +" c Gray2", +". c #272727", +"X c #515151", +"o c #6f6f6f", +"O c Gray52", +"+ c Gray70", +"@ c Gray80", +"# c None", +/* pixels */ +"#########", +"#+@####@+", +"#oO####Oo", +"#oO####Oo", +"#oO####Oo", +"#oO####Oo", +"#oO####Oo", +"#oO####Oo", +"#oO####Oo", +"#oo#@@#oo", +"#o o", +"#o .... o", +"#oO####Oo", +"#o.oXXX.o", +"#o O", +"#oX@+++Xo", +"#oO####Oo", +"#o XXXX o", +"#o O", +"#oo@@@@oo", +"#oo#@@@oo", +"#o o", +"#o XXXX.o", +"#oO####Oo", +"#oX@++@Xo", +"#o o", +"#o.XXXX.o", +"#oO####Oo", +"#o .... o", +"#o o", +"#oo#@@#oo", +"#oO####Oo", +"#oO####Oo", +"#oO####Oo", +"#oO####Oo", +"#oO####Oo", +"#oO####Oo", +"#oO####OX", +"#+@####@+" +}; diff --git a/data/pixmaps/feta/8/clefs-mensural3_c_change.xpm b/data/pixmaps/feta/8/clefs-mensural3_c_change.xpm new file mode 100644 index 0000000..4d87755 --- /dev/null +++ b/data/pixmaps/feta/8/clefs-mensural3_c_change.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 35 8 1", +" c Gray3", +". c #323232", +"X c #4e4e4e", +"o c Gray44", +"O c #868686", +"+ c #b9b9b9", +"@ c Gray82", +"# c None", +/* pixels */ +"########", +"#++###++", +"#oo###oo", +"#oo###oo", +"#oo###oo", +"#oo###oo", +"#oo###oo", +"#O oXo o", +"#O O", +"#oo###oo", +"#oo###oo", +"#oo###oo", +"#O XXX O", +"#O ... O", +"#oX#@#Xo", +"#O O", +"#o.@+@Xo", +"#oo###oo", +"#oo###oo", +"#oX@+@Xo", +"#O O", +"#oX#@#Xo", +"#O ... O", +"#O X.X O", +"#oo###oo", +"#oo###oo", +"#oo###oo", +"#O O", +"#O oXo O", +"#oo###oo", +"#oX###oo", +"#oo###oo", +"#oo###oo", +"#oo###oo", +"#++###+@" +}; diff --git a/data/pixmaps/feta/8/clefs-mensural_g.xpm b/data/pixmaps/feta/8/clefs-mensural_g.xpm new file mode 100644 index 0000000..1e4cab4 --- /dev/null +++ b/data/pixmaps/feta/8/clefs-mensural_g.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 19 8 1", +" c #060606", +". c Gray17", +"X c #4e4e4e", +"o c #717171", +"O c Gray57", +"+ c #aeaeae", +"@ c Gray81", +"# c None", +/* pixels */ +"###########", +"#######o@##", +"######. .##", +"###### .+##", +"######X.@##", +"######@ .#", +"#####@#@O +", +"####O X## O", +"###O .. O", +"##O oX @", +"##..+ XoO##", +"#O @# .@#", +"#O ## .o. #", +"#O ## o#@ #", +"#+ O# o## #", +"##. @ o#@X#", +"##+ X+XO#", +"###+. .##", +"#####@+O###" +}; diff --git a/data/pixmaps/feta/8/clefs-mensural_g_change.xpm b/data/pixmaps/feta/8/clefs-mensural_g_change.xpm new file mode 100644 index 0000000..c1c356f --- /dev/null +++ b/data/pixmaps/feta/8/clefs-mensural_g_change.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 16 8 1", +" c #060606", +". c #2d2d2d", +"X c #4e4e4e", +"o c Gray45", +"O c Gray55", +"+ c Gray68", +"@ c Gray83", +"# c None", +/* pixels */ +"#########", +"#####O@##", +"####@ .@#", +"####@ X##", +"#####X o#", +"######X @", +"###@O@+ o", +"##@ O", +"##X O.o#", +"#+.#X .@#", +"#oO#X #", +"#oX#.X@ @", +"#+ #X+#.@", +"##. ooX#", +"##@X O#", +"####+++##" +}; diff --git a/data/pixmaps/feta/8/clefs-percussion.xpm b/data/pixmaps/feta/8/clefs-percussion.xpm new file mode 100644 index 0000000..73d2cad --- /dev/null +++ b/data/pixmaps/feta/8/clefs-percussion.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 17 5 1", +" c Gray2", +". c Gray49", +"X c Gray54", +"o c #c8c8c8", +"O c None", +/* pixels */ +"OOOOOOOOOOOO", +"OoXXXOOOXXXo", +"OX OOO X", +"OX OOO X", +"OX OOO X", +"OX OOO X", +"OX OOO X", +"OX OOO X", +"OX OOO X", +"OX OOO X", +"OX OOO X", +"OX OOO X", +"OX OOO X", +"OX OOO X", +"OX OOO X", +"OX OOO X", +"Oo.XXOOOXXXo" +}; diff --git a/data/pixmaps/feta/8/clefs-percussion_change.xpm b/data/pixmaps/feta/8/clefs-percussion_change.xpm new file mode 100644 index 0000000..4f5fd7e --- /dev/null +++ b/data/pixmaps/feta/8/clefs-percussion_change.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 14 5 1", +" c #090909", +". c #7b7b7b", +"X c Gray55", +"o c Gray79", +"O c None", +/* pixels */ +"OOOOOOOOOO", +"OoXXOOOX.o", +"OX OOO X", +"OX OOO X", +"OX OOO X", +"OX OOO X", +"OX OOO X", +"OX OOO X", +"OX OOO X", +"OX OOO X", +"OX OOO X", +"OX OOO X", +"OX OOO X", +"OoXXOOOX.o" +}; diff --git a/data/pixmaps/feta/8/clefs-tab.xpm b/data/pixmaps/feta/8/clefs-tab.xpm new file mode 100644 index 0000000..a648339 --- /dev/null +++ b/data/pixmaps/feta/8/clefs-tab.xpm @@ -0,0 +1,52 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 38 8 1", +" c #060606", +". c #343434", +"X c #484848", +"o c Gray48", +"O c Gray53", +"+ c #b9b9b9", +"@ c #c6c6c6", +"# c None", +/* pixels */ +"##############", +"#@OOOOOOOOOOO#", +"#O #", +"#@oOOo XOoOO#", +"###### O#####", +"###### o#####", +"###### O#####", +"###### O#####", +"###### O#####", +"###### o#####", +"###### O#####", +"###### O#####", +"######Oo+#####", +"##############", +"#####+ X#####", +"#####o #####", +"##### O####", +"####o .o ####", +"#### o# O###", +"###+ ##o X###", +"###X oOX +##", +"##+ X##", +"##o XOOOOo ##", +"## O##### o#", +"#O ######o #", +"##############", +"#@oOoOOoO#####", +"#O X###", +"#O ooooo O##", +"#O #####o ##", +"#O oooOo O##", +"#O .@#", +"#O oOOOOo #", +"#O ####### O", +"#O ####### O", +"#O oOOOOo #", +"#O .@#", +"#@OOOOOOOO####" +}; diff --git a/data/pixmaps/feta/8/clefs-tab_change.xpm b/data/pixmaps/feta/8/clefs-tab_change.xpm new file mode 100644 index 0000000..4543681 --- /dev/null +++ b/data/pixmaps/feta/8/clefs-tab_change.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 31 7 1", +" c #020202", +". c #494949", +"X c #777777", +"o c #868686", +"O c #b7b7b7", +"+ c #c8c8c8", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@", +"@+XoooooooX+", +"@o o", +"@@@@@o o@@@@", +"@@@@@o o@@@@", +"@@@@@o o@@@@", +"@@@@@o o@@@@", +"@@@@@o o@@@@", +"@@@@@o o@@@@", +"@@@@@o o@@@@", +"@@@@@+o+@@@@", +"@@@@@+o+@@@@", +"@@@@@ @@@@", +"@@@@O O@@@", +"@@@@. X .@@@", +"@@@O .@. O@@", +"@@@. O@O .@@", +"@@O O@", +"@@X XXXXX X@", +"@@ @@@@@ @", +"@+o+@@@@@OX+", +"@+ooXXXXO@@@", +"@o .@@", +"@o o@@@@. X@", +"@o o@@@@. o@", +"@o O@", +"@o .oXXX. +", +"@o o@@@@@X o", +"@o .XXXX. +", +"@o XO@", +"@+X+@@@@@@@@" +}; diff --git a/data/pixmaps/feta/8/clefs-vaticana_do.xpm b/data/pixmaps/feta/8/clefs-vaticana_do.xpm new file mode 100644 index 0000000..50c8053 --- /dev/null +++ b/data/pixmaps/feta/8/clefs-vaticana_do.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 14 7 1", +" c #040404", +". c Gray17", +"X c #464646", +"o c #777777", +"O c #8b8b8b", +"+ c Gray74", +"@ c None", +/* pixels */ +"@@@@@@", +"@@@OO@", +"@@X O", +"@+ O", +"@O O", +"@O O", +"@o.@@@", +"@oo@@@", +"@O.@@@", +"@O O", +"@O O", +"@+ O", +"@@X O", +"@@@OO@" +}; diff --git a/data/pixmaps/feta/8/clefs-vaticana_do_change.xpm b/data/pixmaps/feta/8/clefs-vaticana_do_change.xpm new file mode 100644 index 0000000..50c8053 --- /dev/null +++ b/data/pixmaps/feta/8/clefs-vaticana_do_change.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 14 7 1", +" c #040404", +". c Gray17", +"X c #464646", +"o c #777777", +"O c #8b8b8b", +"+ c Gray74", +"@ c None", +/* pixels */ +"@@@@@@", +"@@@OO@", +"@@X O", +"@+ O", +"@O O", +"@O O", +"@o.@@@", +"@oo@@@", +"@O.@@@", +"@O O", +"@O O", +"@+ O", +"@@X O", +"@@@OO@" +}; diff --git a/data/pixmaps/feta/8/clefs-vaticana_fa.xpm b/data/pixmaps/feta/8/clefs-vaticana_fa.xpm new file mode 100644 index 0000000..ea4db63 --- /dev/null +++ b/data/pixmaps/feta/8/clefs-vaticana_fa.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 19 8 1", +" c Gray2", +". c Gray17", +"X c #484848", +"o c Gray44", +"O c Gray54", +"+ c Gray69", +"@ c Gray81", +"# c None", +/* pixels */ +"##########", +"#######Oo#", +"######X O", +"#####+ O", +"###@#o O", +"##. XO . O", +"#O .X###", +"#O o###", +"#O X. .@@@", +"##@#o O", +"####o O", +"####oX. O", +"####ooO +", +"####oo#@@#", +"####oo####", +"####oo####", +"####oo####", +"####oo####", +"####++####" +}; diff --git a/data/pixmaps/feta/8/clefs-vaticana_fa_change.xpm b/data/pixmaps/feta/8/clefs-vaticana_fa_change.xpm new file mode 100644 index 0000000..ea4db63 --- /dev/null +++ b/data/pixmaps/feta/8/clefs-vaticana_fa_change.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 19 8 1", +" c Gray2", +". c Gray17", +"X c #484848", +"o c Gray44", +"O c Gray54", +"+ c Gray69", +"@ c Gray81", +"# c None", +/* pixels */ +"##########", +"#######Oo#", +"######X O", +"#####+ O", +"###@#o O", +"##. XO . O", +"#O .X###", +"#O o###", +"#O X. .@@@", +"##@#o O", +"####o O", +"####oX. O", +"####ooO +", +"####oo#@@#", +"####oo####", +"####oo####", +"####oo####", +"####oo####", +"####++####" +}; diff --git a/data/pixmaps/feta/8/custodes-hufnagel.xpm b/data/pixmaps/feta/8/custodes-hufnagel.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/8/custodes-medicaea.xpm b/data/pixmaps/feta/8/custodes-medicaea.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/8/custodes-mensural.xpm b/data/pixmaps/feta/8/custodes-mensural.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/8/custodes-rhufnagel.xpm b/data/pixmaps/feta/8/custodes-rhufnagel.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/8/custodes-rmedicaea.xpm b/data/pixmaps/feta/8/custodes-rmedicaea.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/8/custodes-rmensural.xpm b/data/pixmaps/feta/8/custodes-rmensural.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/8/custodes-rvaticana.xpm b/data/pixmaps/feta/8/custodes-rvaticana.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/8/custodes-vaticana.xpm b/data/pixmaps/feta/8/custodes-vaticana.xpm new file mode 100644 index 0000000..e69de29 diff --git a/data/pixmaps/feta/8/dots-dot.xpm b/data/pixmaps/feta/8/dots-dot.xpm new file mode 100644 index 0000000..c27b27b --- /dev/null +++ b/data/pixmaps/feta/8/dots-dot.xpm @@ -0,0 +1,17 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"5 5 6 1", +" c Gray0", +". c #6f6f6f", +"X c #909090", +"o c #bcbcbc", +"O c Gray87", +"+ c None", +/* pixels */ +"+++++", +"++oo+", +"+X O", +"+. X", +"+O..O" +}; diff --git a/data/pixmaps/feta/8/dots-evenrepeatcolon.xpm b/data/pixmaps/feta/8/dots-evenrepeatcolon.xpm new file mode 100644 index 0000000..78a9967 --- /dev/null +++ b/data/pixmaps/feta/8/dots-evenrepeatcolon.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"5 21 6 1", +" c Gray0", +". c #2d2d2d", +"X c Gray45", +"o c Gray65", +"O c #d7d7d7", +"+ c None", +/* pixels */ +"+++++", +"++oO+", +"+o o", +"+X X", +"+O .+", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+++++", +"+O .+", +"+X X", +"+o o", +"++oO+" +}; diff --git a/data/pixmaps/feta/8/dots-repeatcolon.xpm b/data/pixmaps/feta/8/dots-repeatcolon.xpm new file mode 100644 index 0000000..b41654d --- /dev/null +++ b/data/pixmaps/feta/8/dots-repeatcolon.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"5 13 5 1", +" c Gray0", +". c Gray14", +"X c Gray45", +"o c #a4a4a4", +"O c None", +/* pixels */ +"OOOOO", +"OOooO", +"Oo o", +"OX X", +"OO..O", +"OOOOO", +"OOOOO", +"OOOOO", +"OOOOO", +"OO..O", +"OX X", +"Oo o", +"OOooO" +}; diff --git a/data/pixmaps/feta/8/flags-d3.xpm b/data/pixmaps/feta/8/flags-d3.xpm new file mode 100644 index 0000000..b5d3b44 --- /dev/null +++ b/data/pixmaps/feta/8/flags-d3.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 24 8 1", +" c Gray4", +". c #323232", +"X c Gray37", +"o c Gray44", +"O c #8e8e8e", +"+ c Gray68", +"@ c Gray77", +"# c None", +/* pixels */ +"###########", +"########O##", +"########.+#", +"########oX#", +"######### #", +"######### +", +"#########oo", +"#########Xo", +"#oo######oo", +"#oX######.O", +"#oX#####O #", +"#oX##### O#", +"#oo###@..##", +"#oo##+. ###", +"#oo#X O###", +"#O.. O####", +"#O O#####", +"#O .######", +"#O @######", +"#O o#######", +"#O ########", +"#oX########", +"#oo########", +"##@########" +}; diff --git a/data/pixmaps/feta/8/flags-d4.xpm b/data/pixmaps/feta/8/flags-d4.xpm new file mode 100644 index 0000000..359f564 --- /dev/null +++ b/data/pixmaps/feta/8/flags-d4.xpm @@ -0,0 +1,39 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 25 8 1", +" c #090909", +". c Gray17", +"X c Gray33", +"o c Gray44", +"O c #8b8b8b", +"+ c #a7a7a7", +"@ c Gray79", +"# c None", +/* pixels */ +"###########", +"#########@#", +"#########o+", +"#########oo", +"#########oo", +"#########.O", +"########+ #", +"######## o#", +"#######. o#", +"#oX##O o# #", +"#oo#X o## #", +"#O . o### #", +"#O o###OX#", +"#O .####.@#", +"#O +###XX##", +"#o ###o ###", +"#oX#@..@###", +"#ooO .#####", +"#O +#####", +"#O O######", +"#O o#######", +"#O ########", +"#o.########", +"#oo########", +"##@########" +}; diff --git a/data/pixmaps/feta/8/flags-d5.xpm b/data/pixmaps/feta/8/flags-d5.xpm new file mode 100644 index 0000000..0470804 --- /dev/null +++ b/data/pixmaps/feta/8/flags-d5.xpm @@ -0,0 +1,46 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 32 8 1", +" c Gray2", +". c #313131", +"X c #4b4b4b", +"o c Gray45", +"O c #868686", +"+ c #b2b2b2", +"@ c #c6c6c6", +"# c None", +/* pixels */ +"###########", +"#########@#", +"#########o+", +"#########oo", +"#########oo", +"#########oo", +"######### #", +"########.o#", +"#######...#", +"#####O .#X+", +"###o X##Xo", +"##O X###oo", +"##o X####X+", +"##o.####oX#", +"##o+###+ o#", +"#+o###O .X#", +"#oo#+X X# #", +"#o.X X## #", +"#O X##+.#", +"#O X###.o#", +"#O ###+ ##", +"#O +##+ +##", +"#o.##+ o###", +"#oo#X X####", +"#O.. X#####", +"#O .######", +"#O +######", +"#O O#######", +"#o ########", +"#oo########", +"#oo########", +"##@########" +}; diff --git a/data/pixmaps/feta/8/flags-d6.xpm b/data/pixmaps/feta/8/flags-d6.xpm new file mode 100644 index 0000000..f105376 --- /dev/null +++ b/data/pixmaps/feta/8/flags-d6.xpm @@ -0,0 +1,50 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 36 8 1", +" c #040404", +". c #313131", +"X c #4b4b4b", +"o c #717171", +"O c #898989", +"+ c #b6b6b6", +"@ c Gray78", +"# c None", +/* pixels */ +"###########", +"#########+@", +"#########oo", +"#########oo", +"#########oo", +"######### +", +"########. #", +"#####+o Xoo", +"##@. o#oo", +"##o +##oo", +"##O X#### +", +"##o.####X #", +"##O@###X #", +"#####+ O.#", +"###+X +# #", +"##O X##+.#", +"##o X###.o#", +"##o ###+ o#", +"##o+##+ .o#", +"#@o##+ ooo#", +"#oo#o X#oo#", +"#ooo X##oo#", +"#O ###.@#", +"#O +##o.##", +"#O o### +##", +"#O ###.o###", +"#O.##..####", +"#oo#X #####", +"#o.X +#####", +"#O O######", +"#O X#######", +"#O +#######", +"#O ########", +"#oo########", +"#oo########", +"##@########" +}; diff --git a/data/pixmaps/feta/8/flags-dgrace.xpm b/data/pixmaps/feta/8/flags-dgrace.xpm new file mode 100644 index 0000000..dda390e --- /dev/null +++ b/data/pixmaps/feta/8/flags-dgrace.xpm @@ -0,0 +1,23 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"19 11 6 1", +" c #151515", +". c #232323", +"X c #7b7b7b", +"o c #8e8e8e", +"O c #b1b1b1", +"+ c None", +/* pixels */ +"+++++++++++++++++++", +"+OX++++++++++++++++", +"+O. X++++++++++++++", +"+++O. o++++++++++++", +"+++++O o++++++++++", +"+++++++O. o++++++++", +"+++++++++o O++++++", +"+++++++++++o .O++++", +"+++++++++++++o .O++", +"+++++++++++++++X .O", +"+++++++++++++++++XO" +}; diff --git a/data/pixmaps/feta/8/flags-dstem.xpm b/data/pixmaps/feta/8/flags-dstem.xpm new file mode 100644 index 0000000..e3de3d1 --- /dev/null +++ b/data/pixmaps/feta/8/flags-dstem.xpm @@ -0,0 +1,36 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"3 27 3 1", +" c Gray45", +". c #bcbcbc", +"X c None", +/* pixels */ +"XXX", +"X..", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X.." +}; diff --git a/data/pixmaps/feta/8/flags-stem.xpm b/data/pixmaps/feta/8/flags-stem.xpm new file mode 100644 index 0000000..e3de3d1 --- /dev/null +++ b/data/pixmaps/feta/8/flags-stem.xpm @@ -0,0 +1,36 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"3 27 3 1", +" c Gray45", +". c #bcbcbc", +"X c None", +/* pixels */ +"XXX", +"X..", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X ", +"X.." +}; diff --git a/data/pixmaps/feta/8/flags-u3.xpm b/data/pixmaps/feta/8/flags-u3.xpm new file mode 100644 index 0000000..a0365d3 --- /dev/null +++ b/data/pixmaps/feta/8/flags-u3.xpm @@ -0,0 +1,39 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 25 8 1", +" c #040404", +". c #2d2d2d", +"X c #4c4c4c", +"o c #717171", +"O c #868686", +"+ c Gray71", +"@ c #d0d0d0", +"# c None", +/* pixels */ +"##########", +"#@@#######", +"#oO#######", +"#oo#######", +"#o #######", +"#o @######", +"#O o######", +"#O +#####", +"#o .#####", +"#oX. o####", +"#oO@ +###", +"#oo#+ @##", +"#oo##+ .##", +"#oO###+ +#", +"#oO####X.#", +"#oO####+ #", +"#oo#####.O", +"#@######Oo", +"########Oo", +"########Oo", +"########.@", +"#######@ @", +"#######OX#", +"#######.O#", +"#######O##" +}; diff --git a/data/pixmaps/feta/8/flags-u4.xpm b/data/pixmaps/feta/8/flags-u4.xpm new file mode 100644 index 0000000..065eda3 --- /dev/null +++ b/data/pixmaps/feta/8/flags-u4.xpm @@ -0,0 +1,43 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 29 8 1", +" c Gray2", +". c #2c2c2c", +"X c #4e4e4e", +"o c Gray45", +"O c Gray55", +"+ c #b6b6b6", +"@ c #d3d3d3", +"# c None", +/* pixels */ +"##########", +"#@@#######", +"#oO#######", +"#oo#######", +"#o #######", +"#O O######", +"#o .######", +"#o o#####", +"#o. @####", +"#oO@ @###", +"#o.#+ .###", +"#o +#+ o##", +"#O X##O ##", +"#o O##.o#", +"#o +#+ #", +"#oOO @#.@", +"#oO#+ X#.@", +"#@@##+ X.#", +"######+ o#", +"#######X.#", +"######## +", +"########oo", +"########Oo", +"########oo", +"########XO", +"########.@", +"#######OX#", +"#######.O#", +"#######O##" +}; diff --git a/data/pixmaps/feta/8/flags-u5.xpm b/data/pixmaps/feta/8/flags-u5.xpm new file mode 100644 index 0000000..8410dcd --- /dev/null +++ b/data/pixmaps/feta/8/flags-u5.xpm @@ -0,0 +1,49 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 35 8 1", +" c #060606", +". c #313131", +"X c #505050", +"o c Gray45", +"O c #8d8d8d", +"+ c #aeaeae", +"@ c Gray82", +"# c None", +/* pixels */ +"##########", +"#@@#######", +"#oO#######", +"#oo#######", +"#o #######", +"#o @######", +"#O X######", +"#o +#####", +"#o. @####", +"#oO@ .####", +"#o.#+ o###", +"#o @#+ @##", +"#O X##..##", +"#o +#@ @#", +"#o +#.o#", +"#oOo .#OX#", +"#oo#+ oOX#", +"#@X@#+ o#", +"##Xo##+ @#", +"##X ###Xo#", +"##X .##+ #", +"##O X##.@", +"###+ +#.@", +"#####X O.#", +"######X O#", +"#######Xo#", +"#######@ #", +"########.o", +"########Oo", +"########oo", +"########X+", +"########.@", +"#######OX#", +"#######.O#", +"#######O##" +}; diff --git a/data/pixmaps/feta/8/flags-u6.xpm b/data/pixmaps/feta/8/flags-u6.xpm new file mode 100644 index 0000000..b66db19 --- /dev/null +++ b/data/pixmaps/feta/8/flags-u6.xpm @@ -0,0 +1,57 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 43 8 1", +" c Gray2", +". c #2a2a2a", +"X c #505050", +"o c #727272", +"O c Gray55", +"+ c #acacac", +"@ c Gray83", +"# c None", +/* pixels */ +"##########", +"#@@#######", +"#oO#######", +"#oo#######", +"#o #######", +"#o @######", +"#O o######", +"#o +#####", +"#o. .@####", +"#oO+ o####", +"#oX#O @###", +"#o ##o ###", +"#O +##.O##", +"#o @#+.##", +"#o .##.@#", +"#oXX O#OX#", +"#oO#X ++X#", +"#+O##o.oX#", +"##O###o +#", +"##XX###.+#", +"##X @##OX#", +"##o .###.@", +"##+. O##.@", +"####o O#.@", +"##@##o.OX#", +"##o+##o +#", +"##XX###.+#", +"##o +##OX#", +"##o .@##.@", +"###. .@#.@", +"####O .#.@", +"#####@..+#", +"######@ +#", +"#######+.#", +"########.@", +"########oo", +"########oo", +"########Oo", +"########X+", +"########.@", +"#######OX#", +"#######.O#", +"#######O##" +}; diff --git a/data/pixmaps/feta/8/flags-ugrace.xpm b/data/pixmaps/feta/8/flags-ugrace.xpm new file mode 100644 index 0000000..2b9c6ff --- /dev/null +++ b/data/pixmaps/feta/8/flags-ugrace.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"18 12 6 1", +" c Gray1", +". c Gray19", +"X c #727272", +"o c #b4b4b4", +"O c #c1c1c1", +"+ c None", +/* pixels */ +"++++++++++++++++++", +"++++++++++++++++oo", +"++++++++++++++o. o", +"+++++++++++++X X++", +"+++++++++++o .o+++", +"+++++++++o. o+++++", +"++++++++X X+++++++", +"++++++o .O++++++++", +"++++o. o++++++++++", +"+++X X++++++++++++", +"+o .o+++++++++++++", +"+oo+++++++++++++++" +}; diff --git a/data/pixmaps/feta/8/noteheads--1.xpm b/data/pixmaps/feta/8/noteheads--1.xpm new file mode 100644 index 0000000..7b9a423 --- /dev/null +++ b/data/pixmaps/feta/8/noteheads--1.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"19 10 8 1", +" c #040404", +". c #2c2c2c", +"X c Gray26", +"o c #777777", +"O c Gray54", +"+ c #b1b1b1", +"@ c Gray85", +"# c None", +/* pixels */ +"###################", +"##O###@oOOOO+####++", +"#O #+. o#@O o@# o", +"#o X .####@ + o", +"#O .#####o O", +"#O .#####+ O", +"#O @####+ o", +"#o . o####+ + o", +"#o #+. X@@@ o@# o", +"##O###@OoOOO+####+@" +}; diff --git a/data/pixmaps/feta/8/noteheads--1mensural.xpm b/data/pixmaps/feta/8/noteheads--1mensural.xpm new file mode 100644 index 0000000..12e293e --- /dev/null +++ b/data/pixmaps/feta/8/noteheads--1mensural.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"17 14 7 1", +" c #010101", +". c #252525", +"X c #797979", +"o c #868686", +"O c #b9b9b9", +"+ c #c0c0c0", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@@@", +"@+O@@@@@@@@@@@@O+", +"@XX@@@@@@@@@@@@XX", +"@o XoXoXXXXoXXX o", +"@o o", +"@o o", +"@o.oXXXXXXXXXXo.X", +"@XX@@@@@@@@@@@@XX", +"@o.oXXXXXXXXXXo.o", +"@o o", +"@o o", +"@o XoXXXXoXoXoX o", +"@XX@@@@@@@@@@@@XX", +"@+O@@@@@@@@@@@@OO" +}; diff --git a/data/pixmaps/feta/8/noteheads--2mensural.xpm b/data/pixmaps/feta/8/noteheads--2mensural.xpm new file mode 100644 index 0000000..022203a --- /dev/null +++ b/data/pixmaps/feta/8/noteheads--2mensural.xpm @@ -0,0 +1,35 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"18 21 8 1", +" c #020202", +". c #393939", +"X c Gray30", +"o c #717171", +"O c Gray55", +"+ c #a9a9a9", +"@ c Gray77", +"# c None", +/* pixels */ +"##################", +"#++############++#", +"#oo############Xo#", +"#O oooooooooooo o#", +"#O O#", +"#O o#", +"#o.++++++++++++.o#", +"#oo############oo#", +"#O XXXXXXXXXXXX o#", +"#O o#", +"#O o#", +"#O @@@+@+@@@@@@ o#", +"#oo############oX#", +"##@############o #", +"###############+ #", +"################ #", +"################ #", +"################ O", +"################ O", +"################ O", +"################o+" +}; diff --git a/data/pixmaps/feta/8/noteheads--3mensural.xpm b/data/pixmaps/feta/8/noteheads--3mensural.xpm new file mode 100644 index 0000000..01728a5 --- /dev/null +++ b/data/pixmaps/feta/8/noteheads--3mensural.xpm @@ -0,0 +1,35 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"22 21 8 1", +" c Gray1", +". c #3f3f3f", +"X c #4b4b4b", +"o c #717171", +"O c Gray54", +"+ c #a9a9a9", +"@ c Gray76", +"# c None", +/* pixels */ +"######################", +"#++#################O#", +"#oo################# #", +"#O oooooooooooooooo. #", +"#O #", +"#O @", +"#oX++++O+++O+++++++O #", +"#oo################# #", +"#O oXXXXXXXXXXXXXXXX #", +"#O #", +"#O #", +"#o @@+@@+@@@@@@+@+@O #", +"#oo################# #", +"##@################# #", +"#################### #", +"#################### #", +"#################### +", +"#################### O", +"#################### O", +"#################### O", +"####################++" +}; diff --git a/data/pixmaps/feta/8/noteheads-0.xpm b/data/pixmaps/feta/8/noteheads-0.xpm new file mode 100644 index 0000000..c4027f2 --- /dev/null +++ b/data/pixmaps/feta/8/noteheads-0.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"17 10 8 1", +" c #040404", +". c #373737", +"X c #484848", +"o c #7b7b7b", +"O c #8e8e8e", +"+ c Gray72", +"@ c gainsboro", +"# c None", +/* pixels */ +"#################", +"#####@OOOOoO#####", +"###@. .@@+. .+##", +"##X #####X X#", +"#O #####+ O", +"#O ###### O", +"#O +##### O", +"##X X##### X#", +"###@. .+@@. .+##", +"#####@OoOOOO#####" +}; diff --git a/data/pixmaps/feta/8/noteheads-0cross.xpm b/data/pixmaps/feta/8/noteheads-0cross.xpm new file mode 100644 index 0000000..08dd5fe --- /dev/null +++ b/data/pixmaps/feta/8/noteheads-0cross.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"15 11 7 1", +" c Gray3", +". c Gray21", +"X c Gray28", +"o c Gray42", +"O c #8b8b8b", +"+ c Gray69", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@", +"@@@@O@@@@@@o@@@", +"@@+ o +@@+ o +@", +"@O +@+....+@+ O", +"@@X.+@@oo@@+.X@", +"@@@+ o@@@@o +@@", +"@@@+ o@@@@o +@@", +"@@X.+@@oo@@+.X@", +"@O +@+....+@+ O", +"@@+ o O@@+ o +@", +"@@@@O@@@@@@o@@@" +}; diff --git a/data/pixmaps/feta/8/noteheads-0diamond.xpm b/data/pixmaps/feta/8/noteheads-0diamond.xpm new file mode 100644 index 0000000..3cb826e --- /dev/null +++ b/data/pixmaps/feta/8/noteheads-0diamond.xpm @@ -0,0 +1,23 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"17 10 7 1", +" c #060606", +". c Gray27", +"X c Gray47", +"o c Gray55", +"O c #b1b1b1", +"+ c #c0c0c0", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@@@", +"@@@@@@@@oo@@@@@@@", +"@@@@@@O O@@@@@", +"@@@@o. Xo .o@@@", +"@O @@@O +", +"@o @@@@ o", +"@+ O@@@ +", +"@@@@o. XX .o@@@", +"@@@@@@O O@@@@@", +"@@@@@@@@oo@@@@@@@" +}; diff --git a/data/pixmaps/feta/8/noteheads-0mensural.xpm b/data/pixmaps/feta/8/noteheads-0mensural.xpm new file mode 100644 index 0000000..29ac3c7 --- /dev/null +++ b/data/pixmaps/feta/8/noteheads-0mensural.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 10 6 1", +" c #0b0b0b", +". c Gray19", +"X c Gray46", +"o c Gray54", +"O c #d8d8d8", +"+ c None", +/* pixels */ +"+++++++++", +"++++OO+++", +"+++O +++", +"+++.. .++", +"++.X+X .+", +"+o X++X o", +"++. X+X.+", +"++O. ..++", +"+++O. +++", +"++++OO+++" +}; diff --git a/data/pixmaps/feta/8/noteheads-0slash.xpm b/data/pixmaps/feta/8/noteheads-0slash.xpm new file mode 100644 index 0000000..63bf93b --- /dev/null +++ b/data/pixmaps/feta/8/noteheads-0slash.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"24 17 7 1", +" c #060606", +". c #484848", +"X c Gray50", +"o c Gray53", +"O c #b6b6b6", +"+ c #cdcdcd", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@Ooooooooooooo+", +"@@@@@@@@@O +", +"@@@@@@@@@. O@", +"@@@@@@@@O X@@@@@@O .@@", +"@@@@@@@@ .@@@@@@@. O@@", +"@@@@@@@o O@@@@@@O o@@@", +"@@@@@@O .@@@@@@@ @@@@", +"@@@@@@. @@@@@@@o O@@@@", +"@@@@@O X@@@@@@@ .@@@@@", +"@@@@@ @@@@@@@. O@@@@@", +"@@@@X O@@@@@@O o@@@@@@", +"@@@O .@@@@@@@. @@@@@@@", +"@@@. O@@@@@@X O@@@@@@@", +"@@O .@@@@@@@@", +"@+ O@@@@@@@@", +"@+oooooooooooo+@@@@@@@@@" +}; diff --git a/data/pixmaps/feta/8/noteheads-0triangle.xpm b/data/pixmaps/feta/8/noteheads-0triangle.xpm new file mode 100644 index 0000000..a73af66 --- /dev/null +++ b/data/pixmaps/feta/8/noteheads-0triangle.xpm @@ -0,0 +1,23 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 9 8 1", +" c Gray0", +". c #2c2c2c", +"X c #535353", +"o c Gray43", +"O c Gray55", +"+ c Gray71", +"@ c Gray81", +"# c None", +/* pixels */ +"###########", +"#####++####", +"#####..####", +"####XXXX###", +"###@.@#.@##", +"###XO##OX##", +"##O.####.O#", +"## XOOOOX #", +"#@oooooooo@" +}; diff --git a/data/pixmaps/feta/8/noteheads-1.xpm b/data/pixmaps/feta/8/noteheads-1.xpm new file mode 100644 index 0000000..3f90a35 --- /dev/null +++ b/data/pixmaps/feta/8/noteheads-1.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 10 8 1", +" c Gray2", +". c #313131", +"X c Gray31", +"o c Gray46", +"O c #8b8b8b", +"+ c Gray67", +"@ c #d2d2d2", +"# c None", +/* pixels */ +"############", +"######@oOO+#", +"####+. .O#X+", +"###. X@##oo", +"##o o###@ O", +"#@ @###@ @", +"#O @###o o#", +"#oO###X .##", +"#+X@O .+###", +"##+OOO@#####" +}; diff --git a/data/pixmaps/feta/8/noteheads-1cross.xpm b/data/pixmaps/feta/8/noteheads-1cross.xpm new file mode 100644 index 0000000..5cc98b5 --- /dev/null +++ b/data/pixmaps/feta/8/noteheads-1cross.xpm @@ -0,0 +1,23 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 11 6 1", +" c Gray4", +". c Gray23", +"X c Gray57", +"o c #afafaf", +"O c #d0d0d0", +"+ c None", +/* pixels */ +"+++++++++++++", +"+++XO++++OX++", +"++.. o++O ..+", +"+X Oo XX oO X", +"++X O+ .+O X+", +"+++o X++X X++", +"+++X X++X X++", +"++X O+. +O X+", +"+X Oo XX oO X", +"++.. O++O ..+", +"+++XO++++OX++" +}; diff --git a/data/pixmaps/feta/8/noteheads-1diamond.xpm b/data/pixmaps/feta/8/noteheads-1diamond.xpm new file mode 100644 index 0000000..41bce2f --- /dev/null +++ b/data/pixmaps/feta/8/noteheads-1diamond.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 10 8 1", +" c #070707", +". c Gray20", +"X c Gray26", +"o c Gray39", +"O c #888888", +"+ c #b7b7b7", +"@ c #c1c1c1", +"# c None", +/* pixels */ +"#############", +"##########OO#", +"###@. o O", +"### .@+ +", +"### o##+ X#", +"##+ +##+ +#", +"##X +##O ##", +"#+ @+. ##", +"#O o .@##", +"##OO#########" +}; diff --git a/data/pixmaps/feta/8/noteheads-1mensural.xpm b/data/pixmaps/feta/8/noteheads-1mensural.xpm new file mode 100644 index 0000000..29ac3c7 --- /dev/null +++ b/data/pixmaps/feta/8/noteheads-1mensural.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 10 6 1", +" c #0b0b0b", +". c Gray19", +"X c Gray46", +"o c Gray54", +"O c #d8d8d8", +"+ c None", +/* pixels */ +"+++++++++", +"++++OO+++", +"+++O +++", +"+++.. .++", +"++.X+X .+", +"+o X++X o", +"++. X+X.+", +"++O. ..++", +"+++O. +++", +"++++OO+++" +}; diff --git a/data/pixmaps/feta/8/noteheads-1slash.xpm b/data/pixmaps/feta/8/noteheads-1slash.xpm new file mode 100644 index 0000000..e292a34 --- /dev/null +++ b/data/pixmaps/feta/8/noteheads-1slash.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"21 17 7 1", +" c #060606", +". c #484848", +"X c Gray50", +"o c #868686", +"O c #b6b6b6", +"+ c #cdcdcd", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@Oooooooooo+", +"@@@@@@@@@O +", +"@@@@@@@@@. O@", +"@@@@@@@@O X@@@O .@@", +"@@@@@@@@ .@@@@. O@@", +"@@@@@@@o O@@@O X@@@", +"@@@@@@O .@@@@ @@@@", +"@@@@@@. @@@@X O@@@@", +"@@@@@O X@@@@ .@@@@@", +"@@@@@ @@@@. O@@@@@", +"@@@@X O@@@O X@@@@@@", +"@@@O .@@@@. @@@@@@@", +"@@@. O@@@X O@@@@@@@", +"@@O .@@@@@@@@", +"@+ O@@@@@@@@", +"@+ooooooooo+@@@@@@@@@" +}; diff --git a/data/pixmaps/feta/8/noteheads-1triangle.xpm b/data/pixmaps/feta/8/noteheads-1triangle.xpm new file mode 100644 index 0000000..48852af --- /dev/null +++ b/data/pixmaps/feta/8/noteheads-1triangle.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 9 7 1", +" c Gray0", +". c #2a2a2a", +"X c #464646", +"o c #727272", +"O c #b1b1b1", +"+ c #cdcdcd", +"@ c None", +/* pixels */ +"@@@@@@@@@", +"@@@@++@@@", +"@@@@oo@@@", +"@@@+..+@@", +"@@@XOOX@@", +"@@+.@@.+@", +"@@.O@@O.@", +"@O oooo O", +"@Ooooooo+" +}; diff --git a/data/pixmaps/feta/8/noteheads-2.xpm b/data/pixmaps/feta/8/noteheads-2.xpm new file mode 100644 index 0000000..4e0ff64 --- /dev/null +++ b/data/pixmaps/feta/8/noteheads-2.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 10 5 1", +" c #020202", +". c #494949", +"X c #c0c0c0", +"o c #e9e9e9", +"O c None", +/* pixels */ +"OOOOOOOOOOOO", +"OOOOOOoXXoOO", +"OOOOo .O", +"OOO. X", +"OO. X", +"Oo o", +"OX .O", +"OX .OO", +"OO. oOOO", +"OOOoXXoOOOOO" +}; diff --git a/data/pixmaps/feta/8/noteheads-2cross.xpm b/data/pixmaps/feta/8/noteheads-2cross.xpm new file mode 100644 index 0000000..138f62e --- /dev/null +++ b/data/pixmaps/feta/8/noteheads-2cross.xpm @@ -0,0 +1,23 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 10 7 1", +" c #060606", +". c #323232", +"X c Gray26", +"o c Gray49", +"O c Gray71", +"+ c #c5c5c5", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@", +"@OO@@@@@@@OO", +"@O X@@@@@X O", +"@@+..@@@..+@", +"@@@@X o .@@@", +"@@@@@ @@@@", +"@@@@X o X@@@", +"@@+..@@@..+@", +"@O X@@@@@X O", +"@OO@@@@@@@OO" +}; diff --git a/data/pixmaps/feta/8/noteheads-2diamond.xpm b/data/pixmaps/feta/8/noteheads-2diamond.xpm new file mode 100644 index 0000000..d9690d0 --- /dev/null +++ b/data/pixmaps/feta/8/noteheads-2diamond.xpm @@ -0,0 +1,23 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 11 6 1", +" c Gray1", +". c Gray24", +"X c Gray28", +"o c Gray53", +"O c #bbbbbb", +"+ c None", +/* pixels */ +"++++++++++++", +"+++++Oo+++++", +"+++++ . O", +"++++o o", +"++++X X+", +"+++O X++", +"+++X O++", +"++X X+++", +"+o o+++", +"+O . ++++", +"++++++oO++++" +}; diff --git a/data/pixmaps/feta/8/noteheads-2mensural.xpm b/data/pixmaps/feta/8/noteheads-2mensural.xpm new file mode 100644 index 0000000..6d6115f --- /dev/null +++ b/data/pixmaps/feta/8/noteheads-2mensural.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 10 5 1", +" c #070707", +". c Gray20", +"X c Gray53", +"o c #d7d7d7", +"O c None", +/* pixels */ +"OOOOOOOOO", +"OOOOooOOO", +"OOOo. OOO", +"OOO. .OO", +"OO. .O", +"OX X", +"OO. .O", +"OOo. .oO", +"OOOO. oOO", +"OOOOooOOO" +}; diff --git a/data/pixmaps/feta/8/noteheads-2slash.xpm b/data/pixmaps/feta/8/noteheads-2slash.xpm new file mode 100644 index 0000000..82554af --- /dev/null +++ b/data/pixmaps/feta/8/noteheads-2slash.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"15 17 6 1", +" c Gray1", +". c #464646", +"X c #838383", +"o c #b7b7b7", +"O c #cdcdcd", +"+ c None", +/* pixels */ +"+++++++++++++++", +"++++++++++oXXXO", +"+++++++++o +", +"+++++++++. o+", +"++++++++o .++", +"++++++++ o++", +"+++++++X .+++", +"++++++o ++++", +"++++++. o++++", +"+++++o .+++++", +"+++++ O+++++", +"++++. X++++++", +"+++o +++++++", +"+++. o+++++++", +"++o .++++++++", +"++ o++++++++", +"+O.XXO+++++++++" +}; diff --git a/data/pixmaps/feta/8/noteheads-2triangle.xpm b/data/pixmaps/feta/8/noteheads-2triangle.xpm new file mode 100644 index 0000000..083eeb8 --- /dev/null +++ b/data/pixmaps/feta/8/noteheads-2triangle.xpm @@ -0,0 +1,23 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 9 8 1", +" c #010101", +". c #393939", +"X c #585858", +"o c #797979", +"O c Gray54", +"+ c #b1b1b1", +"@ c Gray83", +"# c None", +/* pixels */ +"#########", +"####@@###", +"####oo###", +"###@ @##", +"###X X##", +"##@ @#", +"##. .#", +"#+ +", +"#+oOOOOo+" +}; diff --git a/data/pixmaps/feta/8/noteheads-2xcircle.xpm b/data/pixmaps/feta/8/noteheads-2xcircle.xpm new file mode 100644 index 0000000..6b25356 --- /dev/null +++ b/data/pixmaps/feta/8/noteheads-2xcircle.xpm @@ -0,0 +1,23 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 11 6 1", +" c #040404", +". c Gray21", +"X c #4c4c4c", +"o c #6f6f6f", +"O c #b9b9b9", +"+ c None", +/* pixels */ +"++++++++++++", +"+++++ooo++++", +"+++o.ooo.o++", +"++X o+++o .+", +"+O +..+..+ O", +"+oo++X X++oo", +"+oo++X X++oo", +"+O +..+..+ O", +"++X o+++o X+", +"+++o.ooo.o++", +"+++++ooo++++" +}; diff --git a/data/pixmaps/feta/8/noteheads-ledgerending.xpm b/data/pixmaps/feta/8/noteheads-ledgerending.xpm new file mode 100644 index 0000000..a74581c --- /dev/null +++ b/data/pixmaps/feta/8/noteheads-ledgerending.xpm @@ -0,0 +1,14 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 4 4 1", +" c #010101", +". c #8b8b8b", +"X c #cbcbcb", +"o c None", +/* pixels */ +"oooooooooo", +"oX.......X", +"o. .", +"oX.......X" +}; diff --git a/data/pixmaps/feta/8/rests--1.xpm b/data/pixmaps/feta/8/rests--1.xpm new file mode 100644 index 0000000..1401b29 --- /dev/null +++ b/data/pixmaps/feta/8/rests--1.xpm @@ -0,0 +1,20 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 9 5 1", +" c #040404", +". c Gray46", +"X c #818181", +"o c #b9b9b9", +"O c None", +/* pixels */ +"OOOOOO", +"Oo.X.o", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"Oo.X.o" +}; diff --git a/data/pixmaps/feta/8/rests--1o.xpm b/data/pixmaps/feta/8/rests--1o.xpm new file mode 100644 index 0000000..76958c1 --- /dev/null +++ b/data/pixmaps/feta/8/rests--1o.xpm @@ -0,0 +1,23 @@ +/* XPM */ +static char * rests__1o_xpm[] = { +"15 9 11 1", +" c None", +". c #888888", +"+ c #818181", +"@ c #B9B9B9", +"# c #020202", +"$ c #040404", +"% c #757575", +"& c #C8C8C8", +"* c #050505", +"= c #737373", +"- c #AAAAAA", +" ", +" ......+...... ", +"@######$######@", +" %$$$% ", +" %$$$% ", +" %$$$% ", +" %$$$% ", +"&******$******&", +"&=====-+====== "}; diff --git a/data/pixmaps/feta/8/rests--2.xpm b/data/pixmaps/feta/8/rests--2.xpm new file mode 100644 index 0000000..9ed05a1 --- /dev/null +++ b/data/pixmaps/feta/8/rests--2.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 17 5 1", +" c Gray1", +". c #777777", +"X c #8d8d8d", +"o c #c0c0c0", +"O c None", +/* pixels */ +"OOOOOO", +"Oo.X.o", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"O. .", +"Oo.XXo" +}; diff --git a/data/pixmaps/feta/8/rests--4.xpm b/data/pixmaps/feta/8/rests--4.xpm new file mode 100644 index 0000000..4d858b3 --- /dev/null +++ b/data/pixmaps/feta/8/rests--4.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"63 17 7 1", +" c Gray1", +". c #272727", +"X c #7b7b7b", +"o c #888888", +"O c #b9b9b9", +"+ c #c0c0c0", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@", +"@+O@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@OO", +"@XX@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@XX", +"@XX@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@XX", +"@XX@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@XX", +"@XX@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@XX", +"@X.oXXXXXXXXXXXoXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.o", +"@X o", +"@o o", +"@o o", +"@o X", +"@o.oXXXXXXoooXXXoXoXXoXXXoXXXoXoXXXXooXXoXoXXoXXXXXooXXXXoXoo X", +"@XX@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@XX", +"@XX@+@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@XX", +"@XX@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@XX", +"@XX@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@XX", +"@+O@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@O+" +}; diff --git a/data/pixmaps/feta/8/rests-0.xpm b/data/pixmaps/feta/8/rests-0.xpm new file mode 100644 index 0000000..e3da06f --- /dev/null +++ b/data/pixmaps/feta/8/rests-0.xpm @@ -0,0 +1,18 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 7 5 1", +" c Gray1", +". c Gray49", +"X c Gray53", +"o c Gray77", +"O c None", +/* pixels */ +"OOOOOOOOOOOOO", +"Oo.XXXXXXXX.o", +"O. X", +"OX X", +"OX X", +"OX .", +"Oo.XXXXXXXX.o" +}; diff --git a/data/pixmaps/feta/8/rests-0o.xpm b/data/pixmaps/feta/8/rests-0o.xpm new file mode 100644 index 0000000..194bf4e --- /dev/null +++ b/data/pixmaps/feta/8/rests-0o.xpm @@ -0,0 +1,20 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"23 8 6 1", +" c #020202", +". c Gray37", +"X c Gray38", +"o c #888888", +"O c #b9b9b9", +"+ c None", +/* pixels */ +"+++++++++++++++++++++++", +"++oooooooooooooooooooo+", +"+O O", +"++++++X .+++++", +"++++++X .+++++", +"++++++X .+++++", +"++++++. .+++++", +"++++++OXoooooooooO+++++" +}; diff --git a/data/pixmaps/feta/8/rests-1.xpm b/data/pixmaps/feta/8/rests-1.xpm new file mode 100644 index 0000000..e3da06f --- /dev/null +++ b/data/pixmaps/feta/8/rests-1.xpm @@ -0,0 +1,18 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 7 5 1", +" c Gray1", +". c Gray49", +"X c Gray53", +"o c Gray77", +"O c None", +/* pixels */ +"OOOOOOOOOOOOO", +"Oo.XXXXXXXX.o", +"O. X", +"OX X", +"OX X", +"OX .", +"Oo.XXXXXXXX.o" +}; diff --git a/data/pixmaps/feta/8/rests-1o.xpm b/data/pixmaps/feta/8/rests-1o.xpm new file mode 100644 index 0000000..d94fa12 --- /dev/null +++ b/data/pixmaps/feta/8/rests-1o.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"23 7 6 1", +" c Gray2", +". c Gray37", +"X c Gray45", +"o c #aaaaaa", +"O c #c8c8c8", +"+ c None", +/* pixels */ +"+++++++++++++++++++++++", +"++++++oXXXXXXXXXXo+++++", +"++++++. .+++++", +"++++++. .+++++", +"++++++. .+++++", +"+O O", +"+OXXXXXoXXXXXXXXXXXXXX+" +}; diff --git a/data/pixmaps/feta/8/rests-2.xpm b/data/pixmaps/feta/8/rests-2.xpm new file mode 100644 index 0000000..23e5271 --- /dev/null +++ b/data/pixmaps/feta/8/rests-2.xpm @@ -0,0 +1,37 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 23 8 1", +" c Gray2", +". c #2f2f2f", +"X c Gray31", +"o c #6f6f6f", +"O c #909090", +"+ c Gray72", +"@ c #cdcdcd", +"# c None", +/* pixels */ +"#########", +"###O@####", +"###O @###", +"####Xo###", +"####@ o##", +"####+ @#", +"####o .#", +"###@ o", +"##@ @", +"#@. @#", +"#o +##", +"#@ o###", +"##o +###", +"###o @###", +"####.X###", +"#@..X +##", +"#o .##", +"#O .Xo .#", +"#@ O###o#", +"## +#####", +"##OO#####", +"###O#####", +"###@@####" +}; diff --git a/data/pixmaps/feta/8/rests-2mensural.xpm b/data/pixmaps/feta/8/rests-2mensural.xpm new file mode 100644 index 0000000..b57b733 --- /dev/null +++ b/data/pixmaps/feta/8/rests-2mensural.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 8 7 1", +" c #010101", +". c #444444", +"X c #727272", +"o c #898989", +"O c #bbbbbb", +"+ c #c1c1c1", +"@ c None", +/* pixels */ +"@@@@@@@@", +"@@o+@@@@", +"@o XO@", +"@o o. o", +"@o @@@X+", +"@o @@@@@", +"@o @@@@@", +"@@o@@@@@" +}; diff --git a/data/pixmaps/feta/8/rests-3.xpm b/data/pixmaps/feta/8/rests-3.xpm new file mode 100644 index 0000000..76e19bd --- /dev/null +++ b/data/pixmaps/feta/8/rests-3.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 16 8 1", +" c Gray2", +". c Gray20", +"X c #515151", +"o c #777777", +"O c #8b8b8b", +"+ c #b4b4b4", +"@ c Gray81", +"# c None", +/* pixels */ +"############", +"##+OO@######", +"#+ @###++", +"#o @###Xo", +"#O +#@X #", +"##. . X#", +"###+oOoO#.O#", +"########+ @#", +"######## X##", +"#######@ @##", +"#######o ###", +"####### X###", +"######+ @###", +"######X ####", +"#####@ O####", +"#####@O@####" +}; diff --git a/data/pixmaps/feta/8/rests-3mensural.xpm b/data/pixmaps/feta/8/rests-3mensural.xpm new file mode 100644 index 0000000..6bf3cca --- /dev/null +++ b/data/pixmaps/feta/8/rests-3mensural.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 8 7 1", +" c #010101", +". c #3c3c3c", +"X c #747474", +"o c Gray53", +"O c #b7b7b7", +"+ c #c3c3c3", +"@ c None", +/* pixels */ +"@@@@@@@@", +"@@@@@@o+", +"@@@o. o", +"@+ X o", +"@@XO@@ o", +"@@@@@@ o", +"@@@@@@ o", +"@@@@@@OO" +}; diff --git a/data/pixmaps/feta/8/rests-4.xpm b/data/pixmaps/feta/8/rests-4.xpm new file mode 100644 index 0000000..525ff92 --- /dev/null +++ b/data/pixmaps/feta/8/rests-4.xpm @@ -0,0 +1,37 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 23 8 1", +" c #060606", +". c Gray17", +"X c Gray30", +"o c Gray46", +"O c #8d8d8d", +"+ c #aaaaaa", +"@ c #d0d0d0", +"# c None", +/* pixels */ +"##############", +"#####OoO######", +"####X .###++", +"#### ###.O", +"####. @@X #", +"####@. . .#", +"######O++O@oX#", +"########### @#", +"##########+ ##", +"##OXXO####XX##", +"#+ +### O##", +"#O o##O ###", +"#+ X@o .###", +"##O . o###", +"###@@@@@@ +###", +"########o ####", +"######## o####", +"#######@ o####", +"#######o #####", +"####### .#####", +"####### O#####", +"######o +#####", +"######+O######" +}; diff --git a/data/pixmaps/feta/8/rests-4mensural.xpm b/data/pixmaps/feta/8/rests-4mensural.xpm new file mode 100644 index 0000000..3b5ef4f --- /dev/null +++ b/data/pixmaps/feta/8/rests-4mensural.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 9 7 1", +" c Gray2", +". c Gray32", +"X c #777777", +"o c Gray54", +"O c Gray67", +"+ c Gray82", +"@ c None", +/* pixels */ +"@@@@@@@@", +"@@@@@+X+", +"@@@+. o", +"@+. X o", +"@O o+O o", +"@@@o o", +"@+ .+ o", +"@O.+@@ o", +"@@@@@@OO" +}; diff --git a/data/pixmaps/feta/8/rests-5.xpm b/data/pixmaps/feta/8/rests-5.xpm new file mode 100644 index 0000000..ed48e47 --- /dev/null +++ b/data/pixmaps/feta/8/rests-5.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"15 31 8 1", +" c #060606", +". c #2f2f2f", +"X c #515151", +"o c Gray43", +"O c #898989", +"+ c #b1b1b1", +"@ c #cdcdcd", +"# c None", +/* pixels */ +"###############", +"######+OO@#####", +"#####O .###++", +"#####X @##.o", +"#####X @#O #", +"######. #", +"#######OoOo+oX#", +"############ o#", +"############.@#", +"####. o###O @#", +"###o @##OX##", +"###o +##.o##", +"###+ XO @##", +"####+. .X @##", +"##########oX###", +"##########.X###", +"#########+ @###", +"##. o###+ @###", +"#O +##.X####", +"#O +##.O####", +"#+ XO. @####", +"##+. . #####", +"########.X#####", +"#######@ O#####", +"#######+ @#####", +"#######X ######", +"#######..######", +"######@ O######", +"######@ @######", +"######X @######", +"######+O#######" +}; diff --git a/data/pixmaps/feta/8/rests-6.xpm b/data/pixmaps/feta/8/rests-6.xpm new file mode 100644 index 0000000..1aa4a6a --- /dev/null +++ b/data/pixmaps/feta/8/rests-6.xpm @@ -0,0 +1,53 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"16 39 8 1", +" c #060606", +". c #2f2f2f", +"X c #505050", +"o c Gray45", +"O c Gray55", +"+ c #aeaeae", +"@ c #d0d0d0", +"# c None", +/* pixels */ +"################", +"#######+Oo@#####", +"######O .###++", +"######X @##oo", +"######X @#O @", +"######@. . #", +"########OoOo++.#", +"#############OX#", +"######@###### o#", +"#####. o####.@#", +"####o @##@ @#", +"####X @##X.##", +"####+ XO o##", +"#####+. o O##", +"###########@ @##", +"###########+ @##", +"###########OX###", +"###+ .@###.X###", +"##@ .###.O###", +"##@ .##+ @###", +"###. .OX @###", +"####o XXX####", +"#####@####.X####", +"#########@ @####", +"##+oo@###+ @####", +"#+ @##o #####", +"#O +##.X#####", +"#O +#O X#####", +"##. @#####", +"###+oOo++ @#####", +"########X ######", +"########..######", +"#######@ O######", +"#######@ @######", +"#######O @######", +"#######..#######", +"####### .#######", +"######@ O#######", +"#######o@#######" +}; diff --git a/data/pixmaps/feta/8/rests-7.xpm b/data/pixmaps/feta/8/rests-7.xpm new file mode 100644 index 0000000..0472e2d --- /dev/null +++ b/data/pixmaps/feta/8/rests-7.xpm @@ -0,0 +1,60 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"18 46 8 1", +" c #060606", +". c #2c2c2c", +"X c Gray30", +"o c #747474", +"O c #8e8e8e", +"+ c #aeaeae", +"@ c Gray82", +"# c None", +/* pixels */ +"##################", +"#########OoO######", +"########X X###oo", +"######## ###.O", +"######## @#o @", +"########@ #", +"##########OOOO@oo#", +"###############oo#", +"#######@@###### +#", +"######O O###@ ##", +"###### ###o ##", +"###### ##@.o##", +"######o XX o##", +"#######+... X@ @##", +"#############+ ###", +"#############o ###", +"#####OXXO####Xo###", +"####+ +### O###", +"####o o##@ ####", +"####O o@O ####", +"#####O XXX####", +"######@++++#.o####", +"############ O####", +"###########O #####", +"###@X.X@###o #####", +"###. .###XX#####", +"### ### o#####", +"###. ++. O#####", +"###@X . ######", +"#####@@@@#O ######", +"########## o######", +"##@O+@#### o######", +"#@ @##O @######", +"#O o##o #######", +"#O O#@X.#######", +"##. O#######", +"###OXoXo@ o#######", +"########O ########", +"########o ########", +"######## .########", +"######## o########", +"#######@ O########", +"#######o @########", +"#######X #########", +"####### X#########", +"#######O+#########" +}; diff --git a/data/pixmaps/feta/8/scripts-arpeggio.xpm b/data/pixmaps/feta/8/scripts-arpeggio.xpm new file mode 100644 index 0000000..bf68a37 --- /dev/null +++ b/data/pixmaps/feta/8/scripts-arpeggio.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 13 8 1", +" c Gray2", +". c #343434", +"X c Gray33", +"o c #777777", +"O c #8d8d8d", +"+ c Gray66", +"@ c #cbcbcb", +"# c None", +/* pixels */ +"########", +"##+@####", +"##O +###", +"###O O##", +"###@ .#", +"###O O", +"##O .#", +"#+ .##", +"#o ###", +"##. X###", +"###X ###", +"####o ##", +"#####O##" +}; diff --git a/data/pixmaps/feta/8/scripts-coda.xpm b/data/pixmaps/feta/8/scripts-coda.xpm new file mode 100644 index 0000000..8315c0d --- /dev/null +++ b/data/pixmaps/feta/8/scripts-coda.xpm @@ -0,0 +1,37 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"18 24 7 1", +" c #0b0b0b", +". c Gray15", +"X c #484848", +"o c #797979", +"O c Gray57", +"+ c #bcbcbc", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@O@@@@@@@@", +"@@@@@@@@@ @@@@@@@@", +"@@@@@@@@@.@@@@@@@@", +"@@@@@@@@@ @@@@@@@@", +"@@@@@@@o o@@@@@@", +"@@@@@@X O.O X@@@@@", +"@@@@@+ O@ @O +@@@@", +"@@@@@X @@ @+ .@@@@", +"@@@@@ @@.@@ @@@@", +"@@@@o @@ @@ O@@@", +"@@@@o ++.@@ o@@@", +"@O . . O", +"@@@@o @@ @+ o@@@", +"@@@@o @@ @@ O@@@", +"@@@@@ @@ @@ @@@@", +"@@@@@X @@.@@ .@@@@", +"@@@@@+ O@ @O +@@@@", +"@@@@@@X O.O X@@@@@", +"@@@@@@@o o@@@@@@", +"@@@@@@@@@ +@@@@@@@", +"@@@@@@@@@.@@@@@@@@", +"@@@@@@@@@ @@@@@@@@", +"@@@@@@@@@O@@@@@@@@" +}; diff --git a/data/pixmaps/feta/8/scripts-dfermata.xpm b/data/pixmaps/feta/8/scripts-dfermata.xpm new file mode 100644 index 0000000..50ca260 --- /dev/null +++ b/data/pixmaps/feta/8/scripts-dfermata.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"22 13 8 1", +" c #040404", +". c Gray18", +"X c #535353", +"o c #777777", +"O c Gray56", +"+ c #afafaf", +"@ c Gray84", +"# c None", +/* pixels */ +"######################", +"#++#######+o+#######++", +"#oX######+ +######Xo", +"## ######O O######.#", +"##XO#####@ @#####OX#", +"##O.######@+@######.O#", +"###.o#############o.##", +"###+ o###########o +##", +"####. .+#######+. .###", +"#####. .o+O+o. .####", +"######. .#####", +"#######O O######", +"#########+oOo+########" +}; diff --git a/data/pixmaps/feta/8/scripts-dmarcato.xpm b/data/pixmaps/feta/8/scripts-dmarcato.xpm new file mode 100644 index 0000000..c121e0d --- /dev/null +++ b/data/pixmaps/feta/8/scripts-dmarcato.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 10 8 1", +" c #020202", +". c #373737", +"X c Gray30", +"o c Gray43", +"O c Gray59", +"+ c #b2b2b2", +"@ c #d0d0d0", +"# c None", +/* pixels */ +"##########", +"#+oo+###@@", +"#@ ###.+", +"##X +#OX#", +"##@ .#.@#", +"###o o.##", +"###+ O##", +"####. .###", +"####+ +###", +"#####+####" +}; diff --git a/data/pixmaps/feta/8/scripts-downbow.xpm b/data/pixmaps/feta/8/scripts-downbow.xpm new file mode 100644 index 0000000..9019b44 --- /dev/null +++ b/data/pixmaps/feta/8/scripts-downbow.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 12 7 1", +" c #040404", +". c #272727", +"X c #747474", +"o c #898989", +"O c #b9b9b9", +"+ c Gray77", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@", +"@+XooooooooX+", +"@o o", +"@o o", +"@o o", +"@X.oXooXXXo.X", +"@XX@@@@@@@@XX", +"@XX@@@@@@@@XX", +"@XX@@@@@@@@XX", +"@XX@@@@@@@@XX", +"@XX@@@@@@@@XX", +"@OO@@@@@@@@OO" +}; diff --git a/data/pixmaps/feta/8/scripts-downmordent.xpm b/data/pixmaps/feta/8/scripts-downmordent.xpm new file mode 100644 index 0000000..735f48d --- /dev/null +++ b/data/pixmaps/feta/8/scripts-downmordent.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"28 13 8 1", +" c #070707", +". c Gray16", +"X c Gray31", +"o c #6c6c6c", +"O c Gray57", +"+ c #acacac", +"@ c #d0d0d0", +"# c None", +/* pixels */ +"############################", +"###++#######################", +"##+ @#######################", +"##..###@######@###OX#@######", +"#+ O##@ +####+ @##OX+ @#####", +"#O O##. +##@ +#+ .@####", +"#+ O#o +#X @+ @#oO", +"## .+ . o .o .o @", +"##@ +@. o@ o+ O#", +"###OO##@ .##+ X#+ o##", +"########@. @###@ .oX##+ .@##", +"#########@o#####+++.###++###", +"##################@+########" +}; diff --git a/data/pixmaps/feta/8/scripts-downprall.xpm b/data/pixmaps/feta/8/scripts-downprall.xpm new file mode 100644 index 0000000..cf627c9 --- /dev/null +++ b/data/pixmaps/feta/8/scripts-downprall.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"28 12 8 1", +" c #070707", +". c Gray17", +"X c Gray30", +"o c Gray42", +"O c Gray57", +"+ c #aeaeae", +"@ c Gray81", +"# c None", +/* pixels */ +"############################", +"###++#######################", +"##+ @#######################", +"##..###@######@######@######", +"#+ O##+ +####+ @####O @#####", +"#O O##. +##@ @##@ .@####", +"#O O#o +#X +#. @#oO", +"## .+ . o .o .o @", +"##@ +@. o@ O+ O#", +"###OO##@ .##@ X##+ o##", +"########@. @###@ @###+ .###", +"#########@O#####@O#####++###" +}; diff --git a/data/pixmaps/feta/8/scripts-dpedalheel.xpm b/data/pixmaps/feta/8/scripts-dpedalheel.xpm new file mode 100644 index 0000000..8c95c34 --- /dev/null +++ b/data/pixmaps/feta/8/scripts-dpedalheel.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 11 7 1", +" c #060606", +". c #343434", +"X c Gray44", +"o c #848484", +"O c #b1b1b1", +"+ c #c0c0c0", +"@ c None", +/* pixels */ +"@@@@@@@@@@", +"@@@@XXo@@@", +"@@O .X. O@", +"@@ O@@@O @", +"@X.@@@@@.o", +"@XX@@@@@XX", +"@XX@@@@@XX", +"@XX@@@@@XX", +"@XX@@@@@XX", +"@XX@@@@@XX", +"@+O@@@@@O+" +}; diff --git a/data/pixmaps/feta/8/scripts-dpedaltoe.xpm b/data/pixmaps/feta/8/scripts-dpedaltoe.xpm new file mode 100644 index 0000000..3e9d9f5 --- /dev/null +++ b/data/pixmaps/feta/8/scripts-dpedaltoe.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 13 8 1", +" c #131313", +". c #2d2d2d", +"X c Gray31", +"o c #6f6f6f", +"O c #8d8d8d", +"+ c Gray70", +"@ c #d5d5d5", +"# c None", +/* pixels */ +"##########", +"#++#####++", +"#O #####.o", +"## @###@ #", +"##.o###o.#", +"##O.###.O#", +"##@ @#@ ##", +"###Xo#oX##", +"###O # O##", +"#### O ###", +"####o o###", +"####+ +###", +"#####O####" +}; diff --git a/data/pixmaps/feta/8/scripts-dstaccatissimo.xpm b/data/pixmaps/feta/8/scripts-dstaccatissimo.xpm new file mode 100644 index 0000000..67f3fd8 --- /dev/null +++ b/data/pixmaps/feta/8/scripts-dstaccatissimo.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"5 10 6 1", +" c #020202", +". c #393939", +"X c #686868", +"o c #8b8b8b", +"O c #bbbbbb", +"+ c None", +/* pixels */ +"+++++", +"++OO+", +"++XX+", +"++..+", +"++ +", +"++ +", +"+O O", +"+o o", +"+o o", +"++oo+" +}; diff --git a/data/pixmaps/feta/8/scripts-flageolet.xpm b/data/pixmaps/feta/8/scripts-flageolet.xpm new file mode 100644 index 0000000..b7a6601 --- /dev/null +++ b/data/pixmaps/feta/8/scripts-flageolet.xpm @@ -0,0 +1,20 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 10 4 1", +" c Gray57", +". c Gray73", +"X c Gray86", +"o c None", +/* pixels */ +"oooooooooo", +"oooX Xoo", +"oo. XXX .o", +"oX ooooo X", +"o XoooooX ", +"o XoooooX ", +"o XoooooX ", +"oX ooooo X", +"oo. XXX .o", +"oooX Xoo" +}; diff --git a/data/pixmaps/feta/8/scripts-lcomma.xpm b/data/pixmaps/feta/8/scripts-lcomma.xpm new file mode 100644 index 0000000..bc0659a --- /dev/null +++ b/data/pixmaps/feta/8/scripts-lcomma.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"5 11 8 1", +" c #040404", +". c Gray18", +"X c #414141", +"o c #797979", +"O c #929292", +"+ c Gray67", +"@ c #cdcdcd", +"# c None", +/* pixels */ +"#####", +"###@+", +"###.O", +"##+.#", +"##Xo#", +"#@ +#", +"#o @#", +"#o @#", +"#o .#", +"#@ @", +"##++#" +}; diff --git a/data/pixmaps/feta/8/scripts-lineprall.xpm b/data/pixmaps/feta/8/scripts-lineprall.xpm new file mode 100644 index 0000000..e586ad6 --- /dev/null +++ b/data/pixmaps/feta/8/scripts-lineprall.xpm @@ -0,0 +1,35 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"26 21 8 1", +" c Gray2", +". c #282828", +"X c Gray31", +"o c Gray45", +"O c #8d8d8d", +"+ c #b1b1b1", +"@ c #cecece", +"# c None", +/* pixels */ +"##########################", +"#++#######################", +"#oo#######################", +"#oo#######################", +"#oo#######################", +"#oo#######################", +"#oo#######################", +"#oo#######################", +"#oo#######################", +"#oo#######################", +"#oo#######################", +"#oo#######################", +"#oo##+######@#####@@######", +"#oo#+ O####+ +####O @#####", +"#oo# O##@ +##+ +###@", +"#ooo O#. +#. @#Xo", +"#o... X.. X.. .X.@", +"#O +#. o@ O@ +#", +"#++###. .##@. X##+ o##", +"######@. @###@ @###+ .###", +"#######@O#####@+#####++###" +}; diff --git a/data/pixmaps/feta/8/scripts-mordent.xpm b/data/pixmaps/feta/8/scripts-mordent.xpm new file mode 100644 index 0000000..c03e615 --- /dev/null +++ b/data/pixmaps/feta/8/scripts-mordent.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"19 12 8 1", +" c #040404", +". c Gray20", +"X c #515151", +"o c Gray45", +"O c #868686", +"+ c #b4b4b4", +"@ c #cacaca", +"# c None", +/* pixels */ +"###################", +"#########++########", +"####++###Xo@+######", +"####X +##ooX +#####", +"###O +#O +###@", +"##+ @O +#.o", +"##.. .. ..#", +"#o.#+ O@ +#", +"#@###+ o#+ o##", +"######+ Xoo##+ X###", +"#######+@oo###++###", +"#########@+########" +}; diff --git a/data/pixmaps/feta/8/scripts-open.xpm b/data/pixmaps/feta/8/scripts-open.xpm new file mode 100644 index 0000000..de6b192 --- /dev/null +++ b/data/pixmaps/feta/8/scripts-open.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 10 6 1", +" c #020202", +". c #323232", +"X c Gray47", +"o c #868686", +"O c Gray73", +"+ c None", +/* pixels */ +"++++++++", +"+++oXo++", +"++..X..+", +"+O +++ O", +"+o +++ o", +"+o +++ o", +"+o +++ o", +"+O +++ O", +"++..X..+", +"+++oXo++" +}; diff --git a/data/pixmaps/feta/8/scripts-prall.xpm b/data/pixmaps/feta/8/scripts-prall.xpm new file mode 100644 index 0000000..3148bed --- /dev/null +++ b/data/pixmaps/feta/8/scripts-prall.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"19 10 8 1", +" c #040404", +". c Gray20", +"X c #434343", +"o c Gray", +"O c Gray51", +"+ c #b7b7b7", +"@ c Gray77", +"# c None", +/* pixels */ +"###################", +"####++#####++######", +"####X +####X +#####", +"###O +##O +###@", +"##+ @@ +#.o", +"##.. .. ..#", +"#O.#+ @@ +#", +"#@###+ O##+ O##", +"######+ X####+ X###", +"#######++#####++###" +}; diff --git a/data/pixmaps/feta/8/scripts-pralldown.xpm b/data/pixmaps/feta/8/scripts-pralldown.xpm new file mode 100644 index 0000000..84fbbdc --- /dev/null +++ b/data/pixmaps/feta/8/scripts-pralldown.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"27 14 8 1", +" c Gray2", +". c #2d2d2d", +"X c #4e4e4e", +"o c #6c6c6c", +"O c #909090", +"+ c Gray68", +"@ c #d3d3d3", +"# c None", +/* pixels */ +"###########################", +"#######O@#####O@#####O#####", +"######O X####o o####X O####", +"#+@##O O##o +##X @###", +"#O.#O @o @X .###", +"##X. X.. X.. o.o##", +"##@ .#+ X#+ X#@ @#", +"###O .###o X###X o###..#", +"####X.#####.X##### o####O +", +"####@@#####@######@#####O O", +"########################O +", +"########################..#", +"#######################@ +#", +"#######################+O##" +}; diff --git a/data/pixmaps/feta/8/scripts-prallmordent.xpm b/data/pixmaps/feta/8/scripts-prallmordent.xpm new file mode 100644 index 0000000..897f318 --- /dev/null +++ b/data/pixmaps/feta/8/scripts-prallmordent.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"26 12 8 1", +" c #040404", +". c #323232", +"X c #4c4c4c", +"o c Gray45", +"O c #848484", +"+ c #b4b4b4", +"@ c Gray78", +"# c None", +/* pixels */ +"##########################", +"################++########", +"####++#####++###oo@+######", +"####X +####. +##ooo +#####", +"###O +##O +#o +###@", +"##+ @@ @O +#.o", +"##.. .. .. ..#", +"#o.#+ @@ O@ +#", +"#@###+ O##+ o#+ o##", +"######+ X####+ Xoo##+ X###", +"#######++#####+@oo###++###", +"################++########" +}; diff --git a/data/pixmaps/feta/8/scripts-prallprall.xpm b/data/pixmaps/feta/8/scripts-prallprall.xpm new file mode 100644 index 0000000..3919722 --- /dev/null +++ b/data/pixmaps/feta/8/scripts-prallprall.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"26 10 8 1", +" c #040404", +". c #323232", +"X c #434343", +"o c Gray", +"O c #818181", +"+ c #b6b6b6", +"@ c Gray77", +"# c None", +/* pixels */ +"##########################", +"####++#####++#####++######", +"####X +####X +####X +#####", +"###O +##O +##O +###@", +"##+ @@ +@ +#.o", +"##.. ... .. ..#", +"#O.#+ @@ @+ +#", +"#@###+ o##+ O##+ O##", +"######+ X####+ X####+ X###", +"#######++#####++#####++###" +}; diff --git a/data/pixmaps/feta/8/scripts-prallup.xpm b/data/pixmaps/feta/8/scripts-prallup.xpm new file mode 100644 index 0000000..9c6c9c5 --- /dev/null +++ b/data/pixmaps/feta/8/scripts-prallup.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"28 12 8 1", +" c #070707", +". c Gray17", +"X c Gray30", +"o c Gray42", +"O c Gray57", +"+ c #aeaeae", +"@ c Gray81", +"# c None", +/* pixels */ +"############################", +"########################++##", +"########################@ +#", +"##############@######@###..#", +"######@ O####@ +####+ @##O +", +"#####@ @##@ @##+ ##O O", +"#oo#@ .#+ X#O o#O +", +"#@.o. o o . +. #", +"##O @O @o @+ @#", +"###o +##X @##. .@##OO##", +"####. +###@ @###@ .@#######", +"####++#####+@#####O@########" +}; diff --git a/data/pixmaps/feta/8/scripts-rcomma.xpm b/data/pixmaps/feta/8/scripts-rcomma.xpm new file mode 100644 index 0000000..856ab34 --- /dev/null +++ b/data/pixmaps/feta/8/scripts-rcomma.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"5 11 8 1", +" c #040404", +". c Gray18", +"X c #414141", +"o c #797979", +"O c #929292", +"+ c Gray67", +"@ c #cdcdcd", +"# c None", +/* pixels */ +"#####", +"##++#", +"#@ @", +"##. o", +"##+ o", +"##@ o", +"##@ @", +"##oX#", +"##.+#", +"#O.##", +"#+@##" +}; diff --git a/data/pixmaps/feta/8/scripts-reverseturn.xpm b/data/pixmaps/feta/8/scripts-reverseturn.xpm new file mode 100644 index 0000000..ac5fe49 --- /dev/null +++ b/data/pixmaps/feta/8/scripts-reverseturn.xpm @@ -0,0 +1,23 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"19 10 7 1", +" c #060606", +". c #373737", +"X c #767676", +"o c #8d8d8d", +"O c #b6b6b6", +"+ c #c1c1c1", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@@@@@", +"@@@@oX+@@@@@@ooo@@@", +"@@O @@@@X O@", +"@@ . @@+. @", +"@o.@OXO@O o@@O o", +"@XX@@@@O O@@@@XX", +"@o O@@X O@OXO@.o", +"@@ .+@@ . @", +"@@O X@@@@ O@", +"@@@@ooo@@@@@@Ooo@@@" +}; diff --git a/data/pixmaps/feta/8/scripts-segno.xpm b/data/pixmaps/feta/8/scripts-segno.xpm new file mode 100644 index 0000000..4274675 --- /dev/null +++ b/data/pixmaps/feta/8/scripts-segno.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"17 25 7 1", +" c Gray2", +". c Gray29", +"X c #747474", +"o c Gray52", +"O c Gray71", +"+ c #c8c8c8", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@@@", +"@@@@OXX@@@@@@@+X+", +"@@@. XX O@@@@@ @", +"@@. O@@O O@@@o O@", +"@+ @@@. .@@@ .@@", +"@o @@o @@. O@@", +"@o O@X @O .@@@", +"@o .@@. .@. @@@@", +"@@ O@@@@O o@@@@", +"@@X O@@@ @@@@@", +"@@@. X@X O@OO@@", +"@@@@. . .@@. @@", +"@@@@@X .@@OO@@", +"@@@OO@@. X@@@@", +"@@@ .@@. . .@@@", +"@@@OO@O o@X .@@", +"@@@@@@ @@@O X@", +"@@@@@o O@@@@O @", +"@@@@@ .@. .@@. o", +"@@@@. O@ o@O o", +"@@@O .@@ o@@ o", +"@@@. @@@. .@@@ +", +"@@O X@@@O O@@O .@", +"@@ @@@@@O .X .@@", +"@+X+@@@@@@@XXO@@@" +}; diff --git a/data/pixmaps/feta/8/scripts-sforzato.xpm b/data/pixmaps/feta/8/scripts-sforzato.xpm new file mode 100644 index 0000000..0d44253 --- /dev/null +++ b/data/pixmaps/feta/8/scripts-sforzato.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"16 10 8 1", +" c #101010", +". c #2f2f2f", +"X c #565656", +"o c #6f6f6f", +"O c Gray55", +"+ c Gray70", +"@ c Gray79", +"# c None", +/* pixels */ +"################", +"#+o#############", +"#+. Xo#########", +"####+o. X+#####", +"########+XX XO+#", +"###########@@ O", +"########+XX XO+#", +"####+o. X+#####", +"#@. Xo#########", +"#+o#############" +}; diff --git a/data/pixmaps/feta/8/scripts-staccato.xpm b/data/pixmaps/feta/8/scripts-staccato.xpm new file mode 100644 index 0000000..03b9db6 --- /dev/null +++ b/data/pixmaps/feta/8/scripts-staccato.xpm @@ -0,0 +1,14 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"4 4 4 1", +" c Gray0", +". c #8b8b8b", +"X c #cacaca", +"o c None", +/* pixels */ +"oooo", +"oo.X", +"o. .", +"oo.X" +}; diff --git a/data/pixmaps/feta/8/scripts-stopped.xpm b/data/pixmaps/feta/8/scripts-stopped.xpm new file mode 100644 index 0000000..2669d33 --- /dev/null +++ b/data/pixmaps/feta/8/scripts-stopped.xpm @@ -0,0 +1,23 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 10 7 1", +" c Gray0", +". c #3c3c3c", +"X c #797979", +"o c #898989", +"O c Gray72", +"+ c #c3c3c3", +"@ c None", +/* pixels */ +"@@@@@@@@@@", +"@@@@@OO@@@", +"@@@@@ X@@@", +"@@@@@ o@@@", +"@@XXX .oXO", +"@+ o", +"@@@@@ X@@@", +"@@@@@ X@@@", +"@@@@@ X@@@", +"@@@@@OO@@@" +}; diff --git a/data/pixmaps/feta/8/scripts-tenuto.xpm b/data/pixmaps/feta/8/scripts-tenuto.xpm new file mode 100644 index 0000000..a0cb960 --- /dev/null +++ b/data/pixmaps/feta/8/scripts-tenuto.xpm @@ -0,0 +1,12 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 3 3 1", +" c Gray44", +". c #bebebe", +"X c None", +/* pixels */ +"XXXXXXXXXXX", +"X. .", +"X. ." +}; diff --git a/data/pixmaps/feta/8/scripts-thumb.xpm b/data/pixmaps/feta/8/scripts-thumb.xpm new file mode 100644 index 0000000..46f2739 --- /dev/null +++ b/data/pixmaps/feta/8/scripts-thumb.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 13 6 1", +" c Gray0", +". c #464646", +"X c Gray48", +"o c Gray55", +"O c Gray76", +"+ c None", +/* pixels */ +"++++++++", +"+++oXo++", +"++. . .+", +"+O X+X O", +"+o o+X o", +"+o X+o o", +"+o X+o o", +"+O X+X O", +"++. X .+", +"+++. .++", +"+++o o++", +"+++o o++", +"++++o+++" +}; diff --git a/data/pixmaps/feta/8/scripts-trilelement.xpm b/data/pixmaps/feta/8/scripts-trilelement.xpm new file mode 100644 index 0000000..f791330 --- /dev/null +++ b/data/pixmaps/feta/8/scripts-trilelement.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 10 8 1", +" c #040404", +". c Gray20", +"X c #434343", +"o c Gray", +"O c Gray51", +"+ c #b7b7b7", +"@ c #c8c8c8", +"# c None", +/* pixels */ +"############", +"####++######", +"####X +#####", +"###O +###@", +"##+ +#.O", +"##.. ..#", +"#o.#+ +#", +"#@###+ O##", +"######+ X###", +"#######++###" +}; diff --git a/data/pixmaps/feta/8/scripts-trill-element.xpm b/data/pixmaps/feta/8/scripts-trill-element.xpm new file mode 100644 index 0000000..4aa8055 --- /dev/null +++ b/data/pixmaps/feta/8/scripts-trill-element.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 8 8 1", +" c #040404", +". c #2f2f2f", +"X c Gray32", +"o c #6f6f6f", +"O c #8e8e8e", +"+ c #a9a9a9", +"@ c #cecece", +"# c None", +/* pixels */ +"#############", +"#####O#######", +"####. .######", +"###O .@## O", +"##O .X o#", +"#@ O@O o##", +"#+O###O .###", +"#######+o####" +}; diff --git a/data/pixmaps/feta/8/scripts-trill.xpm b/data/pixmaps/feta/8/scripts-trill.xpm new file mode 100644 index 0000000..ef33ed7 --- /dev/null +++ b/data/pixmaps/feta/8/scripts-trill.xpm @@ -0,0 +1,34 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"25 20 8 1", +" c #060606", +". c #3c3c3c", +"X c #494949", +"o c #797979", +"O c Gray54", +"+ c #b4b4b4", +"@ c Gray84", +"# c None", +/* pixels */ +"#########################", +"###########++############", +"#########+ O############", +"#########O +############", +"#########X #############", +"######### #############", +"######### o#############", +"########O o###@######@##", +"####@@##o +#@X O@o X#", +"##@OOOO@X @OO@#+ oX O", +"##O@##@O O@#### o#o O", +"#++####@ .#####+ +#+ X#", +"#O@#@@OX X+####o ######", +"#@OOOO#O O@+###X ######", +"##@@###X @#O@## o######", +"####### ##O@#+ O######", +"####### ##o##O @######", +"#######X X.+##O #######", +"#######+ +### X#######", +"########+o#####@#########" +}; diff --git a/data/pixmaps/feta/8/scripts-turn.xpm b/data/pixmaps/feta/8/scripts-turn.xpm new file mode 100644 index 0000000..62e3c4f --- /dev/null +++ b/data/pixmaps/feta/8/scripts-turn.xpm @@ -0,0 +1,23 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"19 10 7 1", +" c #060606", +". c #373737", +"X c #767676", +"o c #8d8d8d", +"O c #b6b6b6", +"+ c #c1c1c1", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@@@@@@@@", +"@@@@ooo@@@@@@+oo@@@", +"@@O X@@@@ O@", +"@@ .+@@ . @", +"@o O@@X O@OXO@.X", +"@XX@@@@O O@@@@XX", +"@o.@OXO@O X@@O o", +"@@ . @@O. @", +"@@O @@@@X O@", +"@@@@oXO@@@@@@ooo@@@" +}; diff --git a/data/pixmaps/feta/8/scripts-ufermata.xpm b/data/pixmaps/feta/8/scripts-ufermata.xpm new file mode 100644 index 0000000..6a56490 --- /dev/null +++ b/data/pixmaps/feta/8/scripts-ufermata.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"22 13 8 1", +" c #040404", +". c Gray18", +"X c #535353", +"o c #777777", +"O c Gray56", +"+ c #afafaf", +"@ c Gray84", +"# c None", +/* pixels */ +"######################", +"#########+oOo+########", +"#######O O######", +"######. .#####", +"####@. .o+O+o. .@###", +"####. .+#######+. .###", +"###+ O###########O O##", +"###.o#############o.##", +"##O.######@+@######.O#", +"##XO#####@ .@#####OX#", +"##.@#####o o###### #", +"#oX######+ +######XO", +"#++#######+o+#######++" +}; diff --git a/data/pixmaps/feta/8/scripts-umarcato.xpm b/data/pixmaps/feta/8/scripts-umarcato.xpm new file mode 100644 index 0000000..9a5fa02 --- /dev/null +++ b/data/pixmaps/feta/8/scripts-umarcato.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 10 8 1", +" c #020202", +". c #373737", +"X c Gray30", +"o c Gray43", +"O c Gray59", +"+ c #b2b2b2", +"@ c #d0d0d0", +"# c None", +/* pixels */ +"##########", +"#####+####", +"####+ +###", +"####. .###", +"###O O##", +"###Xo o##", +"##@.#. @#", +"##XO#O X#", +"#@.### +", +"#@+###+oo@" +}; diff --git a/data/pixmaps/feta/8/scripts-upbow.xpm b/data/pixmaps/feta/8/scripts-upbow.xpm new file mode 100644 index 0000000..b474161 --- /dev/null +++ b/data/pixmaps/feta/8/scripts-upbow.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 18 8 1", +" c Gray7", +". c #313131", +"X c Gray27", +"o c #717171", +"O c #8d8d8d", +"+ c #b6b6b6", +"@ c Gray84", +"# c None", +/* pixels */ +"############", +"#++#######++", +"#O.#######.O", +"## @###### @", +"##.o#####+ #", +"##oo#####oo#", +"##+ ##### +#", +"### +###+ ##", +"###oo###oX##", +"###+ ###.o##", +"#### @#@ @##", +"####.o#o.###", +"####O.#.o###", +"####@ @ @###", +"#####X..####", +"#####o O####", +"#####+ +####", +"######O#####" +}; diff --git a/data/pixmaps/feta/8/scripts-upedalheel.xpm b/data/pixmaps/feta/8/scripts-upedalheel.xpm new file mode 100644 index 0000000..a0fa1cc --- /dev/null +++ b/data/pixmaps/feta/8/scripts-upedalheel.xpm @@ -0,0 +1,24 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 11 7 1", +" c #060606", +". c #343434", +"X c Gray44", +"o c #848484", +"O c #b1b1b1", +"+ c #c0c0c0", +"@ c None", +/* pixels */ +"@@@@@@@@@@", +"@+O@@@@@OO", +"@XX@@@@@XX", +"@XX@@@@@XX", +"@XX@@@@@XX", +"@XX@@@@@XX", +"@XX@@@@@XX", +"@o.@@@@@.o", +"@@ O@@@O @", +"@@O .X. O@", +"@@@@oXX@@@" +}; diff --git a/data/pixmaps/feta/8/scripts-upedaltoe.xpm b/data/pixmaps/feta/8/scripts-upedaltoe.xpm new file mode 100644 index 0000000..c90d34c --- /dev/null +++ b/data/pixmaps/feta/8/scripts-upedaltoe.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"10 13 8 1", +" c #131313", +". c #2d2d2d", +"X c Gray31", +"o c #6f6f6f", +"O c #8d8d8d", +"+ c Gray70", +"@ c #d5d5d5", +"# c None", +/* pixels */ +"##########", +"#####O####", +"####+ +###", +"####o o###", +"#### O ###", +"###O # O##", +"###Xo#oX##", +"### @#@ ##", +"##O.###.O#", +"##.o###o.#", +"## @###@ #", +"#O.#####.O", +"#++#####++" +}; diff --git a/data/pixmaps/feta/8/scripts-upmordent.xpm b/data/pixmaps/feta/8/scripts-upmordent.xpm new file mode 100644 index 0000000..2ac635a --- /dev/null +++ b/data/pixmaps/feta/8/scripts-upmordent.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"27 15 8 1", +" c Gray2", +". c #2d2d2d", +"X c #4b4b4b", +"o c #6d6d6d", +"O c #8d8d8d", +"+ c #aaaaaa", +"@ c #d5d5d5", +"# c None", +/* pixels */ +"###########################", +"#################@+########", +"#####@o#####@o###OX@O######", +"#####O X####o o##+Xo O#####", +"####@ X##+ o#+ O##@+", +"####. X@ o+ O#.O", +"###o.o ..X ..X X#", +"##@ @#o +#X X#. .@#", +"##..###o X###X X#@. O##", +"#+ O####o #####XX+X###.X###", +"#O O#####@#####@#OX###@@###", +"#+ O##############@########", +"##..#######################", +"##+ @######################", +"###++######################" +}; diff --git a/data/pixmaps/feta/8/scripts-upprall.xpm b/data/pixmaps/feta/8/scripts-upprall.xpm new file mode 100644 index 0000000..3c94881 --- /dev/null +++ b/data/pixmaps/feta/8/scripts-upprall.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"27 14 8 1", +" c Gray2", +". c #2d2d2d", +"X c #4e4e4e", +"o c #6c6c6c", +"O c #909090", +"+ c Gray68", +"@ c #d3d3d3", +"# c None", +/* pixels */ +"###########################", +"######O#####@O#####@O######", +"#####O X####o o####X O#####", +"####@ X##+ o##O O##@+", +"####. X@ o@ O#.O", +"###O.o ..X ..X X#", +"##@ @#o +#X +#. .@#", +"## .###o X###X o###. O##", +"#O O####X #####X.#####.X###", +"#O O#####@######@######@###", +"#+ O#######################", +"##..#######################", +"##+ @######################", +"###++######################" +}; diff --git a/data/pixmaps/feta/8/scripts-ustaccatissimo.xpm b/data/pixmaps/feta/8/scripts-ustaccatissimo.xpm new file mode 100644 index 0000000..ce3790b --- /dev/null +++ b/data/pixmaps/feta/8/scripts-ustaccatissimo.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"5 10 6 1", +" c #020202", +". c #393939", +"X c #686868", +"o c #8b8b8b", +"O c #bbbbbb", +"+ c None", +/* pixels */ +"+++++", +"++oo+", +"+o o", +"+o o", +"+O O", +"++ +", +"++ +", +"++..+", +"++XX+", +"++OO+" +}; diff --git a/data/pixmaps/feta/8/unknown.xpm b/data/pixmaps/feta/8/unknown.xpm new file mode 100644 index 0000000..8698b03 --- /dev/null +++ b/data/pixmaps/feta/8/unknown.xpm @@ -0,0 +1,16 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 8 2 1", +"x c Gray0", +" c None", +/* pixels */ +" xxx ", +" x ", +" x ", +" xx ", +" x ", +" ", +" x ", +" " +}; diff --git a/data/pixmaps/feta/README b/data/pixmaps/feta/README new file mode 100644 index 0000000..d853aee --- /dev/null +++ b/data/pixmaps/feta/README @@ -0,0 +1,10 @@ + +The pixmaps in the feta/* directories have been generated from the +METAFONT outline font supplied with the GNU Lilypond musical notation +typesetting system. Lilypond and the feta font are copyright 1997 to +2001 by Han-Wen Nienhuys and Jan Nieuwenhuizen and are distributed +under the terms of the GNU General Public Licence, a copy of which may +be found in the top-level directory of this distribution. + +See http://www.lilypond.org/ for more information about Lilypond. + diff --git a/data/pixmaps/icons/cc-hi16-rosegarden.xpm b/data/pixmaps/icons/cc-hi16-rosegarden.xpm new file mode 100644 index 0000000..76f5dc3 --- /dev/null +++ b/data/pixmaps/icons/cc-hi16-rosegarden.xpm @@ -0,0 +1,39 @@ +/* XPM */ +static char *rose-icon-tiny[] = { +/* width height num_colors chars_per_pixel */ +" 16 16 16 1", +/* colors */ +". c None", +"# c #f9ca30", +"a c #ebb400", +"b c #b78c00", +"c c #d0a832", +"d c #deaa00", +"e c #d09f00", +"f c #f9bf00", +"g c #947400", +"h c #715f24", +"i c #715500", +"j c #000000", +"k c #4d3a00", +"l c #324f00", +"m c #181300", +"n c #487100", +/* pixels */ +"......c#c.......", +"......#b........", +".c#.cacbdccccc..", +"..#ee#bgcdccc...", +"..faccacbcbcac..", +".#bcddafbehefd#.", +"..c#cfccdfgdcc..", +"...#acedcfcbcg..", +"..#bf#bcdcdgh...", +"..cceeggcdhhccjh", +"....cgcbbd.c.kjh", +"....hjcce#...jjh", +"....g.gckj..ljjh", +"......h.jjk.gjj.", +"......h.mjj..j..", +"......lhmhiklh.." +}; diff --git a/data/pixmaps/icons/cc-hi32-rosegarden.xpm b/data/pixmaps/icons/cc-hi32-rosegarden.xpm new file mode 100644 index 0000000..ba972f3 --- /dev/null +++ b/data/pixmaps/icons/cc-hi32-rosegarden.xpm @@ -0,0 +1,54 @@ +/* XPM */ +static char * test_4_xpm[] = { +/* width height num_colors chars_per_pixel */ +"32 32 16 1", +/* colors */ +" c None", +". c #f9ca30", +"X c #ebb400", +"o c #b78c00", +"O c #d0a832", +"+ c #deaa00", +"@ c #d09f00", +"# c #f9bf00", +"$ c #947400", +"% c #715f24", +"& c #715500", +"* c black", +"= c #4d3a00", +"- c #324f00", +"; c #181300", +": c #487100", +/* pixels */ +" ", +" .X. ", +" ..oO ", +" O XX+OO@X.OO . ", +" ...#oOXOO$OOOOO#O@. ", +" ##OO@.o@$oO+OOOOO ", +" ##XO+OO+oOOOoOO#OO ", +" #.Xo.OX#O@$O$oO+OO ", +" .%#O+O+X##$O@%o##XO. ", +" #X+O#OOOO+X&$#OOO ", +" ..XO#+O.@X#o#XOOO ", +" .XXO@O@O#XOX$O% ", +" ..$###@oOXO#+$%%O ", +" ..Oo.#.o%oO.O@O&& ", +" #O@@@+%$Oo+%$%O $** ", +" .OOO@=&oOO. +O *** ", +" &%XO#OoX %*** ", +" **OOO@+. **** ", +" O% %OO%** -**** ", +" O *%%**& %**** ", +" O* **** *** ", +" * =***% ** ", +" * %***= % ", +" &***%OO%***; ", +" $**** %*****O ", +" %***% %%***** ", +" % ;*=; %;=% ", +" % :%*% ", +" % % **** ", +" % **** ", +" % % ****= ", +" "}; diff --git a/data/pixmaps/icons/cc-hi48-rosegarden.xpm b/data/pixmaps/icons/cc-hi48-rosegarden.xpm new file mode 100644 index 0000000..3f93590 --- /dev/null +++ b/data/pixmaps/icons/cc-hi48-rosegarden.xpm @@ -0,0 +1,307 @@ +/* XPM */ +static char * hi48_rosegarden_xpm[] = { +"48 48 256 2", +" c None", +". c #020202", +"+ c #121205", +"@ c #3E460E", +"# c #466602", +"$ c #AA8602", +"% c #D6A602", +"& c #FAC206", +"* c #EEB602", +"= c #BE9202", +"- c #826202", +"; c #D2A616", +"> c #262206", +", c #5C4602", +"' c #EABA1A", +") c #927204", +"! c #E6B616", +"~ c #B4922E", +"{ c #6A5206", +"] c #D2A622", +"^ c #322602", +"/ c #0E0E02", +"( c #CE9E07", +"_ c #FAC20B", +": c #E2AE02", +"< c #A2862A", +"[ c #4E6E06", +"} c #565E0E", +"| c #8A7220", +"1 c #DEB222", +"2 c #CA9E02", +"3 c #F6C21A", +"4 c #3C3202", +"5 c #62521E", +"6 c #DAAE16", +"7 c #7A6202", +"8 c #EEBE22", +"9 c #C29A23", +"0 c #221E0A", +"a c #B6921A", +"b c #0A0A02", +"c c #463606", +"d c #6A5622", +"e c #927622", +"f c #9A7A04", +"g c #D2AA2A", +"h c #F2C222", +"i c #FABE02", +"j c #7E661A", +"k c #E6B622", +"l c #D2AA2E", +"m c #FACA2A", +"n c #5E4A06", +"o c #1E1605", +"p c #B28A06", +"q c #EAB605", +"r c #EEBE16", +"s c #6A621E", +"t c #524206", +"u c #BA921A", +"v c #C29A06", +"w c #CEA21B", +"x c #967A26", +"y c #F2BE06", +"z c #AE8E1A", +"A c #765E1A", +"B c #C69E22", +"C c #826602", +"D c #E6AE02", +"E c #DEAE17", +"F c #322E0E", +"G c #D6AA22", +"H c #1E2A02", +"I c #DAA606", +"J c #AE8E2A", +"K c #C69E16", +"L c #56461A", +"M c #0A0602", +"N c #EEC22C", +"O c #A68206", +"P c #A2822A", +"Q c #D6AA1A", +"R c #BE9617", +"S c #9E7602", +"T c #D6AE22", +"U c #EEB60A", +"V c #AA8616", +"W c #EABA22", +"X c #7A6212", +"Y c #886E18", +"Z c #403616", +"` c #D0A214", +" . c #7A5E06", +".. c #2E2A0E", +"+. c #060202", +"@. c #CEA62A", +"#. c #B28E16", +"$. c #1A1202", +"%. c #D6A206", +"&. c #8A6A0A", +"*. c #4E420E", +"=. c #C69A19", +"-. c #3E5206", +";. c #9E7A16", +">. c #DAB22A", +",. c #7A6216", +"'. c #DEB21D", +"). c #CAA231", +"!. c #322A11", +"~. c #C69602", +"{. c #9A7A1A", +"]. c #5E4E12", +"^. c #463A16", +"/. c #F6C62A", +"(. c #121A02", +"_. c #D2A202", +":. c #C29602", +"<. c #E6B20E", +"[. c #C29E31", +"}. c #8A7212", +"|. c #423A02", +"1. c #D6AE32", +"2. c #DAAA0C", +"3. c #725E1E", +"4. c #3A3212", +"5. c #664E02", +"6. c #F2C62A", +"7. c #826A1E", +"8. c #A6862B", +"9. c #CEA630", +"0. c #5A4E1E", +"a. c #B68E07", +"b. c #060602", +"c. c #FAC622", +"d. c #F2BA08", +"e. c #EAB60E", +"f. c #E2AE06", +"g. c #E6BA31", +"h. c #4E421A", +"i. c #CEA226", +"j. c #E2B20E", +"k. c #C29A12", +"l. c #BE960E", +"m. c #AE8602", +"n. c #DAAE27", +"o. c #1E1A09", +"p. c #D2A206", +"q. c #2E260A", +"r. c #A27E0C", +"s. c #DAAA19", +"t. c #A27E1C", +"u. c #766224", +"v. c #F2BA02", +"w. c #725A06", +"x. c #665E1E", +"y. c #E2B62A", +"z. c #EEBA0A", +"A. c #E6B216", +"B. c #D6AA26", +"C. c #CAA21A", +"D. c #D6A606", +"E. c #9E7E26", +"F. c #26220E", +"G. c #6E5602", +"H. c #826E26", +"I. c #EAB205", +"J. c #D2AA32", +"K. c #D2A628", +"L. c #C69A05", +"M. c #FACA32", +"N. c #4E3A02", +"O. c #362E0E", +"P. c #725E26", +"Q. c #F2BE0E", +"R. c #AA8A2E", +"S. c #D6A618", +"T. c #3A2A02", +"U. c #524619", +"V. c #CAA229", +"W. c #CEA20E", +"X. c #EEBE2E", +"Y. c #A28211", +"Z. c #CA9E1A", +"`. c #0E0A02", +" + c #E2B219", +".+ c #D2A20B", +"++ c #DEAE0B", +"@+ c #161203", +"#+ c #423202", +"$+ c #927616", +"%+ c #DAB231", +"&+ c #F2C631", +"*+ c #B6962C", +"=+ c #FAC618", +"-+ c #9E7E04", +";+ c #E6B206", +">+ c #DEAA05", +",+ c #AA8607", +"'+ c #D2A61C", +")+ c #C69E1C", +"!+ c #261E05", +"~+ c #5E4E1D", +"{+ c #463A0E", +"]+ c #C29A1A", +"^+ c #7E620E", +"/+ c #120E06", +"(+ c #7E660E", +"_+ c #6A5A1F", +":+ c #D6AA2A", +"<+ c #E2AE16", +"[+ c #E2AE0E", +"}+ c #866E12", +"|+ c #DAAE1C", +"1+ c #EAB60A", +"2+ c #AE860A", +"3+ c #D6A60C", +"4+ c #F6BE02", +"5+ c #221A02", +"6+ c #CA9A04", +"7+ c #4A3A04", +"8+ c #7A6626", +"9+ c #B28E0E", +"0+ c #BA9206", +"a+ c #C29608", +"b+ c #DEB232", +"c+ c #E2B21E", +"d+ c #CE9E0E", +"e+ c #D6AE2A", +"f+ c #7E6A26", +"g+ c #E2B62F", +"h+ c #EEBA0E", +"i+ c #A6860E", +"j+ c #2A2202", +"k+ c #EAB61A", +"l+ c #F2C22A", +"m+ c #DEAA0A", +"n+ c #CAA222", +"o+ c #9E7E12", +"p+ c #120E02", +"q+ c #D6AA1E", +"r+ c #D2A62E", +"s+ c #C29616", +"t+ c #DEAE22", +"u+ c #F2BE17", +"v+ c #AA862A", +"w+ c #725605", +"x+ c #BE9207", +"y+ c #E6B61A", +"z+ c #B28E22", +"A+ c #C69A0A", +"B+ c #E6B20A", +"C+ c #261E0A", +"D+ c #221A0A", +"E+ c #2A220A", +"F+ c #3A2E12", +"G+ c #8A6E10", +" ", +" ", +" M.u+z./. ", +" M.m y+p.y.g. ", +" h 6.&+s.x+V.G ", +" J. q q ;+<+n.J.@..+I z./.g.J.J. M. ", +" M.l+g.W * :..+<+I.f.S.9.9 a C.S. +g+1.9.J.1 Q.g.1 3+h ", +" M.m m m 3 1+~.=.q+! |+9.K.#.;.=.9.9.g l J.9.c+U :+` 3+l+ ", +" _ _ & ! l 9.w 3+h Q = ( p f a.)+K.I S.J.9.J.1.J.r+g ", +" 4+4+i U E l ; 2.y.G K _.= O R B J.B.C.=.9.l l c+n.9.J. ", +" i & 4+d.;+] S.++g l G ++_.x+@.).V.J.]+a.B 9.B.z. +9.J.J. ", +" i 4+m u+: a+6 X.1.s.q v.E @.( a.O [.#.f a.=.g ++|+J.9.9. ", +" '+l.h+k+2.( Q y.|+<+* i U E x+9+u w V G+m.d+<.I.[+|+J.b+ ", +" M.~ | ;+k+G 2.s.g ++: q z.y B+,+u g .+O j O % i y z.<+g g.M. ", +" v.v.D >+S.B.z. +B.:+:+:+V.` >+: O .) 2 d.n.n.:+9.1. ", +" =+3 u+;+E :+d.I.S.l %+g+'+2.;+v.~.S = I * :+9.9.J.9. ", +" m m /.q +n.h+B+I r+1 8 S.>+* v.I ~.* q 2.g ).[.9. ", +" M./.z.I.[+T S..+@.G 3+] <.v.v.6 @.q L.,+B R.7. ", +" M.m T W.q v.* ! 2.( =.Z.'+|+ +<.* B+; :.r.Y P < P ", +" M.m &+K $ I.& i & : L.m.u @.[+c+b+d.;+( ,+}+3._+E.J. ", +" M.M.l+b+=.l.8 =+i c.2.p Y ;.a+@.y.N %+S.( Z.{.w.G.^+ ", +" M.6.y+'+K E ;+j.! 2.= f+}.m.B g Q S.l.Y.z $+A {.o+ 7+. . ", +" i y+:+` ( ( ( %.6+j (+f 9 =.a+3+#.| ) G+e [.J. 7 F+. . . ", +" l+N :+K.K.@.; = 5.n - p k.@.K.%+g+ L.d+r+9. $.`.. . . ", +" &+1.z P P l.p.;.r.p s+=.)+s.k 2.g < U.b . . . . ", +" , , ].Y.<+:+c+h+G =.~.;+* ~+h./+. . . . ", +" p+p+/+A g r+l B..+% 2.N /. /+`.. . . . . ", +" _+!.p+d R.).r+).i+&.w+X j (.. . . . . . ", +" r+8.u. f+< ~ ~ 8+4.. . p+ -.H . . . . . . ", +" J.[. C+U.f+u.O.. . ^ w+ x.F . . . . . . ", +" x p+C+5 Z o . . o T. C+. . . . . ", +" 8.5+. b b.. . . b. . . . . . ", +" b.. F+o . . . / 0. . . . . ", +" . . ].^ . . . /+t ]. O.. . ", +" . . 0.O.+ o.D+E+N.c 0.h. ", +" , `.. +./ 4.d P J P u.4.+./+b +.@+ ", +" - G.p+. . . o.^.8.9.~ 8+4.. . . . b M 0 J ", +" - !+b.. . . . 3.Z `.. . . . . o | J ", +" 5 q.. . . /+0. 3._+h.`.. . . . M o 0 ", +" P.3.4.. M +./ t {+> 5 P.~++ C+q.p+$.> !.F+ ", +" s P. @+`.`.|.F+> 5 !+^ t _+ ", +" P.u. # } U.+ 4.P. ", +" P.P. s [ @ q.b.o.!./+ ", +" P.s 3. . . . . . . . ", +" P.P. . . . . . . . ", +" P.u. . . . . . . $. ", +" P. P. . . . . . !+N. ", +" "}; diff --git a/data/pixmaps/icons/cc-hi64-rosegarden.xpm b/data/pixmaps/icons/cc-hi64-rosegarden.xpm new file mode 100644 index 0000000..3400776 --- /dev/null +++ b/data/pixmaps/icons/cc-hi64-rosegarden.xpm @@ -0,0 +1,100 @@ +/* XPM */ +static char * rose_64x64_xpm[] = { +"64 64 33 1", +" c None", +". c #141500", +"+ c #858E27", +"@ c #C6A80E", +"# c #304801", +"$ c #FFD024", +"% c #AE9925", +"& c #5D5304", +"* c #456000", +"= c #262900", +"- c #D0BE17", +"; c #C69328", +"> c #5D6202", +", c #A97F11", +"' c #978E03", +") c #CF9700", +"! c #464500", +"~ c #BC9726", +"{ c #E8B42C", +"] c #E8B706", +"^ c #D1A92B", +"/ c #C59B00", +"( c #BA9E2B", +"_ c #9B842E", +": c #323700", +"< c #2F3000", +"[ c #1F1F00", +"} c #7B6000", +"| c #EAB81E", +"1 c #C37E07", +"2 c #D0A805", +"3 c #917800", +"4 c #9A8214", +" ", +" ", +" ", +" $$$$ ", +" $$$]|]]$$ ", +" $$$$2((2|$|$ ", +" $$$$$$$$2((((($$ ", +" $$$$$$$]]2/~(~~~)) ", +" $$$$$$$]2]22/@@@@2]||$ ", +" 2]) ]]|$$$^2(^(@22222@2]$|$$$$$$$$ ", +" $$$]{2@,/2{|$|](2(((({||^{(2@||$$$|||||$|^( ", +" $$$$${((;((^|$^@(@@@(@^|2^^^^(((^^{^(^{|$]{^ ", +" $$$$$${((;;(^$$]@(@@///(^22((^22(((((((^^((^^ ", +" $$$$$${^((((^$$@/2@@21'%%(2(((^2(((((((^^(@^^ ", +" $$$$${^(((@]$$@//222)~/_%~/((^2@((((((((((((( ", +" $$$$$|{(((@2{(((/]]2/@/%~(@(((@2/((((((((^((( ", +" $$$$$]{(((2]{(((^|$$//22(~2/((22((~@@((((^((( ", +" $$$$$${(((2]^((22$$$$22@((@(~~/2/~3((^{^(((((~ ", +" $$$$$${((2]](((|2|$$$222^|]2~;/2~_4(^^^((@(((^ ", +" ]|$$$${((^|{((^{{{]$]||{{|2(,;)),4@^^^^^2]2{^|@ ", +" ~{{$$$${(^^|((({{^^|$${{{{^2~;,;3,,@(2^2]$$${(^^ ", +" %{{$$$$^(^(@(((]]^({$$${^((/;);~331/)/2$$$$${^{(( ", +" %|$$$${(((((($$${(^]$$|^(~/;2@2,,,,,)$$$$$(((((( ", +" $$$$$^((@(@{$$$|(({{|2(((@@222/3,,1$$$$2((;(--( ", +" $$$$|^(((^{$$$@((^^^((((@@]$]%33,$$$$@(((((-- ", +" $$$$${2^{|$$$@((^^((((((@$$$/'2$$$$|((((((@ ", +" $$$$$$|^^|$$$@;((((^((((@$$$$$$$$$$((((((( ", +" $$$$$$|22^|@/;(((((((((]$$$$$$$$$-(((~((; ", +" $$$$$$@(((@(;~~((((@2]$$$$$$$$$-@(((,(( ", +" $$$$$|@((^(1,/---]$$$$$$$$$$$@(((~%_(~ ", +" $$$$$$2@@]]]2-$$$$$$$$$$|{{](((%%_%~(~ ", +" 3]$$$$$$2@2$$$$$$$$$$$$$](^^/~((____~~ ", +" 2)/3/$$$$$$2/)$$]22$$$]|^(^{({(__~~_4__(~ ", +" $$$@(;~]$$$$$$@//2;(/((^(^(^(|{|@3+~%___%(% ", +" $$$$^(()-$$$$$$22/~_,;(((({{{{{{|@~;;~__4%( ", +" @]$${((/-$$$$$$$2/___;((((^^{{{^2)~~;%__'%% ", +" {|$${(@@]$$$$$$$$~%__~((((^^^^2/~,(;%___%, ", +" ]$$]^((22]$$$$$$|%___~(((((^^@44_~~___;% ", +" ]$${^(/(//2$$$$24____~(((((@/43_~~~_%~~ ", +" ]]{^(((((@2$$/4333____,(@@22@'%~~__%(~ ", +" 2]2^^(((@@2]~433,43_4,)22@22@34444~(~ ", +" @((((((---2~,'~/~//22@^]$] 4~ ", +" (~~_;2@-{|22@@(((@(((|2 ", +" ++&3)@({|{{{(((((;({| ", +" >>>>@((((((((((((@2|2 ", +" >>>>'@(((((((((~(@@) ", +" &>>>* }%((((((((/@)' ", +" &>> ,%((((((;, ", +" &> ,_;@@@@4 ", +" >3,/@%> ", +" >>>! .=<=<=! ", +" #>><[[<<<<<<<<!<=!<<<<<<<<<<<<## ", +" !>! =<<<<<<<<<<<<<<#= ", +" ! <<<<<<<<<<<<<<<<<= ", +" !>&! <<<<<<<<<<<<<<<<<. ", +" &&&:= <<<<<<<<<<<<<<<<< ", +" >&&#<< <<<<<<<<<<<<<<<< ", +" !>>#<<< <<<<<<<=<<<<<< ", +" &><< ", +" <<< "}; diff --git a/data/pixmaps/icons/mm-mime-hi16-rosegarden.png b/data/pixmaps/icons/mm-mime-hi16-rosegarden.png new file mode 100644 index 0000000..0d4cf3c Binary files /dev/null and b/data/pixmaps/icons/mm-mime-hi16-rosegarden.png differ diff --git a/data/pixmaps/icons/mm-mime-hi16-rosegarden.xpm b/data/pixmaps/icons/mm-mime-hi16-rosegarden.xpm new file mode 100644 index 0000000..f66faf3 --- /dev/null +++ b/data/pixmaps/icons/mm-mime-hi16-rosegarden.xpm @@ -0,0 +1,176 @@ +/* XPM */ +static char * x_mini_rosegarden_4_xpm[] = { +"16 16 157 2", +" c None", +". c #BAAF8F", +"+ c #BEB9B3", +"@ c #AEAAA4", +"# c #9E9B95", +"$ c #8F8C88", +"% c #787774", +"& c #6D6D6D", +"* c #D5A91C", +"= c #D2AB31", +"- c #E4CC83", +"; c #E8D69F", +"> c #EDEAE1", +", c #EFEFEF", +"' c #BCBCBC", +") c #8F8F8F", +"! c #2F2F2F", +"~ c #EEBA11", +"{ c #DBAC16", +"] c #D2A515", +"^ c #C09714", +"/ c #BD961E", +"( c #D0A621", +"_ c #CFC39F", +": c #DCDCDC", +"< c #D4D4D4", +"[ c #C7C7C7", +"} c #ADADAD", +"| c #303030", +"1 c #E0AF11", +"2 c #D3A616", +"3 c #C79C15", +"4 c #B78E07", +"5 c #C69D1A", +"6 c #ACA078", +"7 c #B5B5B5", +"8 c #C5C5C5", +"9 c #8E8E8E", +"0 c #C6C6C6", +"a c #5F5F5F", +"b c #DAAB11", +"c c #C69A0C", +"d c #BD9517", +"e c #BC930F", +"f c #947B2D", +"g c #7E7C72", +"h c #9C9C9C", +"i c #B2B1B0", +"j c #9A9995", +"k c #85827E", +"l c #676563", +"m c #AD891A", +"n c #A48111", +"o c #B18B13", +"p c #A48D42", +"q c #867F4A", +"r c #575E43", +"s c #828282", +"t c #838383", +"u c #E9E8E7", +"v c #DAD8D5", +"w c #BCB8AF", +"x c #6A665F", +"y c #695D23", +"z c #7B871D", +"A c #5F673D", +"B c #62704D", +"C c #33362F", +"D c #585858", +"E c #636362", +"F c #BDBAB8", +"G c #BFBCB8", +"H c #CCC6BD", +"I c #787369", +"J c #464D19", +"K c #5D6B2E", +"L c #5D6B29", +"M c #666E4D", +"N c #46483F", +"O c #5F5E5D", +"P c #464545", +"Q c #B0ADA8", +"R c #A29F9B", +"S c #CCC4B8", +"T c #80786B", +"U c #50591E", +"V c #627336", +"W c #829247", +"X c #44531E", +"Y c #546320", +"Z c #666460", +"` c #8B8884", +" . c #AAA59D", +".. c #A6A29B", +"+. c #D0C5B3", +"@. c #83796A", +"#. c #495A17", +"$. c #9AA088", +"%. c #657549", +"&. c #56612D", +"*. c #6F715D", +"=. c #605E5A", +"-. c #98938A", +";. c #DDD1BF", +">. c #ECDCC5", +",. c #E7D8BE", +"'. c #867A68", +"). c #5B7116", +"!. c #5B662E", +"~. c #4B4F3A", +"{. c #566521", +"]. c #53534A", +"^. c #484644", +"/. c #78746E", +"(. c #837C73", +"_. c #B4AA9A", +":. c #DCCBB0", +"<. c #887B66", +"[. c #8B9760", +"}. c #787D5D", +"|. c #4F5F19", +"1. c #535740", +"2. c #484744", +"3. c #9F9689", +"4. c #706961", +"5. c #A89E90", +"6. c #D5C3A6", +"7. c #887962", +"8. c #B0AFAD", +"9. c #8D8983", +"0. c #697635", +"a. c #4D5629", +"b. c #53504A", +"c. c #9B9488", +"d. c #6A6661", +"e. c #B2A695", +"f. c #D8C19F", +"g. c #88775D", +"h. c #D6CCC1", +"i. c #D4C5B1", +"j. c #BEB29A", +"k. c #68742F", +"l. c #7C785A", +"m. c #978C7C", +"n. c #9B8F7E", +"o. c #E2C8A2", +"p. c #E2C7A0", +"q. c #877559", +"r. c #837767", +"s. c #897D6C", +"t. c #817667", +"u. c #706D4D", +"v. c #5C5541", +"w. c #645A4A", +"x. c #7D6E59", +"y. c #86765C", +"z. c #5B4F3D", +" . + @ # $ % & ", +" * = - ; > , ' ) ! ", +" ~ { ] ^ / ( _ : < [ } | ", +" 1 2 3 4 5 6 7 8 9 0 9 a ", +" b c d e f g h < i j k l ", +" m n o p q r s t u v w x ", +" y z A B C D E F G H I ", +" J K L M N O P Q R S T ", +" U V W X Y Z ` ...+.@. ", +" #.$.%.&.*.=.-.;.>.,.'. ", +" ).!.~.{.].^./.(._.:.<. ", +" [.}.|.1.2.3.4.5.6.7. ", +" 8.9.0.a.b.c.d.e.f.g. ", +" h.i.j.k.l.m.n.o.p.q. ", +" r.s.t.u.v.w.x.y.q.z. ", +" "}; diff --git a/data/pixmaps/icons/mm-mime-hi32-rosegarden.png b/data/pixmaps/icons/mm-mime-hi32-rosegarden.png new file mode 100644 index 0000000..642392d Binary files /dev/null and b/data/pixmaps/icons/mm-mime-hi32-rosegarden.png differ diff --git a/data/pixmaps/icons/mm-mime-hi32-rosegarden.xpm b/data/pixmaps/icons/mm-mime-hi32-rosegarden.xpm new file mode 100644 index 0000000..785fbbe --- /dev/null +++ b/data/pixmaps/icons/mm-mime-hi32-rosegarden.xpm @@ -0,0 +1,3727 @@ +/* XPM */ +static char * mm_mime_hi32_rosegarden_xpm[] = { +"128 128 3596 2", +" c None", +". c #6C6547", +"+ c #6C6647", +"@ c #6C6648", +"# c #6D6748", +"$ c #6D6749", +"% c #6B6648", +"& c #6B6448", +"* c #6A6447", +"= c #6A6345", +"- c #696346", +"; c #696146", +"> c #686144", +", c #676144", +"' c #676143", +") c #676044", +"! c #665F44", +"~ c #656043", +"{ c #655F43", +"] c #645E43", +"^ c #645E42", +"/ c #655E43", +"( c #655E42", +"_ c #655F42", +": c #656044", +"< c #665F43", +"[ c #666044", +"} c #686145", +"| c #686245", +"1 c #696245", +"2 c #696246", +"3 c #6D684F", +"4 c #34322E", +"5 c #4A4839", +"6 c #6F694B", +"7 c #6E6749", +"8 c #6D6648", +"9 c #6C6548", +"0 c #6B6548", +"a c #6B6447", +"b c #6A6346", +"c c #696345", +"d c #675F44", +"e c #676145", +"f c #666144", +"g c #645F42", +"h c #645D43", +"i c #646043", +"j c #666043", +"k c #686246", +"l c #21211E", +"m c #43413D", +"n c #63625D", +"o c #767571", +"p c #666462", +"q c #3C3C38", +"r c #1C1915", +"s c #F8F5ED", +"t c #F7F5EC", +"u c #F8F4ED", +"v c #F7F4EB", +"w c #F7F3EB", +"x c #F6F3EB", +"y c #EFECE3", +"z c #E0DDD2", +"A c #77756D", +"B c #3F3E3A", +"C c #7D785A", +"D c #000000", +"E c #F8F4EC", +"F c #F7F4EC", +"G c #F6F4EB", +"H c #F4F1E9", +"I c #EDEAE1", +"J c #D8D5CB", +"K c #C7C3B6", +"L c #A7A495", +"M c #817F73", +"N c #7E795F", +"O c #F7F5ED", +"P c #F6F3EA", +"Q c #F5F2EA", +"R c #F1EEE5", +"S c #E4E1D8", +"T c #CFCCBF", +"U c #C2BEB1", +"V c #B2AE9F", +"W c #9D9A8A", +"X c #79735B", +"Y c #EFEBE0", +"Z c #F5F3EA", +"` c #F5F2E9", +" . c #F0EDE4", +".. c #E3E0D6", +"+. c #D1CDC0", +"@. c #C8C4B7", +"#. c #B1AD9E", +"$. c #9E9B8B", +"%. c #767157", +"&. c #E6E2D3", +"*. c #EEEBE0", +"=. c #9D6241", +"-. c #F6F2EA", +";. c #F6F2E9", +">. c #F5F1E9", +",. c #F4F1E8", +"'. c #F0ECE3", +"). c #E4E1D7", +"!. c #D5D2C6", +"~. c #ADA999", +"{. c #918E80", +"]. c #514C3B", +"^. c #DCD7C6", +"/. c #E5E1D3", +"(. c #954A22", +"_. c #D57E2A", +":. c #BC6925", +"<. c #AE5425", +"[. c #BB531E", +"}. c #AC5428", +"|. c #BA5A29", +"1. c #DE6A20", +"2. c #E57120", +"3. c #E57024", +"4. c #DC6925", +"5. c #C9642E", +"6. c #C26330", +"7. c #151807", +"8. c #4D4E4D", +"9. c #242724", +"0. c #848484", +"a. c #585849", +"b. c #737364", +"c. c #727162", +"d. c #54513E", +"e. c #BFBBA6", +"f. c #D8D4C2", +"g. c #E5E2D3", +"h. c #B96223", +"i. c #DD7C1F", +"j. c #D27A21", +"k. c #B56A2A", +"l. c #D97222", +"m. c #DA651A", +"n. c #E67921", +"o. c #E97C1A", +"p. c #EC7117", +"q. c #EB7214", +"r. c #E66717", +"s. c #E7691A", +"t. c #E9701D", +"u. c #E37323", +"v. c #C86729", +"w. c #6E6648", +"x. c #F5F1E8", +"y. c #F4F1E7", +"z. c #F0EDE3", +"A. c #E7E4D9", +"B. c #D9D6C9", +"C. c #D1CDBF", +"D. c #BEBBAD", +"E. c #A7A497", +"F. c #686658", +"G. c #D3CEB9", +"H. c #DCD8C6", +"I. c #CF711E", +"J. c #E08018", +"K. c #E3891D", +"L. c #E68622", +"M. c #E9791D", +"N. c #EA7518", +"O. c #ED7D12", +"P. c #EC790F", +"Q. c #E96F0E", +"R. c #E66C0B", +"S. c #E2620D", +"T. c #E36612", +"U. c #E56916", +"V. c #EA741F", +"W. c #E67626", +"X. c #CC6C2E", +"Y. c #A3562C", +"Z. c #E4E0D5", +"`. c #D9D5CA", +" + c #CFCBBF", +".+ c #CAC6B9", +"++ c #C1BDAF", +"@+ c #AEAB9D", +"#+ c #6A675D", +"$+ c #EFECE0", +"%+ c #924C24", +"&+ c #DB761F", +"*+ c #E68416", +"=+ c #E68014", +"-+ c #ED811E", +";+ c #EF7A17", +">+ c #EE730F", +",+ c #EA6E0B", +"'+ c #E76909", +")+ c #E46408", +"!+ c #E16106", +"~+ c #E26D10", +"{+ c #E5761B", +"]+ c #E46B18", +"^+ c #E97A24", +"/+ c #EC8026", +"(+ c #E78328", +"_+ c #BC6929", +":+ c #6C6649", +"<+ c #F7F4ED", +"[+ c #F4F0E7", +"}+ c #F3F0E7", +"|+ c #F3F0E6", +"1+ c #ECE8DE", +"2+ c #DEDBD1", +"3+ c #D1CDC1", +"4+ c #CCC8BB", +"5+ c #ADA99C", +"6+ c #5D5B52", +"7+ c #E6E1D3", +"8+ c #EEEADF", +"9+ c #B96222", +"0+ c #E07D1D", +"a+ c #EA8314", +"b+ c #EA7A11", +"c+ c #F08215", +"d+ c #EE700B", +"e+ c #EB6608", +"f+ c #E45905", +"g+ c #E15606", +"h+ c #E45C07", +"i+ c #E05905", +"j+ c #EC9322", +"k+ c #F4B546", +"l+ c #F7C35B", +"m+ c #F3AE4B", +"n+ c #F09832", +"o+ c #E79029", +"p+ c #BC7126", +"q+ c #6D6649", +"r+ c #F8F5EC", +"s+ c #F3EFE6", +"t+ c #F3EFE5", +"u+ c #EFEBE1", +"v+ c #E6E2D7", +"w+ c #D8D4C9", +"x+ c #C9C5B8", +"y+ c #B8B4A7", +"z+ c #6B695E", +"A+ c #C86A21", +"B+ c #E8861B", +"C+ c #EC760F", +"D+ c #EE6B0A", +"E+ c #EE6608", +"F+ c #EB5F05", +"G+ c #E75503", +"H+ c #E55203", +"I+ c #E85F07", +"J+ c #ED6709", +"K+ c #EC6F0E", +"L+ c #F7B934", +"M+ c #FCDC55", +"N+ c #FBD95B", +"O+ c #F9C84F", +"P+ c #F6B13B", +"Q+ c #ED9D30", +"R+ c #B36D2B", +"S+ c #1A1C0C", +"T+ c #1F2211", +"U+ c #303322", +"V+ c #727264", +"W+ c #908E80", +"X+ c #979587", +"Y+ c #767467", +"Z+ c #CDC9B4", +"`+ c #D1CCB7", +" @ c #D3CEBA", +".@ c #EEECE0", +"+@ c #C6681F", +"@@ c #EF8717", +"#@ c #ED5E07", +"$@ c #ED4E03", +"%@ c #EC5102", +"&@ c #E74C02", +"*@ c #E44502", +"=@ c #EB5A08", +"-@ c #F16B08", +";@ c #EF6406", +">@ c #F3941C", +",@ c #FACD3B", +"'@ c #FBDA49", +")@ c #FBCC42", +"!@ c #F8BA35", +"~@ c #F6B12D", +"{@ c #F1A52A", +"]@ c #D5872A", +"^@ c #BE7332", +"/@ c #CA792B", +"(@ c #C87B28", +"_@ c #A85F2E", +":@ c #F4F2E9", +"<@ c #F5F2E8", +"[@ c #F3F0E5", +"}@ c #F2EFE5", +"|@ c #F2EFE4", +"1@ c #EFECE1", +"2@ c #D4D1C6", +"3@ c #C4C1B6", +"4@ c #D0CDC1", +"5@ c #CCC9BC", +"6@ c #C2BEB0", +"7@ c #9B4E1E", +"8@ c #D5761C", +"9@ c #EF730F", +"0@ c #ED4F03", +"a@ c #EC4201", +"b@ c #E83C00", +"c@ c #E53C01", +"d@ c #E74404", +"e@ c #F2640C", +"f@ c #EE5A04", +"g@ c #E95305", +"h@ c #F8BC27", +"i@ c #FBD93F", +"j@ c #FBD53D", +"k@ c #F9C232", +"l@ c #F8B229", +"m@ c #F6AA23", +"n@ c #F6A522", +"o@ c #F59F21", +"p@ c #F39621", +"q@ c #EA8B23", +"r@ c #EC8922", +"s@ c #EB7F20", +"t@ c #D66720", +"u@ c #AC4A1E", +"v@ c #F5F1E7", +"w@ c #F3F1E7", +"x@ c #F4F0E6", +"y@ c #F2EEE5", +"z@ c #F2EEE4", +"A@ c #F1EEE4", +"B@ c #E9E6DB", +"C@ c #DCD8CC", +"D@ c #D3D0C3", +"E@ c #CBC7BA", +"F@ c #B9B5A7", +"G@ c #7C7A6E", +"H@ c #A65623", +"I@ c #EA8315", +"J@ c #EF5506", +"K@ c #EC4001", +"L@ c #E93901", +"M@ c #E83B02", +"N@ c #E83803", +"O@ c #ED4C06", +"P@ c #ED4F06", +"Q@ c #E84503", +"R@ c #ED7311", +"S@ c #FACC2F", +"T@ c #FBDB3C", +"U@ c #FACF37", +"V@ c #F8BD29", +"W@ c #F7B021", +"X@ c #F7AA1D", +"Y@ c #F6A41F", +"Z@ c #F69F20", +"`@ c #F5931C", +" # c #F1861C", +".# c #ED7B1A", +"+# c #EA721A", +"@# c #E3651A", +"## c #C1501B", +"$# c #F5F3E9", +"%# c #F1EEE3", +"&# c #F0EDE2", +"*# c #EBE8DC", +"=# c #DDD9CD", +"-# c #D5D1C4", +";# c #ADA99B", +"># c #6A685D", +",# c #B75B1A", +"'# c #F06E0C", +")# c #ED3D00", +"!# c #E93200", +"~# c #E83501", +"{# c #E73401", +"]# c #E73202", +"^# c #EE4905", +"/# c #E22F01", +"(# c #E34205", +"_# c #F29C1C", +":# c #FBD331", +"<# c #FAD635", +"[# c #F9CA2D", +"}# c #F8BE24", +"|# c #F8B41F", +"1# c #F7AD20", +"2# c #F5A51F", +"3# c #F59C1E", +"4# c #F58F1B", +"5# c #F4831B", +"6# c #EE7717", +"7# c #E86815", +"8# c #E35D15", +"9# c #CF4B15", +"0# c #F4F0E8", +"a# c #ECE8DD", +"b# c #DDD9CC", +"c# c #D5D1C3", +"d# c #C0BCAE", +"e# c #9D9A8C", +"f# c #5C5A4F", +"g# c #DDD7C6", +"h# c #672F15", +"i# c #CD5B12", +"j# c #EC5006", +"k# c #EA3000", +"l# c #E72701", +"m# c #E52700", +"n# c #E32601", +"o# c #E52F02", +"p# c #E43504", +"q# c #D71E00", +"r# c #E55609", +"s# c #FAC629", +"t# c #FBDA34", +"u# c #FAD12F", +"v# c #F9C929", +"w# c #F8C324", +"x# c #F8BB23", +"y# c #F6B01F", +"z# c #F5A31D", +"A# c #F5991D", +"B# c #F58F1F", +"C# c #F5871E", +"D# c #F27A19", +"E# c #E76013", +"F# c #DF5010", +"G# c #D24210", +"H# c #9A3216", +"I# c #A06D4B", +"J# c #D29459", +"K# c #6F684B", +"L# c #171A09", +"M# c #1A1D0C", +"N# c #272A19", +"O# c #393B2B", +"P# c #989789", +"Q# c #A8A798", +"R# c #949284", +"S# c #514F44", +"T# c #DDD8C6", +"U# c #F1EDE3", +"V# c #E4DCCE", +"W# c #8D431A", +"X# c #E55D10", +"Y# c #EB3501", +"Z# c #E62001", +"`# c #E41A01", +" $ c #DE1500", +".$ c #E22403", +"+$ c #E43004", +"@$ c #D62002", +"#$ c #D72F03", +"$$ c #ED8115", +"%$ c #FACB2D", +"&$ c #FBD632", +"*$ c #FAD02A", +"=$ c #F9CA27", +"-$ c #F8C425", +";$ c #F7BA25", +">$ c #F6AE1A", +",$ c #F5A21B", +"'$ c #F4981E", +")$ c #F48E1F", +"!$ c #F4851E", +"~$ c #F37F1D", +"{$ c #E75D14", +"]$ c #DC450E", +"^$ c #D13B0E", +"/$ c #A73E21", +"($ c #905D3B", +"_$ c #BF8747", +":$ c #DFA151", +"<$ c #F0AD56", +"[$ c #EDA553", +"}$ c #C3754B", +"|$ c #6B6547", +"1$ c #7A7459", +"2$ c #F2EEE3", +"3$ c #F2EDE4", +"4$ c #F0ECE2", +"5$ c #F0ECE1", +"6$ c #EDEADE", +"7$ c #E9E5D9", +"8$ c #DFDCD0", +"9$ c #D6D2C5", +"0$ c #C5C1B4", +"a$ c #545247", +"b$ c #EDEBDF", +"c$ c #CABB9A", +"d$ c #AB9356", +"e$ c #9D7020", +"f$ c #B56112", +"g$ c #E8570F", +"h$ c #E82400", +"i$ c #E21501", +"j$ c #DD0F01", +"k$ c #D50C02", +"l$ c #E43306", +"m$ c #DC2C04", +"n$ c #C30D00", +"o$ c #E24B04", +"p$ c #F5A41B", +"q$ c #FACC2C", +"r$ c #FAD22C", +"s$ c #FACF27", +"t$ c #F9C825", +"u$ c #F8BF23", +"v$ c #F7B51F", +"w$ c #F6AB1B", +"x$ c #F5A21D", +"y$ c #F49320", +"z$ c #F3871C", +"A$ c #F27B1A", +"B$ c #F37819", +"C$ c #E95813", +"D$ c #D73A0B", +"E$ c #C52D0D", +"F$ c #944227", +"G$ c #C48341", +"H$ c #E8A246", +"I$ c #F2AE48", +"J$ c #F5B554", +"K$ c #F2AB5A", +"L$ c #CB8353", +"M$ c #726D4F", +"N$ c #F3EEE5", +"O$ c #F1EDE2", +"P$ c #E6E2D6", +"Q$ c #DAD6C9", +"R$ c #CCC9BB", +"S$ c #BAB6A8", +"T$ c #48473E", +"U$ c #DBD7C5", +"V$ c #E4E0D1", +"W$ c #BCAD8C", +"X$ c #8D7721", +"Y$ c #857003", +"Z$ c #8D5E06", +"`$ c #D17B18", +" % c #E74A0C", +".% c #E21B00", +"+% c #DB0E01", +"@% c #D40A01", +"#% c #D91E04", +"$% c #E03405", +"%% c #CD1F02", +"&% c #C61D00", +"*% c #EE6D08", +"=% c #F9B91E", +"-% c #FACF2D", +";% c #FACE27", +">% c #F9C723", +",% c #F8BB1F", +"'% c #F8B11D", +")% c #F7AC1C", +"!% c #F4941B", +"~% c #F38116", +"{% c #F27114", +"]% c #F26916", +"^% c #E95313", +"/% c #D1330A", +"(% c #C03312", +"_% c #B35E2C", +":% c #EE9941", +"<% c #F5A246", +"[% c #F9BE57", +"}% c #F9C970", +"|% c #E9924B", +"1% c #AC623E", +"2% c #EFEDE1", +"3% c #EBE8DB", +"4% c #DFDCCE", +"5% c #D1CEC0", +"6% c #C2BFB1", +"7% c #9B988B", +"8% c #2E2E28", +"9% c #BCB38F", +"0% c #88792C", +"a% c #786E00", +"b% c #837002", +"c% c #935D10", +"d% c #EF9625", +"e% c #E63807", +"f% c #D20801", +"g% c #CF0D01", +"h% c #E63706", +"i% c #D22803", +"j% c #C41801", +"k% c #D93F02", +"l% c #F38A10", +"m% c #F8BF22", +"n% c #FACF2A", +"o% c #FAD02B", +"p% c #FACD29", +"q% c #FAC625", +"r% c #F7B31C", +"s% c #F7AC1B", +"t% c #F6A01B", +"u% c #F48911", +"v% c #F37A12", +"w% c #F2660E", +"x% c #F2610F", +"y% c #EB5010", +"z% c #D3340A", +"A% c #D54C19", +"B% c #E57B31", +"C% c #F9A141", +"D% c #FCBC50", +"E% c #FCCE64", +"F% c #EDC16E", +"G% c #BE7448", +"H% c #F1EDE4", +"I% c #F0EDE1", +"J% c #EFEBDF", +"K% c #C4C1B4", +"L% c #DCDACE", +"M% c #E5E1D6", +"N% c #DAD7CA", +"O% c #C4C0B2", +"P% c #C3BFAF", +"Q% c #706E65", +"R% c #1D1C1B", +"S% c #D2CDB8", +"T% c #CFCAB6", +"U% c #897D40", +"V% c #706705", +"W% c #6C6600", +"X% c #88690C", +"Y% c #C08220", +"Z% c #EE8621", +"`% c #E23508", +" & c #D30901", +".& c #CC0A02", +"+& c #D91E03", +"@& c #EB4206", +"#& c #B81201", +"$& c #CB1E00", +"%& c #EA5F02", +"&& c #F6A518", +"*& c #FAC928", +"=& c #FAD32F", +"-& c #FACC2B", +";& c #F9C524", +">& c #F8BB1D", +",& c #F8B218", +"'& c #F7A619", +")& c #F69417", +"!& c #F47C0D", +"~& c #F46C0E", +"{& c #F25B0D", +"]& c #F2570B", +"^& c #F05611", +"/& c #D3360E", +"(& c #E7621E", +"_& c #F89134", +":& c #FDBA46", +"<& c #FDCA50", +"[& c #FBCC5E", +"}& c #DBAB61", +"|& c #A2714F", +"1& c #161908", +"2& c #1D200F", +"3& c #242616", +"4& c #373929", +"5& c #494B3B", +"6& c #A09F90", +"7& c #A5A293", +"8& c #B0AD9E", +"9& c #353430", +"0& c #201F1D", +"a& c #1B1A18", +"b& c #1B1A17", +"c& c #1D1C18", +"d& c #3B392C", +"e& c #6D6850", +"f& c #847E62", +"g& c #837D60", +"h& c #807B5E", +"i& c #7F795C", +"j& c #7D7659", +"k& c #797255", +"l& c #766E53", +"m& c #736D4E", +"n& c #635812", +"o& c #686200", +"p& c #574703", +"q& c #AB7E19", +"r& c #E4A828", +"s& c #ED7A1D", +"t& c #D82508", +"u& c #CA0801", +"v& c #D81E03", +"w& c #E43405", +"x& c #CC2803", +"y& c #BA1501", +"z& c #DE3D01", +"A& c #F17D0A", +"B& c #F8B822", +"C& c #FAD639", +"D& c #FAD33B", +"E& c #FACE31", +"F& c #F9C731", +"G& c #F8BF2D", +"H& c #F8B936", +"I& c #F6B340", +"J& c #F69C32", +"K& c #F5953D", +"L& c #F38E41", +"M& c #F27934", +"N& c #F38644", +"O& c #EF894A", +"P& c #E47241", +"Q& c #EE914D", +"R& c #F8B45D", +"S& c #F9C866", +"T& c #F8CD75", +"U& c #F9C85D", +"V& c #E4A753", +"W& c #895B37", +"X& c #F2EFE6", +"Y& c #EEEBDF", +"Z& c #EDE9DE", +"`& c #EBE7DB", +" * c #DFDBCE", +".* c #CECABC", +"+* c #BDBAAB", +"@* c #BBB7A7", +"#* c #B2AE9E", +"$* c #AEAA9A", +"%* c #A39F8F", +"&* c #949183", +"** c #898578", +"=* c #848174", +"-* c #838073", +";* c #807D70", +">* c #747266", +",* c #69675D", +"'* c #68665D", +")* c #6A675E", +"!* c #66635B", +"~* c #656045", +"{* c #675C21", +"]* c #614C05", +"^* c #704C11", +"/* c #DDA626", +"(* c #F3B029", +"_* c #EC711B", +":* c #C90A02", +"<* c #CF1204", +"[* c #EC430D", +"}* c #D7300E", +"|* c #BD3728", +"1* c #D3431B", +"2* c #EC7528", +"3* c #F4AB3F", +"4* c #F7C74A", +"5* c #F8D45C", +"6* c #F8D55D", +"7* c #F8D45F", +"8* c #F6D267", +"9* c #F6D064", +"0* c #F5D173", +"a* c #F4CF75", +"b* c #F5CF7D", +"c* c #F4D380", +"d* c #F4CC81", +"e* c #F4CD8A", +"f* c #F3CF8D", +"g* c #F4C888", +"h* c #F5CD8C", +"i* c #F5D290", +"j* c #F6CF8C", +"k* c #F8D693", +"l* c #F9DA94", +"m* c #F9D27A", +"n* c #F6B351", +"o* c #EB7C2E", +"p* c #BB4013", +"q* c #692911", +"r* c #F4F2E8", +"s* c #F0EEE2", +"t* c #EFECE2", +"u* c #EDEBDE", +"v* c #EEEADE", +"w* c #EEE9DE", +"x* c #D2CEC1", +"y* c #C4C0B1", +"z* c #B9B5A6", +"A* c #ABA796", +"B* c #B1AD9C", +"C* c #B1AD9D", +"D* c #B1AE9D", +"E* c #B3AF9F", +"F* c #B2AE9D", +"G* c #B4B09F", +"H* c #B9B5A5", +"I* c #B8B4A4", +"J* c #B6B2A2", +"K* c #B7B3A4", +"L* c #9D915E", +"M* c #846922", +"N* c #886530", +"O* c #B8903F", +"P* c #EEC14C", +"Q* c #F4B74C", +"R* c #EA833F", +"S* c #DF6347", +"T* c #E9794B", +"U* c #F38849", +"V* c #EC9C67", +"W* c #DF9F72", +"X* c #F4BE77", +"Y* c #F5C674", +"Z* c #F6D37B", +"`* c #F6D781", +" = c #F6D883", +".= c #F5D47C", +"+= c #F5D780", +"@= c #F5D883", +"#= c #F5D782", +"$= c #F6DA89", +"%= c #F5DB91", +"&= c #F5DA90", +"*= c #F7DD99", +"== c #F7DD9D", +"-= c #F8DD9C", +";= c #F9DDA0", +">= c #FADE99", +",= c #FBDF9B", +"'= c #FBE195", +")= c #FBE08E", +"!= c #FBD26B", +"~= c #FABE55", +"{= c #F37C2B", +"]= c #EE4F10", +"^= c #E0480C", +"/= c #C54E18", +"(= c #923D1F", +"_= c #6B6446", +":= c #EEEAE0", +"<= c #ECE9DD", +"[= c #EAE6DB", +"}= c #E3DFD4", +"|= c #D7D3C6", +"1= c #C5C1B2", +"2= c #BCB8A9", +"3= c #BBB7A8", +"4= c #BDB9A9", +"5= c #C1BDAD", +"6= c #C0BCAC", +"7= c #BFBBAB", +"8= c #BCB8A8", +"9= c #C0BCAD", +"0= c #B8B2A1", +"a= c #B7AF9C", +"b= c #C8B896", +"c= c #BDA55F", +"d= c #E3C37D", +"e= c #DCBE85", +"f= c #F4D98F", +"g= c #F7D986", +"h= c #F8D487", +"i= c #F7D692", +"j= c #F5CD8F", +"k= c #F7D18E", +"l= c #F7D68F", +"m= c #F7D794", +"n= c #F7DB96", +"o= c #F7D98F", +"p= c #F7D788", +"q= c #F8DA8A", +"r= c #F9DC8F", +"s= c #F9DE95", +"t= c #F9E095", +"u= c #F9E093", +"v= c #F8E195", +"w= c #F8E193", +"x= c #F9E18E", +"y= c #FAE392", +"z= c #FAE5A0", +"A= c #FAE5A5", +"B= c #FBE7A9", +"C= c #FCE9AB", +"D= c #FCE59F", +"E= c #FCE18D", +"F= c #FCD676", +"G= c #FBCD5F", +"H= c #FBCA59", +"I= c #FBBB47", +"J= c #F57F26", +"K= c #EE3A03", +"L= c #ED4002", +"M= c #F15407", +"N= c #F36A16", +"O= c #BD5C2C", +"P= c #6B6347", +"Q= c #EDEADF", +"R= c #EDEADD", +"S= c #ECE9DC", +"T= c #ECE8DC", +"U= c #E5E2D5", +"V= c #E1DED1", +"W= c #DDDACD", +"X= c #D4D1C3", +"Y= c #CECBBC", +"Z= c #CCC9B9", +"`= c #CBC8B8", +" - c #CBC7B7", +".- c #CCC8B9", +"+- c #CAC6B7", +"@- c #C9C5B6", +"#- c #CDC9BB", +"$- c #CFCBBD", +"%- c #D1CCBD", +"&- c #CFB591", +"*- c #E0BF7A", +"=- c #EDCA75", +"-- c #F8D97D", +";- c #F8DA7B", +">- c #FADE7C", +",- c #FAE282", +"'- c #FADF7F", +")- c #FAE089", +"!- c #FBE7A1", +"~- c #FCE8A2", +"{- c #FCE49B", +"]- c #FCE59E", +"^- c #FCE7A3", +"/- c #FCE7A1", +"(- c #FCE6A2", +"_- c #FBE197", +":- c #FBE096", +"<- c #FCE39B", +"[- c #FBE6A0", +"}- c #FBE7A2", +"|- c #FBE8A1", +"1- c #FCEAA3", +"2- c #FCE99F", +"3- c #FCE99A", +"4- c #FDECA3", +"5- c #FDEDA9", +"6- c #FDEAA7", +"7- c #FDE99E", +"8- c #FBE386", +"9- c #FBD865", +"0- c #FCD753", +"a- c #FCD247", +"b- c #FDCD46", +"c- c #FAB03B", +"d- c #F57A21", +"e- c #F04606", +"f- c #EE3B00", +"g- c #F04C05", +"h- c #EE6010", +"i- c #D96423", +"j- c #EDE9DD", +"k- c #E9E6DA", +"l- c #E7E4D7", +"m- c #E2DED1", +"n- c #DBD7CA", +"o- c #D2CEC0", +"p- c #D3CFC1", +"q- c #D1CDBE", +"r- c #CECABB", +"s- c #C8C0AE", +"t- c #DDA04F", +"u- c #F7CF63", +"v- c #FACF56", +"w- c #F9CC4B", +"x- c #F9CF4F", +"y- c #F9D24E", +"z- c #F9D74E", +"A- c #FADA57", +"B- c #FADB5B", +"C- c #FADC5E", +"D- c #FBDF6D", +"E- c #FCDF74", +"F- c #FBDD72", +"G- c #FBE281", +"H- c #FDE998", +"I- c #FCE28D", +"J- c #FCE28F", +"K- c #FDE89B", +"L- c #F6E497", +"M- c #EBDA8F", +"N- c #F8E8A1", +"O- c #FBE895", +"P- c #FDEB98", +"Q- c #FCEC95", +"R- c #FCE581", +"S- c #FBE075", +"T- c #FCD968", +"U- c #FCD253", +"V- c #FCC833", +"W- c #FCD031", +"X- c #FDDC36", +"Y- c #FDE03D", +"Z- c #FBC035", +"`- c #F46A13", +" ; c #F04204", +".; c #F04803", +"+; c #F05C11", +"@; c #CE581C", +"#; c #6A6347", +"$; c #F8F4EB", +"%; c #EFEADF", +"&; c #EDE8DD", +"*; c #ECE8DB", +"=; c #EAE7DB", +"-; c #EAE6DA", +";; c #E1DDD1", +">; c #D8D4C6", +",; c #D7D3C5", +"'; c #D5D0C2", +"); c #D4CFC1", +"!; c #CAC5B6", +"~; c #BDA684", +"{; c #D9A349", +"]; c #FBD55B", +"^; c #FBD44F", +"/; c #FAD046", +"(; c #FACE43", +"_; c #F9CC42", +":; c #F9CE3B", +"<; c #FAD33E", +"[; c #FAD642", +"}; c #FAD840", +"|; c #FAD741", +"1; c #FAD43C", +"2; c #FAD039", +"3; c #F8CD3B", +"4; c #F6C839", +"5; c #F5C438", +"6; c #F6C747", +"7; c #F2CA52", +"8; c #E2C04B", +"9; c #BEAC42", +"0; c #AC9837", +"a; c #C8AB40", +"b; c #F9DA56", +"c; c #FBD753", +"d; c #FCD349", +"e; c #FBD041", +"f; c #FBC734", +"g; c #FBC22E", +"h; c #FBBC25", +"i; c #FBBB1C", +"j; c #FCC41E", +"k; c #FCCE23", +"l; c #FCCF25", +"m; c #F8A81D", +"n; c #F26A0F", +"o; c #F03800", +"p; c #F03E02", +"q; c #F2510A", +"r; c #F66C19", +"s; c #D25C22", +"t; c #EBE7DA", +"u; c #EAE7D9", +"v; c #E9E6D9", +"w; c #DEDACD", +"x; c #DCD8CB", +"y; c #DAD5C8", +"z; c #D8D4C7", +"A; c #D9D4C7", +"B; c #D6D2C3", +"C; c #D4D0C1", +"D; c #C2BFB0", +"E; c #8C7756", +"F; c #CB9E3C", +"G; c #F7D04C", +"H; c #FBD74C", +"I; c #FAD547", +"J; c #FAD03F", +"K; c #F9CC38", +"L; c #F9CF32", +"M; c #FAD437", +"N; c #FAD438", +"O; c #FAD436", +"P; c #FAD536", +"Q; c #FAD033", +"R; c #F9C72E", +"S; c #F6BF24", +"T; c #F3B41E", +"U; c #F2B41B", +"V; c #EFB41B", +"W; c #CBA10F", +"X; c #A28A0B", +"Y; c #8E7C06", +"Z; c #9E860E", +"`; c #CFAC25", +" > c #F9CC2E", +".> c #FBC52A", +"+> c #FABF28", +"@> c #FAB61E", +"#> c #FAAE18", +"$> c #FAA813", +"%> c #FAA00D", +"&> c #FAA60B", +"*> c #FBAE0D", +"=> c #FBBB18", +"-> c #F79714", +";> c #F37619", +">> c #F35610", +",> c #F55410", +"'> c #F76718", +")> c #F3731E", +"!> c #DD6E24", +"~> c #883B1B", +"{> c #F4F1E6", +"]> c #F0EBE1", +"^> c #EAE6D9", +"/> c #E5E1D4", +"(> c #E1DDD0", +"_> c #E0DCCF", +":> c #DFDACD", +"<> c #DED9CC", +"[> c #DDD8CB", +"}> c #DCD8CA", +"|> c #DBD7C9", +"1> c #D8D5C7", +"2> c #BDB9AB", +"3> c #5D543A", +"4> c #B98B2D", +"5> c #F7D44B", +"6> c #FBDA4F", +"7> c #FBD545", +"8> c #FAD13E", +"9> c #FAD13B", +"0> c #FAD43A", +"a> c #FBD737", +"b> c #FBD738", +"c> c #FBD537", +"d> c #FBD133", +"e> c #F9C62C", +"f> c #F8BD26", +"g> c #F6BA22", +"h> c #F4B31F", +"i> c #EFB41A", +"j> c #CFA416", +"k> c #8A7D02", +"l> c #807200", +"m> c #9D8408", +"n> c #D8B324", +"o> c #F3C62A", +"p> c #FBBF22", +"q> c #F8B11C", +"r> c #F6A516", +"s> c #F79B0E", +"t> c #F89209", +"u> c #F98F07", +"v> c #FA8D08", +"w> c #FB990F", +"x> c #FBAF29", +"y> c #FBBA3E", +"z> c #FBBD55", +"A> c #F99335", +"B> c #FB8525", +"C> c #FA8423", +"D> c #FA8B21", +"E> c #DE721F", +"F> c #8E4616", +"G> c #F6F3E9", +"H> c #EDE9DC", +"I> c #E9E5D8", +"J> c #E8E4D7", +"K> c #E6E2D4", +"L> c #E4E0D2", +"M> c #E4DFD2", +"N> c #DCD9CB", +"O> c #DAD7C9", +"P> c #D6D4C6", +"Q> c #B1AFA0", +"R> c #6A6348", +"S> c #9C7D2B", +"T> c #F3CC41", +"U> c #FBDB4C", +"V> c #FAD748", +"W> c #FAD743", +"X> c #FBD840", +"Y> c #FBD838", +"Z> c #FCD738", +"`> c #FCD336", +" , c #F9C82E", +"., c #F8C329", +"+, c #F8C229", +"@, c #EBB823", +"#, c #C29C15", +"$, c #937F08", +"%, c #817503", +"&, c #A18B0D", +"*, c #D8B11F", +"=, c #FDCF30", +"-, c #FCCA28", +";, c #FAB21B", +">, c #F29A11", +",, c #F4940C", +"', c #F68807", +"), c #F98507", +"!, c #FA8010", +"~, c #FB8419", +"{, c #FD9C2C", +"], c #FDB746", +"^, c #FCB653", +"/, c #FAA23F", +"(, c #FCA42D", +"_, c #FB9F21", +":, c #FBA01F", +"<, c #EF931E", +"[, c #AC5616", +"}, c #F7F3EC", +"|, c #F2F0E6", +"1, c #ECE7DC", +"2, c #EAE7DA", +"3, c #EAE5D9", +"4, c #E8E5D8", +"5, c #E8E5D7", +"6, c #E7E3D5", +"7, c #E5E0D3", +"8, c #E0DCCE", +"9, c #DFDBCD", +"0, c #DDDACC", +"a, c #D6D3C5", +"b, c #C0BEB0", +"c, c #65634E", +"d, c #927629", +"e, c #E7C037", +"f, c #FBDB49", +"g, c #FBDC4D", +"h, c #FBDA46", +"i, c #FCDA42", +"j, c #FCDB43", +"k, c #FCD83C", +"l, c #FBD436", +"m, c #FBCF32", +"n, c #F9C729", +"o, c #F9C828", +"p, c #E8BF2C", +"q, c #BA9D1B", +"r, c #897A07", +"s, c #887A09", +"t, c #B79E14", +"u, c #E1BE21", +"v, c #F9CF2B", +"w, c #FDCF2C", +"x, c #FCC222", +"y, c #F9AD19", +"z, c #F69C12", +"A, c #F68E0E", +"B, c #F98013", +"C, c #FC7C20", +"D, c #FD8824", +"E, c #FD8B24", +"F, c #FD9F25", +"G, c #FDB335", +"H, c #FDB734", +"I, c #FCB126", +"J, c #FCB01F", +"K, c #FBB11C", +"L, c #F59E1C", +"M, c #C9761A", +"N, c #6A6246", +"O, c #F1EFE5", +"P, c #F0EEE3", +"Q, c #EEE9DD", +"R, c #E8E4D6", +"S, c #E1DDCE", +"T, c #DFDBCC", +"U, c #DBD7C8", +"V, c #C4C1B2", +"W, c #6B6A54", +"X, c #7B6526", +"Y, c #EBC435", +"Z, c #FBDA44", +"`, c #FCDB47", +" ' c #FCDC49", +".' c #FCDA46", +"+' c #FCDA44", +"@' c #FCD840", +"#' c #FBD139", +"$' c #FACC31", +"%' c #F9CB2A", +"&' c #EFC226", +"*' c #CCA81E", +"=' c #9D8714", +"-' c #7C7104", +";' c #90820B", +">' c #C1A821", +",' c #F5D223", +"'' c #FBD623", +")' c #FDD125", +"!' c #FDCB20", +"~' c #FCB91A", +"{' c #F9A811", +"]' c #F99C14", +"^' c #FB9422", +"/' c #FE902A", +"(' c #FE9828", +"_' c #FE9F26", +":' c #FEA522", +"<' c #FDAE1F", +"[' c #FCB321", +"}' c #FDB721", +"|' c #FCB31E", +"1' c #FBB41C", +"2' c #FBB01D", +"3' c #E1841A", +"4' c #F3F0E8", +"5' c #EBE7DC", +"6' c #ECE7DB", +"7' c #E9E6D8", +"8' c #E8E4D5", +"9' c #E3DFD1", +"0' c #E2DDCF", +"a' c #E2DED0", +"b' c #E1DDCF", +"c' c #D7D2C5", +"d' c #C1BEB0", +"e' c #817F6A", +"f' c #837331", +"g' c #E1BC36", +"h' c #FBD63F", +"i' c #FBD944", +"j' c #FCDD4A", +"k' c #FCDB4A", +"l' c #FBD946", +"m' c #FAD03A", +"n' c #FACA31", +"o' c #EEC225", +"p' c #B19517", +"q' c #83730B", +"r' c #716707", +"s' c #988911", +"t' c #D0B720", +"u' c #F4D52C", +"v' c #FDDB28", +"w' c #FDD822", +"x' c #FDD122", +"y' c #FCC91B", +"z' c #FBB513", +"A' c #F9A30C", +"B' c #FA9614", +"C' c #FEA22E", +"D' c #FFA92C", +"E' c #FFAC28", +"F' c #FFB025", +"G' c #FFB723", +"H' c #FEB91F", +"I' c #FDB61E", +"J' c #FDB51D", +"K' c #FCB31B", +"L' c #ED9A1E", +"M' c #B76915", +"N' c #E9E5D7", +"O' c #E7E4D6", +"P' c #E8E3D6", +"Q' c #E4E1D3", +"R' c #E5E1D2", +"S' c #E1DECF", +"T' c #D6D2C4", +"U' c #767663", +"V' c #998433", +"W' c #E4C039", +"X' c #FBD540", +"Y' c #FBD844", +"Z' c #FBDB47", +"`' c #FCDB48", +" ) c #FBDA47", +".) c #FAD641", +"+) c #F9CE39", +"@) c #EABD2C", +"#) c #B79818", +"$) c #736B0C", +"%) c #776B0F", +"&) c #94841B", +"*) c #DEC527", +"=) c #F7DA27", +"-) c #FEDF2D", +";) c #FDDE26", +">) c #FDDB21", +",) c #FDD61F", +"') c #FCCB18", +")) c #FBB810", +"!) c #F9A30B", +"~) c #FB9A15", +"{) c #FEA829", +"]) c #FFB529", +"^) c #FFB926", +"/) c #FFBA25", +"() c #FEBE23", +"_) c #FEBC20", +":) c #FDB61B", +"<) c #FDB71A", +"[) c #FDB01C", +"}) c #FBAD22", +"|) c #D79225", +"1) c #6D4412", +"2) c #745116", +"3) c #7D5216", +"4) c #70441F", +"5) c #141706", +"6) c #131606", +"7) c #181B0B", +"8) c #3D3D26", +"9) c #917B27", +"0) c #F9D23B", +"a) c #FAD941", +"b) c #FAD945", +"c) c #FBD942", +"d) c #FAD848", +"e) c #F8D244", +"f) c #E8BB2F", +"g) c #AC901A", +"h) c #786B11", +"i) c #766915", +"j) c #9F8A23", +"k) c #D2BB30", +"l) c #FBE12D", +"m) c #FEE225", +"n) c #FEE229", +"o) c #FDE123", +"p) c #FDDC20", +"q) c #FDDA1E", +"r) c #FDCB14", +"s) c #FBB90D", +"t) c #FAA807", +"u) c #FCA017", +"v) c #FEAE24", +"w) c #FFBD26", +"x) c #FFBF26", +"y) c #FFBF24", +"z) c #FEBE22", +"A) c #FDBB1E", +"B) c #FDB61A", +"C) c #FCB21A", +"D) c #FAAC1C", +"E) c #EFA11C", +"F) c #824E14", +"G) c #7E6012", +"H) c #846314", +"I) c #7B5016", +"J) c #F2F0E5", +"K) c #E6E3D4", +"L) c #E4E1D2", +"M) c #E5E0D1", +"N) c #E4DFD1", +"O) c #D5D2C3", +"P) c #ABA99A", +"Q) c #68664E", +"R) c #978229", +"S) c #F8D239", +"T) c #FAD83F", +"U) c #FAD942", +"V) c #FAD73C", +"W) c #F9D340", +"X) c #F5CB39", +"Y) c #B6981A", +"Z) c #66630B", +"`) c #635B10", +" ! c #85731C", +".! c #CDB430", +"+! c #F4DC35", +"@! c #FEE62F", +"#! c #FEE729", +"$! c #FEE824", +"%! c #FEE424", +"&! c #FDDF21", +"*! c #FDD919", +"=! c #FCCA12", +"-! c #FBBA0B", +";! c #FAAF05", +">! c #FCA519", +",! c #FEB525", +"'! c #FFC026", +")! c #FFC126", +"!! c #FFC124", +"~! c #FEBF21", +"{! c #FDB91D", +"]! c #FDB21C", +"^! c #FCB11B", +"/! c #EDA018", +"(! c #C07B13", +"_! c #715C0E", +":! c #82690F", +"~ c #FDB21E", +",~ c #FEBD26", +"'~ c #FFC629", +")~ c #FFC928", +"!~ c #FEC222", +"~~ c #FDB31C", +"{~ c #FAB618", +"]~ c #E8A114", +"^~ c #86470D", +"/~ c #6E590B", +"(~ c #79610C", +"_~ c #7C620C", +":~ c #676245", +"<~ c #EAE5D8", +"[~ c #E7E3D6", +"}~ c #E7E2D4", +"|~ c #E3E0D0", +"1~ c #E3DECF", +"2~ c #E2DFCF", +"3~ c #E2DECF", +"4~ c #E0DCCC", +"5~ c #DAD6C8", +"6~ c #59573F", +"7~ c #927E26", +"8~ c #F5D538", +"9~ c #F9DD42", +"0~ c #F9DE3A", +"a~ c #F7D92D", +"b~ c #F2CE27", +"c~ c #D3AE1B", +"d~ c #6F7202", +"e~ c #374802", +"f~ c #505D08", +"g~ c #CFB520", +"h~ c #F8E332", +"i~ c #FEF13B", +"j~ c #FEF43F", +"k~ c #FFF53C", +"l~ c #FFF335", +"m~ c #FEEE2D", +"n~ c #FEEA24", +"o~ c #FEE61F", +"p~ c #FDDD15", +"q~ c #FCD20E", +"r~ c #FCC706", +"s~ c #FCB80A", +"t~ c #FEB928", +"u~ c #FEC527", +"v~ c #FFCC2A", +"w~ c #FFCD28", +"x~ c #FEBE21", +"y~ c #FCB01D", +"z~ c #FBB817", +"A~ c #ECA613", +"B~ c #B2760F", +"C~ c #625107", +"D~ c #796408", +"E~ c #141607", +"F~ c #2C2F1E", +"G~ c #826F23", +"H~ c #E5C735", +"I~ c #F8DB3B", +"J~ c #F9DD3A", +"K~ c #F8DE32", +"L~ c #E6C723", +"M~ c #A69411", +"N~ c #525B01", +"O~ c #3D4F03", +"P~ c #757B0F", +"Q~ c #E6C627", +"R~ c #FDEB33", +"S~ c #FEF442", +"T~ c #FEF740", +"U~ c #FFF73E", +"V~ c #FEF432", +"W~ c #FEF02C", +"X~ c #FEEE22", +"Y~ c #FEE71A", +"Z~ c #FDDC13", +"`~ c #FDD30B", +" { c #FCC506", +".{ c #FCBE16", +"+{ c #FEC229", +"@{ c #FFCA27", +"#{ c #FFCE27", +"${ c #FECB27", +"%{ c #FDBC21", +"&{ c #FBAF1C", +"*{ c #F8B911", +"={ c #D2860E", +"-{ c #635305", +";{ c #726006", +">{ c #F2EDE3", +",{ c #E7E3D4", +"'{ c #E4E0D0", +"){ c #E3DFCF", +"!{ c #DEDACA", +"~{ c #DAD5C6", +"{{ c #D3CFC0", +"]{ c #777766", +"^{ c #4E4B22", +"/{ c #C5AA20", +"({ c #EECE29", +"_{ c #F4CF26", +":{ c #F2CB1F", +"<{ c #CAAB15", +"[{ c #6F6D07", +"}{ c #374400", +"|{ c #445702", +"1{ c #95931D", +"2{ c #E4C92A", +"3{ c #FCE832", +"4{ c #FEF541", +"5{ c #FEF83E", +"6{ c #FEF837", +"7{ c #FEF42A", +"8{ c #FEF22A", +"9{ c #FEEF20", +"0{ c #FEE818", +"a{ c #FDDE10", +"b{ c #FDD508", +"c{ c #FCC204", +"d{ c #FDC224", +"e{ c #FEC829", +"f{ c #FFCE28", +"g{ c #FFCE26", +"h{ c #FEC523", +"i{ c #FCB81E", +"j{ c #F8B016", +"k{ c #DF9B0D", +"l{ c #9B5E09", +"m{ c #544603", +"n{ c #675306", +"o{ c #E3DED0", +"p{ c #E1DDCD", +"q{ c #DFDBCA", +"r{ c #D9D5C6", +"s{ c #D2CFC0", +"t{ c #C6C2B3", +"u{ c #908E7F", +"v{ c #43462D", +"w{ c #686518", +"x{ c #B9A217", +"y{ c #E6BE18", +"z{ c #DBB10E", +"A{ c #9C8407", +"B{ c #424B02", +"C{ c #283600", +"D{ c #455B00", +"E{ c #9B9A1D", +"F{ c #E0C124", +"G{ c #FAE930", +"H{ c #FDF73F", +"I{ c #FEF939", +"J{ c #FEF82F", +"K{ c #FEF529", +"L{ c #FEF324", +"M{ c #FEEF1C", +"N{ c #FEE914", +"O{ c #FDDF0D", +"P{ c #FCD107", +"Q{ c #FCC10D", +"R{ c #FEC932", +"S{ c #FFCC28", +"T{ c #FFCE29", +"U{ c #FFCA25", +"V{ c #FEBB1E", +"W{ c #FAB11A", +"X{ c #F0A50F", +"Y{ c #B46F0B", +"Z{ c #635507", +"`{ c #E7E4D5", +" ] c #E5E1D1", +".] c #E2DDCE", +"+] c #E2DDCD", +"@] c #E1DCCD", +"#] c #E1DCCC", +"$] c #DAD6C7", +"%] c #D4CFC0", +"&] c #C8C4B6", +"*] c #ABA899", +"=] c #4F5240", +"-] c #40451A", +";] c #756F11", +">] c #AB940E", +",] c #9D8807", +"'] c #686403", +")] c #374202", +"!] c #2B3A00", +"~] c #455902", +"{] c #828E10", +"]] c #D6BE28", +"^] c #FAE82B", +"/] c #FEF93F", +"(] c #FEF936", +"_] c #FEF92A", +":] c #FEF628", +"<] c #FEF41F", +"[] c #FEF015", +"}] c #FEEA11", +"|] c #FDDD0A", +"1] c #FCCC08", +"2] c #FDC620", +"3] c #FECC2F", +"4] c #FFCF29", +"5] c #FFCD29", +"6] c #FEC223", +"7] c #FCB61A", +"8] c #F5B015", +"9] c #DA940D", +"0] c #524307", +"a] c #5D5409", +"b] c #5A510A", +"c] c #EBE6DB", +"d] c #E8E4D8", +"e] c #E3E0D1", +"f] c #E0DDCC", +"g] c #E0DCCB", +"h] c #DED9C9", +"i] c #DAD6C6", +"j] c #D4D0BF", +"k] c #B1AEA0", +"l] c #5F604F", +"m] c #333A1C", +"n] c #3F490D", +"o] c #4F5611", +"p] c #575B08", +"q] c #434E02", +"r] c #2D3A00", +"s] c #2A3800", +"t] c #3F5602", +"u] c #7F8E10", +"v] c #CCBD24", +"w] c #F5E32C", +"x] c #FEF838", +"y] c #FEFA32", +"z] c #FEF928", +"A] c #FEF722", +"B] c #FEF41A", +"C] c #FEF113", +"D] c #FDE90F", +"E] c #FCD805", +"F] c #FCC509", +"G] c #FDC72C", +"H] c #FECF29", +"I] c #FFD128", +"J] c #FFCC26", +"K] c #FDBC1E", +"L] c #FAB614", +"M] c #E0A011", +"N] c #A7730F", +"O] c #020100", +"P] c #352C0D", +"Q] c #59480B", +"R] c #6A5B0B", +"S] c #4C4A0A", +"T] c #454645", +"U] c #141606", +"V] c #131607", +"W] c #151809", +"X] c #232716", +"Y] c #31361D", +"Z] c #323D0F", +"`] c #445018", +" ^ c #434F12", +".^ c #354405", +"+^ c #2B3800", +"@^ c #293600", +"#^ c #3A5002", +"$^ c #6D8408", +"%^ c #C7B827", +"&^ c #F4E522", +"*^ c #FDF82D", +"=^ c #FEFB2E", +"-^ c #FEFA25", +";^ c #FEF71F", +">^ c #FEF416", +",^ c #FEEF0F", +"'^ c #FDE309", +")^ c #FCCF05", +"!^ c #FCC213", +"~^ c #FEC92E", +"{^ c #FFD328", +"]^ c #FED526", +"^^ c #FEC921", +"/^ c #FBB416", +"(^ c #F1AC0B", +"_^ c #B17309", +":^ c #573B09", +"<^ c #040302", +"[^ c #251F06", +"}^ c #4C3F0B", +"|^ c #62530B", +"1^ c #5F5209", +"2^ c #514A0A", +"3^ c #020202", +"4^ c #EBE6DA", +"5^ c #E0DBCB", +"6^ c #DDD8C8", +"7^ c #DAD7C6", +"8^ c #D6D2C1", +"9^ c #CDC9B8", +"0^ c #BFBCAD", +"a^ c #A6A394", +"b^ c #515341", +"c^ c #333A19", +"d^ c #3D4814", +"e^ c #424E17", +"f^ c #36440B", +"g^ c #2B3802", +"h^ c #273400", +"i^ c #324500", +"j^ c #5D7109", +"k^ c #B5AF23", +"l^ c #F3DD1E", +"m^ c #FDF925", +"n^ c #FEFB2A", +"o^ c #FEFB20", +"p^ c #FEF71A", +"q^ c #FEF411", +"r^ c #FEEE0C", +"s^ c #FDDB04", +"t^ c #FCC306", +"u^ c #FDC41E", +"v^ c #FED02A", +"w^ c #FED527", +"x^ c #FED021", +"y^ c #FBC016", +"z^ c #EAA40B", +"A^ c #C38206", +"B^ c #613D09", +"C^ c #483609", +"D^ c #3F3109", +"E^ c #292307", +"F^ c #534A06", +"G^ c #635C07", +"H^ c #5F5408", +"I^ c #4B4308", +"J^ c #F1ECE2", +"K^ c #010101", +"L^ c #030303", +"M^ c #E6E1D2", +"N^ c #DFDBCB", +"O^ c #DED9C8", +"P^ c #D7D3C1", +"Q^ c #CFCABA", +"R^ c #C3BEAF", +"S^ c #B1AE9F", +"T^ c #787868", +"U^ c #383C27", +"V^ c #313C0D", +"W^ c #3D4913", +"X^ c #364408", +"Y^ c #2C3A00", +"Z^ c #232F00", +"`^ c #2A3900", +" / c #4A5D04", +"./ c #97981B", +"+/ c #E6D021", +"@/ c #FBF01A", +"#/ c #FDFA1F", +"$/ c #FDFA1B", +"%/ c #FEF614", +"&/ c #FDF20A", +"*/ c #FDE806", +"=/ c #FCD201", +"-/ c #FCB604", +";/ c #FDC722", +">/ c #FED125", +",/ c #FED11F", +"'/ c #FDCA15", +")/ c #F3B20B", +"!/ c #BF7E05", +"~/ c #633D02", +"{/ c #4B3A08", +"]/ c #4D3D0A", +"^/ c #3C3608", +"// c #454504", +"(/ c #4C4D00", +"_/ c #555104", +":/ c #4A4007", +"( c #5C5906", +",( c #4D3C07", +"'( c #151906", +")( c #161A06", +"!( c #202A04", +"~( c #273302", +"{( c #263104", +"]( c #1B2007", +"^( c #121506", +"/( c #111305", +"(( c #151709", +"_( c #2E3220", +":( c #2F3616", +"<( c #3D4A09", +"[( c #455509", +"}( c #415104", +"|( c #374600", +"1( c #344600", +"2( c #3E5500", +"3( c #5E7305", +"4( c #B2B110", +"5( c #EBDC08", +"6( c #F5DD01", +"7( c #F0C900", +"8( c #EEB801", +"9( c #F0B101", +"0( c #F6B606", +"a( c #FDC815", +"b( c #FDDC15", +"c( c #F5CA09", +"d( c #D29301", +"e( c #815109", +"f( c #524206", +"g( c #4B5103", +"h( c #475202", +"i( c #4A5801", +"j( c #596303", +"k( c #636507", +"l( c #524A10", +"m( c #E6E2D5", +"n( c #C2C3A5", +"o( c #868E60", +"p( c #6A7445", +"q( c #656E42", +"r( c #7E855F", +"s( c #B7B79F", +"t( c #E3DECE", +"u( c #E1DECE", +"v( c #E1DDCC", +"w( c #E0DACA", +"x( c #B5B69A", +"y( c #3E4D12", +"z( c #2F4003", +"A( c #334404", +"B( c #566724", +"C( c #9FA47D", +"D( c #DDD8C7", +"E( c #DCD7C5", +"F( c #D9D4C3", +"G( c #D5D2C0", +"H( c #CECBBA", +"I( c #C4C0B0", +"J( c #B6B3A4", +"K( c #A3A192", +"L( c #676858", +"M( c #363C26", +"N( c #323C16", +"O( c #3F4C0F", +"P( c #414E04", +"Q( c #3A4801", +"R( c #3B4B00", +"S( c #3B4D00", +"T( c #445C00", +"U( c #778307", +"V( c #BBA907", +"W( c #CCA001", +"X( c #D69F01", +"Y( c #EEBB09", +"Z( c #FAC710", +"`( c #FCC917", +" _ c #FBD21D", +"._ c #E6BB12", +"+_ c #BE8B05", +"@_ c #845808", +"#_ c #5E550C", +"$_ c #515803", +"%_ c #354500", +"&_ c #3C4B00", +"*_ c #667104", +"=_ c #6E6D0A", +"-_ c #675F43", +";_ c #EDE8DC", +">_ c #929A65", +",_ c #566525", +"'_ c #3C4C0D", +")_ c #334305", +"!_ c #334405", +"~_ c #354505", +"{_ c #455516", +"]_ c #8B9267", +"^_ c #E2DECD", +"/_ c #A1A481", +"(_ c #2F3F03", +"__ c #293A00", +":_ c #2A3B00", +"<_ c #324302", +"[_ c #536325", +"}_ c #DCD8C7", +"|_ c #DAD5C4", +"1_ c #D8D3C1", +"2_ c #D2CDBD", +"3_ c #C9C5B4", +"4_ c #ACA899", +"5_ c #888677", +"6_ c #454836", +"7_ c #373F1D", +"8_ c #374112", +"9_ c #374208", +"0_ c #455308", +"a_ c #505E07", +"b_ c #4F5E01", +"c_ c #4E5F01", +"d_ c #556701", +"e_ c #747705", +"f_ c #927701", +"g_ c #A97C00", +"h_ c #DBA804", +"i_ c #E8AE0D", +"j_ c #E8B718", +"k_ c #DAA813", +"l_ c #B18806", +"m_ c #8C7002", +"n_ c #6B6601", +"o_ c #4E5901", +"p_ c #425200", +"q_ c #485601", +"r_ c #5D6603", +"s_ c #636508", +"t_ c #707E3A", +"u_ c #475A0D", +"v_ c #384B04", +"w_ c #344502", +"x_ c #344601", +"y_ c #2F4001", +"z_ c #2E3E01", +"A_ c #324304", +"B_ c #6B773D", +"C_ c #C2C3A4", +"D_ c #8B9266", +"E_ c #304002", +"F_ c #2B3C00", +"G_ c #3B4C0E", +"H_ c #DBD6C4", +"I_ c #D3CFBD", +"J_ c #CCC8B7", +"K_ c #A4A193", +"L_ c #575848", +"M_ c #3C441D", +"N_ c #3F4A16", +"O_ c #404F06", +"P_ c #4A5A0C", +"Q_ c #52620B", +"R_ c #576A05", +"S_ c #596C01", +"T_ c #5B6C01", +"U_ c #566601", +"V_ c #626600", +"W_ c #746700", +"X_ c #8A7400", +"Y_ c #A08302", +"Z_ c #A38706", +"`_ c #948100", +" : c #837A00", +".: c #717400", +"+: c #576500", +"@: c #4E5F00", +"#: c #5B6A00", +"$: c #5F6304", +"%: c #474706", +"&: c #EAE6D8", +"*: c #E5E2D2", +"=: c #62712B", +"-: c #354802", +";: c #304300", +">: c #384C00", +",: c #455802", +"': c #3B4D01", +"): c #344501", +"!: c #2C3D00", +"~: c #314202", +"{: c #586722", +"]: c #B7B996", +"^: c #E1DCCB", +"/: c #DEDAC8", +"(: c #778248", +"_: c #334304", +":: c #2D3D00", +"<: c #304105", +"[: c #A4A885", +"}: c #DBD7C4", +"|: c #D5D0C0", +"1: c #CFCAB9", +"2: c #C6C1B0", +"3: c #B9B4A5", +"4: c #A9A596", +"5: c #7F8066", +"6: c #3D4817", +"7: c #49561A", +"8: c #475B06", +"9: c #4D6007", +"0: c #485908", +"a: c #495805", +"b: c #5A6A03", +"c: c #6C7C01", +"d: c #6B7900", +"e: c #5F6B00", +"f: c #515C02", +"g: c #454E00", +"h: c #525500", +"i: c #585E00", +"j: c #535E00", +"k: c #545F01", +"l: c #4D5C00", +"m: c #475700", +"n: c #4F5A01", +"o: c #525604", +"p: c #727E43", +"q: c #324400", +"r: c #425303", +"s: c #425302", +"t: c #4F6104", +"u: c #546804", +"v: c #506204", +"w: c #3E5002", +"x: c #324300", +"y: c #304201", +"z: c #3C4E0A", +"A: c #707C42", +"B: c #C1C2A4", +"C: c #6F7C3B", +"D: c #354605", +"E: c #304100", +"F: c #3C4D02", +"G: c #304101", +"H: c #57662C", +"I: c #DBD5C4", +"J: c #D9D5C2", +"K: c #D7D2C0", +"L: c #D3CEBB", +"M: c #CBC6B5", +"N: c #90907A", +"O: c #50582C", +"P: c #45521B", +"Q: c #4A5C15", +"R: c #4A6207", +"S: c #4E6306", +"T: c #56650B", +"U: c #626F0C", +"V: c #728306", +"W: c #708200", +"X: c #647201", +"Y: c #575E0A", +"Z: c #0E0F00", +"`: c #161B00", +" < c #141A00", +".< c #191E02", +"+< c #262E04", +"@< c #272E04", +"#< c #1B2000", +"$< c #1B1D02", +"%< c #040403", +"&< c #645D42", +"*< c #E4DFCF", +"=< c #B5B898", +"-< c #435506", +";< c #5E7006", +">< c #5B6D06", +",< c #566705", +"'< c #566904", +")< c #566805", +"!< c #495B03", +"~< c #364801", +"{< c #57681F", +"]< c #A7AB81", +"^< c #6B7A34", +"/< c #354504", +"(< c #4C5E04", +"_< c #485903", +":< c #38490B", +"<< c #AFB091", +"[< c #DAD5C3", +"}< c #D8D2C0", +"|< c #D4CFBE", +"1< c #CECAB7", +"2< c #C5C0AF", +"3< c #B8B3A4", +"4< c #A8A595", +"5< c #4E562D", +"6< c #394319", +"7< c #4B5820", +"8< c #475C0E", +"9< c #4C6405", +"0< c #5A6A0E", +"a< c #697710", +"b< c #708209", +"c< c #697C02", +"d< c #5E6B0E", +"e< c #393F0B", +"f< c #010100", +"g< c #625C42", +"h< c #625C41", +"i< c #E0DCCD", +"j< c #828C4C", +"k< c #5F7007", +"l< c #607206", +"m< c #5B6C06", +"n< c #526405", +"o< c #4E6004", +"p< c #5A6D05", +"q< c #3B4C02", +"r< c #2F3F00", +"s< c #2F4000", +"t< c #405209", +"u< c #707E3C", +"v< c #BDBD9D", +"w< c #DDD9C7", +"x< c #65742B", +"y< c #344504", +"z< c #3A4B01", +"A< c #586A05", +"B< c #4C5F03", +"C< c #334406", +"D< c #6D7746", +"E< c #DAD6C3", +"F< c #D9D4C2", +"G< c #D5D1BF", +"H< c #D1CBB9", +"I< c #C8C4B2", +"J< c #BDB9A8", +"K< c #9A9885", +"L< c #53593A", +"M< c #47531F", +"N< c #445314", +"O< c #3D5500", +"P< c #4B6303", +"Q< c #607507", +"R< c #607B03", +"S< c #5F7509", +"T< c #50571B", +"U< c #141506", +"V< c #605A3F", +"W< c #E9E4D8", +"X< c #E4E0D3", +"Y< c #E2DFCE", +"Z< c #D3D1BA", +"`< c #8E9757", +" [ c #5F7014", +".[ c #5A6B06", +"+[ c #556705", +"@[ c #4E5F04", +"#[ c #4F6004", +"$[ c #576905", +"%[ c #576805", +"&[ c #455603", +"*[ c #2D3E00", +"=[ c #314400", +"-[ c #44560E", +";[ c #99A071", +">[ c #607025", +",[ c #334502", +"'[ c #364701", +")[ c #465A02", +"![ c #304200", +"~[ c #324307", +"{[ c #4D5A24", +"][ c #C5C1AB", +"^[ c #D9D4C1", +"/[ c #D8D3C0", +"([ c #D6D2BE", +"_[ c #D2CEBB", +":[ c #CCC7B5", +"<[ c #C1BDAC", +"[[ c #8A8B73", +"}[ c #494D33", +"|[ c #38401D", +"1[ c #424C1C", +"2[ c #3F4E0F", +"3[ c #3D5200", +"4[ c #465F00", +"5[ c #4E6602", +"6[ c #5A6E12", +"7[ c #7B8244", +"8[ c #393723", +"9[ c #020201", +"0[ c #5E583E", +"a[ c #D2D1B5", +"b[ c #959E5F", +"c[ c #5A6A11", +"d[ c #4F6105", +"e[ c #475903", +"f[ c #536505", +"g[ c #586905", +"h[ c #5E6F06", +"i[ c #4B5D04", +"j[ c #2D3F00", +"k[ c #7A854F", +"l[ c #C1C1A5", +"m[ c #354601", +"n[ c #4D5F04", +"o[ c #354703", +"p[ c #344409", +"q[ c #4A5822", +"r[ c #A5A788", +"s[ c #D8D4C1", +"t[ c #D7D2BF", +"u[ c #D6D2BF", +"v[ c #D2CDBC", +"w[ c #CDC8B6", +"x[ c #BFBAA8", +"y[ c #73765C", +"z[ c #343A21", +"A[ c #383F1B", +"B[ c #444F1A", +"C[ c #3D5108", +"D[ c #435D00", +"E[ c #405401", +"F[ c #536113", +"G[ c #7A7F4B", +"H[ c #828069", +"I[ c #28261B", +"J[ c #5C563C", +"K[ c #5C563D", +"L[ c #DCD7C4", +"M[ c #BDBE9B", +"N[ c #798442", +"O[ c #56660D", +"P[ c #516204", +"Q[ c #506104", +"R[ c #596A05", +"S[ c #4D5F03", +"T[ c #3D4E02", +"U[ c #384901", +"V[ c #394D06", +"W[ c #8D9465", +"X[ c #566819", +"Y[ c #2F4100", +"Z[ c #34450A", +"`[ c #475320", +" } c #969978", +".} c #D8D3BF", +"+} c #D6D1BE", +"@} c #D3CEBC", +"#} c #CDC9B6", +"$} c #A5A48E", +"%} c #5C6046", +"&} c #32391C", +"*} c #3A4519", +"=} c #475716", +"-} c #435C04", +";} c #455F00", +">} c #3A4709", +",} c #707438", +"'} c #878570", +")} c #6C6B5F", +"!} c #242218", +"~} c #040402", +"{} c #5A543B", +"]} c #5A543C", +"^} c #C4C4A1", +"/} c #808B49", +"(} c #57690B", +"_} c #455602", +":} c #2E3F00", +"<} c #324600", +"[} c #63712F", +"}} c #4C5F0E", +"|} c #425502", +"1} c #304102", +"2} c #2E3E04", +"3} c #46521F", +"4} c #D8D2BF", +"5} c #D5D0BD", +"6} c #D2CDBB", +"7} c #CCC8B5", +"8} c #898972", +"9} c #454A31", +"0} c #333B19", +"a} c #3E4A17", +"b} c #475910", +"c} c #486005", +"d} c #415505", +"e} c #4E5623", +"f} c #7C7C57", +"g} c #787569", +"h} c #605E54", +"i} c #2A271C", +"j} c #11100B", +"k} c #58533B", +"l} c #DEDBC9", +"m} c #D8D4BF", +"n} c #B0B485", +"o} c #6E7D2B", +"p} c #5A6B0B", +"q} c #556608", +"r} c #465804", +"s} c #4C5D04", +"t} c #475803", +"u} c #394B01", +"v} c #334600", +"w} c #506313", +"x} c #4B5E0B", +"y} c #354701", +"z} c #2B3C03", +"A} c #495623", +"B} c #969977", +"C} c #D6D1BD", +"D} c #D4D0BC", +"E} c #D1CCB9", +"F} c #BDBAA7", +"G} c #6D6F57", +"H} c #31381D", +"I} c #333D13", +"J} c #424E16", +"K} c #4A5E07", +"L} c #485C02", +"M} c #3D480C", +"N} c #62663C", +"O} c #7B7A63", +"P} c #6E6B60", +"Q} c #656258", +"R} c #373425", +"S} c #27251A", +"T} c #565139", +"U} c #DFDACB", +"V} c #DFD9C9", +"W} c #DED8C8", +"X} c #D3D0B4", +"Y} c #ABB07E", +"Z} c #7B8840", +"`} c #485814", +" | c #344603", +".| c #3A4B02", +"+| c #40510A", +"@| c #475909", +"#| c #324401", +"$| c #3C4E02", +"%| c #2C3D03", +"&| c #475421", +"*| c #878C68", +"=| c #D7D2BE", +"-| c #D0CCB8", +";| c #CDC8B5", +">| c #9B9985", +",| c #51553D", +"'| c #313919", +")| c #384312", +"!| c #465611", +"~| c #4C6104", +"{| c #405005", +"]| c #3B4118", +"^| c #737553", +"/| c #7F7C6F", +"(| c #69665C", +"_| c #706D61", +":| c #44412E", +"<| c #45412F", +"[| c #544F38", +"}| c #181C07", +"|| c #212807", +"1| c #2B3507", +"2| c #334007", +"3| c #324104", +"4| c #314301", +"5| c #465703", +"6| c #334402", +"7| c #394A02", +"8| c #4D5E04", +"9| c #293900", +"0| c #273600", +"a| c #253301", +"b| c #1F2803", +"c| c #262B13", +"d| c #2D341B", +"e| c #2F3814", +"f| c #3E4B11", +"g| c #4D6108", +"h| c #3A460D", +"i| c #4D512E", +"j| c #76765E", +"k| c #7A776B", +"l| c #6C6A5F", +"m| c #7A776A", +"n| c #4C4733", +"o| c #5A553E", +"p| c #040404", +"q| c #524D37", +"r| c #B7B896", +"s| c #868F56", +"t| c #66752D", +"u| c #5C6D1F", +"v| c #57691A", +"w| c #465A0A", +"x| c #3C5202", +"y| c #394F00", +"z| c #3B4E02", +"A| c #3C4E03", +"B| c #526304", +"C| c #405102", +"D| c #2B3B02", +"E| c #3C4A15", +"F| c #4C5826", +"G| c #989A7A", +"H| c #D1CCBA", +"I| c #B5B19C", +"J| c #676A50", +"K| c #353F15", +"L| c #455316", +"M| c #4F6404", +"N| c #3B4016", +"O| c #626447", +"P| c #7F7D6B", +"Q| c #767367", +"R| c #7C796C", +"S| c #8C897B", +"T| c #55503A", +"U| c #605B43", +"V| c #0B0B0A", +"W| c #090909", +"X| c #060505", +"Y| c #504C35", +"Z| c #514C36", +"`| c #D3D1BC", +" 1 c #AEB18B", +".1 c #7C884A", +"+1 c #627227", +"@1 c #5B6C1E", +"#1 c #566718", +"$1 c #4C5E0F", +"%1 c #3E5403", +"&1 c #354A00", +"*1 c #455403", +"=1 c #536504", +"-1 c #3E5003", +";1 c #2D3D01", +">1 c #33420B", +",1 c #535D2E", +"'1 c #6E764C", +")1 c #C6C3AB", +"!1 c #D5D1BD", +"~1 c #D2CEB9", +"{1 c #CDC7B5", +"]1 c #C7C2AE", +"^1 c #8D8C75", +"/1 c #50543B", +"(1 c #313A17", +"_1 c #3A4514", +":1 c #495D03", +"<1 c #42491B", +"[1 c #747457", +"}1 c #858174", +"|1 c #737065", +"11 c #A29E8D", +"21 c #A5A190", +"31 c #5C5841", +"41 c #646046", +"51 c #0C0C0B", +"61 c #080808", +"71 c #4E4A34", +"81 c #E2DCCD", +"91 c #CAC9B0", +"01 c #9BA171", +"a1 c #637329", +"b1 c #546615", +"c1 c #516411", +"d1 c #4C600E", +"e1 c #3F5503", +"f1 c #344800", +"g1 c #334700", +"h1 c #405304", +"i1 c #4F6008", +"j1 c #556805", +"k1 c #4B5D03", +"l1 c #3A4909", +"m1 c #404D19", +"n1 c #676F44", +"o1 c #ADAD91", +"p1 c #C7C1AE", +"q1 c #5D6046", +"r1 c #32381E", +"s1 c #323A14", +"t1 c #3F4B14", +"u1 c #495C09", +"v1 c #445603", +"w1 c #535733", +"x1 c #77775F", +"y1 c #777468", +"z1 c #9A9786", +"A1 c #CCC6B1", +"B1 c #CAC5B0", +"C1 c #645E44", +"D1 c #676147", +"E1 c #050505", +"F1 c #4D4833", +"G1 c #E5E2D4", +"H1 c #C0C0A2", +"I1 c #858F55", +"J1 c #506310", +"K1 c #4B5F0A", +"L1 c #3F5403", +"M1 c #334800", +"N1 c #2C3E00", +"O1 c #2E4000", +"P1 c #4E6016", +"Q1 c #4E6113", +"R1 c #3F5303", +"S1 c #4B6003", +"T1 c #5C6D06", +"U1 c #495909", +"V1 c #525D2B", +"W1 c #9EA080", +"X1 c #D5D0BC", +"Y1 c #D4CFBA", +"Z1 c #D2CCB8", +"`1 c #CEC9B5", +" 2 c #ACA994", +".2 c #61644A", +"+2 c #31391B", +"@2 c #353F14", +"#2 c #445214", +"$2 c #496004", +"%2 c #405201", +"&2 c #636447", +"*2 c #7F7C6B", +"=2 c #7B786B", +"-2 c #C6C0AC", +";2 c #D0CAB5", +">2 c #D0CBB5", +",2 c #645F43", +"'2 c #665F47", +")2 c #070707", +"!2 c #4A4632", +"~2 c #151907", +"{2 c #2A3407", +"]2 c #425407", +"^2 c #475A07", +"/2 c #485C07", +"(2 c #445805", +"_2 c #394E00", +":2 c #364B00", +"<2 c #314500", +"[2 c #303E04", +"}2 c #2E4001", +"|2 c #2F4200", +"12 c #465902", +"22 c #647607", +"32 c #2F3C04", +"42 c #171B06", +"52 c #141707", +"62 c #262A17", +"72 c #2D331A", +"82 c #2E3713", +"92 c #394411", +"02 c #44560C", +"a2 c #445903", +"b2 c #3A4904", +"c2 c #535638", +"d2 c #767266", +"e2 c #A6A291", +"f2 c #D0C9B4", +"g2 c #CFCAB5", +"h2 c #625C43", +"i2 c #645F46", +"j2 c #494430", +"k2 c #484430", +"l2 c #C2C2A5", +"m2 c #3E5103", +"n2 c #2B3B00", +"o2 c #2E3D04", +"p2 c #5A6533", +"q2 c #626C3D", +"r2 c #304004", +"s2 c #374801", +"t2 c #526605", +"u2 c #586A18", +"v2 c #B6B694", +"w2 c #D1CCB8", +"x2 c #CCC7B3", +"y2 c #C0BCA8", +"z2 c #6C6E56", +"A2 c #32391E", +"B2 c #323B13", +"C2 c #424F13", +"D2 c #4F6407", +"E2 c #455604", +"F2 c #38410D", +"G2 c #6D6C57", +"H2 c #848072", +"I2 c #BAB5A2", +"J2 c #D0CBB4", +"K2 c #CFCAB4", +"L2 c #625B42", +"M2 c #48432E", +"N2 c #48432F", +"O2 c #DDD9C9", +"P2 c #989D74", +"Q2 c #3C4D06", +"R2 c #354801", +"S2 c #374A01", +"T2 c #2A3A00", +"U2 c #2A3C00", +"V2 c #2A3B01", +"W2 c #38460F", +"X2 c #888D67", +"Y2 c #C1BFA7", +"Z2 c #888D69", +"`2 c #384710", +" 3 c #2D3D02", +".3 c #3E4F02", +"+3 c #526404", +"@3 c #4E6109", +"#3 c #798445", +"$3 c #CDC9B2", +"%3 c #CFCBB7", +"&3 c #A4A28C", +"*3 c #5B5E44", +"=3 c #31381B", +"-3 c #384315", +";3 c #495911", +">3 c #586E05", +",3 c #485807", +"'3 c #353A16", +")3 c #848171", +"!3 c #A29E8E", +"~3 c #C7C2AD", +"{3 c #D0CAB3", +"]3 c #CCC6B0", +"^3 c #615C45", +"/3 c #605B42", +"(3 c #45402E", +"_3 c #DDD7C7", +":3 c #777E54", +"<3 c #344408", +"[3 c #314106", +"}3 c #3E4E10", +"|3 c #445319", +"13 c #485521", +"23 c #606A3C", +"33 c #A3A486", +"43 c #D7D1BE", +"53 c #7D835A", +"63 c #394B02", +"73 c #425503", +"83 c #9CA173", +"93 c #CDC8B3", +"03 c #CAC5B1", +"a3 c #87876F", +"b3 c #44492F", +"c3 c #323B17", +"d3 c #3E4B13", +"e3 c #495B0D", +"f3 c #42510A", +"g3 c #4B4E2C", +"h3 c #928E7F", +"i3 c #B3AE9B", +"j3 c #CEC9B3", +"k3 c #CFCAB3", +"l3 c #CFC9B2", +"m3 c #CBC6B1", +"n3 c #5E5A42", +"o3 c #5E5941", +"p3 c #45412D", +"q3 c #45412E", +"r3 c #DCD8C5", +"s3 c #838964", +"t3 c #4E5B29", +"u3 c #37450D", +"v3 c #36450B", +"w3 c #3D4C12", +"x3 c #435119", +"y3 c #45531C", +"z3 c #485721", +"A3 c #5E6939", +"B3 c #959976", +"C3 c #CCC9B2", +"D3 c #D6D0BD", +"E3 c #D6D0BC", +"F3 c #576330", +"G3 c #314204", +"H3 c #324200", +"I3 c #415606", +"J3 c #617126", +"K3 c #BEBCA0", +"L3 c #ABA894", +"M3 c #54583E", +"N3 c #30371C", +"O3 c #333C11", +"P3 c #435212", +"Q3 c #4C6008", +"R3 c #39430D", +"S3 c #5E613C", +"T3 c #9E9A89", +"U3 c #BFBAA5", +"V3 c #CFC9B3", +"W3 c #CEC9B2", +"X3 c #CBC5B0", +"Y3 c #5E5940", +"Z3 c #5D593F", +"`3 c #44402D", +" 4 c #191E05", +".4 c #1D2504", +"+4 c #1E2803", +"@4 c #1E2703", +"#4 c #1A2104", +"$4 c #171C06", +"%4 c #1C2304", +"&4 c #283800", +"*4 c #425505", +"=4 c #2B3506", +"-4 c #232712", +";4 c #31371D", +">4 c #303718", +",4 c #374213", +"'4 c #44540E", +")4 c #495D04", +"!4 c #3B4906", +"~4 c #2C320C", +"{4 c #24290D", +"]4 c #ADA997", +"^4 c #BEBAA5", +"/4 c #CEC8B2", +"(4 c #CDC8B2", +"_4 c #C8C3AD", +":4 c #5E583F", +"<4 c #5E593F", +"[4 c #44402E", +"}4 c #DBD7C6", +"|4 c #DAD5C2", +"14 c #D8D4C0", +"24 c #D7D3BF", +"34 c #D4CFBC", +"44 c #D4CFBB", +"54 c #848A62", +"64 c #304005", +"74 c #3A4E02", +"84 c #5F6F24", +"94 c #BDBAA0", +"04 c #797B63", +"a4 c #3A4025", +"b4 c #313A14", +"c4 c #3D4914", +"d4 c #485D02", +"e4 c #3C4906", +"f4 c #454924", +"g4 c #75745C", +"h4 c #C9C4AE", +"i4 c #CCC7B0", +"j4 c #CEC7B1", +"k4 c #CDC8B1", +"l4 c #C6C0AA", +"m4 c #5E5840", +"n4 c #443F2E", +"o4 c #DCD6C4", +"p4 c #DAD6C4", +"q4 c #D9D3C1", +"r4 c #D5CFBB", +"s4 c #CBC6B0", +"t4 c #55602D", +"u4 c #2C3D01", +"v4 c #344700", +"w4 c #475B09", +"x4 c #8D9266", +"y4 c #5F624A", +"z4 c #31371B", +"A4 c #343E11", +"B4 c #435014", +"C4 c #4C6304", +"D4 c #415102", +"E4 c #323C0A", +"F4 c #434822", +"G4 c #62624F", +"H4 c #CEC8B1", +"I4 c #CDC7B1", +"J4 c #CBC6AF", +"K4 c #C6C1AC", +"L4 c #5D5840", +"M4 c #5D583F", +"N4 c #E2DFD0", +"O4 c #DDDAC9", +"P4 c #DED8C7", +"Q4 c #DBD6C5", +"R4 c #DAD4C3", +"S4 c #DAD5C1", +"T4 c #D7D1BF", +"U4 c #D7D1BD", +"V4 c #D5CFBC", +"W4 c #D4CEBA", +"X4 c #A0A181", +"Y4 c #39480E", +"Z4 c #3E5302", +"`4 c #5C6A27", +" 5 c #4E5238", +".5 c #3B4713", +"+5 c #4C5D0E", +"@5 c #506505", +"#5 c #3D4A07", +"$5 c #393F1A", +"%5 c #56593A", +"&5 c #6A685C", +"*5 c #CDC7B0", +"=5 c #CDC8B0", +"-5 c #5C573F", +";5 c #44402C", +">5 c #DEDBCA", +",5 c #D5D0BB", +"'5 c #D3CFBA", +")5 c #D3CDB9", +"!5 c #D3CDB8", +"~5 c #CAC6AE", +"{5 c #535E2D", +"]5 c #384D00", +"^5 c #475A0B", +"/5 c #393F23", +"(5 c #343C17", +"_5 c #404D15", +":5 c #4F620A", +"<5 c #4F6305", +"[5 c #404A11", +"}5 c #525435", +"|5 c #787761", +"15 c #999585", +"25 c #C9C4AD", +"35 c #C2BDA9", +"45 c #C6C1AB", +"55 c #5D583E", +"65 c #43402C", +"75 c #212C02", +"85 c #3B5001", +"95 c #364112", +"05 c #333E10", +"a5 c #45550E", +"b5 c #4B6106", +"c5 c #465B01", +"d5 c #272B0D", +"e5 c #111406", +"f5 c #C7C2AC", +"g5 c #C7C2AB", +"h5 c #5D573E", +"i5 c #5C573D", +"j5 c #443F2C", +"k5 c #D9D3C2", +"l5 c #D2CCB7", +"m5 c #9A9C7A", +"n5 c #42501A", +"o5 c #40500B", +"p5 c #3B4811", +"q5 c #49590C", +"r5 c #485B04", +"s5 c #3D4A08", +"t5 c #444921", +"u5 c #727355", +"v5 c #8D897A", +"w5 c #CCC6AF", +"x5 c #C9C4AC", +"y5 c #5D563E", +"z5 c #433F2C", +"A5 c #DBD6C3", +"B5 c #D2CCB6", +"C5 c #D1CCB6", +"D5 c #D0CBB6", +"E5 c #9B9C7C", +"F5 c #314300", +"G5 c #415307", +"H5 c #425111", +"I5 c #485E07", +"J5 c #455803", +"K5 c #38400E", +"L5 c #545737", +"M5 c #7C7B64", +"N5 c #BCB7A2", +"O5 c #CDC6AF", +"P5 c #CBC6AE", +"Q5 c #CAC4AE", +"R5 c #CAC5AE", +"S5 c #CAC5AD", +"T5 c #5C573E", +"U5 c #E0DACB", +"V5 c #DCD6C5", +"W5 c #D2CDB9", +"X5 c #D2CDB7", +"Y5 c #D1CBB7", +"Z5 c #D1CBB6", +"`5 c #C7C2A9", +" 6 c #435017", +".6 c #47580B", +"+6 c #485E03", +"@6 c #445502", +"#6 c #313A0B", +"$6 c #515432", +"%6 c #888472", +"&6 c #CCC7AF", +"*6 c #CBC5AE", +"=6 c #CAC4AD", +"-6 c #423F2C", +";6 c #DDDAC8", +">6 c #D6D2BD", +",6 c #D1CBB5", +"'6 c #C9C3AB", +")6 c #2D3E02", +"!6 c #304001", +"~6 c #445708", +"{6 c #4A5D09", +"]6 c #485B03", +"^6 c #394507", +"/6 c #373D15", +"(6 c #525337", +"_6 c #B8B29D", +":6 c #CBC5AD", +"<6 c #CAC4AC", +"[6 c #C9C4AB", +"}6 c #D3CEB8", +"|6 c #C9C3AF", +"16 c #B3B291", +"26 c #425016", +"36 c #2E3E03", +"46 c #314104", +"56 c #485A0B", +"66 c #506507", +"76 c #4A5D06", +"86 c #394011", +"96 c #565838", +"06 c #797862", +"a6 c #C9C3AC", +"b6 c #433E2D", +"c6 c #DCD7C7", +"d6 c #DBD5C3", +"e6 c #D9D5C3", +"f6 c #D7D3C0", +"g6 c #D5D1BC", +"h6 c #D0CAB4", +"i6 c #CFC8B3", +"j6 c #C8C2AD", +"k6 c #888E62", +"l6 c #3A490D", +"m6 c #2F3F02", +"n6 c #324206", +"o6 c #47590E", +"p6 c #4D6205", +"q6 c #475906", +"r6 c #3D411C", +"s6 c #6C6D53", +"t6 c #989483", +"u6 c #CBC4AD", +"v6 c #C9C3AA", +"w6 c #423E2D", +"x6 c #433E2C", +"y6 c #C1BDA8", +"z6 c #B5B19D", +"A6 c #4F5B25", +"B6 c #2E3E02", +"C6 c #354506", +"D6 c #4A5D0B", +"E6 c #475A04", +"F6 c #50542B", +"G6 c #747359", +"H6 c #A49F8C", +"I6 c #C8C3AB", +"J6 c #C8C3AA", +"K6 c #5C563E", +"L6 c #CAC5AF", +"M6 c #C4BEAA", +"N6 c #8F8E75", +"O6 c #32400A", +"P6 c #2C3C01", +"Q6 c #2D3E01", +"R6 c #394808", +"S6 c #4C6204", +"T6 c #425005", +"U6 c #363D10", +"V6 c #606240", +"W6 c #7E7B67", +"X6 c #B0AC97", +"Y6 c #CAC3AB", +"Z6 c #C8C2AA", +"`6 c #C8C2A9", +" 7 c #5B573D", +".7 c #423E2C", +"+7 c #D4CEBB", +"@7 c #CDC7B2", +"#7 c #C6C0AB", +"$7 c #656B46", +"%7 c #2F3E06", +"&7 c #314102", +"*7 c #415208", +"=7 c #485F03", +"-7 c #393F17", +";7 c #6B6C4F", +">7 c #999584", +",7 c #C6C1A9", +"'7 c #C8C1A9", +")7 c #C7C1A9", +"!7 c #3F3A2A", +"~7 c #CFC9B4", +"{7 c #CBC5AF", +"]7 c #C8C3AC", +"^7 c #BBB6A0", +"/7 c #424D20", +"(7 c #2D3C04", +"_7 c #3B4C06", +":7 c #4A5E08", +"<7 c #455703", +"[7 c #384407", +"}7 c #383D15", +"|7 c #4A4B33", +"17 c #9E9A86", +"27 c #C9C2AB", +"37 c #C9C2AA", +"47 c #C7C2A8", +"57 c #C7C1A8", +"67 c #3B3727", +"77 c #3B3627", +"87 c #DAD6C5", +"97 c #D9D5C1", +"07 c #D6D1BC", +"a7 c #CCC7B1", +"b7 c #C9C3AE", +"c7 c #C4BFAA", +"d7 c #919174", +"e7 c #364211", +"f7 c #2B3A02", +"g7 c #304003", +"h7 c #465709", +"i7 c #4F6405", +"j7 c #415004", +"k7 c #323A0F", +"l7 c #484B2C", +"m7 c #6F6D5B", +"n7 c #BBB59F", +"o7 c #CAC4AB", +"p7 c #C6C1A7", +"q7 c #534F37", +"r7 c #383324", +"s7 c #383223", +"t7 c #D9D4C0", +"u7 c #D2CEB8", +"v7 c #CEC9B4", +"w7 c #C4BFA9", +"x7 c #787A5B", +"y7 c #313E0E", +"z7 c #2B3A05", +"A7 c #324107", +"B7 c #4B5D0B", +"C7 c #404B0B", +"D7 c #3D4023", +"E7 c #63624E", +"F7 c #94907E", +"G7 c #C6C0A8", +"H7 c #C6C0A7", +"I7 c #504B35", +"J7 c #4F4B35", +"K7 c #332F22", +"L7 c #332F21", +"M7 c #DDD9C6", +"N7 c #D6D0BE", +"O7 c #B9B59F", +"P7 c #686B4F", +"Q7 c #2D3811", +"R7 c #2D3A08", +"S7 c #38460E", +"T7 c #475B02", +"U7 c #353F0A", +"V7 c #454631", +"W7 c #6E6B5D", +"X7 c #B2AD98", +"Y7 c #4B4732", +"Z7 c #4C4732", +"`7 c #2F2B1F", +" 8 c #DAD4C2", +".8 c #D0CCB6", +"+8 c #CEC8B3", +"@8 c #C9C3AD", +"#8 c #C1BDA6", +"$8 c #8B8A73", +"%8 c #43482D", +"&8 c #2F3716", +"*8 c #35400F", +"=8 c #435211", +"-8 c #3D4D04", +";8 c #282C0E", +">8 c #4F4D40", +",8 c #767365", +"'8 c #C3BEA7", +")8 c #C8C2A8", +"!8 c #C6C1A8", +"~8 c #484330", +"{8 c #2B281C", +"]8 c #C8C2AB", +"^8 c #C4BEA8", +"/8 c #828268", +"(8 c #40452B", +"_8 c #3C4815", +":8 c #475A0C", +"<8 c #475B03", +"[8 c #364209", +"}8 c #363921", +"|8 c #7C7869", +"18 c #C3BDA6", +"28 c #C8C1A8", +"38 c #C7C1A7", +"48 c #D4CEB9", +"58 c #D1CDB7", +"68 c #D2CBB6", +"78 c #CFCBB5", +"88 c #B3AE99", +"98 c #686A51", +"08 c #31371C", +"a8 c #414E15", +"b8 c #485E06", +"c8 c #435601", +"d8 c #303906", +"e8 c #313220", +"f8 c #B8B39C", +"g8 c #C8C1AA", +"h8 c #2B291C", +"i8 c #D3CDBA", +"j8 c #CECAB3", +"k8 c #C6C1AA", +"l8 c #C2BDA6", +"m8 c #94927B", +"n8 c #4E5239", +"o8 c #313818", +"p8 c #394412", +"q8 c #47560F", +"r8 c #495F03", +"s8 c #3A4803", +"t8 c #2D3112", +"u8 c #3F3E33", +"v8 c #BCB8A0", +"w8 c #C7C0A8", +"x8 c #C7C0A7", +"y8 c #443F2D", +"z8 c #2C281C", +"A8 c #C7C1AA", +"B8 c #BFBAA4", +"C8 c #7B7C61", +"D8 c #3D4329", +"E8 c #333B17", +"F8 c #3F4D13", +"G8 c #4F630A", +"H8 c #4B5F05", +"I8 c #353E0B", +"J8 c #373824", +"K8 c #626053", +"L8 c #B3AE98", +"M8 c #C6C2AB", +"N8 c #ABA790", +"O8 c #63654A", +"P8 c #31381C", +"Q8 c #363F15", +"R8 c #455414", +"S8 c #4E6506", +"T8 c #4C6004", +"U8 c #323711", +"V8 c #494839", +"W8 c #7D796B", +"X8 c #C3BDA5", +"Y8 c #453F2D", +"Z8 c #2A281C", +"`8 c #CDC7AF", +" 9 c #C2BEA6", +".9 c #BCB7A1", +"+9 c #83826A", +"@9 c #4A4F34", +"#9 c #3B4612", +"$9 c #4A5E05", +"%9 c #405004", +"&9 c #363B18", +"*9 c #5D5B4F", +"=9 c #A5A08D", +"-9 c #C5BFA6", +";9 c #C4BEA5", +">9 c #45402D", +",9 c #CCC5AE", +"'9 c #CBC4AE", +")9 c #BDB8A1", +"!9 c #5E6045", +"~9 c #31381E", +"{9 c #313914", +"]9 c #404C13", +"^9 c #4C6009", +"/9 c #455605", +"(9 c #343D0A", +"_9 c #45472F", +":9 c #797668", +"<9 c #C1BBA4", +"[9 c #C2BCA4", +"}9 c #C4BEA6", +"|9 c #2C281D", +"19 c #2B281D", +"29 c #C3BCA6", +"39 c #A4A189", +"49 c #354014", +"59 c #445313", +"69 c #4B6204", +"79 c #455702", +"89 c #2B310E", +"99 c #5B5A4B", +"09 c #B6B19A", +"a9 c #2C291D", +"b9 c #D4D0BB", +"c9 c #CCC6AE", +"d9 c #BAB59E", +"e9 c #77775E", +"f9 c #43482E", +"g9 c #313A15", +"h9 c #3B4712", +"i9 c #48590D", +"j9 c #3C4808", +"k9 c #393D22", +"l9 c #666357", +"m9 c #C1BBA3", +"n9 c #C4BFA6", +"o9 c #2A281D", +"p9 c #29271B", +"q9 c #29261B", +"r9 c #29261A", +"s9 c #29271A", +"t9 c #242319", +"u9 c #1C1B18", +"v9 c #25241F", +"w9 c #282721", +"x9 c #24231E", +"y9 c #1B1A16", +"z9 c #222016", +"A9 c #262218", +"B9 c #242118", +"C9 c #242217", +"D9 c #232116", +"E9 c #221F16", +"F9 c #231F16", +"G9 c #232016", +"H9 c #232017", +"I9 c #232117", +"J9 c #232217", +"K9 c #242117", +"L9 c #252317", +"M9 c #252318", +"N9 c #252319", +"O9 c #262318", +"P9 c #262319", +"Q9 c #262419", +"R9 c #272519", +"S9 c #27261B", +"T9 c #2A271B", +"U9 c #2B2A1C", +"V9 c #383C26", +"W9 c #2D341A", +"X9 c #2F390F", +"Y9 c #3F4C11", +"Z9 c #4D6305", +"`9 c #405006", +" 0 c #343A19", +".0 c #3C3C2E", +"+0 c #353225", +"@0 c #323022", +"#0 c #333122", +"$0 c #343123", +"%0 c #3B382A", +"&0 c #393628", +"*0 c #363324", +"=0 c #363323", +"-0 c #353223", +";0 c #363424", +">0 c #393626", +",0 c #3C3827", +"'0 c #3E3B29", +")0 c #3E3B28", +"!0 c #3E3A29", +"~0 c #2B271C", +"{0 c #2A261B", +"]0 c #28261A", +"^0 c #28251A", +"/0 c #252419", +"(0 c #27241A", +"_0 c #262418", +":0 c #252118", +"<0 c #222116", +"[0 c #221F15", +"}0 c #252218", +"|0 c #242318", +"10 c #272419", +"20 c #29281A", +"30 c #2D2E1C", +"40 c #333720", +"50 c #2E3517", +"60 c #343F11", +"70 c #45540F", +"80 c #343D14", +"90 c #3E3E37", +"00 c #3F3C31", +"a0 c #343022", +"b0 c #353123", +"c0 c #3D3A2C", +"d0 c #3E3B2E", +"e0 c #353324", +"f0 c #363223", +"g0 c #373324", +"h0 c #3E3A28", +"i0 c #212513", +"j0 c #2D321A", +"k0 c #313917", +"l0 c #3E4917", +"m0 c #465316", +"n0 c #3D4619", +"o0 c #36382D", +"p0 c #393837", +"q0 c #292827", +"r0 c #151414", +"s0 c #060606", +"t0 c #0A0C07", +"u0 c #2C311C", +"v0 c #30371E", +"w0 c #3D4424", +"x0 c #52573B", +"y0 c #50543F", +"z0 c #51504A", +"A0 c #2F2D2C", +"B0 c #1B1A19", +"C0 c #030302", +"D0 c #101010", +"E0 c #0E0D0D", +"F0 c #212514", +"G0 c #30351F", +"H0 c #3C402E", +"I0 c #57594C", +"J0 c #62615B", +"K0 c #575552", +"L0 c #201F1E", +"M0 c #161615", +"N0 c #181817", +"O0 c #080807", +"P0 c #0A0A0A", +"Q0 c #100F0F", +"R0 c #0F0F0F", +"S0 c #070706", +"T0 c #232715", +"U0 c #292D1D", +"V0 c #45463C", +"W0 c #4E4D4B", +"X0 c #2D2C2B", +"Y0 c #111110", +"Z0 c #151514", +"`0 c #0F0E0E", +" a c #0F0F0E", +".a c #1B1D14", +"+a c #383732", +"@a c #353433", +"#a c #242322", +"$a c #3C3B39", +"%a c #413F3E", +"&a c #41403E", +" ", +" ", +" ", +" ", +" ", +" ", +" . + + @ # # $ @ @ @ % & * = - - ; > , ' ) ! ~ { ] ^ / ( _ { { ~ : < < [ , > > } | | 1 2 2 = = * @ 3 4 5 6 7 ", +" @ + 8 # $ # 8 # @ 9 0 0 a b c - 1 | > , d e , f g h ^ _ _ { i { { j j , ) } e | } 2 k 1 c c 0 l m n o p q r ", +" @ 8 s s s s s s s s s s s s s s s s s s s s s s s s s s s s s s s s s s s s s s s s s t u v v w x s y z A B C ", +" 8 @ s s s s s s s s s s s s s s s s s s s s s s s s s s s s s s s s s D s s s s s u E F F G G x H I J K L M N s s ", +" 8 @ s s s s s s s s s s s s s s s s s s s s s s s s s s s s s s s s s D s s s s F O F v w x P Q R S T U V W X Y s s ", +" @ @ s s s s s s s s s s s s s s s s s s s s s s s s s s s s s s s s s D s s s s t F v x w Z ` H ...+.@.#.$.%.&.*.s s =. ", +" @ 8 s s s s s s s s s s s s s s s s s s s s s s s s s s s s s s s s s D s s t F F w G P -.;.>.,.'.).!.U ~.{.].^./.*.s s (._.:. <.[.}.|.1.2.3.4.5.6. ", +" @ # s s s 7.7.7.7.7.7.7.7.8.D 9.0.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.D 7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.a.b.c.d.e.f.g.Y s s h.i.j.k.l.m.n.o.p.q.r.s.t.u.v. ", +" w.$ s s s 7.s s s s s 0.D D D D D s s s s s s s s s s s s s s s s s s D t F x P P Z ;.` ` x.y.z.A.B.C.K D.E.F.G.G.H./.*.s s I.J.K.L.M.N.O.P.Q.R.S.T.U.V.W.X.Y. ", +" $ $ s s s 7.s s s s s D D D D D D s s s s s s s s s s s s s s s s s E D F x G P P ;.` x.x.y.y.z.Z.`. +.+++@+#+G.G.G.^./.$+F s %+&+*+=+-+;+>+,+'+)+!+~+{+]+^+/+(+_+ ", +" :+@ s s s 7.s s s s s D D D D D 0.s s s s s s s s s s s s s s s <+E F D G x P -.Q ` ,.x.y.[+}+|+1+2+3+4+U 5+6+G.G.G.G.H.7+8+s s 9+0+a+b+c+d+e+f+g+h+i+j+k+l+m+n+o+p+ ", +" q+q+s s s 7.s s s s s D 9.D 8.s s s s s s s s s s s s s s s s E r+w w D P P ` ` x.x.y.[+}+}+s+t+u+v+w+3+x+y+z+G.G.G.G.G.H.g.$+s s s A+B+C+D+E+F+G+H+I+J+K+L+M+N+O+P+Q+R+ ", +" q+$ s s s 7.7.7.7.7.7.D 7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.D 7.7.7.7.7.7.7.7.7.7.7.7.S+T+U+V+W+X+Y+Z+`+G.G.G. @H./..@s s s s +@@@#@$@%@&@*@=@-@;@>@,@'@)@!@~@{@]@^@/@(@_@ ", +" 8 8 s s s 7.s s s s s D s s s s s s s s s s s s s s s r+r+F F v G P P D ` :@<@,.,.y.}+|+[@t+}@|@1@2@3@4@5@6@M G.G.G.G.G.G.G.H.&.Y s s s s 7@8@9@0@a@b@c@d@e@f@g@h@i@j@k@l@m@n@o@p@q@r@s@t@u@ ", +" @ % s s s 7.s s s s s D s s s s s s s s s s s s s s s F E v x w -.;.Q D :@v@,.w@x@|+|+t+}@y@z@A@u+B@C@D@E@F@G@G.G.G.G.G.G.G.G.^.7+Y s s s s H@I@J@K@L@M@N@O@P@Q@R@S@T@U@V@W@X@Y@Z@`@ #.#+#@### ", +" @ @ s s s 7.s s s s s D s s s s s s s s s s s s r+r+F F v x P P $#` ` D x.y.[+|+|+|+t+y@|@A@A@%#&#*#=#-#K ;#>#G.G.G.G.G.G.G.G.G.H.&.Y s s s s ,#'#)#!#~#{#]#^#/#(#_#:#<#[#}#|#1#2#3#4#5#6#7#8#9# ", +" 9 9 s s s 7.s s s s s D s s s s s s s s s s s r+F E F w x x P ` ` ,.x.D 0#}+s+|+t+t+y@|@A@%#%#&#&#a#b#c#d#e#f#G.G.G.G.G.G.G.G.G.G.g#/.Y s s s x h#i#j#k#l#m#n#o#p#q#r#s#t#u#v#w#x#y#z#A#B#C#D#E#F#G#H# I#J# ", +" 9 K#s s s 7.7.7.7.7.7.D 7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.8.D 9.D 7.7.7.7.7.7.7.7.7.7.7.L#M#N#O#P#Q#R#S#Z+G.G.G.G.G.G.G.G.G.G.T#7+$+s F U#V# W#X#Y#Z#`# $.$+$@$#$$$%$&$*$=$-$;$>$,$'$)$!$~${$]$^$/$($_$:$<$[$}$ ", +" |$1$s s s 7.s s s s s D s s s s s s s s s E E F w v P Z ;.` 0.D D D D D |+t+}@}@|@2$3$U#&#$5$1@6$7$8$9$0$a$G.G.G.G.G.G.G.G.G.G.G.G.T#7+b$y@c$d$e$f$g$h$i$j$k$l$m$n$o$p$q$r$s$t$u$v$w$x$y$z$A$B$C$D$E$F$G$H$I$J$K$L$ ", +" |$M$s s s 7.s s s s s D s s s s s s s r+F v x x P Z P -.` ,.D D D D D D |+N$y@A@%#U#O$$4$1@u+Y *#P$Q$R$S$T$G.G.G.G.G.G.G.G.G.G.G.G.G.U$V$W$X$Y$Z$`$ %.%+%@%#%$%%%&%*%=%-%*$;%>%,%'%)%z#!%~%{%]%^%/%(%_%:%<%[%}%|%1% ", +" |$@ s s s 7.s s s s s D s s s s s r+E F v w x P Z P ` <@,.,.D D D D D 0.}@|@2$A@%#O$O$%1@$+Y Y 3%4%5%6%7%8%G.G.G.G.G.G.G.G.G.G.G.G.G.`+9%0%a%b%c%d%e%j$f%g%h%i%j%k%l%m%n%o%p%q%,%r%s%t%u%v%w%x%y%z%A%B%C%D%E%F%G% ", +" |$a s s s 7.s s s s s D s s s s r+<+F v G x Z Q ` ` ,.x.,.[+0.9.D 8.}@|@|@%#H%U#U#I%4$5$u+$+J%K%L%M%N%O%P%Q%R%G.G.G.G.G.G.G.G.G.G.G.G.S%T%U%V%W%X%Y%Z%`% &.&+&@&#&$&%&&&*&=&u#-&;&>&,&'&)&!&~&{&]&^&/&(&_&:&<&[&}&|& ", +" |$|$s s s 7.7.7.7.7.7.D 7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.1&2&3&4&5&6&7&8& 9&0&a&b&c&d&e&f&g&h&i&j&k&l&m&n&o&p&q&r&s&t&u&v&w&x&y&z&A&B&:#C&D&E&F&G&H&I&J&K&L&M&N&O&P&Q&R&S&T&U&V&W& ", +" |$a s s s s s s s s s D s r+u F F w P x P ` x.:@<@,.[+|+|+s+X&}@y@z@z@%#%#$1@5$5$Y *.*.Y&8+Z&Z&`& *.*+*@*#*$*%*&***=*-*;*>*,*'*'*)*!*~*{*]*^*/*(*_*:*<*[*}*|*1*2*3*4*5*6*7*8*9*0*a*b*c*d*e*f*g*h*i*j*k*l*m*n*o*p*q* ", +" a a s s s s s s s s s D E F F v w P -.` ` ` r*,.y.}+}+|+t+t+y@}@z@%#U#s*O$&#t*1@1@Y *.8+u*v*w*Z&`&P$C@x*y*z*A*A*B*#*C*D*E*F*G*H*H*I*J*K*L*M*N*O*P*Q*R*S*T*U*V*W*X*Y*Z*`* =`*.=+=@=#=$=%=&=*===-=;=>=,='=)=!=~={=]=^=/=(= ", +" * _=s s s s s s s s s D E v x x P $#$#` <@,.y.[+w@|+|+t+}@}@z@A@A@%#z.O$5$1@u+u+$+*.:=8+v*Z&<=a#[=}==#|=.*1=2=3=4=5=6=7=8=@*4=9=9=0=a=b=c=d=e=f=g=h=i=j=k=l=m=n=o=p=q=r=s=t=u=v=w=x=y=z=A=A=B=C=D=E=F=G=H=I=J=K=L=M=N=O= ", +" * P=s s s s s s s s O E G v P -.Q ` >.,.,.,.}+}+|+t+}@}@|@A@%#U#U#U#&#t*5$Y Y Y Y&8+Q=6$R=<=S=T=7$U=V=W=X=Y=Z=`= -.-+-@-@-+-#-$-%-&-*-=---;->-,-'-)-!-~-{-]-^-/-(-_-:-<-[-}-|-|-1-2-3-4-5-6-7-8-9-0-a-b-c-d-e-f-g-h-i- ", +" a |$s s s s s O t F v G w P -.` ` ` H ,.,.w@x@|+s+}@}@z@A@%#%#U#&#D I%1@1@Y Y Y&8+6$Z&j-<=S=T=3%k-l-U=m-n-o-p-o-x*o-q-q-q-q-q-r-s-t-u-v-w-x-y-z-A-B-C-D-E-F-F-G-H-I-J-K-L-M-N-O-P-Q-R-R-S-T-U-V-W-X-Y-Z-`- ;f-.;+;@; ", +" #;#;s s s s s t $;v x x P ` Q ` x.x.y.,.x@|+s+t+}@}@|@2$U#O$$4$D u+u+J%%;Y&v*Q=6$j-j-&;S=*;3%`&=;-;;;Q$9$|=9$>;,;c#';';);p-!;~;{;];^;/;(;_;:;<;[;};|;1;2;3;4;5;6;7;8;9;0;a;b;c;d;e;f;g;h;i;j;k;l;m;n;o;p;q;r;s; ", +" b b s s s s r+v v G P P Q ` >.<@x.y.y.}+|+[@t+}@R z@z@z.U#O$&#t*1@D u+*.Y&8+w*Z&j-<=j-S=T=`&t;`&t;u;v;m-w;x;n-x;n-y;z;y;A;B;C;D;E;F;G;H;I;J;K;L;M;N;O;P;Q;R;S;T;U;V;W;X;Y;Z;`; >.>+>@>#>$>%>&>*>=>->;>>>,>'>)>!>~> ", +" b - s r+t F v w P P ;.` <@:@<@0#[+{>x@s+X&X&}@A@z@H%U#U#&#I%5$]>Y D *.8+Q=6$6$R=j-S=T=*;3%t;`&-;-;^>^>/>m-(>_>:><><>[>}>|>1>B;2>3>4>5>6>7>8>9>0>a>b>c>d>e>f>g>h>i>j>k>l>m>n>o>p>q>r>s>t>u>v>w>x>y>z>A>B>C>D>E>F> ", +" b b <+E F G x w P G>;.<@<@,.,.[+[+|+X&t+t+y@z@2$%#O$z.4$4$1@1@.@:=D Y&v*Z&j-<=H>S=T=*#`&`&t;-;-;v;I>I>J>K>L>M>(>_> *w;w;N>O>P>Q>R>S>T>U>V>W>X>X>Y>Z>`>E& ,.,+,@,#,$,%,&,*,=,-,;,>,,,',),!,~,{,],^,/,(,_,:,<,[, D ", +" b b F },v P P Q Q ` >.x.,.y.x@D |+|,}@}@|@z@%#z.&#$5$1@$+Y %;Y&D 6$6$Z&j-T=T=1,`&t;t;2,2,v;3,I>4,5,D 6,7,M>(>_>8,8,9,0,O>a,b,c,d,e,f,g,h,i,j,k,l,m,q$n,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F,G,H,I,J,K,L,M, D ", +" 2 N,F w x P Q ;.` ` ,.,.[+y.}+D s+}@O,A@%#U#P,&#%5$1@$+Y Y&8+6$D Q,<=j-a#T=*;`&`&t;-;^>3,I>7$4,5,R,D />m-(>_>_>_>_>S,T,U,,;V,W,X,Y,Z,`, '.'+'@'#'$'%'&'*'='-';'>',''')'!'~'{']'^'/'('_':'<'['}'|'1'2'3' D ", +" N,N,P x P ` ;.:@x.v@4'w@x@s+s+D }@y@z@U#U#U#$5$1@$+Y Y&8+8+v*w*D j-<=a#*#5'6't;2,^>^>7$7'I>4,5,J>8'D /._>(>m-m-9'0'a'b'|>c'd'e'f'g'h'i'j'k'l'X>m'n'o'p'q'r's't'u'v'w'x'y'z'A'B'C'D'E'F'G'H'I'J'K'J,L'M' D ", +" - - P P ;.` <@x.,.[+[+|+s+}@t+D A@A@H%%#O$4$I%5$1@Y Y Y&Y&Q=v*Z&Z&D S=T=*;`&`&`&-;^>v;3,^>I>N'J>O'P'8'D Q'm-/.9'9'R'V$L>S'}>T'.+U'V'W'X'Y'Z'`' ).)+)@)#)$)%)&)*)=)-);)>),)')))!)~){)])^)/)()_):)<)[)})|)1) D 2)3)4) ", +" 2 1 Q ` <@7.7.7.7.7.7.7.7.7.7.D 7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.D 7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.D 7.7.7.7.7.7.7.5)5)5)6)7)8)9)0)a)b)Y'c)d)e)f)g)h)i)j)k)l)m)n)o)p)q)r)s)t)u)v)w)x)y)z)A)B)C)D)E)F) G)H)I) ", +" 2 | >.<@,.7.w@{>}+|,J)}@}@z@A@D z.U#$1@u+Y .@Y :=6$v*6$Z&j-S=T=D `&`&2,2,^>^>3,7$I>4,5,R,P'6,6,6,K)D K>/.R'L)M)V$N)V$S,[>O)P)Q)R)S)T)U)|;V)W)X)Y)Z)`) !.!+!@!#!$!%!&!*!=!-!;!>!,!'!)!!!~!{!]!^!/!(! _!:!T=T=1,D `&t;2,-;^>7'I>[!J>J>J>R,}!6,|!6,&.D &.R'R'V$V$V$1!2!3!}>c#4!5!6!7!8!9!0!a!b!c!d!e!f!g!h!i!j!k!l!m!n!o!p!q!r!s!t!u!v!w!x!y!z!A!B! C!D!E! ", +" ; | ,.0#}+7.|+|+}@y@z@A@%#U#U#D I%t*F!1@Y Y&8+G!Z&Z&<=<=S=T=*;`&`&D t;-;v;7'7$I>J>J>J>P'6,}!H!K>K>I!/.D L>J!L>V$N)2!2!K!L!M!N!O!P!Q!R!S!T!U!V!W!X!Y!Z!`! ~.~+~@~#~$~%~&~*~=~-~;~>~,~'~)~!~J'~~{~]~^~ D /~(~_~ ", +" :~:~}+[+|+7.t+t+|@A@z@U#O$z.4$D 1@u+Y Y 8+8+8+v*Z&j-<=S=T=3%1,t;t;D -;^><~I>N'N'J>J>[~[~6,}~K>K>/.7+/.D J!V$V$|~2!1~2~3~4~5~C;7&6~7~8~9~0~a~b~c~d~e~f~g~h~i~j~k~l~m~n~o~p~q~r~s~t~u~v~w~x~y~z~A~B~ C~D~ ", +" e e |+s+J)7.7.7.7.7.7.7.7.7.7.D 7.7.7.7.7.7.7.7.7.7.7.7.7.7.8.D 9.D 7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.D 7.7.7.7.7.7.7.7.5)5)6)E~F~G~H~I~J~K~L~M~N~O~P~Q~R~S~T~U~V~W~X~Y~Z~`~ {.{+{@{#{${%{&{*{={ D -{;{ ", +" > > t+J)y@7.A@%#>{P,&#$5$5$D *.Y Y&8+6$Z&<=&;a#T=T=*;0.D D D D D I>4,5,J>J>R,[~H!,{}~K>K>&.R'L)J!V$D '{9'){){1~K!K!4~!{~{{{U ]{^{/{({_{:{<{[{}{|{1{2{3{4{5{6{7{8{9{0{a{b{c{d{e{f{g{h{i{j{k{l{ D m{n{ ", +" > :~[@}@}@7.H%%#U#O$5$1@1@1@*.D Y&Y&6$6$j-j-S=T=T=*;3%=;D D D D D D 5,N'J>O'}!6,H!K>K>K>/>/./.R'L>N)'{D 2!o{3~3~K!p{S,4~q{r{s{t{u{v{w{x{y{z{A{B{C{D{E{F{G{H{I{J{K{L{M{N{O{P{Q{R{S{T{U{V{W{X{Y{ Z{ ", +" | } }@z@A@7.U#&#$5$u+u+Y *.D 8+v*6$j-<=a#T=3%`&t;t;2,D D D D D 0.J>J>[~`{6,6,K)K>&./.R'R' ]V$V$V$2!D 3~1~.]K!+]@]p{#]!{$]%]&]*]=]-];]>],]'])]!]~]{]]]^]/](]_]:]<][]}]|]1]2]3]4]5]6]7]8]9] D 0]a]b] ", +" :~> z@A@%#7.&#I%1@1@1@Y J%Y 8+D 6$Z&j-&;T=T=3%6't;c]t;u;0.9.D 8.d][!l-R,6,6,6,K>&.7+/.J!R'L>V$e]1!2!2!D 3~0'.]K!p{f]f]g]h]i]j]@-k]l]m]n]o]p]q]r]s]t]u]v]w]x]y]z]A]B]C]D]E]F]G]H]I]J]K]L]M]N] D O] P]Q]R]S] ", +" } > U#%#O$7.7.7.7.7.7.7.T]D 9.D 7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.8.D 9.D 7.7.7.7.7.7.7.7.5)5)U]V]W]X]Y]Z]`] ^.^+^@^#^$^%^&^*^=^-^;^>^,^'^)^!^~^{^]^^^/^(^_^:^ <^[^}^|^1^2^ ", +" , , U#O$.1@u+$+Y 0.D 3^D D D j-T=*#T=3%t;=;4^^>^>7'I>I>J>J>R,[~6,6,6,K)&.&./.R'R' ]V$V$1!0.D D D D D S,+]@]@]#]5^5^5^6^7^8^9^0^a^b^c^d^e^f^g^h^i^j^k^l^m^n^o^p^q^r^s^t^u^v^w^x^y^z^A^B^C^D^E^F^G^H^I^ ", +" , ) J^5$4$7.u+*.Y&Y&D D D K^L^D T=*;*;`&t;2,^>^>^>I>7'4,J>R,R,O'6,,{}~K)&./.M^/.J!V$V$V$2!2!D D D D D D p{#]4~5^5^N^q{!{O^^.P^Q^R^S^T^U^V^W^X^Y^Z^`^ /./+/@/#/$/%/&/*/=/-/;/>/,/'/)/!/~/{/]/^///(/_/:/ ", +" 7.Y Y 8+Q=D D D D D 0.*#`&`&t;t;^>^>7$7'I>I>J>}/P'P'H!6,K>K>&.7+/.J! ]V$V$N)2!){1~D D D D D 0.#]g]L!5^|/q{|/1/1/^.2/3/4/5/6/7/8/9/0/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/A/ ", +" [/[/$+B/u+7.%;8+8+6$0.9.D 8.3%6'`&t;2,u;-;7$v;I>4,[!R,R,[~6,6,H!K>&.7+/.7+L)M)M)e]9'1!1~3~3~0.9.D 8.f]#]L!L!5^C/|/!{D/h]E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/`/ (.(+(@(#($(%(&(*(=(-(;(>(,( ", +" [ [ Y $+Y&7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.'()('(7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.)(!(~({(](7.7.7.5)5)5)6)^(/(((_(:(<([(}(|(1(2(3(4(5(6(7(8(9(0(a(b(c(d(e(f(g(h(i(j(k(l( ", +" [ [ Y Y&G!Q=Z&Z&<=<=a#*#3%`&`&t;t;u;^><~<~I>5,J>}/R,[~6,m(K>K>&./.7,n(o(p(q(r(s(){){t(K!.]u(@]v(4~4~T,5^w(x(y(z(A(B(C(D(D(E(F(G(H(I(J(K(L(M(N(O(P(Q(R(S(T(U(V(W(X(Y(Z(`( _._+_@_#_$_%_&_*_=_ ", +" { -_8+Y&6$j-R=<=;_T=*;*#3%`&-;^>^>^>v;4,I>5,J>R,P'[~,{K>K>&./.R'R'R'>_,_'_)_!_~_{_]_K!^_+]v(p{4~g]5^N^q{|//_(___:_<_[_}_T#E(|_1_2_3_3=4_5_6_7_8_9_0_a_b_c_d_e_f_g_h_i_j_k_l_m_n_o_p_q_r_s_ ", +" < ! v*6$6$j-j-T=T=*#`&=;4^^>-;3,<~7'N'J>J>R,P'}!6,6,K>K>g./.R'R'J!J!t_u_v_w_x_y_z_A_B_C_p{4~4~5^N^|/|/D/1/D_E_:___F_G_H.E(^.H_1_I_J_6=V K_L_M_N_O_P_Q_R_S_T_U_V_W_X_Y_Z_`_ :.:+:@:#:$:%: ", +" ! ! Z&6$<=<=T=T=*;`&t;t;-;^>3,&:I>4,5,R,R,}!6,H!m(}~K>g.*:R'R'J!V$V$=:-:;:>:,:':):!:~:{:]:^:5^5^C/|/!{h]/:(:_::_!:::<:[:E(}:U$f.|:1:2:3:4:5:6:7:8:9:0:a:b:c:d:e:f:g:h:i:j:k:l:m:n:o: ", +" { { j-&;S=*#1,`&`&2,2,^>^>v;<~I>I>5,R,R,O'6,m(K)&.g.&.g./.L>V$V$2!2!p:q:r:s:t:u:v:w:x:y:z:A:B:|/1/|/1//:E/C:D:E:F:F:G:H:U$H_I:J:K:L:M:7=#.N:O:P:Q:R:S:T:U:V:W:X:Y:Z:`: <.<+<@<#<$<%3,7$I>N'J>J>O'O'6,|!m(}~K>&././.R'J!M)N)9'*<,^>I>I>N'[!J>R,[~6,6,|!}~&.g./.R'M)M)V$N)1!*<2!3~i7'I>I>WR,[~`{6,|!K)K>g.7+M^X[,['[v:)[![~[{[][^[^[/[([_[:[<[[[}[|[1[2[3[4[5[6[7[8[9[D D D D D D D D D ", +" 0[0[t;t;2,-;^>&:I>I>5,8.D 9.0.[~6,m(K>&.g.R'R'L)L>N)1!1!2!2!3~3~K!S,p{p{|/a[b[c[d[e[f[g[h[>[<_m[n[)[o[p[q[r[s[1_t[u[v[w[x[y[z[A[B[C[D[E[F[G[H[I[D D D D D D D D ", +" J[K[4^2,^>v;3,I>4,0.D D D D D ,{}~K>&.&.R'J!J!V$V$2!2!2!){2~3~p{p{p{#]#]4~|/L[M[N[O[P[Q[R[)},}'})}!}~}D D D D D ", +" {}]}-;^>v;<~I>4,N'D D D D D D }~7+&././.L)J!M)1!2!){){1~3~K!^_S,#]4~#]L!5^C/|/|/U$^}/}(}$[_<_}Q[,3,I>4,[!5,R,D D D D D 0.K>7+R'L)L>V$V$e]2!2!){1~3~.]p{p{#]@]#]g]C/5^q{l}1/1/wN'N'5,O'R,D 9.D 8.K>g./.R'L)L>V$N)2!1!){1~t(K!u(S,p{p{4~5^5^5^U}|/D/V}/:O^W}D(H_X}Y}Z}`} |.|_<':+|@|#|T[n[$|F_%|&|*|=|([D}-|;|>|,|'|)|!|~|{|]|^|/|(|_|:|<|D D D D ", +" [|[|I>[!J>7.7.7.7.D 7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.}|||1|2|3|4|:}u}5|.|6|7|v:8|m[9|0|a|b|7.7.5)5)6)c|d|e|f|g|7.h|i|j|k|l|m|n|o|p|p|L^ ", +" q|q|N'J>R,7.[~6,6,D K>/./.R'R'R'V$1!1!2!){3~t(3~.]S,p{v(p{4~g]5^N^|/!{1/h]/:O^E/D(+}r|s|t|u|v|w|x|y|z|&[t}A|7|B|C|j[D|E|F|G|C}D}H|T%I|J|H}K|L|M|7.N|O|P|Q|R|S|T|U|V|W|X| ", +" Y|Z|J>R,}!7.6,,{K>D g.R'R'L)M)V$|~1!2!){1~.].]p{p{@]f]#]g]5^5^|/D/1/1/h]E/w1,1'1)1!1~1{1]1^1/1(1_1!|:17.<1[1}1|1112131415161p| ", +" 7171[~[~6,7.K>K>K>D /.J!J!V$V$1!2!2!1~K!.]S,.]81@]4~4~g]N^N^|/|/D/D/D O^we]e]2!){1~K!.].].]@]4~#]g]5^5^N^q{D/h]h]E/D 6^D(H1I1t|J1K1L1y|y|M1Y[N1F_____O1P1Q1R1S1T1U1V1W1!1X1Y1Z1`1 2.2+2@2#2$2%27.&2*2=2-2;2>2,2'2)2L^K^ ", +" !2!2|!6,K>7.7.7.7.D 7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.D ~2{2]2^2/2/2(2_2S/:2<2*[:_9|9|__F_[2}2|21222n<32427.7.5)5)526272829202a2b27.c2d2e2f2;2g2h2i261L^K^ ", +" j2k2K>K>G17.R'R'L>D V$'{2!2!1~3~K!^_+]p{4~4~L!5^N^q{q{!{1//:O^O^w3,3'37.)3!3~3{3K2]3^3/3L^K^D ", +" (3:|/./.J!7.L>e]|~D 2~2~3~K!.]p{p{p{#]g]5^C/N^|/1/D/h]E/E/w<}__3H.^.D :3<3!::}!:T29|9|T2[3}3|3132333t[43+}Y253p[63!<73J183`+9303a3b3c3d3e3~|f3g37.h3i3j3k3l3m3n3o3E1K^D ", +" p3q3/.J!J!7.J!1!2!D K!0'K!+]S,p{f]g]4~g]N^|/|/!{1//:E/E/D(D(_3H.r3E(D s3t3u3v3w3x3y3z3A3B3C34}t[t[t[+}C}D3E3X1F3G3H3;:I3J3K3]1L3M3N3O3P3Q3v1R3S37.T3U3V3W3j3X3Y3Z33^D D ", +" `3:|L>L>J!7.7.7.7.D 7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.D 4.4+4+4@4#4$4'(7.7.7.7.7.7.7.7.7.7.7.7.%4&4T2F_=[*4=46)-4;4>4,4'4)4!4~4{47.]4^4l3/4(4_4:4<4K^D D ", +" [4[4V$e]J!7.J!){3~D S,p{@]4~4~g]5^q{w(|/1/1/1/O^E/6^D(D(H.H.}4}:H_H_D [<|4|4^[F<^[14/[.}24t[=|43C}C}D3X1X13444445464n2*[74849404a4b4c4w|d4e4f4g47.h4i4(4j4k4l4m4:4D D D ", +" [4n49'1!J!7.J!3~S,D @]p{4~4~g]5^N^|/q{!{h]E/E/6^D(}_}_^.^.U$o4H_p4[51/1/O^O^w5D/h]h]O^6^w<}_T#^.^.U$}:H_p4E<[<[:o5p5q5r5s5t5u5v5w5i4]3]3J4x525x5y5h5D D D ", +" z5j5.]p{4~4~g]5^5^5^|/|/1/O^1/E/6^D(H.^.^.E(Q4H_H_A5[2j3`5 6z_y_*4.6+6@6#6$6%6i4&6w5w5*6=6*6=6=6i5i5D D D ", +" -6z54~L!5^g]q{q{D/|/V};6E/6^w6+}D3E3X1V434Y144W4G.G.W5S%Z1w2`+C5Z5,6>2;2w5'6P:)6!6~6{6]6^6/6(6_6w5J4*6*6*6:6=6<6[6K[i5D D D ", +" z5z5g]5^5^C/D/|/D//:O^E/w2>2h6i6Q5j6k6l6m6n6o6p6q6r6s6t6*6*6:6u6=6<6<6a6'6v6K[i5D D D ", +" w6x6|/q{|/V}1/h]O^E/D(T#T#E(U$V5H_p4|_E2;2J2;2K2I4y6z6A6r2B6C6D6E6O/F6G6H6*6S5=6<625<6'6v6I6J6i5K6D D D ", +" b6w6!{1/1/h]E/E/D(D(T#^.E(U$}:H_p4A5[<|4J:F<^[^[q4f6}2K2K2K2k3V3@7L6#7$7%7P6&7*7=7}(-7;7>7,7<6<6'6'6'6v6J6Z6'7)7i5i5D D D ", +" !7!7h]O^w2>2J2h6~7j3j3k4{7]7^7/7(7B6_7:7<7[7}7|717<6x5a6'62737Z6`5475757k}k}D D D ", +" 6777E/E/w2h6K2K2V3W3W3a7b7c7d7e7f7g7h7i7j7k7l7m7n7'6o7I62737Z6)7575757p7[|q7D D D ", +" r7s7E/D(H.H.E(E(L[H_H_A5E<[2;2K2g2k3v7V3j3(4/4]325w7x7y7z7A7B7~|C7D7E7F7'6[6J637Z6`6`5)757G7G7H7I7J7D D D ", +" K7L7M7c6^.J:J:J:87p4[<|4J:J:F2D5>2K2K2K2V3W3j3(4H4]3_4w7O7P7Q7R7S7Q3T7U7V7W7X7'627J6`6`6`55757p7H7H7H7Y7Z7D D D ", +" `7`7H.H.}4J:J:J:E<[<[< 8F2>2;2K2K2k3j3+8W3(4H4I4]3@8#8$8%8&8*8=8~|-8;8>8,8'8J6Z6`6`6)8)7!8H7H7H7H7H7N2~8D D D ", +" {8{8E(E(V5J:J:J:[<[< 8F<^[1_14f64}24t[=|+}C}D3D3X134r4Y1Y1 @W4G.S%S%S%l5l5C5D5C5>2;2K2~7~7V3W3/4/4k4I4k4*5:6]8^8/8(8(1_8:8<8[8}8|818Z6Z6`65728G738H7H7H7H7H7H7;5;5D D D ", +" {8{8Q4Q4H_A5A5J:F< 8^[^[1_/[/[K:4}t[=|+}C}D3X1X1r44444 @48G.W5G.W5S%5868C5C5D5>278K2~7j3V3/4/4/4(4I4*5i4*6=645889808I}a8b8c8d8e8f8Z6g8)7)75738H7H7H7H7H7H7H7H7`3`3D D D ", +" h8{8Q4H_|_E2h6K2V3j8j3W3/4(4I4I4*5]3&6=6k8l8m8n8o8p8q8r8s8t8u8v8`6'7)7w8H7x8H7H7H7H7H7H7H7H7`3y8D D D ", +" {8z8H_p4|4|4F2h6K2K2K2V3V3W3(4k4k4*5i4]3&6w5=6A8B8C8D8E8F8G8H8I8J8K8L8575757x8H7H7H7H7H7H7H7H7H7H7y8`3D D D ", +" z8{8p4[<|4F2>2J2K2~7~7V3W3W3(4k4I4i4i4w5w5P5S5M8w7N8O8P8Q8R8S8T8U8V8W8X857G7!8H7H7H7H7H7H7H7H7H7H7H7`3Y8D D D ", +" z8Z8[< 8F2;2;2K2K2K2V3W3/4(4k4I4I4i4`8w5J4{7*6a6 9.9+9@9(1#9e3$9%9&9*9=957H7H7H7-9;9-9H7H7H7H7H7H7H7H7>9>9D D D ", +" z8{8S4^[^[s[1_/[t[t[t[=|+}C}!1X1V434r444Y1 @G.u7)5S%S%`+`+Y5D5>2>2;2h6k3~7j3/4(4/4H4I4I4i4w5w5{7,9*6'9]8!8)9!9~9{9]9^9/9(9_9:9<9H7H7H7H7[9-9}9-9-9H7H7H7H7H7H7>9>9D D D ", +" |919^[s[1_/[4}4}t[=|+}C}D3D3X1X1D}44W4Y1 @ @~1!5S%5858`+Z5D5>2>2;2h6V3V3V3/4W3/4k4I4i4w5&6w5J4P5*6S5x5l42939q1+249596979899909H7H7H7H7}9[9X8-9-9-9H7H7H7H7H7H7>9`3D D D ", +" a919s[/[4}24t[=|=|43C}D35}X1b94444Y148G.)5!5S%S%`+C5C5D5>2>2>2h6~7V3j3W3(4$3k4k4a7i4]3w5c9P5*6R5=6=6'6}9d9e9f9g9h9i9<8j9k9l9H7H7H7H7-9[9m9;9n9-9H7H7H7H7H7H7H7`3`3D D ", +" a919o9i}p9q9r9s9t9u9v9w9x9y9z9A9B9C9D9E9F9G9H9I9I9J9J9K9K9C9L9M9M9M9M9N9O9P9Q9Q9Q9Q9R9S}S}S}S}S9q9r9T9Z8U9V9W9X9Y9Z9`9 0.0+0@0#0$0R}%0&0*0=0*0-0;0>0,0'0)0!0'0>9(3D D ", +" a919~0i}{0q9s9s9]0^0/0C9(0Q9_0:0C9I9<0[0H9H9H9I9I9J9K9C9C9!}}0|0M9M9M9O9M9/0Q9Q91010(0(0S}S}S}S9p9p9T9203040506070H8809000L7K7a0b0c0d0&0;0*0e0f0g0>0,0)0h0'0'0(3(3D D ", +" D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D i0j0k0l0m0n0o0p0q0D D D p|r061s0p|3^D D D D D D D D D D D D ", +" D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D t0u0v0w0x0y0z0A0B0V|C0D )2D0E0E1E1L^D D D D D D D D D D D D ", +" D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D F0G0H0I0J0K0L0M0N0O0P0W|O051Q0R0S0K^D D D D D D D D D ", +" T0U0V0n W0X0Q0Y0Z0B0Y0`0 R0 a ", +" .a+a@a #a ", +" $a %a ", +" &a ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/icons/mm-mime-hi64-rosegarden.png b/data/pixmaps/icons/mm-mime-hi64-rosegarden.png new file mode 100644 index 0000000..dd2f0e7 Binary files /dev/null and b/data/pixmaps/icons/mm-mime-hi64-rosegarden.png differ diff --git a/data/pixmaps/icons/rg-rwb-rose3-128x128.png b/data/pixmaps/icons/rg-rwb-rose3-128x128.png new file mode 100644 index 0000000..b20ccd6 Binary files /dev/null and b/data/pixmaps/icons/rg-rwb-rose3-128x128.png differ diff --git a/data/pixmaps/icons/rg-rwb-rose3-16x16.png b/data/pixmaps/icons/rg-rwb-rose3-16x16.png new file mode 100644 index 0000000..4839783 Binary files /dev/null and b/data/pixmaps/icons/rg-rwb-rose3-16x16.png differ diff --git a/data/pixmaps/icons/rg-rwb-rose3-32x32.png b/data/pixmaps/icons/rg-rwb-rose3-32x32.png new file mode 100644 index 0000000..0a7a7e7 Binary files /dev/null and b/data/pixmaps/icons/rg-rwb-rose3-32x32.png differ diff --git a/data/pixmaps/icons/rg-rwb-rose3-48x48.png b/data/pixmaps/icons/rg-rwb-rose3-48x48.png new file mode 100644 index 0000000..af01ec7 Binary files /dev/null and b/data/pixmaps/icons/rg-rwb-rose3-48x48.png differ diff --git a/data/pixmaps/icons/rg-rwb-rose3-64x64.png b/data/pixmaps/icons/rg-rwb-rose3-64x64.png new file mode 100644 index 0000000..c9c221e Binary files /dev/null and b/data/pixmaps/icons/rg-rwb-rose3-64x64.png differ diff --git a/data/pixmaps/icons/rg-tux-small.png b/data/pixmaps/icons/rg-tux-small.png new file mode 100644 index 0000000..5b9e7aa Binary files /dev/null and b/data/pixmaps/icons/rg-tux-small.png differ diff --git a/data/pixmaps/icons/sa-hi16-rosegarden.png b/data/pixmaps/icons/sa-hi16-rosegarden.png new file mode 100644 index 0000000..35b6ba2 Binary files /dev/null and b/data/pixmaps/icons/sa-hi16-rosegarden.png differ diff --git a/data/pixmaps/icons/sa-hi32-rosegarden.png b/data/pixmaps/icons/sa-hi32-rosegarden.png new file mode 100644 index 0000000..103c312 Binary files /dev/null and b/data/pixmaps/icons/sa-hi32-rosegarden.png differ diff --git a/data/pixmaps/icons/sa-hi48-rosegarden.png b/data/pixmaps/icons/sa-hi48-rosegarden.png new file mode 100644 index 0000000..371f6d4 Binary files /dev/null and b/data/pixmaps/icons/sa-hi48-rosegarden.png differ diff --git a/data/pixmaps/icons/sa-hi64-rosegarden.png b/data/pixmaps/icons/sa-hi64-rosegarden.png new file mode 100644 index 0000000..7c47840 Binary files /dev/null and b/data/pixmaps/icons/sa-hi64-rosegarden.png differ diff --git a/data/pixmaps/icons/sa-lo16-rosegarden.png b/data/pixmaps/icons/sa-lo16-rosegarden.png new file mode 100644 index 0000000..0a349a8 Binary files /dev/null and b/data/pixmaps/icons/sa-lo16-rosegarden.png differ diff --git a/data/pixmaps/icons/sa-lo32-rosegarden.png b/data/pixmaps/icons/sa-lo32-rosegarden.png new file mode 100644 index 0000000..3784a98 Binary files /dev/null and b/data/pixmaps/icons/sa-lo32-rosegarden.png differ diff --git a/data/pixmaps/misc/arrow-contracted.png b/data/pixmaps/misc/arrow-contracted.png new file mode 100644 index 0000000..884a72c Binary files /dev/null and b/data/pixmaps/misc/arrow-contracted.png differ diff --git a/data/pixmaps/misc/arrow-expanded.png b/data/pixmaps/misc/arrow-expanded.png new file mode 100644 index 0000000..43e645e Binary files /dev/null and b/data/pixmaps/misc/arrow-expanded.png differ diff --git a/data/pixmaps/misc/bg-desktop.xpm b/data/pixmaps/misc/bg-desktop.xpm new file mode 100644 index 0000000..a40da0c --- /dev/null +++ b/data/pixmaps/misc/bg-desktop.xpm @@ -0,0 +1,1635 @@ +/* XPM */ +static char * bg_desktop_xpm[] = { +"166 166 1466 2", +" c None", +". c #B5712A", +"+ c #AA661D", +"@ c #B16D24", +"# c #BB7832", +"$ c #B0712E", +"% c #B07235", +"& c #9D5F24", +"* c #A9682E", +"= c #A66126", +"- c #AB652A", +"; c #A56326", +"> c #A7672A", +", c #A66A2E", +"' c #A4692F", +") c #A56A2E", +"! c #A86C2E", +"~ c #A86828", +"{ c #A4631F", +"] c #B06D26", +"^ c #BA7730", +"/ c #B26F28", +"( c #B57329", +"_ c #B47228", +": c #B06E22", +"< c #B87628", +"[ c #AF6D1F", +"} c #B07122", +"| c #A76819", +"1 c #B27326", +"2 c #B9772B", +"3 c #AB691D", +"4 c #AB671C", +"5 c #B57025", +"6 c #B26C24", +"7 c #A5621E", +"8 c #A96528", +"9 c #A56025", +"0 c #A76322", +"a c #B16F23", +"b c #AE6C1E", +"c c #A3601A", +"d c #A35E25", +"e c #A4611B", +"f c #B16E28", +"g c #AB6821", +"h c #AC6922", +"i c #A9661F", +"j c #A36117", +"k c #A6641A", +"l c #B27121", +"m c #B77527", +"n c #B37127", +"o c #A8651F", +"p c #B4712A", +"q c #BB792F", +"r c #B8762A", +"s c #BA782C", +"t c #A46218", +"u c #B06E24", +"v c #A6631D", +"w c #AD6A26", +"x c #A96622", +"y c #A06219", +"z c #A2631C", +"A c #AC6B27", +"B c #AD6928", +"C c #A5601D", +"D c #A8621C", +"E c #AE691C", +"F c #AB6414", +"G c #B16A1A", +"H c #B46D1D", +"I c #B77022", +"J c #AF681A", +"K c #A96214", +"L c #AF671B", +"M c #B87024", +"N c #B56E1C", +"O c #B8742D", +"P c #B26E27", +"Q c #BE7B35", +"R c #B27232", +"S c #B37538", +"T c #AB6A30", +"U c #A76229", +"V c #AD672C", +"W c #A9672B", +"X c #A5672C", +"Y c #A3662D", +"Z c #A1662E", +"` c #A66B31", +" . c #AA6E30", +".. c #A66928", +"+. c #A05F1D", +"@. c #AE6B25", +"#. c #B9762F", +"$. c #B6742A", +"%. c #B77529", +"&. c #AE6C20", +"*. c #AE7121", +"=. c #A66718", +"-. c #B37427", +";. c #BB792D", +">. c #AB691F", +",. c #AB671E", +"'. c #B57128", +"). c #B06C23", +"!. c #A56122", +"~. c #A9642B", +"{. c #A56029", +"]. c #A76324", +"^. c #AE6D1D", +"/. c #A4611A", +"(. c #A35F22", +"_. c #A7641E", +":. c #B3702A", +"<. c #A7641D", +"[. c #A15F15", +"}. c #AF6E1E", +"|. c #AA681E", +"1. c #B16E27", +"2. c #B7752B", +"3. c #B67428", +"4. c #A56319", +"5. c #AD6A24", +"6. c #9E5B17", +"7. c #AC6925", +"8. c #A4601F", +"9. c #A2641B", +"0. c #A66722", +"a. c #AD6C2A", +"b. c #A96526", +"c. c #A05B1A", +"d. c #A9631D", +"e. c #B36B1F", +"f. c #AC6515", +"g. c #B36C1E", +"h. c #B66F21", +"i. c #B97125", +"j. c #B76F23", +"k. c #A96117", +"l. c #AF671D", +"m. c #BA7228", +"n. c #B77020", +"o. c #AC6B2B", +"p. c #B27131", +"q. c #B77320", +"r. c #A76A31", +"s. c #A96C36", +"t. c #A66932", +"u. c #A66629", +"v. c #AE6D2D", +"w. c #A4632B", +"x. c #A56528", +"y. c #AE6E2E", +"z. c #9C5D1A", +"A. c #AD6E29", +"B. c #AA6B28", +"C. c #A26224", +"D. c #9D5D16", +"E. c #B07029", +"F. c #B3732C", +"G. c #B97931", +"H. c #B6762C", +"I. c #B07026", +"J. c #B6772A", +"K. c #AB6C1F", +"L. c #AF6C25", +"M. c #AD6A23", +"N. c #B5722B", +"O. c #AD6B2F", +"P. c #A05E22", +"Q. c #A46226", +"R. c #A46225", +"S. c #AB6A2A", +"T. c #A36220", +"U. c #AA6A22", +"V. c #AB6B24", +"W. c #A76622", +"X. c #A3621E", +"Y. c #A1601E", +"Z. c #A46321", +"`. c #A76626", +" + c #AC6923", +".+ c #AB6726", +"++ c #B5722C", +"@+ c #B8762C", +"#+ c #B47436", +"$+ c #A0611E", +"%+ c #B1722F", +"&+ c #A46522", +"*+ c #A86926", +"=+ c #9F5F1F", +"-+ c #AA6A2C", +";+ c #A66523", +">+ c #A2611F", +",+ c #AB6824", +"'+ c #AA6520", +")+ c #A46019", +"!+ c #B16B25", +"~+ c #B67123", +"{+ c #B26D1F", +"]+ c #B06B1D", +"^+ c #B16C1E", +"/+ c #B36E20", +"(+ c #B77224", +"_+ c #B97426", +":+ c #AE6D2B", +"<+ c #B3722E", +"[+ c #B57022", +"}+ c #B07030", +"|+ c #A86B32", +"1+ c #AA6D37", +"2+ c #A56831", +"3+ c #A46329", +"4+ c #AB692C", +"5+ c #A8672F", +"6+ c #A9692C", +"7+ c #B17131", +"8+ c #A26320", +"9+ c #B0712C", +"0+ c #AD6E2B", +"a+ c #B47434", +"b+ c #A66628", +"c+ c #9E5E17", +"d+ c #AE6E27", +"e+ c #AF6F28", +"f+ c #B7772F", +"g+ c #B57629", +"h+ c #A96A1D", +"i+ c #AE6B24", +"j+ c #B37029", +"k+ c #A26024", +"l+ c #A86629", +"m+ c #AA6929", +"n+ c #AF6E2E", +"o+ c #AC6C25", +"p+ c #AD6D26", +"q+ c #AB6A26", +"r+ c #A66521", +"s+ c #A56422", +"t+ c #A76624", +"u+ c #AA6625", +"v+ c #A86423", +"w+ c #AC6827", +"x+ c #B4712B", +"y+ c #A96929", +"z+ c #AC6D2A", +"A+ c #A76825", +"B+ c #A66724", +"C+ c #A26222", +"D+ c #A96826", +"E+ c #A56420", +"F+ c #AB6621", +"G+ c #A5611A", +"H+ c #B46F21", +"I+ c #B4742D", +"J+ c #B36E23", +"K+ c #B7742D", +"L+ c #B07032", +"M+ c #A76A33", +"N+ c #A96B38", +"O+ c #A46731", +"P+ c #A26129", +"Q+ c #A8662C", +"R+ c #A36421", +"S+ c #AC6D28", +"T+ c #AB6C29", +"U+ c #AF6F2F", +"V+ c #A56527", +"W+ c #A06019", +"X+ c #AA6A23", +"Y+ c #B4742C", +"Z+ c #B7772D", +"`+ c #B17127", +" @ c #B47528", +".@ c #A6671A", +"+@ c #AC6A2E", +"@@ c #AD6B2E", +"#@ c #AC6B29", +"$@ c #A86820", +"%@ c #A86723", +"&@ c #B67426", +"*@ c #A56623", +"=@ c #AD6C28", +"-@ c #AC6821", +";@ c #A6621B", +">@ c #AA641C", +",@ c #BB7628", +"'@ c #AE691B", +")@ c #B07028", +"!@ c #B5752D", +"~@ c #B67028", +"{@ c #B87531", +"]@ c #AE6E30", +"^@ c #A5682F", +"/@ c #A66933", +"(@ c #A1642E", +"_@ c #A1602A", +":@ c #A86530", +"<@ c #A7662E", +"[@ c #AA6A2D", +"}@ c #AC6C2C", +"|@ c #A96A25", +"1@ c #AB6B2B", +"2@ c #A4641D", +"3@ c #A76720", +"4@ c #B9792F", +"5@ c #B37329", +"6@ c #B27026", +"7@ c #AE6C22", +"8@ c #AC6A20", +"9@ c #B16F25", +"0@ c #AD6B21", +"a@ c #A2611D", +"b@ c #A4641C", +"c@ c #A86821", +"d@ c #A86727", +"e@ c #A86521", +"f@ c #AD6E27", +"g@ c #A46520", +"h@ c #A46424", +"i@ c #A1621F", +"j@ c #A86924", +"k@ c #A5661F", +"l@ c #B1702C", +"m@ c #AE6A23", +"n@ c #A8641B", +"o@ c #AB651D", +"p@ c #B87325", +"q@ c #BD782A", +"r@ c #AD681A", +"s@ c #B9732D", +"t@ c #BA7731", +"u@ c #AD6D2D", +"v@ c #A26628", +"w@ c #A2652C", +"x@ c #9F622B", +"y@ c #A05F29", +"z@ c #AA6732", +"A@ c #AA6931", +"B@ c #AE6E31", +"C@ c #AA6B26", +"D@ c #BC7C32", +"E@ c #B5752B", +"F@ c #A8691C", +"G@ c #B37125", +"H@ c #AD6B1F", +"I@ c #B47226", +"J@ c #A36222", +"K@ c #A46323", +"L@ c #B06F2F", +"M@ c #AE6D29", +"N@ c #A6661F", +"O@ c #A96922", +"P@ c #A5651D", +"Q@ c #B06D27", +"R@ c #BA782A", +"S@ c #B87727", +"T@ c #B17328", +"U@ c #A86922", +"V@ c #A66626", +"W@ c #A96A23", +"X@ c #A3651A", +"Y@ c #AF6B22", +"Z@ c #AD681D", +"`@ c #B46F24", +" # c #B1712A", +".# c #BB752D", +"+# c #BB7831", +"@# c #AE6F2A", +"## c #A26725", +"$# c #A26627", +"%# c #9F6327", +"&# c #A05F27", +"*# c #A96631", +"=# c #A6652D", +"-# c #AB6B2E", +";# c #AE6F2C", +"># c #A56621", +",# c #A76727", +"'# c #AB6B2D", +")# c #B6762E", +"!# c #AF6D21", +"~# c #B57327", +"{# c #A26121", +"]# c #B06F2D", +"^# c #A96921", +"/# c #AA6925", +"(# c #AF6C26", +"_# c #BA782E", +":# c #BB792B", +"<# c #B87725", +"[# c #B27525", +"}# c #AD6F26", +"|# c #A9692B", +"1# c #AD6D2F", +"2# c #A86A21", +"3# c #A46717", +"4# c #AB6B23", +"5# c #A7671F", +"6# c #AC681D", +"7# c #AE691E", +"8# c #B57023", +"9# c #B97429", +"0# c #A66C23", +"a# c #A66B27", +"b# c #A06425", +"c# c #9E5E21", +"d# c #A56329", +"e# c #A16028", +"f# c #A0611C", +"g# c #A96A27", +"h# c #A36323", +"i# c #BA7A30", +"j# c #AC6D20", +"k# c #AB691B", +"l# c #B06E20", +"m# c #B16F21", +"n# c #B57325", +"o# c #B37123", +"p# c #AC6C24", +"q# c #A86725", +"r# c #B97828", +"s# c #B57422", +"t# c #AF7221", +"u# c #AF7126", +"v# c #A7691E", +"w# c #A76A19", +"x# c #A5651B", +"y# c #B06C21", +"z# c #AD691E", +"A# c #B06B1E", +"B# c #B67124", +"C# c #B37528", +"D# c #AA7124", +"E# c #AA7027", +"F# c #A26723", +"G# c #9D5D1F", +"H# c #A2631E", +"I# c #A56525", +"J# c #B8782E", +"K# c #AD6D23", +"L# c #AD6E21", +"M# c #A86618", +"N# c #B47224", +"O# c #B06F2B", +"P# c #A96824", +"Q# c #A96828", +"R# c #A8661A", +"S# c #B6732C", +"T# c #B2711F", +"U# c #AC6F1E", +"V# c #AF7124", +"W# c #A3641F", +"X# c #AC6C2E", +"Y# c #A06022", +"Z# c #AF702B", +"`# c #A6681B", +" $ c #AA6D1C", +".$ c #B3732B", +"+$ c #A4641A", +"@$ c #AE6B1D", +"#$ c #B77225", +"$$ c #AB6D22", +"%$ c #B07124", +"&$ c #B47025", +"*$ c #B9752A", +"=$ c #A5672A", +"-$ c #A0652B", +";$ c #A06428", +">$ c #9C6021", +",$ c #A56825", +"'$ c #A36721", +")$ c #A66720", +"!$ c #A6631F", +"~$ c #B47323", +"{$ c #B06F1F", +"]$ c #A96816", +"^$ c #AF6E1C", +"/$ c #AA6917", +"($ c #B67525", +"_$ c #AD6C18", +":$ c #AA6720", +"<$ c #AE6A2D", +"[$ c #AE6A2B", +"}$ c #A5621C", +"|$ c #B0692B", +"1$ c #B06C25", +"2$ c #AF6D23", +"3$ c #AE6926", +"4$ c #B46F22", +"5$ c #B97522", +"6$ c #B46E26", +"7$ c #B66F31", +"8$ c #A76020", +"9$ c #B36D25", +"0$ c #AF6A1C", +"a$ c #B97427", +"b$ c #B36D28", +"c$ c #AE7025", +"d$ c #AE6D33", +"e$ c #A26127", +"f$ c #AD6F24", +"g$ c #B16D26", +"h$ c #A6611C", +"i$ c #B26C26", +"j$ c #AB6619", +"k$ c #BC7523", +"l$ c #BF7921", +"m$ c #B06C19", +"n$ c #B16D1A", +"o$ c #B26E1B", +"p$ c #B36F1C", +"q$ c #B5711E", +"r$ c #B87421", +"s$ c #B36F1E", +"t$ c #AA6B24", +"u$ c #AC6E23", +"v$ c #B27024", +"w$ c #B87429", +"x$ c #B7732C", +"y$ c #A46629", +"z$ c #A1642B", +"A$ c #A16529", +"B$ c #A06225", +"C$ c #9D601F", +"D$ c #A1601C", +"E$ c #A3601C", +"F$ c #AB6822", +"G$ c #AC6B1B", +"H$ c #AE6D1B", +"I$ c #A86717", +"J$ c #B37222", +"K$ c #AC6B17", +"L$ c #B06C2D", +"M$ c #B17020", +"N$ c #AF682A", +"O$ c #A36326", +"P$ c #B6721D", +"Q$ c #B16B23", +"R$ c #B46D2F", +"S$ c #A55E1E", +"T$ c #B16D1C", +"U$ c #BC772A", +"V$ c #B7712B", +"W$ c #AE7120", +"X$ c #A05F25", +"Y$ c #A96B20", +"Z$ c #BA7321", +"`$ c #BB751F", +" % c #B4701D", +".% c #B6721F", +"+% c #B47123", +"@% c #B87328", +"#% c #B6722B", +"$% c #A36627", +"%% c #AA6C33", +"&% c #AB6D32", +"*% c #995C1D", +"=% c #965513", +"-% c #AB6728", +";% c #AC682B", +">% c #A15E1A", +",% c #AA6721", +"'% c #AA6919", +")% c #B27022", +"!% c #A66416", +"~% c #B97729", +"{% c #AF6B2E", +"]% c #B16D2E", +"^% c #A96620", +"/% c #AE6729", +"(% c #A16124", +"_% c #A45F26", +":% c #B36F1A", +"<% c #B16A2A", +"[% c #A45D1D", +"}% c #B26E1D", +"|% c #BF7A2D", +"1% c #BB752F", +"2% c #B07323", +"3% c #A76729", +"4% c #9F5F22", +"5% c #A76920", +"6% c #B36F28", +"7% c #AB6618", +"8% c #B97220", +"9% c #B7711C", +"0% c #B57224", +"a% c #B56F27", +"b% c #A26429", +"c% c #B1733A", +"d% c #B8773D", +"e% c #9E5E20", +"f% c #B57432", +"g% c #AF6E2A", +"h% c #945010", +"i% c #AB672A", +"j% c #A4611D", +"k% c #A9671B", +"l% c #BA7929", +"m% c #B06C2F", +"n% c #AC6527", +"o% c #A25D24", +"p% c #BB7629", +"q% c #B26F18", +"r% c #A45D1B", +"s% c #B36E21", +"t% c #BF7A2C", +"u% c #AE6E26", +"v% c #A56424", +"w% c #A36124", +"x% c #A46017", +"y% c #B26D20", +"z% c #BA7323", +"A% c #AF6B18", +"B% c #A8661C", +"C% c #B47122", +"D% c #AD6823", +"E% c #AD6C32", +"F% c #B8783A", +"G% c #BA7935", +"H% c #B7742E", +"I% c #9A5713", +"J% c #B36E2D", +"K% c #AD6729", +"L% c #A9671D", +"M% c #AD6C1C", +"N% c #AD6B1D", +"O% c #B57424", +"P% c #B1701C", +"Q% c #AF6B2C", +"R% c #AA6325", +"S% c #AF6B24", +"T% c #A06023", +"U% c #B26B29", +"V% c #A55E1C", +"W% c #BC7729", +"X% c #B77129", +"Y% c #A66221", +"Z% c #A96524", +"`% c #A35F14", +" & c #B06C1B", +".& c #BC7525", +"+& c #AD6916", +"@& c #B87526", +"#& c #B36C1C", +"$& c #B66D20", +"%& c #B56D23", +"&& c #A8682B", +"*& c #A26023", +"=& c #B1702E", +"-& c #A66219", +";& c #B5702B", +">& c #B16B26", +",& c #A8651E", +"'& c #AA681C", +")& c #AC6A1C", +"!& c #B47321", +"~& c #B4731F", +"{& c #AD692A", +"]& c #AC6A1E", +"^& c #A25F19", +"/& c #A96224", +"(& c #AD6922", +"_& c #A26225", +":& c #A56027", +"<& c #B87326", +"[& c #B16E15", +"}& c #B36C2A", +"|& c #A7611C", +"1& c #B16D18", +"2& c #BA7625", +"3& c #AE6A29", +"4& c #AE6A21", +"5& c #A15E10", +"6& c #BD7628", +"7& c #B26B1D", +"8& c #AE6A17", +"9& c #B67227", +"0& c #B77425", +"a& c #B26B1B", +"b& c #B46B1E", +"c& c #B46C20", +"d& c #AF6923", +"e& c #B37021", +"f& c #B16E20", +"g& c #A56120", +"h& c #B16E2A", +"i& c #B77622", +"j& c #AB6A1A", +"k& c #A86123", +"l& c #AD6A12", +"m& c #AC6719", +"n& c #A9631E", +"o& c #B26E19", +"p& c #B26D22", +"q& c #B26D28", +"r& c #B16C27", +"s& c #A5601B", +"t& c #B16C29", +"u& c #A66120", +"v& c #AC6628", +"w& c #A66022", +"x& c #AF6B20", +"y& c #BC7527", +"z& c #AE661A", +"A& c #B77322", +"B& c #B2691A", +"C& c #B46B1C", +"D& c #B46A1F", +"E& c #B4742A", +"F& c #C38133", +"G& c #B77423", +"H& c #B06D1C", +"I& c #B97524", +"J& c #B97826", +"K& c #AB6A18", +"L& c #B87723", +"M& c #AA6627", +"N& c #AA661F", +"O& c #AA652C", +"P& c #AD6825", +"Q& c #AA670D", +"R& c #AA6517", +"S& c #AA641E", +"T& c #BA7623", +"U& c #B16C21", +"V& c #A25D1A", +"W& c #A86224", +"X& c #A05A1E", +"Y& c #A15E0E", +"Z& c #BA7325", +"`& c #AB6317", +" * c #AC6815", +".* c #B57120", +"+* c #B06D29", +"@* c #B6732D", +"#* c #BE7B2D", +"$* c #B87620", +"%* c #B87028", +"&* c #B9702C", +"** c #A76614", +"=* c #A76616", +"-* c #B3721E", +";* c #B3702C", +">* c #B27228", +",* c #BF7C2D", +"'* c #BF7B2A", +")* c #AC661E", +"!* c #AD6628", +"~* c #AC6525", +"{* c #A8621A", +"]* c #AB6520", +"^* c #AD6722", +"/* c #B56E20", +"(* c #BA741C", +"_* c #B9761D", +":* c #B77426", +"<* c #B4702F", +"[* c #A36019", +"}* c #A25F1B", +"|* c #A76420", +"1* c #A76318", +"2* c #A96618", +"3* c #B87423", +"4* c #B46D1B", +"5* c #AA6410", +"6* c #AA6612", +"7* c #BA7527", +"8* c #BB762B", +"9* c #B0691B", +"0* c #B4701F", +"a* c #B16E1F", +"b* c #AD6920", +"c* c #A15D1E", +"d* c #B4721E", +"e* c #AF6B16", +"f* c #B76E2A", +"g* c #AC6B19", +"h* c #A96818", +"i* c #B37022", +"j* c #BC792A", +"k* c #BD7928", +"l* c #B4701B", +"m* c #AB6424", +"n* c #AB661B", +"o* c #A7651B", +"p* c #B46D1F", +"q* c #B67325", +"r* c #B36F2E", +"s* c #A5621B", +"t* c #A15E17", +"u* c #AA661B", +"v* c #AA6719", +"w* c #AD6713", +"x* c #AB6713", +"y* c #AF6A1F", +"z* c #AE6719", +"A* c #B67221", +"B* c #B26F20", +"C* c #A05D19", +"D* c #B5731F", +"E* c #B1701E", +"F* c #B4712D", +"G* c #A5651E", +"H* c #AD6D25", +"I* c #B26F21", +"J* c #B5711C", +"K* c #A86121", +"L* c #A7611B", +"M* c #AC6722", +"N* c #AE6823", +"O* c #B8721A", +"P* c #B8751C", +"Q* c #B16D2C", +"R* c #A26016", +"S* c #B16B16", +"T* c #AC6813", +"U* c #AD681B", +"V* c #A66114", +"W* c #B0681C", +"X* c #B26F1E", +"Y* c #AC691B", +"Z* c #B77521", +"`* c #A96814", +" = c #A2621B", +".= c #B67324", +"+= c #B6731C", +"@= c #AD6626", +"#= c #AE6725", +"$= c #A76119", +"%= c #AA6723", +"&= c #9F5C18", +"*= c #AE6924", +"== c #AF6924", +"-= c #B67018", +";= c #AE6A19", +">= c #B36C1A", +",= c #B26C17", +"'= c #AA6615", +")= c #A35E11", +"!= c #B3711D", +"~= c #AF6C1D", +"{= c #B47120", +"]= c #AA6313", +"^= c #AC6517", +"/= c #B06F1D", +"(= c #A25E1D", +"_= c #A86713", +":= c #AF6F25", +"<= c #B57223", +"[= c #BB7724", +"}= c #B46D2B", +"|= c #B16A28", +"1= c #AA6518", +"2= c #9D5A16", +"3= c #A05D17", +"4= c #AF6A25", +"5= c #B06A25", +"6= c #B46E16", +"7= c #B7741B", +"8= c #A6631C", +"9= c #AB681A", +"0= c #B36D18", +"a= c #B8741F", +"b= c #A76313", +"c= c #AE6B27", +"d= c #B87123", +"e= c #B2701C", +"f= c #B16E1D", +"g= c #AB6714", +"h= c #AC6513", +"i= c #AF6816", +"j= c #AF6C28", +"k= c #AB6B21", +"l= c #BC7825", +"m= c #B7702E", +"n= c #B26C27", +"o= c #A86315", +"p= c #B26C14", +"q= c #B6731A", +"r= c #A76517", +"s= c #B16D22", +"t= c #AD6A13", +"u= c #BC7922", +"v= c #B06E18", +"w= c #AF6D19", +"x= c #BA741F", +"y= c #AB6A16", +"z= c #B06C17", +"A= c #A76519", +"B= c #B16B13", +"C= c #B57219", +"D= c #B06D1F", +"E= c #BC7A2C", +"F= c #A36115", +"G= c #AE6A1F", +"H= c #B16A18", +"I= c #B8751E", +"J= c #AC6913", +"K= c #AA670F", +"L= c #B36B21", +"M= c #B56D21", +"N= c #AF6D17", +"O= c #AC6A14", +"P= c #BF7923", +"Q= c #A66515", +"R= c #A2621A", +"S= c #A06016", +"T= c #AF6C1E", +"U= c #BA771C", +"V= c #AC6620", +"W= c #A56317", +"X= c #A05E14", +"Y= c #B06A13", +"Z= c #A35F1E", +"`= c #BF7D2F", +" - c #A26014", +".- c #A9651A", +"+- c #A86517", +"@- c #AD6918", +"#- c #A7610D", +"$- c #BB7722", +"%- c #AC6911", +"&- c #A66309", +"*- c #B47116", +"=- c #A8632A", +"-- c #AA6429", +";- c #AC671C", +">- c #B16C1F", +",- c #AB6716", +"'- c #BE792C", +")- c #A45F14", +"!- c #AF6921", +"~- c #C27B2D", +"{- c #BE7729", +"]- c #BE7A25", +"^- c #A86318", +"/- c #9F5D12", +"(- c #A56315", +"_- c #BD7B2F", +":- c #A4640E", +"<- c #AE6E17", +"[- c #C07C31", +"}- c #C88237", +"|- c #AE661C", +"1- c #AB6819", +"2- c #B36D17", +"3- c #B97520", +"4- c #A25D22", +"5- c #A35D22", +"6- c #AA651A", +"7- c #BA752A", +"8- c #BA7528", +"9- c #AC6817", +"0- c #C27D30", +"a- c #A56013", +"b- c #BF782A", +"c- c #BC7823", +"d- c #A96719", +"e- c #BC7A2E", +"f- c #BE7A2F", +"g- c #C37E33", +"h- c #AD651B", +"i- c #AC641A", +"j- c #AD6A1C", +"k- c #AA6718", +"l- c #AE6813", +"m- c #B16B15", +"n- c #AE6A15", +"o- c #AB6511", +"p- c #A46023", +"q- c #A45E20", +"r- c #BB7726", +"s- c #C47F32", +"t- c #B06B20", +"u- c #A66116", +"v- c #BA742C", +"w- c #B67229", +"x- c #AC671A", +"y- c #BB7426", +"z- c #A56411", +"A- c #AF6E1A", +"B- c #BF7C2E", +"C- c #C07B2E", +"D- c #AD6519", +"E- c #AC6418", +"F- c #AF6914", +"G- c #B7731E", +"H- c #AE6811", +"I- c #A5601F", +"J- c #B67126", +"K- c #AF6B1A", +"L- c #A86413", +"M- c #A96419", +"N- c #B8722A", +"O- c #B36F26", +"P- c #BD7926", +"Q- c #C38032", +"R- c #AF6A1D", +"S- c #A66418", +"T- c #B06B11", +"U- c #9F5A15", +"V- c #A76217", +"W- c #BD782B", +"X- c #B97127", +"Y- c #BF7B28", +"Z- c #AA681A", +"`- c #C58233", +" ; c #AE6B1C", +".; c #B26C16", +"+; c #9E5A13", +"@; c #A9631B", +"#; c #B26F29", +"$; c #B66E24", +"%; c #C07C29", +"&; c #A05F10", +"*; c #BA7728", +"=; c #C48132", +"-; c #AD6618", +";; c #B06D1E", +">; c #B7711B", +",; c #A86410", +"'; c #BA7621", +"); c #B77227", +"!; c #A7621D", +"~; c #AE6820", +"{; c #AD6D16", +"]; c #BA7A23", +"^; c #9C5B0A", +"/; c #BD7A29", +"(; c #C78332", +"_; c #AD6616", +":; c #A96511", +"<; c #A46015", +"[; c #C17C2F", +"}; c #B5722E", +"|; c #BD752D", +"1; c #C17D2A", +"2; c #A15C0F", +"3; c #AF6F18", +"4; c #A25F18", +"5; c #BB7A28", +"6; c #BF7F28", +"7; c #B77624", +"8; c #C07D2C", +"9; c #CA8635", +"0; c #AF6818", +"a; c #A35F0B", +"b; c #A6600C", +"c; c #BC7620", +"d; c #B26A20", +"e; c #A1611A", +"f; c #AA6A20", +"g; c #B87524", +"h; c #AD6C1A", +"i; c #A66717", +"j; c #A7671D", +"k; c #B2722B", +"l; c #9E5A12", +"m; c #A76215", +"n; c #A86316", +"o; c #AB6422", +"p; c #9E5813", +"q; c #BE7C30", +"r; c #A05E13", +"s; c #AD6914", +"t; c #B67420", +"u; c #A9691F", +"v; c #A05C13", +"w; c #A25C16", +"x; c #A96514", +"y; c #A15F13", +"z; c #AE6B14", +"A; c #AE6B13", +"B; c #AF6C13", +"C; c #B97627", +"D; c #B97625", +"E; c #AF6F27", +"F; c #9C5C15", +"G; c #A3631C", +"H; c #A56118", +"I; c #A96417", +"J; c #BC7827", +"K; c #AF6C15", +"L; c #B06D16", +"M; c #BB7827", +"N; c #B87622", +"O; c #A76818", +"P; c #9F5F18", +"Q; c #AD6721", +"R; c #BE7A29", +"S; c #B4711A", +"T; c #9F5E1A", +"U; c #9C5B19", +"V; c #9F5E1E", +"W; c #A86516", +"X; c #A86919", +"Y; c #AC681F", +"Z; c #B46E28", +"`; c #B06A24", +" > c #9E5D19", +".> c #995818", +"+> c #A36125", +"@> c #A66427", +"#> c #B37230", +"$> c #AD6E1E", +"%> c #B37019", +"&> c #B6702A", +"*> c #BC7920", +"=> c #C17F33", +"-> c #A05F1B", +";> c #9B5A1A", +">> c #A9672D", +",> c #A8662A", +"'> c #B17030", +")> c #B8752F", +"!> c #B47027", +"~> c #B3701F", +"{> c #B37424", +"]> c #A66113", +"^> c #C58337", +"/> c #9D5C1C", +"(> c #A6632C", +"_> c #A66525", +":> c #AF6C1B", +"<> c #B87929", +"[> c #B6762F", +"}> c #B7732A", +"|> c #B37017", +"1> c #A96416", +"2> c #B06A22", +"3> c #C9863A", +"4> c #9D5C1A", +"5> c #B07229", +"6> c #B17222", +"7> c #B57221", +"8> c #BE792B", +"9> c #AC6C15", +"0> c #AB6B13", +"a> c #AC6D11", +"b> c #BF7E2A", +"c> c #B06B26", +"d> c #B3711B", +"e> c #B5741A", +"f> c #AF6F17", +"g> c #B56F2A", +"h> c #AE6F20", +"i> c #B2711D", +"j> c #B9772D", +"k> c #AD6D13", +"l> c #B06F1B", +"m> c #BB7A26", +"n> c #B27427", +"o> c #B27117", +"p> c #B07019", +"q> c #AC6D1D", +"r> c #B77636", +"s> c #B9732E", +"t> c #AA6927", +"u> c #A16123", +"v> c #AA6B1E", +"w> c #AE6D19", +"x> c #BC762E", +"y> c #B57420", +"z> c #B17326", +"A> c #AC6829", +"B> c #BA7720", +"C> c #AB6913", +"D> c #AF6D16", +"E> c #AC6D1E", +"F> c #BF7933", +"G> c #B07225", +"H> c #AF702D", +"I> c #B9761F", +"J> c #A8650F", +"K> c #AB6915", +"L> c #AE6C16", +"M> c #A8691A", +"N> c #AB6A28", +"O> c #B57126", +"P> c #BD7C2C", +"Q> c #B26E2D", +"R> c #AD682D", +"S> c #BA742F", +"T> c #AF6B2A", +"U> c #B7741D", +"V> c #B16E17", +"W> c #AE6C18", +"X> c #A16119", +"Y> c #AC6D26", +"Z> c #AB6C27", +"`> c #C07C2B", +" , c #BF7E2E", +"., c #BE7C2E", +"+, c #B06C2B", +"@, c #BA7927", +"#, c #B26F2B", +"$, c #B77626", +"%, c #B5721B", +"&, c #A66210", +"*, c #AD671F", +"=, c #B16F1B", +"-, c #A6661E", +";, c #B6732F", +">, c #BE7D2D", +",, c #C07E34", +"', c #BE7D29", +"), c #AA6321", +"!, c #BB772E", +"~, c #C17F31", +"{, c #B07227", +"], c #AC6C22", +"^, c #AA6C21", +"/, c #AB6D24", +"(, c #BB7A2A", +"_, c #BF7D31", +":, c #C07E32", +"<, c #C48238", +"[, c #BC7A30", +"}, c #BC7B2B", +"|, c #C1812A", +"1, c #A65F1F", +"2, c #C07C33", +"3, c #C98638", +"4, c #B16E13", +"5, c #BD782D", +"6, c #BA742E", +"7, c #AE6822", +"8, c #B57633", +"9, c #AA6D2E", +"0, c #B27330", +"a, c #B67523", +"b, c #BD7C28", +"c, c #B77720", +"d, c #A96913", +"e, c #BC7B27", +"f, c #C48234", +"g, c #B8752E", +"h, c #B97630", +"i, c #BF7D33", +"j, c #B9732B", +"k, c #A56829", +"l, c #C48236", +"m, c #C17F35", +"n, c #9E6122", +"o, c #C38135", +"p, c #BD7B2D", +"q, c #9A5D1E", +"r, c #A36325", +"s, c #A16121", +"t, c #B37220", +"u, c #BE7C32", +"v, c #B67521", +"w, c #B97824", +"x, c #BD7B31", +"y, c #9C5F20", +"z, c #A66018", +"A, c #A06324", +"B, c #B37431", +"C, c #A76823", +"D, c #BC772C", +"E, c #A55F17", +"F, c #A46728", +"G, c #AF6F31", +"H, c #B67734", +"I, c #B67732", +"J, c #BC7932", +"K, c #B97534", +"L, c #BD7A33", +"M, c #A76A2B", +"N, c #B47530", +"O, c #C0813C", +"P, c #B36F30", +"Q, c #BA7637", +"R, c #B77332", +"S, c #BF7931", +"T, c #B2722A", +"U, c #B06B28", +"V, c #B16C2B", +"W, c #AC6726", +"X, c #B67727", +"Y, c #B8792A", +"Z, c #B97A2B", +"`, c #BB772C", +" ' c #B67233", +".' c #BE7D2B", +"+' c #B36E2B", +"@' c #B46E30", +"#' c #B06A2C", +"$' c #AD6827", +"%' c #AF6A27", +"&' c #B67728", +"*' c #BA7B2C", +"=' c #BA762B", +"-' c #BD7C2A", +";' c #B26E31", +">' c #B8792C", +",' c #BA7B2E", +"'' c #BA7729", +")' c #BC7B29", +"!' c #AD692C", +"~' c #BB7C2F", +"{' c #C07F2D", +"]' c #9F5E1C", +"^' c #A16020", +"/' c #AA682C", +"(' c #AF6E2C", +"_' c #B97628", +":' c #C38230", +"<' c #B17129", +"[' c #A46426", +"}' c #B1722D", +"|' c #B77930", +"1' c #B87830", +"2' c #BD7D33", +"3' c #B87527", +"4' c #C07D36", +"5' c #C28131", +"6' c #B3742D", +"7' c #B0712A", +"8' c #B97932", +"9' c #BE7E36", +"0' c #C17E37", +"a' c #BD7A36", +"b' c #AC6C2F", +"c' c #A8682A", +"d' c #B2712D", +"e' c #C3803A", +"f' c #C17E3A", +"g' c #A15E18", +"h' c #B06919", +"i' c #AE7132", +"j' c #AE692E", +"k' c #B67231", +"l' c #C1802C", +"m' c #B4741D", +"n' c #C18137", +"o' c #BB7B31", +"p' c #9C5E15", +"q' c #A96B22", +"r' c #AB651F", +"s' c #A06018", +"t' c #A96C2B", +"u' c #A3672B", +"v' c #A4682C", +"w' c #AB6E2F", +"x' c #B26E2F", +"y' c #AE6E16", +"z' c #BE7E34", +"A' c #A1621B", +"B' c #AE6717", +"C' c #A16526", +"D' c #A96910", +"E' c #AD6D15", +"F' c #A76821", +"G' c #B87121", +"H' c #A3651C", +"I' c #A1651F", +"J' c #A16421", +"K' c #B3731B", +"L' c #AC6C14", +"M' c #C08036", +"N' c #A76416", +"O' c #B1691D", +"P' c #A6681F", +"Q' c #B2721A", +"R' c #C28238", +"S' c #BD7D26", +"T' c #A66217", +"U' c #AA641F", +"V' c #A76916", +"W' c #AA6D1D", +"X' c #AF6826", +"Y' c #BA7733", +"Z' c #B1711A", +"`' c #BD7D25", +" ) c #B9731D", +".) c #B97721", +"+) c #AE701D", +"@) c #B26D2A", +"#) c #B16728", +"$) c #BE7B37", +"%) c #B77430", +"&) c #BD7A34", +"*) c #B9791F", +"=) c #A9651C", +"-) c #A8621D", +";) c #BE7832", +">) c #BC7428", +",) c #B6701A", +"') c #A76711", +")) c #B0721D", +"!) c #AF7021", +"~) c #B66F2D", +"{) c #B26829", +"]) c #BA7635", +"^) c #BC7933", +"/) c #B97632", +"() c #C5853B", +"_) c #B4741A", +":) c #AA6A2A", +"<) c #C27C36", +"[) c #BF772B", +"}) c #AE7019", +"|) c #BA7C29", +"1) c #B17223", +"2) c #BA762F", +"3) c #A25E13", +"4) c #AB6720", +"5) c #A8681E", +"6) c #B06929", +"7) c #B46E19", +"8) c #B9731E", +"9) c #A86425", +"0) c #AF711E", +"a) c #AE6F22", +"b) c #BB7730", +"c) c #AC6621", +"d) c #AF6828", +"e) c #AE6E24", +"f) c #B9742F", +"g) c #B26B19", +"h) c #B8721D", +"i) c #B06E1A", +"j) c #BB7B34", +"k) c #BD7D36", +"l) c #B46F2A", +"m) c #AE6715", +"n) c #C27F38", +"o) c #BB7A38", +"p) c #B26E25", +"q) c #B16F19", +"r) c #AC6A16", +"s) c #C27F39", +"t) c #B57434", +"u) c #B77634", +"v) c #C07B30", +"w) c #B16F18", +"x) c #AD6B17", +"y) c #BF7C36", +"z) c #C07D37", +"A) c #B47333", +"B) c #B77632", +"C) c #A56212", +"D) c #C47F31", +"E) c #AE6B1A", +"F) c #B66F1D", +"G) c #A3610C", +"H) c #C37F2C", +"I) c #AB6817", +"J) c #A96610", +"K) c #AD6614", +"L) c #B8711F", +"M) c #A05A13", +"N) c #A15D13", +"O) c #A3631B", +"P) c #BA7937", +"Q) c #B2712F", +"R) c #B5752E", +"S) c #A35F16", +"T) c #BC782D", +"U) c #BF7828", +". + @ # $ % & * = - ; > , ' ) ! ~ { ] ^ / ( _ : < [ } | 1 2 3 4 5 6 7 8 9 0 a b c d e f ] g h i j k l m n o o p q 2 r s t u g v w x y z A B C D E F G H I I J K L M N N M L K J I I H G F E D C B A z y x w v g u t s r 2 q p o o n m l k j i h g ] f e d c b a 0 9 8 7 6 5 4 3 2 1 | } [ < : _ ( / ^ ] { ~ ! ) ' , > ; - = * & % $ # @ + . ", +"O + P Q R S & T U V W X Y Z ` ...+.@.#./ $._ : %.&.*.=.-.;.>.,.'.).!.~.{.].a ^./.(._.:.:.h h <.[.j }.b |.e _.1.2.3.3.%.4.h 5.6.7.8.9.0.a.b.c.d.e.f.g.h.i.j.L k.l.m.n.n.m.l.k.L j.i.h.g.f.e.d.c.b.a.0.9.8.7.6.5.h 4.%.3.3.2.1._.e |.b }.j [.<.h h :.:._.(./.^.a ].{.~.!.).'.,.>.;.-.=.*.&.%.: _ $./ #.@.+... .` Z Y X W V U T & S R Q P + O ", +"o.p.q.2 $ r.s.t.u.v.w.x.y.z.A.B.R C.D.E.F.G.H.I.J.K.L./ / M.M.1.N.N.O.P.Q.R.S.p.T.T.U.V.V.W.X.Y.Z.`. +w .+b.B ++@+%.#+y.$+%+&+*+=+-+;+>+{ ,+'+)+D !+~+{+]+{+{+^+/+(+_+_+(+/+^+{+{+]+{+~+!+D )+'+,+{ >+;+-+=+*+&+%+$+y.#+%.@+++B b..+w +`.Z.Y.X.W.V.V.U.T.T.p.S.R.Q.P.O.N.N.1.M.M./ / L.K.J.I.H.G.F.E.D.C.R B.A.z.y.x.w.v.u.t.s.r.$ 2 q.p.o.", +":+<+[+@+}+|+1+2+3+4+5+6+7+8+9+0+a+b+c+d+e+f+H.I.g+h+] / ] M.i+j+N.j+O.k+l+; m+n+Y.>+U.o+p+q+r+s+t+m+ +7.u+v+w+x+@+3.}+y+8+z+A+B+C+y+D+{ E+ +F+G+D !+~+{+]+{+/+{+H+_+/+/+_+H+{+/+{+]+{+~+!+D G+F+ +E+{ D+y+C+B+A+z+8+y+}+3.@+x+w+v+u+7. +m+t+s+r+q+p+o+U.>+Y.n+m+; l+k+O.j+N.j+i+M.] / ] h+g+I.H.f+e+d+c+b+a+0+9+8+7+6+5+4+3+2+1+|+}+@+[+<+:+", +"e+I+J+K+L+M+N+O+P+Q+5+6+y.R+S+T+U+V+W+o+X+Y+Z+`+ @.@j+/ L.h L.N.p ] +@; @@`.`.#@+.X.$@V.p+A %@;+t+m+h +x 0 ,+:.%.&@0+R+B+A+0+R+*@A+=@W.W.5.-@;@>@6 ~+{+]+/+H+H+~+,@'@'@,@~+H+H+/+]+{+~+6 >@;@-@5.W.W.=@A+*@R+0+A+B+R+0+&@%.:.,+0 x +h m+t+;+%@A p+V.$@X.+.#@`.`.@@; +@] p N.L.h L./ j+.@ @`+Z+Y+X+o+W+V+U+T+S+R+y.6+5+Q+P+O+N+M+L+K+J+I+e+", +")@!@~@{@]@^@/@(@_@:@<@[@}@B+|@B.1@V+2@o+3@Y+4@5@ @.@_ 6@7@8@9@$._ 0@l+; n+`.;+#@a@r+b@c@V.q+%@s+;+d@M.5.,+e@7.N.2 m f@g@z+h@R i@j@k@l@X+c@i+m@n@o@6 [+{+^+/+[+[+p@q@r@r@q@p@[+[+/+^+{+[+6 o@n@m@i+c@X+l@k@j@i@R h@z+g@f@m 2 N.7.e@,+5.M.d@;+s+%@q+V.c@b@r+a@#@;+`.n+; l+0@_ $.9@8@7@6@_ .@ @5@4@Y+3@o+2@V+1@B.|@B+}@[@<@:@_@(@/@^@]@{@~@!@)@", +")@Y+s@t@u@v@w@x@y@z@A@B@u@0+C@0+1@-+c@o+3@!@D@E@g+F@G@a &.H@a %.I@H@J@K@L@t+s+M@N@O@P@c@o+q+%@;+;+d@7@L.@.7.Q@2.R@S@T@U@$ V@R R+W@X@I+V.$@i+Y@+ Z@`@[+{+^+/+[+[+p@q@^+^+q@p@[+[+/+^+{+[+`@Z@+ Y@i+$@V.I+X@W@R+R V@$ U@T@S@R@2.Q@7.@.L.7@d@;+;+%@q+o+c@P@O@N@M@s+t+L@K@J@H@I@%.a H@&.a G@F@g+E@D@!@3@o+c@-+1@0+C@0+u@B@A@z@y@x@w@v@u@t@s@Y+)@", +"d+ #.#+#@###$#%#&#*#=#-#~ ;#>#z+,#'#O@p+3@)#D@5@g+K.!#: !#&.a 3.~#: {#K@]#;+r+ #O@X+^#o+e+=@/#t+D+S.H@u Q@(#:._#:#<#[#}#;#|#1#A+2#3#Y+4#5#0@).6#7#8#~+{+]+/+H+H+~+,@H+H+,@~+H+H+/+]+{+~+8#7#6#).0@5#4#Y+3#2#A+1#|#;#}#[#<#:#_#:.(#Q@u H@S.D+t+/#=@e+o+^#X+O@ #r+;+]#K@{#: ~#3.a &.!#: !#K.g+5@D@)#3@p+O@'#,#z+>#;#~ -#=#*#&#%#$###@#+#.# #d+", +"#@M@9#;.T@0#a#b#c#d#e#> C+0+f#g#h#-+c@V.3@)#i#I.-.j#k#[ l#[ m#n#&@o#Z.;+]#E+r+F.^#5#p#d+e+A %@;+q#S.3 7@] f N.s r#s#t#u#*+'#b+z+v#w#Y+U.x#8@y#z#A#B#~+{+]+{+/+{+H+_+/+/+_+H+{+/+{+]+{+~+B#A#z#y#8@x#U.Y+w#v#z+b+'#*+u#t#s#r#s N.f ] 7@3 S.q#;+%@A e+d+p#5#^#F.r+E+]#;+Z.o#&@n#m#[ l#[ k#j#-.I.i#)#3@V.c@-+h#g#f#0+C+> e#d#c#b#a#0#T@;.9#M@#@", +"m+o.B#R@C#D#E#F#G#k+P+6+h#%+H#z+I#]@N@X+N@!@J#K#1 L#M#b m#l#m#N#&@n#t+q#O#{ N@F.$@b@p#p+p+P#E+T.;+Q#R#0@] / S#s S@T#U#V#W#X#Y#Z#`# $.$^#+$3 y#@$A##$~+{+]+{+{+^+/+(+^+^+(+/+^+{+{+]+{+~+#$A#@$y#3 +$^#.$ $`#Z#Y#X#W#V#U#T#S@s S#/ ] 0@R#Q#;+T.E+P#p+p+p#b@$@F.N@{ O#q#t+n#&@N#m#l#m#b M#L#1 K#J#!@N@X+N@]@I#z+H#%+h#6+P+k+G#F#E#D#C#R@B#o.m+", +"C@$$T@%$&$*$K+:+=$-$;$>$,$'$)$X+T.Q#!$5.j+( ~#&@~${$]$^$/$($~$k#m R@_$:$<$[$|.^.: }$|$1$2$|@x.~.3$4$5$6$7$8$9$0$a$b$U#c$8+d$e$L+U@f$I@8@g$h$i$j$k$l$m$m$n$o$p$q$q.r$s$s$r$q.q$p$o$n$m$m$l$k$j$i$h$g$8@I@f$U@L+e$d$8+c$U#b$a$0$9$8$7$6$5$4$3$~.x.|@2$1$|$}$: ^.|.[$<$:$_$R@m k#~$($/$^$]${$~$&@~#( j+5.!$Q#T.X+)$'$,$>$;$-$=$:+K+*$&$%$T@$$C@", +"t$u$-.v$&$w$x$a.y$z$A$B$C$>#g@D$;+m+E$F$j+( 3.&@l G$H${$I$J$($b < &@K$:$<$L$8@M$v$_.N$g$u j@O$U 3$B#P$Q$R$S$J+T$U$V$W$u#8+-#X$X#k@Y$~#7@P h$Q$j$Z$`$m$m$n$o$p$ %q$.%T$T$.%q$ %p$o$n$m$m$`$Z$j$Q$h$P 7@~#Y$k@X#X$-#8+u#W$V$U$T$J+S$R$Q$P$B#3$U O$j@u g$N$_.v$M$8@L$<$:$K$&@< b ($J$I${$H$G$l &@3.( j+F$E$m+;+D$g@>#C$B$A$z$y$a.x$w$&$v$-.u$t$", +"U@u$g+o#+%@%#%A $%A$%%&%*%B.%@=%-%;%>%,%1._ 3.&@M$'%o#)%!%m#&@m#~%N#K$i {%]%0@l I@^%/%g$9@j@(%_%3$a$:%7#<%[%J+}%|%1%2%u#&+3%4%~ W#5%( 7@6%G+Q$7%8%9%m$m$n$o$o$o$o$o$T$T$o$o$o$o$o$n$m$m$9%8%7%Q$G+6%7@( 5%W#~ 4%3%&+u#2%1%|%}%J+[%<%7#:%a$3$_%(%j@9@g$/%^%I@l 0@]%{%i K$N#~%m#&@m#!%)%o#'%M$&@3._ 1.,%>%;%-%=%%@B.*%&%%%A$$%A #%@%+%o#g+u$U@", +"$@K#< 0%4$#$a%w V+b%c%d%e%f%g%h%[$i%j%^%i+2$v$N#{$'%v$I@k%m#N#l#l%~$_$g m%]%8@M$v$v n%1$6@j@4%o%3$p%q%Z@<%r%s%o$t%.#1 u%r+v%w%`.r+c@1.h P x%y%r@z%N A%m$o$p$p$n$m$A%s$s$A%m$n$p$p$o$m$A%N z%r@y%x%P h 1.c@r+`.w%v%r+u%1 .#t%o$s%r%<%Z@q%p%3$o%4%j@6@1$n%v v$M$8@]%m%g _$~$l%l#N#m#k%I@v$'%{$N#v$2$i+^%j%i%[$h%g%f%e%d%c%b%V+w a%#$4$0%< K#$@", +"B%: < C%/+j.`@D%`.y$E%F%Z.G%H%I%J%K%e@,%:$L%H@)%l M%M.N.7@G@m#N%r#O%P%M.m%Q%L%M%&.c R%S%9@|@T%o%3$p%q%E U%V%s%n$W%X%n i+,+Y%b.Z%w+7. +i Y@`%{+ &.&H A%m$p$ % %o$A%+&s$s$+&A%o$ % %p$m$A%H .& &{+`%Y@i +7.w+Z%b.Y%,+i+n X%W%n$s%V%U%E q%p%3$o%T%|@9@S%R%c &.M%L%Q%m%M.P%O%r#N%m#G@7@N.M.M%l )%H@L%:$,%e@K%J%I%H%G%Z.F%E%y$`.D%`@j./+C%< : B%", +"B%v$@&H+#&$&%&D%d@&&*&=&O@_#$.-&;&>&7.F$,&k '&)%J$}._.x+] n : )&r#!&~&L.{%{&k '%]&^&/&(&u |@_&:&3$<&[&E }&|&[+1&2&J+/ +@.7 3&v+B u+x _.4&5&s$s$6&7&8&m$ %.%.%p$A%+&T$T$+&A%p$.%.% %m$8&7&6&s$s$5&4&_.x u+B v+3&7 @. +/ J+2&1&[+|&}&E [&<&3$:&_&|@u (&/&^&]&'%k {&{%L.~&!&r#)&: n ] x+_.}.J$)%'&k ,&F$7.>&;&-&$._#O@=&*&&&d@D%%&$&#&H+@&v$B%", +"4 9&0&s$a&b&c&d&w+-+a@e+2.m e&f&5 9$7.F$,&k ]&o#J$}.g&h& +1.v$l#r#^$i&] {%-%4.j&!#_.k&-@7@|@x.U 3$4$l&m&b$n&(+o&2&p&q&F+r&s&t&u&v&w&Z%o x&5&p$s$y&z&+&m$ %r$r$q$n$8&}%}%8&n$q$r$r$ %m$+&z&y&s$p$5&x&o Z%w&v&u&t&s&r&F+q&p&2&o&(+n&b$m&l&4$3$U x.|@7@-@k&_.!#j&4.-%{%] i&^$r#l#v$1. +h&g&}.J$o#]&k ,&F$7.9$5 f&e&m 2.e+a@-+w+d&c&b&a&s$0&9&4 ", +"6#w$A&}%B&C&D&d&B X#^#E&F&G&H&I&/+s%,+,%,&B%&.n#J$M%8.3&o L.~#n#J&K&L&] {%M&4.G$G@F$k&N&8@|@> O&P&y%Q&R&b$S&p@:%T&U&q&F+q&s&r&V&W&X&M&,%y#Y&o$}%Z&`& *m$q$5$5$.%o$A%.*.*A%o$.%5$5$q$m$ *`&Z&}%o$Y&y#,%M&X&W&V&r&s&q&F+q&U&T&:%p@S&b$R&Q&y%P&O&> |@8@N&k&F$G@G$4.M&{%] L&K&J&n#~#L.o 3&8.M%J$n#&.B%,&,%,+s%/+I&H&G&F&E&^#X#B d&D&C&B&}%A&w$6#", +"!#v$7&H s$s$f&1$+*]%b.@*#*$*o&}%%*&***>.v+c =*-*%.;*p+.$>*!#0%,*'*.%p$)*!*~*{*]+8#]*]&k ^%,+!$,%u 3 8@F+^*/*(*_*:*<*7@8@q i [*(#}*|*8@L%1*2*{+3*4*5*6*:%o$}%7*a$p&J+8*8*J+p&a$7*}%o$:%6*5*4*3*{+2*1*L%8@|*}*(#[*i q 8@7@<*:*_*(*/*^*F+8@3 u ,%!$,+^%k ]&]*8#]+{*~*!*)*p$.%'*,*0%!#>*.$p+;*%.-*=*c v+>.**&*%*}%o&$*#*@*b.]%+*1$f&s$s$H 7&v$!#", +"a G@9*#&0*.*a*b*x v+c*@.:*d*e* &%&f*g*>.v+v h*P%I@;*O@)@`+!#i*j*k*q$l*o@/&m*n*.*B#d.3 o*F$7.7 ^%9@!#8@F+^*p*(*_*q*r*a 0@$.s*t*5.c o 0@8@u*v*{+A&N w*x*p$p$0*,@#$E y*U&U&y*E #$,@0*p$p$x*w*N A&{+v*u*8@0@o c 5.t*s*$.0@a r*q*_*(*p*^*F+8@!#9@^%7 7.F$o*3 d.B#.*n*m*/&o@l*q$k*j*i*!#`+)@O@;*I@P%h*v v+>.g*f*%& &e*d*:*@.c*v+x b*a*.*0*#&9*G@a ", +"n 6@z*#&.*A*B*4 e >%C*g q*D*o&}%j.%*E*|.0 ^%j&_$: F*G*H*`+: I*@&2&.%J*n*K*m*7#3*#$L*3 B% +,+}*v 9@v$8@M*N*g.O*P*0%Q*~#H@7@R*t*:$}$^%8@0@z#v*'@s$N S*T* % %0*2&/+7%U*V*V*U*7%/+2&0* % %T*S*N s$'@v*z#0@8@^%}$:$t*R*7@H@~#Q*0%P*O*g.N*M*8@v$9@v }*,+ +B%3 L*#$3*7#m*K*n*J*.%2&@&I*: `+H*G*F*: _$j&^%0 |.E*%*j.}%o&D*q*g C*>%e 4 B*A*.*#&z*6@n ", +"p / W*p*A&q.X*Y*k c e 0@q*Z*p$ &g.%&T#o*8.^%G$`*]&F* =4#`+a I*.=I&r$+=7#@=#=E q$[+$=3 L%5.%=&=^&7@v$8@*===7&-=P*+%B n#]&R#4.k ,&s*<.|.0@z#v*R&;=>=,=8&p$o$o$A& &'=T$)=)=T$'= &A&o$o$p$8&,=>=;=R&v*z#0@|.<.s*,&k 4.R#]&n#B +%P*-=7&==*=8@v$7@^&&=%=5.L%3 $=[+q$E #=@=7#+=r$I&.=I*a `+4# =F*]&`*G$^%8.o*T#%&g. &p$Z*q*0@e c k Y*X*q.A&p*W*/ p ", +"1.Q@c&I A&q.!=~=]&8@L%H@C%{=A%'=]=^=/=k (=o j&_=3 ;* =^#:=a I*<=2&[=+=y%}=|=1=A%{+>@3 B%5.x 2=3=8@!#8@4=5=9*6=7=I*u+)%)&!%H@7@o*8=8=|.7@y#9=R&;=>=0=A%o$A%m$ %8&T*a=b=b=a=T*8& %m$A%o$A%0=>=;=R&9=y#7@|.8=8=o*7@H@!%)&)%u+I*7=6=9*5=4=8@!#8@3=2=x 5.B%3 >@{+A%1=|=}=y%+=[=2&<=I*a :=^# =;*3 _=j&o (=k /=^=]='=A%{=C%H@L%8@]&~=!=q.A&I c&Q@1.", +" +c=j.d=A*q$e=f={$v$l#m#<=.=}%g=h=i=/=|.Y%_.I$`*3 j=G*5#k=!#I*.=2&l=7=8#m=n=o=T*s$7#'&k F$x &=c 7@!#8@r&>&J p=q=f&0 {$^.r=&@3.k B%o*8@u s=@$r@ &4*0= &}%A%n$l*t=t=u=+&+&u=t=t=l*n$A%}% &0=4* &r@@$s=u 8@o*B%k 3.&@r=^.{$0 f&q=p=J >&r&8@!#7@c &=x F$k '&7#s$T*o=n=m=8#7=l=2&.=I*!#k=5#G*j=3 `*I$_.Y%|./=i=h=g=}%.=<=m#l#v${$f=e=q$A*d=j.c= +", +"!$,+%&h..*:%v=w=H${$J$l <=@&A*n$4*x=!&6@B _.=*y=]&%=N@P@x#'&f&<=I&l=_*/+b$==o=z=A&U&A=j o %=7 ,%_ G@8@q&>&z*B=C=D=8.M$M$h*E=s F=8@0@|.0@G=Y*r@ &H=w* &s$p$P$I=J=K=_*e*e*_*K=J=I=P$p$s$ &w*H= &r@Y*G=0@|.0@8@F=s E=h*M$M$8.D=C=B=z*>&q&8@G@_ ,%7 %=o j A=U&A&z=o===b$/+_*l=I&<=f&'&x#P@N@%=]&y==*_.B 6@!&x=4*n$A*@&<=l J${$H$w=v=:%.*h.%&,+!$", +"}*u+L=M=0*:%N=O=/$'%H$j&~=C%0*n$9%P=<#_#r*o Q=_$H@!$3@R=S=A=T=C%I&[=U=^+N*V=R&l*[=p&W=X=v ,+%=f _#%.8@q&n=z*Y=C=D=Z=l ~$'%`=:# -&.9@k B%.-+-7%@-h=#- &0*.%$-u=%-&-*-e*e**-&-%-u=$-.%0* &#-h=@-7%+-.-B%k 9@&. -:#`='%~$l Z=D=C=Y=z*n=q&8@%._#f %=,+v X=W=p&[=l*R&V=N*^+U=[=I&C%T=A=S=R=3@!$H@_$Q=o r*_#<#P=9%n$0*C%~=j&H$'%/$O=N=:%0*M=L=u+}*", +"=---;-8*p%>-/+0*}%.*,-s$}%}%A&.*T$3*_+_+'-1=7#)-!-)*>.R#4 +-V*/+~-{-]-5$m&^-Q$U&U*/+/-H@!%(-M#b _-~#c=/ ]$:-<-E*,&E$&.%.4 [-}-;-l.|-]&!#9=1-s$z=w*2-x*l*J*J*3-:%T*z=]=]=z=T*:%3-J*J*l*x*2-w*z=s$1-9=!#]&|-l.;-}-[-4 %.&.E$,&E*<-:-]$/ c=~#_-b M#(-!%H@/-/+U*U&Q$^-m&5$]-{-~-/+V*+-4 R#>.)*!-)-7#1='-_+_+3*T$.*A&}%}%s$,-.*}%0*/+>-p%8*;---=-", +"4-5-6-7-8->-/+0*T$s$9-.*.*.*2&A&s$I&[+p@0-E y*)-9$6$8@8@s=z#a-0$b-{-c-T&0$n*6 p&E H+ -: M#M#d-b e-I@c=9@h*:-<-l L%!$]&G@4 f-g-6-h-i-'&: j-k-}%1&l-m-n-J*:%1&J*o&n-l*o-o-l*n-o&J*1&:%J*n-m-l-1&}%k-j-: '&i-h-6-g-f-4 G@]&!$L%l <-:-h*9@c=I@e-b d-M#M#: -H+E p&6 n*0$T&c-{-b-0$a-z#s=8@8@6$9$)-y*E 0-p@[+I&s$A&2&.*.*.*9-s$T$0*/+>-8-7-6-5-4-", +"p-q-^-@%a$>-H+.* &T$,-0*.*.*r-A&}%3*^+p@s->-t-u-~@v-0@2$w-s=V*x-y-y&a=[=/+7#9$p&A#~+!%o#'&3 3 H@R@)%5.9@I$z-A-l >.,%N%[ @$B-C-j$D-E-A=v$D=k- &o&F-l-z=P$o&n-:%1&e*G-H-H-G-e*1&:%n-o&P$z=l-F-o& &k-D=v$A=E-D-j$C-B-@$[ N%,%>.l A-z-I$9@5.)%R@H@3 3 '&o#!%~+A#p&9$7#/+[=a=y&y-x-V*s=w-2$0@v-~@u-t->-s-p@^+3*}%A&r-.*.*0*,-T$ &.*H+>-a$@%^-q-p-", +"Y%I-u-J-#$>-[+A* &K-L-}%s$s$I&.*K-.*/+(+0-A#J+M-X%N-L.M.O-@ ^-x-i.i.P$P-p@U&6$J+A#~+h*o#'&>.>.'&m {$M.u h***E*l 8@i+m#)&+%Q-'-R-L z&S-~#+%1-T$l*S*l-e*P$o&e*:%1&e*G-T-T-G-e*1&:%e*o&P$e*l-S*l*T$1-+%~#S-z&L R-'-Q-+%)&m#i+8@l E***h*u M.{$m '&>.>.'&o#h*~+A#J+6$U&p@P-P$i.i.x-^-@ O-M.L.N-X%M-J+A#0-(+/+.*K-.*I&s$s$}%L-K- &A*[+>-#$J-u-I-Y%", +">%U-V-J-B#A#~+A&T$K-L-}%}%}%A&0*K-.*p@(+W-U*`@n*6$!-] <.N&b*o@t-X-M=l*Y-7*p&a%`@A#{+/$l B%:$i o*~$/=0@!#Z-j&~$)%H@u J$=*@&`-7*]+J J '&%.q* ;}%:%S*.;x*l*:%o&G-:%n-l*B=B=l*n-:%G-o&:%l*x*.;S*:%}% ;q*%.'&J J ]+7*`-@&=*J$u H@)%~$j&Z-!#0@/=~$o*i :$B%l /${+A#`@a%p&7*Y-l*M=X-t-o@b*N&<.] !-6$n*`@U*W-(+p@.*K-0*A&}%}%}%L-K-T$A&~+A#B#J-V-U->%", +"3=+;M-J-8#R-~+I&}% &9-0*s$}%3*.*}%3*7*(+p%x-5 ;-6 @;#;e G+N&o@Q$X-$;J*%;,@p&~@J-E m&K${$4._._.k O%~&]&!#N%l#< o#3 a J$&;*;=;H+0$^=-;&.3.+%;;s$e*F->;,;o&l*J*';l*n-o&,=,=o&n-l*';J*l*o&,;>;F-e*s$;;+%3.&.-;^=0$H+=;*;&;J$a 3 o#< l#N%!#]&~&O%k _._.4.{$K$m&E J-~@p&,@%;J*$;X-Q$o@N&G+e #;@;6 ;-5 x-p%(+7*3*}%.*3*}%s$0*9- &}%I&~+R-8#J-M-+;3=", +"j `%n*);8#E ~+2&0*}%@-.*}% &A*0*}%2&(+~+W-U*`@6-Q$o@:.v !;-@S&~;%*X-P$%;,@p&X%@%x-a-{;{$j !$|*k S@];)&l#!#I@;.G@Z-[ !&^;/;(;}%K-f._;a v$D=;;}%:;5*`$,;o&:%l*';J*n-o&7&7&o&n-J*';l*:%o&,;`$5*:;}%;;D=v$a _;f.K-}%(;/;^;!&[ Z-G@;.I@!#l#)&];S@k |*!$j {${;a-x-@%X%p&,@%;P$X-%*~;S&-@!;v :.o@Q$6-`@U*W-~+(+2&}%0*A* &}%.*@-}%0*2&~+E 8#);n*`%j ", +"j <;Z@@%4$E ~+r-A*0*9-s$K-9-}%T$ &I&/+~+[;A#J+^-6 !-};x F+m@D >@%*|;G-1;7*U&X%9#j$2;3;/=4;!$|*,&5;6;k#l#a %._-G@d-b 7;^;8;9;}%}%0;0;G@!#9=;;T$a;b;c;:;o&:%:%a=l*e*l*d;d;l*e*l*a=:%:%o&:;c;b;a;T$;;9=!#G@0;0;}%}%9;8;^;7;b d-G@_-%.a l#k#6;5;,&|*!$4;/=3;2;j$9#X%U&7*1;G-|;%*>@D m@F+x };!-6 ^-J+A#[;~+/+I& &T$}%9-K-s$9-0*A*r-~+E 4$@%Z@<;j ", +"+.e;I.f;%$m 0%0&3*;=T$0*s$K-;=}%0*}%A#[+g;D*h;i;j;4#V.k;2@L.,.l;);8*r$q.q.3*r@q@m;n;m$>@o;p;a-T&s%>&G@G@3 q;r A=a r;_+9-A&[=l=a=,;n-J*G-a=l*n-x*s;1& *o$a=a=q%t=%-l&0$0$l&%-t=q%a=a=o$ *1&s;x*n-l*a=G-J*n-,;a=l=[=A&9-_+r;a A=r q;3 G@G@>&s%T&a-p;o;>@m$n;m;q@r@3*q.q.r$8*);l;,.L.2@k;V.4#j;i;h;D*g;[+A#}%0*}%;=K-s$0*T$;=3*0&0%m %$f;I.e;+.", +"T.X.p#x#f;G@+%0&3*@-0*0*}%T$0*3*.*K-E H+g;t;h;i;u;H* =X+ =i+,.v;`@);r$r$q.3*r@q@n;1=m$o@#=w;x;l=4$>&a v$H@q;r k%a y;_+K-3*q.q.G-,;x*l*G-a=J*e*T*n-1&8&p$q.G-o&z;A;B;0$0$B;A;z;o&G-q.p$8&1&n-T*e*J*a=G-l*x*,;G-q.q.3*K-_+y;a k%r q;H@v$a >&4$l=x;w;#=o@m$1=n;q@r@3*q.r$r$);`@v;,.i+ =X+ =H*u;i;h;t;g;H+E K-.*3*0*T$}%0*0*@-3*0&+%G@f;x#p#X.T.", +"Z.X.V.b@^#G@0%C;2&K-0*s$T$T$A&r-.*9-U*[+D;Z*h;i;f;E;F;G*G;L.4&H;p&`@5$5$r$I&r@q@I;U*8&6-5=L*;=c-{+==&.!#a q;%.]&: F=_+.*J;p$o$a=x*x*:%J*G-J*z=s;n-z=T$0*q.q$o&K;L;q%0$0$q%L;K;o&q$q.0*T$z=n-s;z=J*G-J*:%x*x*a=o$p$J;.*_+F=: ]&%.q;a !#&.=={+c-;=L*5=6-8&U*I;q@r@I&r$5$5$`@p&H;4&L.G;G*F;E;f;i;h;Z*D;[+U*9-.*r-A&T$T$s$0*K-2&C;0%G@^#b@V.X.Z.", +"X.+.E+a@V.n D=B*A*m$s$0*T$K-}%A*.*K-R-~+M;N;H$O;u;E;P;G*c@L.4&,.U&J+T&T&5$I&m&q@j$A#T*^->&o@m$$-0$Q;]&&.3.q;~#&.!#S-p@A&R;m$A%$-1&e*o$ %.%q$o$A%A%m$s$.*A* %n$z=q%S;0$0$S;q%z=n$ %A*.*s$m$A%A%o$q$.% %o$e*1&$-A%m$R;A&p@S-!#&.~#q;3.&.]&Q;0$$-m$o@>&^-T*A#j$q@m&I&5$T&T&J+U&,.4&L.c@G*P;E;u;O;H$N;M;~+R-K-.*A*}%K-T$0*s$m$A*B*D=n V.a@E++.X.", +"T;U;V;Y.=@/ .-W;K-8&.*3*A*K-9-T$A&I&4$p@M;N;^$X;u;p#G*3@o+g + Y;Z@U&5$T&5$3*7%W%j$s%n-1=Z;y*p$u= &`;]&H@e-_-v$: &.k%/+s$r-+& *3-:%:%o$p$ %p$o$m$m$n$H+H+0*s$n$n$:%l*0$0$l*:%n$n$s$0*H+H+n$m$m$o$p$ %p$o$:%:%3- *+&r-s$/+k%&.: v$_-e-H@]&`; &u=p$y*Z;1=n-s%j$W%7%3*5$T&5$U&Z@Y;+ g o+3@G*p#u;X;^$N;M;p@4$I&A&T$9-K-A*3*.*8&K-W;.-/ =@Y.V;U;T;", +" >.>+>@>#>H%z#1-p$:%A&r-2& &,- &I&'*#$p@g;Z*T#$>k=U.O@3@d+8=H;b*^-7#5$5$5$A*o=7*j$4$%>r@&>p&J**>}%a%H@H@=>;.H@a ]&]&0$@-.* *g=J*e*J*s$s$}%T$T$T$}%s$s%/+{+}%}%o$p$:%0$0$:%p$o$}%}%{+/+s%s$}%T$T$T$}%s$s$J*e*J*g= *.*@-0$]&]&a H@;.=>H@H@a%}%*>J*p&&>r@%>4$j$7*o=A*5$5$5$7#^-b*H;8=d+3@O@U.k=$>T#Z*g;p@#$'*I& &,- &2&r-A&:%p$1-z#H%#>@>+>.> >", +"->;>>>,>'>)>!><=T&J*A*3*A*;=,- &A&2&#$[+~>d*s#{>:=4#X+N@ #8=-&@ V-Z@r$5$r$.*]>p@j$8#S;r@6$A#1&P*m$X%: &.^>2 k%a 3 &./+,-.*m$8&o&T*a=.*s$ &K- &}%0*.*y%>-^+^+}%}%o$n$0$0$n$o$}%}%^+^+>-y%.*0*}% &K- &s$.*a=T*o&8&m$.*,-/+&.3 a k%2 ^>&.: X%m$P*1&A#6$r@S;8#j$p@]>.*r$5$r$Z@V-@ -&8= #N@X+4#:={>s#d*~>[+#$2&A& &,-;=A*3*A*J*T&<=!>)>'>,>>>;>->", +"a@/>(>P._>h&O-0&5$e*}%s$K-'=,- &s$T$B#{+:>!=<#<>5@H*V.3@[>:$+ }>6-7#q.r$q.0*a-(+j$B#|>1>2>j$J=|> *5 a !#3>r A=a '&!#_+;=3*q.p$o&T*$-~+/+0$r@0${+[+~+A#A#A#^+}%}%n$A%0$0$A%n$}%}%^+A#A#A#~+[+{+0$r@0$/+~+$-T*o&p$q.3*;=_+!#'&a A=r 3>!#a 5 *|>J=j$2>1>|>B#j$(+a-0*q.r$q.7#6-}>+ :$[>3@V.H*5@<><#!=:>{+B#T$s$ &,-'=K-s$}%e*5$0&O-h&_>P.(>/>a@", +"W+4>X$y+5>6>-*~&7>~>.*K-9-@-;=;=s$I&,@[+[+,@p@]+/+8>M$O%b m I@R#_ $.( 6@$.2.2$6@@+_ 9>b i+H@0>a>3;o#Z@D;b>C#g#;%c>{+9-}%3*A&T$@-}%2& *.*;=[+R&#$A#s%y*^+d>e>f>O;X+'>g>g>'>X+O;f>e>d>^+y*s%A##$R&[+;=.* *2&}%@-T$A&3*}%9-{+c>;%g#C#b>D;Z@o#3;a>0>H@i+b 9>_ @+6@2$2.$.6@( $._ R#I@m b O%M$8>/+]+p@,@[+[+,@I&s$;=;=@-9-K-.*~>7>~&-*6>5>y+X$4>W+", +"2@T.T%~ }#h>/=i>{=B*T$;=;=T$s$}%.*I&,@[+[+7*(+]+{+W%M$J$)&&@%.H@$._ n n @+( 7@n j>9@K&8@7.>.y=k>l>I@`@D;m>n>T+;%*= &.%r$5$q.o$m$ %5$9-0*;=[+R&<&U&J+7#'@N=o>p>q>E.r>s>s>r>E.q>p>o>N='@7#J+U&<&R&[+;=0*9-5$ %m$o$q.5$r$.% &*=;%T+n>m>D;`@I@l>k>y=>.7.8@K&9@j>n 7@( @+n n _ $.H@%.&@)&J$M$W%{+]+(+7*[+[+,@I&.*}%s$T$;=;=T$B*{=i>/=h>}#~ T%T.2@", +"3@t>u>,#t$v>G${$e&a* &;= &.*A&A*A*2&_+H+H+p@~+]+{+_+{$~$N%< 2 : 2.9@2$_ j>n 8@( _#0@N% +M&^%j&w>l x+x>@&y>z>;#A>-@K-B>I=S;L;t=z;K;L;@-0*r@[+j$9#p&J+E 9-C>D>3;E>e+#>s@s@#>e+E>3;D>C>9-E J+p&9#j$[+r@0*@-L;K;z;t=L;S;I=B>K--@A>;#z>y>@&x>x+l w>j&^%M& +N%0@_#( 8@n j>_ 2$9@2.: 2 < N%~${$_+{+]+~+p@H+H+_+2&A*A*A&.* &;= &a*e&{$G$v>t$,#u>t>3@", +"3@a.h@*+W@$@]&l#i*B*.*}%s$3*I&A&A&2&~+{+/+(+~+/+H+_+}.S@o#:#s !#( 2$8@_ q n 8@2._#>.v$j=i%u+H@E*G@F*F>q*E*G>H>[$b*n$I>+=L;t=z;L;z;J>'@H+r@8#x-7-6 9$]+9-K>L>w>M>P@E+6$6$E+P@M>w>L>K>9-]+9$6 7-x-8#r@H+'@J>z;L;z;t=L;+=I>n$b*[$H>G>E*q*F>F*G@E*H@u+i%j=v$>._#2.8@n q _ 8@2$( !#s :#o#S@}._+H+/+~+(+/+{+~+2&A&A&I&3*s$}%.*B*i*l#]&$@W@*+h@a.3@", +"G*N>j@C@C@O@M.6@O>i*J;3*A*3*A&.*A&r-{+]+^+[+(+(+(+_+}.P>R@`=r H@_ 7@8@n q $.7@2.j>>.@+Q>R>{&v$O%( r*S>+%M$V#H>T>y#l*I=U>%>V>+=I>%>J>]+~+U*5 Z@.#6 Q$K-+&W>e=M$F@X>P;J+J+P;X>F@M$e=W>+&K-Q$6 .#Z@5 U*~+]+J>%>I>+=V>%>U>I=l*y#T>H>V#M$+%S>r*( O%v${&R>Q>@+>.j>2.7@$.q n 8@7@_ H@r `=R@P>}._+(+(+(+[+^+]+{+r-A&.*A&3*A*3*J;i*O>6@M.O@C@C@j@N>G*", +"G*q#t$Y>Z>N>j=N.w-i*`>r-3*3*A&.*A*2&^+^+{+[+p@7*_+p@l ,E=.,r !#$.7@2$9@_#q n ( 2.7@s ;*<$+,3.@,%.#,U%9&$,u#T+T>i*%, %q$p$n$.%[=p$&,s%#$U*5 *,.#!+d&+&8&=,G&n#j#j;-,4$4$-,j;j#n#G&=,8&+&d&!+.#*,5 U*#$s%&,p$[=.%n$p$q$ %%,i*T>T+u#$,9&U%#,%.@,3.+,<$;*s 7@2.( n q _#9@2$7@$.!#r .,E= ,l p@_+7*p@[+{+^+^+2&A*.*A&3*3*r-`>i*w-N.j=N>Z>Y>t$q#G*", +"c@D+$$Y>T+o.Q*;,w-s=J;I&I&r-2&A&A*I&H+H+H+~+_+,@p@[+O%>,n#R@e-r q 0@n 7@@+,,j>_ ( 9@&@(#A>+*l%',R@:.),!,~,{,0.w +%|>/+~+/+'@{+p@{+a-B#a$7#a%*,1%d&V=n-A%~>0&G@j#],I.{+{+I.],j#G@0&~>A%n-V=d&1%*,a%7#a$B#a-{+p@{+'@/+~+/+|>+%w 0.{,~,!,),:.R@',l%+*A>(#&@9@( _ j>,,@+7@n 0@q r e-R@n#>,O%[+p@,@_+~+H+H+H+I&A*A&2&r-I&I&J;s=w-;,Q*o.T+Y>$$D+c@", +"o+t>^,/,T+o.]%;,. x&3*A*I&k*k*I&A*3*p@p@(+(+_+7*(+{+S@(,b n#_,:,,,8@( 0@2.<,[,6@n _ M$g Z%Q@},|,},p 1,2,3,T@H#,+e&4,7-5,@%t-p&7-J-6-@%8*y*~@*,6,7,]*L;1&X*i*&.j;k=5@r@r@5@k=j;&.i*X*1&L;]*7,6,*,~@y*8*@%6-J-7-p&t-@%5,7-4,e&,+H#T@3,2,1,p },|,},Q@Z%g M$_ n 6@[,<,2.0@( 8@,,:,_,n#b (,S@{+(+7*_+(+(+p@p@3*A*I&k*k*I&A*3*x&. ;,]%o.T+/,^,t>o+", +"8,9,-+h#1@$+0,|@9+>#{$O%O%E*a,b,c,d,e,J&^$S@^.b f,)&%.3.G@G@2 _-r !#^ p / K+g,p / N.l#H@<.h,h,:$I@:#Z-_,i,(#^%|.&.n#%.v$: I@%.I@: : G@I@v$&.!#a : 3 ~+E 7#j,6 M-U*8>s*s*8>U*M-6 j,7#E ~+3 : a !#&.v$I@G@: : I@%.I@: v$%.n#&.|.^%(#i,_,Z-:#I@:$h,h,<.H@l#N./ p g,K+/ p ^ !#r _-2 G@G@3.%.)&f,b ^.S@^$J&e,d,c,b,a,E*O%O%{$>#9+|@0,$+1@h#-+9,8,", +"$ k,'#h@1@8+0,|@A.W#l#$,r#s#7;e,y>_=@,<#/=r#M$)%l,!#%.~#G@G@r e-%.!#S#j+p g,K+/ 1.p l [ o*g,g,|.n#l%)&:,m,x+(#u G@:#2 ~#G@3.3.G@a G@v$G@a &.&.a !#'&{+E y*a%Q$;->-q@s*s*q@>-;-Q$a%y*E {+'&!#a &.&.a G@v$G@a G@3.3.G@~#2 :#G@u (#x+m,:,)&l%n#|.g,g,o*[ l p 1./ K+g,p j+S#!#%.e-r G@G@~#%.!#l,)%M$r#/=<#@,_=y>e,7;s#r#$,l#W#A.|@0,8+1@h@'#k,$ ", +"B.n,3%h#y+B+%+C@S+0.m#~%},r#<#J&~&y=a,a,l S@N#3.o,I@3.~#v$v$3.;.3.!#1./ K+^ S#] ] j+s#M$A=$.2.'&($@,N%_,m,@*x+_ 3.p,;.r %.%.I@: a 3.: a : H@H@: !#'&r@R-J+!-Q$y*B#_+M.M._+B#y*Q$!-J+R-r@'&!#: H@H@: a : 3.a : I@%.%.r ;.p,3._ x+@*m,_,N%@,($'&2.$.A=M$s#j+] ] S#^ K+/ 1.!#3.;.3.v$v$~#3.I@o,3.N#S@l a,a,y=~&J&<#r#},~%m#0.S+C@%+B+y+h#3%n,B.", +"&+q,r,s,I#B.%+A.A.S+v$~%E=S@$,<#7;t,M$~$~$n#n#2 u,2.~#~#v$a ~#2 3.!#h / #.^ N.] L.1.v,J$r=I@3.)&$,w,b _-x,x+x+n v$~%e-s r %.v$&.: %.]&&.H@3 H@v$a H@m&A#);>@Q$t-a$/+1.1./+a$t-Q$>@);A#m&H@a v$H@3 H@&.]&%.: &.v$%.r s e-~%v$n x+x+x,_-b w,$,)&3.I@r=J$v,1.L.] N.^ #./ h !#3.2 ~#a v$~#~#2.u,2 n#n#~$~$M$t,7;<#$,S@E=~%v$S+A.A.%+B.I#s,r,q,&+", +"8+y,3%I#I#H>H>@#C@@#G@%.r n#O%S@5;5;^.l n#: I@j>$.@+~#~#G@a G@r 3.a g j+^ ^ N.1.L.] a,J$R#n $.!#r#J&)%e-_#:.x+9@!#n#;.2 %.3.a H@: 3.k%3 3 3 &.G@I@: 0$>-8*z,9$Z@<&r@L.L.r@<&Z@9$z,8*>-0$: I@G@&.3 3 3 k%3.: H@a 3.%.2 ;.n#!#9@x+:._#e-)%J&r#!#$.n R#J$a,] L.1.N.^ ^ j+g a 3.r G@a G@~#~#@+$.j>I@: n#l ^.5;5;S@O%n#r %.G@@#C@@#H>H>I#I#3%y,8+", +"R+A,]@}@,#B,z+A.C,Z#_ _ I@I@&@l%},P>[ o#m ]&6@j>L.^ ~#3.I@a G@%.%.G@h p ^ #.N.p 1.i+N#G@o*#;H%6@;.< < q;@+#;++6@!#&@s %.3.3.G@!#: ~#'&]&]&3 !#I@I@: ^+R-D,E,X%6-#$R&] ] R&#$6-X%E,D,R-^+: I@I@!#3 ]&]&'&~#: !#G@3.3.%.s &@!#6@++#;@+q;< < ;.6@H%#;o*G@N#i+1.p N.#.^ p h G@%.%.G@a I@3.~#^ L.j>6@]&m o#[ P>},l%&@I@I@_ _ Z#C,A.z+B,,#}@]@A,R+", +"A+F,G,u@I#H,T+9+C@I,_ 6@6@3.R@:#r#$,)%m ;.|.9@#.:$J,3.%.3.v$G@%.r ~#L.S##.K+S#K+p i+9@/ |*r*K,};L,2.R@e-_ Q@++n a ~%;.3.I@%.%.I@v$I@!#: !#H@!#G@v$H@{+j$7-E,.#^-B#m&j+j+m&B#^-.#E,7-j${+H@v$G@!#H@!#: !#I@v$I@%.%.I@3.;.~%a n ++Q@_ e-R@2.L,};K,r*|*/ 9@i+p K+S#K+#.S#L.~#r %.G@v$3.%.3.J,:$#.9@|.;.m )%$,r#:#R@3.6@6@_ I,C@9+T+H,I#u@G,F,A+", +"B.M,'#y+s,H,T+N,9+O,n 9@6@2 q;E=&@M$3.s q;L%9@^ ,&Q %.r %.G@G@%.r 3./ K+g,N.K+#.N.i+L.f 0 P,Q,R,Q K+< 2 u +:.6@a :#;.3.I@r ;.r I@I@G@I@v$!#!#a !#'&{+V*@%E,S,V-#$'@] ] '@#$V-S,E,@%V*{+'&!#a !#!#v$I@G@I@I@r ;.r I@3.;.:#a 6@:. +u 2 < K+Q R,Q,P,0 f L.i+N.#.K+N.g,K+/ 3.r %.G@G@%.r %.Q ,&^ 9@L%q;s 3.M$&@E=q;2 6@9@n O,9+N,T+H,s,y+'#M,B.", +"$@T,F+U,V,v&W,q&}>O>j+j+K+8@q;v$N#N#X**;@+5.r+S+9+Y>X,Y,Z,:#`,w$J-a%L.N.N.u I@e-~%b l>: c=5.o#@,_# 'l#I@2$u @+n#/=v,.'J&!&J$n#&@v$&.i>M$3 M.K+I@M%l>2$6@9@0@0@u u 0@p%p%0@u u 0@0@9@6@2$l>M%I@K+M.3 M$i>&.v$&@n#J$!&J&.'v,/=n#@+u 2$I@l# '_#@,o#5.c=: l>b ~%e-I@u N.N.L.a%J-w$`,:#Z,Y,X,Y>9+S+r+5.@+*;X*N#N#v$q;8@K+j+j+O>}>q&W,v&V,U,F+T,$@", +"-,E;D%+'@'#'$'%'S%4 / / S#>._-v$N#o#X**;_#Q@P#A.9+f@&'Y,*':#='w$J-5 ] N.p 2$G@e-~%[ i>v$j=5.m#<#2.P,&@r 9@i+_ o#/=L&-'J&!&J$n#n#v$H@/=l '&<.1.v$M%^$u 6@9@0@0@9@n 9@p%p%9@n 9@0@0@9@6@u ^$M%v$1.<.'&l /=H@v$n#n#J$!&J&-'L&/=o#_ i+9@r &@P,2.<#m#5.j=v$i>[ ~%e-G@2$p N.] 5 J-w$=':#*'Y,&'f@9+A.P#Q@_#*;X*o#N#v$_->.S#/ / 4 S%%'$'#'@'+'D%E;-,", +"P@4#%=+,P,;'Q%c=g o*] 1.p |.e-a o#)%X**;_#:.A @#9+f@g+>','e-'':*B#B#1.p / 2$G@s ~%m#-*v$j= +l#s#_ L$:#_-6@:$2$a l m>)'J&s#~$n#N#a H@M%o#'&[.|.: N%G$9@6@u 8@0@6@( _ a$a$_ ( 6@0@8@u 6@9@G$N%: |.[.'&o#M%H@a N#n#~$s#J&)'m>l a 2$:$6@_-:#L$_ s#l# +j=v$-*m#~%s G@2$/ p 1.B#B#:*''e-,'>'g+f@9+@#A :._#*;X*)%o#a e-|.p 1.] o*g c=Q%;'P,+,%=4#P@", +"5#U.}*v+!'m%L$+,Q@u L.L.j+B%;.: )%)%X*@&_#x+=@A.@#Y>E@>'~'e-''q*B#~+/ j+1.2$G@2 < m#P%a w F$[ !&_ Q%_-i,j+o h a (${'5;J&a,O%n#o#!#]&'&I@8@R*|.9@]&k%2$u 7@|.>.6@$.$.4$4$$.$.6@>.|.7@u 2$k%]&9@|.R*8@I@'&]&!#o#n#O%a,J&5;{'($a h o j+i,_-Q%_ !&[ F$w a P%m#< 2 G@2$1.j+/ ~+B#q*''e-~'>'E@Y>@#A.=@x+_#@&X*)%)%: ;.B%j+L.L.u Q@+,L$m%!'v+}*U.5#", +"p#U.]'^'@>/'@@('F.f+i+i+/ B%;.: )%)%f=.=2.:.=@Z>S+Y>Y+J#D@_-_'<=~+A&/ 1.] u I@r &@m#A-!#7.,%[ s#( L$_#,,++^%5._ R@:'@,J&7;($N#m#&.3 ,&n 2$R#&.9@|.,&0@7@8@B%L%u ( ( A#A#( ( u L%B%8@7@0@,&|.9@&.R#2$n ,&3 &.m#N#($7;J&@,:'R@_ 5.^%++,,_#L$( s#[ ,%7.!#A-m#&@r I@u ] 1./ A&~+<=_'_-D@J#Y+Y>S+Z>=@:.2..=f=)%)%: ;.B%/ i+i+f+F.('@@/'@>^']'U.p#", +"<'p#V@['x.&&[@1@}'|'M.i+/ B%;.: o#o#X*<=( :.A |@Z>f@F.1'2'_-3'C%A*r$1.] L.6@3.%.N#l#A-!#7.F$[ s#$.]%$.4')>7.Q@2.:#5'J&J&<#$,N#l#H@3 ,%1.2$&.G@7@<.,%>.0@>.B%L%2$n 6@R-R-6@n 2$L%B%>.0@>.,%<.7@G@&.2$1.,%3 H@l#N#$,<#J&J&5':#2.Q@7.)>4'$.]%$.s#[ F$7.!#A-l#N#%.3.6@L.] 1.r$A*C%3'_-2'1'F.f@Z>|@A :.( <=X*o#o#: ;.B%/ i+M.|'}'1@[@&&x.['V@p#<'", +"Y+p#u@|#6+T [@~ S+6'i+L.j+L%e-a N#N#7>.=( :.A |@S+7'F.8'9'q;3'~>q$5$L.i+L._ r %.o#[ i>a c= +[ s#_ L$j+0'a'h&F*g,2 P><#J&J&$,o#[ ]&'&c=@.8@l#N#L%c j=>.7@0@|.>.u 6@9@s%s%9@6@u >.|.0@7@>.j=c L%N#l#8@@.c='&]&[ o#$,J&J&<#P>2 g,F*h&a'0'j+L$_ s#[ +c=a i>[ o#%.r _ L.i+L.5$q$~>3'q;9'8'F.7'S+|@A :.( .=7>N#N#a e-L%j+L.i+6'S+~ [@T 6+|#u@p#Y+", +"!@H*U+'#-#d$b'c'B.7'i+L.j+L%_-v$n#n#g;@&$.:.=@C@A.6'd'8'9'q;3'~>q$3-i+M.L.$.s %.m#b y>I@+*5.[ !&n [$/ e'f'};;,#.%.~%7;J&J&$,o#[ 3 '&Q>5.B%[ o#4.g'Q>8@2$2$8@0@9@6@u B#B#u 6@9@0@8@2$2$8@Q>g'4.o#[ B%5.Q>'&3 [ o#$,J&J&7;~%%.#.;,};f'e'/ [$n !&[ 5.+*I@y>b m#%.s $.L.M.i+3-q$~>3'q;9'8'd'6'A.C@=@:.$.@&g;n#n#v$_-L%j+L.i+7'B.c'b'd$-#'#U+H*!@", +"h'a&m#9.i'r.r.i'z a m#o#m#o#r=`=b N#p u,)%($k#i+8.;'j'k'o,l'm'!&3.M.(${$M#[ e-3.0@6@7@2$u 9@u 2$0@8@i#J#n'Z+E&o'>*E@E=E=(,S@)%&.>.g y*Y;t*p'q'!#k-@-J+*,d.==r'@;m&A&W*W*A&m&@;r'==d.*,J+@-k-!#q'p't*Y;y*g >.&.)%S@(,E=E=E@>*o'E&Z+n'J#i#8@0@2$u 9@u 2$7@6@0@3.e-[ M#{$($M.3.!&m'l'o,k'j';'8.i+k#($)%u,p N#b `=r=o#m#o#m#a z i'r.r.i'9.m#a&h'", +"_;h'N%s't'u'v'w'G;9@)%o#)%o#M#E=Z-l#L._#[ n#H@/ Y%x'{%F*p,];y'P%$,9@J$M%!%b ;.3.0@n 9@9@6@6@9@9@u 2$J#E@z'5@>*i#`+E@r#r#S@N#l#H@0@M.Z@Y@<.A'q']&k- &t-o@r'>&d&>@m&.*W*W*.*m&>@d&>&r'o@t- &k-]&q'A'<.Y@Z@M.0@H@l#N#S@r#r#E@`+i#>*5@z'E@J#2$u 9@9@6@6@9@9@n 0@3.;.b !%M%J$9@$,P%y'];p,F*{%x'Y%/ H@n#[ _#L.l#Z-E=M#o#)%o#)%9@G;w'v'u't's'N%h'_;", +"B'#&j&S=>#b#C'y+G*1.~#I@r 3.H@;.3 : g $.3 G@&.N.x Q>#,/ $,m'D'E'i&~$J$^.r=[ e-%.2$( ( _ n n 6@6@6@n J#E&o'`+>*o'E&J#$,$,n#m#H@8@7@u n*@ 5.F't$|.+-T$y*>@7,n=Z;>@r@s$W*W*s$r@>@Z;n=7,>@y*T$+-|.t$F'5.@ n*u 7@8@H@m#n#$,$,J#E&o'>*`+o'E&J#n 6@6@6@n n _ ( ( 2$%.e-[ r=^.J$~$i&E'D'm'$,/ #,Q>x N.&.G@3 $.g : 3 ;.H@3.r I@~#1.G*y+C'b#>#S=j&#&B'", +"#&G':>r=H'I'J'&+e@1$6@u j>_ u 2.|.2$h S#|.2$>.N.:$#;N.v$a,K'D'L'm'-*S@J$k#)%_,s 9@$.$.( _ 6@6@6@n _ i#E@D@>*E&M'4@2'J&S@N#u 8@8@&.a >@g$@.j@Y>|.N''@U&@;`;==&>@;]+.*O'O'.*]+@;&>==`;@;U&'@N'|.Y>j@@.g$>@a &.8@8@u N#S@J&2'4@M'E&>*D@E@i#_ n 6@6@6@_ ( $.$.9@s _,)%k#J$S@-*m'L'D'K'a,v$N.#;:$N.>.2$|.S#h 2$|.2.u _ j>u 6@1$e@&+J'I'H'r=:>G'#&", +"#&G'q$^$.@P'k@a@%===h ,&S#L.L.] i L.L.^ g h 8=j+>.n $.v$$,w,f>E'Q'<-},($b N#_,r 7@n ( _ n 9@9@9@6@n o'E@i#>*E@R'o'z'S'5;3.] h >.&.m#r'4=%=0.A.M.T'1=`@@;i$U'V$z,H+I&c&c&I&H+z,V$U'i$@;`@1=T'M.A.0.%=4=r'm#&.>.h ] 3.5;S'z'o'R'E@>*i#E@o'n 6@9@9@9@n _ ( n 7@r _,N#b ($},<-Q'E'f>w,$,v$$.n >.j+8=h g ^ L.L.i ] L.L.S#,&h ==%=a@k@P'.@^$q$G'#&", +"h'G a=Z*V'W'Y$ =3$X'+*e@Y'+*};j=c=};i+L,Q@w e 1.3 N#_ !#< P>!&l>Z'9>},O%)&m#e-I@|.2$_ n 6@9@9@9@9@9@J#>*J#I.E@n'4@i#`'5;%.f +g b /=r'*=e@*@A.@.1*1=J-@;Z;|&s@E,(+r-M M r-(+E,s@|&Z;@;J-1=1*@.A.*@e@*=r'/=b g +f %.5;`'i#4@n'E@I.J#>*J#9@9@9@9@9@6@n _ 2$|.I@e-m#)&O%},9>Z'l>!&P>< !#_ N#3 1.e w Q@L,i+};c=j=};+*Y'e@+*X'3$ =Y$W'V'Z*a=G h'", +"h'_; ).)`*+)L#/.@)#);,,+$)+*%)w j={@,&&)};r*!$/ k#!&] g ( q;m l i>w>l%~$k#m#e-I@|.2$n n n n n 6@9@u J#>*J#>*Z+R'J#J#*)L&~#+*7.h b /=n&U,w+A+z+ +=)U&5 $=V$-);)E,p@I&>)>)I&p@E,;)-)V$$=5 U&=) +z+A+w+U,n&/=b h 7.+*~#L&*)J#J#R'Z+>*J#>*J#u 9@6@n n n n n 2$|.I@e-m#k#~$l%w>i>l m q;( g ] !&k#/ !$r*};&),&{@j=w %)+*$),+;,#)@)/.L#+)`*.) )_;h'", +"#&0;,)I>')))!)4.~){)<*0 ])Z%Q*8.v+Q>[.^)/)R,x n j&~&M._.f J,2.o#!&P%l%~$)&)%q;%.0@6@6@n _ ( _ n 9@u i#E&o'E@i#()i#4@_)~&6@j=w+h b l>|&t&Q*:)B.^%,.);p&E,s@U'<)z,p@A&[)[)A&p@z,<)U's@E,p&);,.^%B.:)Q*t&|&l>b h w+j=6@~&_)4@i#()i#E@o'E&i#u 9@n _ ( _ n 6@6@0@%.q;)%)&~$l%P%!&o#2.J,f _.M.~&j&n x R,/)^)[.Q>v+8.Q*Z%])0 <*{)~)4.!)))')I>,)0;#&", +"0$R-,=9%1&A%C%).v+i%g <.[*4;/.,&h i+,%o o j+k _ y;&.#;g M.@+[,3.a v$~$$,l m#~%r : 6@3.H@a '&:,]&G@;.Z+D@`+E@],D@4@z'})|)1)t 2)3)/+r-D S&4)4)L%5)v>j#6)]*5 r@.*b={+[+#$#$[+{+b=.*r@5 ]*6)j#v>5)L%4)4)S&D r-/+3)2)t 1)|)})z'4@D@],E@`+D@Z+;.G@]&:,'&a H@3.6@: r ~%m#l $,~$v$a 3.[,@+M.g #;&.y;_ k j+o o ,%i+h ,&/.4;[*<.g i%v+).C%A%1&9%,=R-0$", +"]+R-7)8)o&A%B*b*7 9)i <.s*s*,&h ] / @.,% +p L%$.W=v$L.i+1.@+q r n#N#J$O%}.[ r r 6@( ~#!#G@]&_-3 v$e-Z+D@`+Z+],D@J#D@0)<>a)8=b)n@<&q@U'c)D%m@h U.4#H*d)U'`@m&.*L-/+~+#$#$~+/+L-.*m&`@U'd)H*4#U.h m@D%c)U'q@<&n@b)8=a)<>0)D@J#D@],Z+`+D@Z+e-v$3 _-]&G@!#~#( 6@r r [ }.O%J$N#n#r q @+1.i+L.v$W=$.L%p +,%@./ ] h ,&s*s*<.i 9)7 b*B*A%o&8)7)R-]+", +"^+E 7)x=:%e*f=4 ^&g&g :$:$:$g M.L.1.(#,%5./ |.( A=I@g 1.$.2.r R@~%&@M$J$N%)&3.2.n 2.6@6@( 2$j>|.9@i,H.D@5@J#e)D@Z+i# @4@H*o f)(&.#9#]*N*c>r&(#o+o+p+@=n&J+m&.*x;[+p@<&<&p@[+x;.*m&J+n&@=p+o+o+(#r&c>N*]*9#.#(&f)o H*4@ @i#Z+D@e)J#5@D@H.i,9@|.j>2$( 6@6@2.n 2.3.)&N%J$M$&@~%R@r 2.$.1.g I@A=( |./ 5.,%(#1.L.M.g :$:$:$g g&^&4 f=e*:%x=7)E ^+", +"^+E g)h)o&n-i)v*R*v L.L.L.M.g :$:$g 5.}$ +h |.u S-a o*6@j>~#I@R@(,$,o#N#)&'&_ $./ S#u $.2.6@_ >.u m,H.D@5@4@:=2'H.J#j)k)o+ +l)S%j,2>c)==r&@)j=#@N>#@~*-)p&m&A*'=~+_+a$a$_+~+'=A*m&p&-)~*#@N>#@j=@)r&==c)2>j,S%l) +o+k)j)J#H.2':=4@5@D@H.m,u >._ 6@2.$.u S#/ $._ '&)&N#o#$,(,R@I@~#j>6@o*a S-u |.h +}$5.g :$:$g M.L.L.L.v R*v*i)n-o&h)g)E ^+", +"]+R-m)N 1&z;v=1-W=>.i+L.] i+:$,&,&i F$^&5.,&8@0@A=!#k 9@%.o#)%S@l%($n#3.H@>._ p ] p ] ^ K+p L.M.] n)E@D@5@4@:=2'Z+4@o)o)P#i+m@p)v-*,)*d&1$c>w D+D+t>m*|&p&m&A*'=~+7*a$a$7*~+'=A*m&p&|&m*t>D+D+w c>1$d&)**,v-p)m@i+P#o)o)4@Z+2':=4@5@D@E@n)] M.L.p K+^ ] p ] p _ >.H@3.n#($l%S@)%o#%.9@k !#A=0@8@,&5.^&F$i ,&,&:$i+] L.i+>.W=1-v=z;1&N m)R-]+", +"0$>-F 4*1&K;q)r)M#!#i h i+h i ,&:$M. +^&#;:$n 2$3 a '&: G@o#J$($7;a,3.%.2$0@N.N.(#:.Q@&)++++ +Q@(#s)E@o'>*J#e)2'J#o't)u)-,a 2*q*v)t-E R-G=b*:$3@%@D+m*-)p&m&A*'=~+_+a$a$_+~+'=A*m&p&-)m*D+%@3@:$b*G=R-E t-v)q*2*a -,u)t)o'J#2'e)J#>*o'E@s)(#Q@ +++++&)Q@:.(#N.N.0@2$%.3.a,7;($J$o#G@: '&a 3 2$n :$#;^& +M.:$,&i h i+h i !#M#r)q)K;1&4*F >-0$", +"r@y%F N :%L;w)x)]$m#i h i+h ,&<.g L.5.^&H%h j>9@&.a a !#l#O%S@a,s#7;G@$.u L.g,H%f x+#;y):.@*,%x+(#z)E&i#I.H.K#z'i#z'A)B)5)($C)D;D)/+n$m$E)Y*R#-,c@X+~*-)J+m&.*'=[+p@8-8-p@[+'=.*m&J+-)~*X+c@-,R#Y*E)m$n$/+D)D;C)($5)B)A)z'i#z'K#H.I.i#E&z)(#x+,%@*:.y)#;x+f H%g,L.u $.G@7;s#a,S@O%l#!#a a &.9@j>h H%^&5.L.g <.,&h i+h i m#]$x)w)L;:%N F y%r@", +"m&s%f.F)l*V>w)O=]$M$i+] 1.M.<.8=i i+F$g')>h q u &.: m [ b $,(,a,!&L&9@_ 2$] ^ t@;*;,:.z)f ++^%@*(#y)E&4@:=E@],z'D@n'r>j)j#@,G)$*H)}%%>o&w=I)r=x#^#4#@=n&J+m&.*x;[+p@a$a$p@[+x;.*m&J+n&@=4#^#x#r=I)w=o&%>}%H)$*G)@,j#j)r>n'D@z'],E@:=4@E&y)(#@*^%++f z):.;,;*t@^ ] 2$_ 9@L&!&a,(,$,b [ m : &.u q h )>g'F$i+i 8=<.M.1.] i+M$]$O=w)V>l*F)f.s%m&", +"=,J)K)4*8%L)g)m)H=N ~@M)&$N)8@O)G;d'p+N@d+V.o+ #N@o+( |.S-H@n#m $,l%a 3 |.2$j+x+H%# I+I+O@E.E.X+[>[>P)Q)M@l@R))#f+G.H%^ S)T)U*H+U)N ]+{+r@r@{+7%]>'@;-7#9#^-);U&8*t-A&A&t-8*U&);^-9#7#;-'@]>7%{+r@r@{+]+N U)H+U*T)S)^ H%G.f+)#R)l@M@Q)P)[>[>X+E.E.O@I+I+# H%x+j+2$|.3 a l%$,m n#H@S-|.( o+N@ #o+V.d+N@p+d'G;O)8@N)&$M)~@N H=m)g)L)8%4*K)J)=,", +"=,J)K)4*8%L)g)m)H=N ~@M)&$N)8@O)G;d'p+N@d+V.o+ #N@o+( |.S-H@n#m $,l%a 3 |.2$j+x+H%# I+I+O@E.E.X+[>[>P)Q)M@l@R))#f+G.H%^ S)T)U*H+U)N ]+{+r@r@{+7%]>'@;-7#9#^-);U&8*t-A&A&t-8*U&);^-9#7#;-'@]>7%{+r@r@{+]+N U)H+U*T)S)^ H%G.f+)#R)l@M@Q)P)[>[>X+E.E.O@I+I+# H%x+j+2$|.3 a l%$,m n#H@S-|.( o+N@ #o+V.d+N@p+d'G;O)8@N)&$M)~@N H=m)g)L)8%4*K)J)=,", +"m&s%f.F)l*V>w)O=]$M$i+] 1.M.<.8=i i+F$g')>h q u &.: m [ b $,(,a,!&L&9@_ 2$] ^ t@;*;,:.z)f ++^%@*(#y)E&4@:=E@],z'D@n'r>j)j#@,G)$*H)}%%>o&w=I)r=x#^#4#@=n&J+m&.*x;[+p@a$a$p@[+x;.*m&J+n&@=4#^#x#r=I)w=o&%>}%H)$*G)@,j#j)r>n'D@z'],E@:=4@E&y)(#@*^%++f z):.;,;*t@^ ] 2$_ 9@L&!&a,(,$,b [ m : &.u q h )>g'F$i+i 8=<.M.1.] i+M$]$O=w)V>l*F)f.s%m&", +"r@y%F N :%L;w)x)]$m#i h i+h ,&<.g L.5.^&H%h j>9@&.a a !#l#O%S@a,s#7;G@$.u L.g,H%f x+#;y):.@*,%x+(#z)E&i#I.H.K#z'i#z'A)B)5)($C)D;D)/+n$m$E)Y*R#-,c@X+~*-)J+m&.*'=[+p@8-8-p@[+'=.*m&J+-)~*X+c@-,R#Y*E)m$n$/+D)D;C)($5)B)A)z'i#z'K#H.I.i#E&z)(#x+,%@*:.y)#;x+f H%g,L.u $.G@7;s#a,S@O%l#!#a a &.9@j>h H%^&5.L.g <.,&h i+h i m#]$x)w)L;:%N F y%r@", +"0$>-F 4*1&K;q)r)M#!#i h i+h i ,&:$M. +^&#;:$n 2$3 a '&: G@o#J$($7;a,3.%.2$0@N.N.(#:.Q@&)++++ +Q@(#s)E@o'>*J#e)2'J#o't)u)-,a 2*q*v)t-E R-G=b*:$3@%@D+m*-)p&m&A*'=~+_+a$a$_+~+'=A*m&p&-)m*D+%@3@:$b*G=R-E t-v)q*2*a -,u)t)o'J#2'e)J#>*o'E@s)(#Q@ +++++&)Q@:.(#N.N.0@2$%.3.a,7;($J$o#G@: '&a 3 2$n :$#;^& +M.:$,&i h i+h i !#M#r)q)K;1&4*F >-0$", +"]+R-m)N 1&z;v=1-W=>.i+L.] i+:$,&,&i F$^&5.,&8@0@A=!#k 9@%.o#)%S@l%($n#3.H@>._ p ] p ] ^ K+p L.M.] n)E@D@5@4@:=2'Z+4@o)o)P#i+m@p)v-*,)*d&1$c>w D+D+t>m*|&p&m&A*'=~+7*a$a$7*~+'=A*m&p&|&m*t>D+D+w c>1$d&)**,v-p)m@i+P#o)o)4@Z+2':=4@5@D@E@n)] M.L.p K+^ ] p ] p _ >.H@3.n#($l%S@)%o#%.9@k !#A=0@8@,&5.^&F$i ,&,&:$i+] L.i+>.W=1-v=z;1&N m)R-]+", +"^+E g)h)o&n-i)v*R*v L.L.L.M.g :$:$g 5.}$ +h |.u S-a o*6@j>~#I@R@(,$,o#N#)&'&_ $./ S#u $.2.6@_ >.u m,H.D@5@4@:=2'H.J#j)k)o+ +l)S%j,2>c)==r&@)j=#@N>#@~*-)p&m&A*'=~+_+a$a$_+~+'=A*m&p&-)~*#@N>#@j=@)r&==c)2>j,S%l) +o+k)j)J#H.2':=4@5@D@H.m,u >._ 6@2.$.u S#/ $._ '&)&N#o#$,(,R@I@~#j>6@o*a S-u |.h +}$5.g :$:$g M.L.L.L.v R*v*i)n-o&h)g)E ^+", +"^+E 7)x=:%e*f=4 ^&g&g :$:$:$g M.L.1.(#,%5./ |.( A=I@g 1.$.2.r R@~%&@M$J$N%)&3.2.n 2.6@6@( 2$j>|.9@i,H.D@5@J#e)D@Z+i# @4@H*o f)(&.#9#]*N*c>r&(#o+o+p+@=n&J+m&.*x;[+p@<&<&p@[+x;.*m&J+n&@=p+o+o+(#r&c>N*]*9#.#(&f)o H*4@ @i#Z+D@e)J#5@D@H.i,9@|.j>2$( 6@6@2.n 2.3.)&N%J$M$&@~%R@r 2.$.1.g I@A=( |./ 5.,%(#1.L.M.g :$:$:$g g&^&4 f=e*:%x=7)E ^+", +"]+R-7)8)o&A%B*b*7 9)i <.s*s*,&h ] / @.,% +p L%$.W=v$L.i+1.@+q r n#N#J$O%}.[ r r 6@( ~#!#G@]&_-3 v$e-Z+D@`+Z+],D@J#D@0)<>a)8=b)n@<&q@U'c)D%m@h U.4#H*d)U'`@m&.*L-/+~+#$#$~+/+L-.*m&`@U'd)H*4#U.h m@D%c)U'q@<&n@b)8=a)<>0)D@J#D@],Z+`+D@Z+e-v$3 _-]&G@!#~#( 6@r r [ }.O%J$N#n#r q @+1.i+L.v$W=$.L%p +,%@./ ] h ,&s*s*<.i 9)7 b*B*A%o&8)7)R-]+", +"0$R-,=9%1&A%C%).v+i%g <.[*4;/.,&h i+,%o o j+k _ y;&.#;g M.@+[,3.a v$~$$,l m#~%r : 6@3.H@a '&:,]&G@;.Z+D@`+E@],D@4@z'})|)1)t 2)3)/+r-D S&4)4)L%5)v>j#6)]*5 r@.*b={+[+#$#$[+{+b=.*r@5 ]*6)j#v>5)L%4)4)S&D r-/+3)2)t 1)|)})z'4@D@],E@`+D@Z+;.G@]&:,'&a H@3.6@: r ~%m#l $,~$v$a 3.[,@+M.g #;&.y;_ k j+o o ,%i+h ,&/.4;[*<.g i%v+).C%A%1&9%,=R-0$", +"#&0;,)I>')))!)4.~){)<*0 ])Z%Q*8.v+Q>[.^)/)R,x n j&~&M._.f J,2.o#!&P%l%~$)&)%q;%.0@6@6@n _ ( _ n 9@u i#E&o'E@i#()i#4@_)~&6@j=w+h b l>|&t&Q*:)B.^%,.);p&E,s@U'<)z,p@A&[)[)A&p@z,<)U's@E,p&);,.^%B.:)Q*t&|&l>b h w+j=6@~&_)4@i#()i#E@o'E&i#u 9@n _ ( _ n 6@6@0@%.q;)%)&~$l%P%!&o#2.J,f _.M.~&j&n x R,/)^)[.Q>v+8.Q*Z%])0 <*{)~)4.!)))')I>,)0;#&", +"h'_; ).)`*+)L#/.@)#);,,+$)+*%)w j={@,&&)};r*!$/ k#!&] g ( q;m l i>w>l%~$k#m#e-I@|.2$n n n n n 6@9@u J#>*J#>*Z+R'J#J#*)L&~#+*7.h b /=n&U,w+A+z+ +=)U&5 $=V$-);)E,p@I&>)>)I&p@E,;)-)V$$=5 U&=) +z+A+w+U,n&/=b h 7.+*~#L&*)J#J#R'Z+>*J#>*J#u 9@6@n n n n n 2$|.I@e-m#k#~$l%w>i>l m q;( g ] !&k#/ !$r*};&),&{@j=w %)+*$),+;,#)@)/.L#+)`*.) )_;h'", +"h'G a=Z*V'W'Y$ =3$X'+*e@Y'+*};j=c=};i+L,Q@w e 1.3 N#_ !#< P>!&l>Z'9>},O%)&m#e-I@|.2$_ n 6@9@9@9@9@9@J#>*J#I.E@n'4@i#`'5;%.f +g b /=r'*=e@*@A.@.1*1=J-@;Z;|&s@E,(+r-M M r-(+E,s@|&Z;@;J-1=1*@.A.*@e@*=r'/=b g +f %.5;`'i#4@n'E@I.J#>*J#9@9@9@9@9@6@n _ 2$|.I@e-m#)&O%},9>Z'l>!&P>< !#_ N#3 1.e w Q@L,i+};c=j=};+*Y'e@+*X'3$ =Y$W'V'Z*a=G h'", +"#&G'q$^$.@P'k@a@%===h ,&S#L.L.] i L.L.^ g h 8=j+>.n $.v$$,w,f>E'Q'<-},($b N#_,r 7@n ( _ n 9@9@9@6@n o'E@i#>*E@R'o'z'S'5;3.] h >.&.m#r'4=%=0.A.M.T'1=`@@;i$U'V$z,H+I&c&c&I&H+z,V$U'i$@;`@1=T'M.A.0.%=4=r'm#&.>.h ] 3.5;S'z'o'R'E@>*i#E@o'n 6@9@9@9@n _ ( n 7@r _,N#b ($},<-Q'E'f>w,$,v$$.n >.j+8=h g ^ L.L.i ] L.L.S#,&h ==%=a@k@P'.@^$q$G'#&", +"#&G':>r=H'I'J'&+e@1$6@u j>_ u 2.|.2$h S#|.2$>.N.:$#;N.v$a,K'D'L'm'-*S@J$k#)%_,s 9@$.$.( _ 6@6@6@n _ i#E@D@>*E&M'4@2'J&S@N#u 8@8@&.a >@g$@.j@Y>|.N''@U&@;`;==&>@;]+.*O'O'.*]+@;&>==`;@;U&'@N'|.Y>j@@.g$>@a &.8@8@u N#S@J&2'4@M'E&>*D@E@i#_ n 6@6@6@_ ( $.$.9@s _,)%k#J$S@-*m'L'D'K'a,v$N.#;:$N.>.2$|.S#h 2$|.2.u _ j>u 6@1$e@&+J'I'H'r=:>G'#&", +"B'#&j&S=>#b#C'y+G*1.~#I@r 3.H@;.3 : g $.3 G@&.N.x Q>#,/ $,m'D'E'i&~$J$^.r=[ e-%.2$( ( _ n n 6@6@6@n J#E&o'`+>*o'E&J#$,$,n#m#H@8@7@u n*@ 5.F't$|.+-T$y*>@7,n=Z;>@r@s$W*W*s$r@>@Z;n=7,>@y*T$+-|.t$F'5.@ n*u 7@8@H@m#n#$,$,J#E&o'>*`+o'E&J#n 6@6@6@n n _ ( ( 2$%.e-[ r=^.J$~$i&E'D'm'$,/ #,Q>x N.&.G@3 $.g : 3 ;.H@3.r I@~#1.G*y+C'b#>#S=j&#&B'", +"_;h'N%s't'u'v'w'G;9@)%o#)%o#M#E=Z-l#L._#[ n#H@/ Y%x'{%F*p,];y'P%$,9@J$M%!%b ;.3.0@n 9@9@6@6@9@9@u 2$J#E@z'5@>*i#`+E@r#r#S@N#l#H@0@M.Z@Y@<.A'q']&k- &t-o@r'>&d&>@m&.*W*W*.*m&>@d&>&r'o@t- &k-]&q'A'<.Y@Z@M.0@H@l#N#S@r#r#E@`+i#>*5@z'E@J#2$u 9@9@6@6@9@9@n 0@3.;.b !%M%J$9@$,P%y'];p,F*{%x'Y%/ H@n#[ _#L.l#Z-E=M#o#)%o#)%9@G;w'v'u't's'N%h'_;", +"h'a&m#9.i'r.r.i'z a m#o#m#o#r=`=b N#p u,)%($k#i+8.;'j'k'o,l'm'!&3.M.(${$M#[ e-3.0@6@7@2$u 9@u 2$0@8@i#J#n'Z+E&o'>*E@E=E=(,S@)%&.>.g y*Y;t*p'q'!#k-@-J+*,d.==r'@;m&A&W*W*A&m&@;r'==d.*,J+@-k-!#q'p't*Y;y*g >.&.)%S@(,E=E=E@>*o'E&Z+n'J#i#8@0@2$u 9@u 2$7@6@0@3.e-[ M#{$($M.3.!&m'l'o,k'j';'8.i+k#($)%u,p N#b `=r=o#m#o#m#a z i'r.r.i'9.m#a&h'", +"!@H*U+'#-#d$b'c'B.7'i+L.j+L%_-v$n#n#g;@&$.:.=@C@A.6'd'8'9'q;3'~>q$3-i+M.L.$.s %.m#b y>I@+*5.[ !&n [$/ e'f'};;,#.%.~%7;J&J&$,o#[ 3 '&Q>5.B%[ o#4.g'Q>8@2$2$8@0@9@6@u B#B#u 6@9@0@8@2$2$8@Q>g'4.o#[ B%5.Q>'&3 [ o#$,J&J&7;~%%.#.;,};f'e'/ [$n !&[ 5.+*I@y>b m#%.s $.L.M.i+3-q$~>3'q;9'8'd'6'A.C@=@:.$.@&g;n#n#v$_-L%j+L.i+7'B.c'b'd$-#'#U+H*!@", +"Y+p#u@|#6+T [@~ S+6'i+L.j+L%e-a N#N#7>.=( :.A |@S+7'F.8'9'q;3'~>q$5$L.i+L._ r %.o#[ i>a c= +[ s#_ L$j+0'a'h&F*g,2 P><#J&J&$,o#[ ]&'&c=@.8@l#N#L%c j=>.7@0@|.>.u 6@9@s%s%9@6@u >.|.0@7@>.j=c L%N#l#8@@.c='&]&[ o#$,J&J&<#P>2 g,F*h&a'0'j+L$_ s#[ +c=a i>[ o#%.r _ L.i+L.5$q$~>3'q;9'8'F.7'S+|@A :.( .=7>N#N#a e-L%j+L.i+6'S+~ [@T 6+|#u@p#Y+", +"<'p#V@['x.&&[@1@}'|'M.i+/ B%;.: o#o#X*<=( :.A |@Z>f@F.1'2'_-3'C%A*r$1.] L.6@3.%.N#l#A-!#7.F$[ s#$.]%$.4')>7.Q@2.:#5'J&J&<#$,N#l#H@3 ,%1.2$&.G@7@<.,%>.0@>.B%L%2$n 6@R-R-6@n 2$L%B%>.0@>.,%<.7@G@&.2$1.,%3 H@l#N#$,<#J&J&5':#2.Q@7.)>4'$.]%$.s#[ F$7.!#A-l#N#%.3.6@L.] 1.r$A*C%3'_-2'1'F.f@Z>|@A :.( <=X*o#o#: ;.B%/ i+M.|'}'1@[@&&x.['V@p#<'", +"p#U.]'^'@>/'@@('F.f+i+i+/ B%;.: )%)%f=.=2.:.=@Z>S+Y>Y+J#D@_-_'<=~+A&/ 1.] u I@r &@m#A-!#7.,%[ s#( L$_#,,++^%5._ R@:'@,J&7;($N#m#&.3 ,&n 2$R#&.9@|.,&0@7@8@B%L%u ( ( A#A#( ( u L%B%8@7@0@,&|.9@&.R#2$n ,&3 &.m#N#($7;J&@,:'R@_ 5.^%++,,_#L$( s#[ ,%7.!#A-m#&@r I@u ] 1./ A&~+<=_'_-D@J#Y+Y>S+Z>=@:.2..=f=)%)%: ;.B%/ i+i+f+F.('@@/'@>^']'U.p#", +"5#U.}*v+!'m%L$+,Q@u L.L.j+B%;.: )%)%X*@&_#x+=@A.@#Y>E@>'~'e-''q*B#~+/ j+1.2$G@2 < m#P%a w F$[ !&_ Q%_-i,j+o h a (${'5;J&a,O%n#o#!#]&'&I@8@R*|.9@]&k%2$u 7@|.>.6@$.$.4$4$$.$.6@>.|.7@u 2$k%]&9@|.R*8@I@'&]&!#o#n#O%a,J&5;{'($a h o j+i,_-Q%_ !&[ F$w a P%m#< 2 G@2$1.j+/ ~+B#q*''e-~'>'E@Y>@#A.=@x+_#@&X*)%)%: ;.B%j+L.L.u Q@+,L$m%!'v+}*U.5#", +"P@4#%=+,P,;'Q%c=g o*] 1.p |.e-a o#)%X**;_#:.A @#9+f@g+>','e-'':*B#B#1.p / 2$G@s ~%m#-*v$j= +l#s#_ L$:#_-6@:$2$a l m>)'J&s#~$n#N#a H@M%o#'&[.|.: N%G$9@6@u 8@0@6@( _ a$a$_ ( 6@0@8@u 6@9@G$N%: |.[.'&o#M%H@a N#n#~$s#J&)'m>l a 2$:$6@_-:#L$_ s#l# +j=v$-*m#~%s G@2$/ p 1.B#B#:*''e-,'>'g+f@9+@#A :._#*;X*)%o#a e-|.p 1.] o*g c=Q%;'P,+,%=4#P@", +"-,E;D%+'@'#'$'%'S%4 / / S#>._-v$N#o#X**;_#Q@P#A.9+f@&'Y,*':#='w$J-5 ] N.p 2$G@e-~%[ i>v$j=5.m#<#2.P,&@r 9@i+_ o#/=L&-'J&!&J$n#n#v$H@/=l '&<.1.v$M%^$u 6@9@0@0@9@n 9@p%p%9@n 9@0@0@9@6@u ^$M%v$1.<.'&l /=H@v$n#n#J$!&J&-'L&/=o#_ i+9@r &@P,2.<#m#5.j=v$i>[ ~%e-G@2$p N.] 5 J-w$=':#*'Y,&'f@9+A.P#Q@_#*;X*o#N#v$_->.S#/ / 4 S%%'$'#'@'+'D%E;-,", +"$@T,F+U,V,v&W,q&}>O>j+j+K+8@q;v$N#N#X**;@+5.r+S+9+Y>X,Y,Z,:#`,w$J-a%L.N.N.u I@e-~%b l>: c=5.o#@,_# 'l#I@2$u @+n#/=v,.'J&!&J$n#&@v$&.i>M$3 M.K+I@M%l>2$6@9@0@0@u u 0@p%p%0@u u 0@0@9@6@2$l>M%I@K+M.3 M$i>&.v$&@n#J$!&J&.'v,/=n#@+u 2$I@l# '_#@,o#5.c=: l>b ~%e-I@u N.N.L.a%J-w$`,:#Z,Y,X,Y>9+S+r+5.@+*;X*N#N#v$q;8@K+j+j+O>}>q&W,v&V,U,F+T,$@", +"B.M,'#y+s,H,T+N,9+O,n 9@6@2 q;E=&@M$3.s q;L%9@^ ,&Q %.r %.G@G@%.r 3./ K+g,N.K+#.N.i+L.f 0 P,Q,R,Q K+< 2 u +:.6@a :#;.3.I@r ;.r I@I@G@I@v$!#!#a !#'&{+V*@%E,S,V-#$'@] ] '@#$V-S,E,@%V*{+'&!#a !#!#v$I@G@I@I@r ;.r I@3.;.:#a 6@:. +u 2 < K+Q R,Q,P,0 f L.i+N.#.K+N.g,K+/ 3.r %.G@G@%.r %.Q ,&^ 9@L%q;s 3.M$&@E=q;2 6@9@n O,9+N,T+H,s,y+'#M,B.", +"A+F,G,u@I#H,T+9+C@I,_ 6@6@3.R@:#r#$,)%m ;.|.9@#.:$J,3.%.3.v$G@%.r ~#L.S##.K+S#K+p i+9@/ |*r*K,};L,2.R@e-_ Q@++n a ~%;.3.I@%.%.I@v$I@!#: !#H@!#G@v$H@{+j$7-E,.#^-B#m&j+j+m&B#^-.#E,7-j${+H@v$G@!#H@!#: !#I@v$I@%.%.I@3.;.~%a n ++Q@_ e-R@2.L,};K,r*|*/ 9@i+p K+S#K+#.S#L.~#r %.G@v$3.%.3.J,:$#.9@|.;.m )%$,r#:#R@3.6@6@_ I,C@9+T+H,I#u@G,F,A+", +"R+A,]@}@,#B,z+A.C,Z#_ _ I@I@&@l%},P>[ o#m ]&6@j>L.^ ~#3.I@a G@%.%.G@h p ^ #.N.p 1.i+N#G@o*#;H%6@;.< < q;@+#;++6@!#&@s %.3.3.G@!#: ~#'&]&]&3 !#I@I@: ^+R-D,E,X%6-#$R&] ] R&#$6-X%E,D,R-^+: I@I@!#3 ]&]&'&~#: !#G@3.3.%.s &@!#6@++#;@+q;< < ;.6@H%#;o*G@N#i+1.p N.#.^ p h G@%.%.G@a I@3.~#^ L.j>6@]&m o#[ P>},l%&@I@I@_ _ Z#C,A.z+B,,#}@]@A,R+", +"8+y,3%I#I#H>H>@#C@@#G@%.r n#O%S@5;5;^.l n#: I@j>$.@+~#~#G@a G@r 3.a g j+^ ^ N.1.L.] a,J$R#n $.!#r#J&)%e-_#:.x+9@!#n#;.2 %.3.a H@: 3.k%3 3 3 &.G@I@: 0$>-8*z,9$Z@<&r@L.L.r@<&Z@9$z,8*>-0$: I@G@&.3 3 3 k%3.: H@a 3.%.2 ;.n#!#9@x+:._#e-)%J&r#!#$.n R#J$a,] L.1.N.^ ^ j+g a 3.r G@a G@~#~#@+$.j>I@: n#l ^.5;5;S@O%n#r %.G@@#C@@#H>H>I#I#3%y,8+", +"&+q,r,s,I#B.%+A.A.S+v$~%E=S@$,<#7;t,M$~$~$n#n#2 u,2.~#~#v$a ~#2 3.!#h / #.^ N.] L.1.v,J$r=I@3.)&$,w,b _-x,x+x+n v$~%e-s r %.v$&.: %.]&&.H@3 H@v$a H@m&A#);>@Q$t-a$/+1.1./+a$t-Q$>@);A#m&H@a v$H@3 H@&.]&%.: &.v$%.r s e-~%v$n x+x+x,_-b w,$,)&3.I@r=J$v,1.L.] N.^ #./ h !#3.2 ~#a v$~#~#2.u,2 n#n#~$~$M$t,7;<#$,S@E=~%v$S+A.A.%+B.I#s,r,q,&+", +"B.n,3%h#y+B+%+C@S+0.m#~%},r#<#J&~&y=a,a,l S@N#3.o,I@3.~#v$v$3.;.3.!#1./ K+^ S#] ] j+s#M$A=$.2.'&($@,N%_,m,@*x+_ 3.p,;.r %.%.I@: a 3.: a : H@H@: !#'&r@R-J+!-Q$y*B#_+M.M._+B#y*Q$!-J+R-r@'&!#: H@H@: a : 3.a : I@%.%.r ;.p,3._ x+@*m,_,N%@,($'&2.$.A=M$s#j+] ] S#^ K+/ 1.!#3.;.3.v$v$~#3.I@o,3.N#S@l a,a,y=~&J&<#r#},~%m#0.S+C@%+B+y+h#3%n,B.", +"$ k,'#h@1@8+0,|@A.W#l#$,r#s#7;e,y>_=@,<#/=r#M$)%l,!#%.~#G@G@r e-%.!#S#j+p g,K+/ 1.p l [ o*g,g,|.n#l%)&:,m,x+(#u G@:#2 ~#G@3.3.G@a G@v$G@a &.&.a !#'&{+E y*a%Q$;->-q@s*s*q@>-;-Q$a%y*E {+'&!#a &.&.a G@v$G@a G@3.3.G@~#2 :#G@u (#x+m,:,)&l%n#|.g,g,o*[ l p 1./ K+g,p j+S#!#%.e-r G@G@~#%.!#l,)%M$r#/=<#@,_=y>e,7;s#r#$,l#W#A.|@0,8+1@h@'#k,$ ", +"8,9,-+h#1@$+0,|@9+>#{$O%O%E*a,b,c,d,e,J&^$S@^.b f,)&%.3.G@G@2 _-r !#^ p / K+g,p / N.l#H@<.h,h,:$I@:#Z-_,i,(#^%|.&.n#%.v$: I@%.I@: : G@I@v$&.!#a : 3 ~+E 7#j,6 M-U*8>s*s*8>U*M-6 j,7#E ~+3 : a !#&.v$I@G@: : I@%.I@: v$%.n#&.|.^%(#i,_,Z-:#I@:$h,h,<.H@l#N./ p g,K+/ p ^ !#r _-2 G@G@3.%.)&f,b ^.S@^$J&e,d,c,b,a,E*O%O%{$>#9+|@0,$+1@h#-+9,8,", +"o+t>^,/,T+o.]%;,. x&3*A*I&k*k*I&A*3*p@p@(+(+_+7*(+{+S@(,b n#_,:,,,8@( 0@2.<,[,6@n _ M$g Z%Q@},|,},p 1,2,3,T@H#,+e&4,7-5,@%t-p&7-J-6-@%8*y*~@*,6,7,]*L;1&X*i*&.j;k=5@r@r@5@k=j;&.i*X*1&L;]*7,6,*,~@y*8*@%6-J-7-p&t-@%5,7-4,e&,+H#T@3,2,1,p },|,},Q@Z%g M$_ n 6@[,<,2.0@( 8@,,:,_,n#b (,S@{+(+7*_+(+(+p@p@3*A*I&k*k*I&A*3*x&. ;,]%o.T+/,^,t>o+", +"c@D+$$Y>T+o.Q*;,w-s=J;I&I&r-2&A&A*I&H+H+H+~+_+,@p@[+O%>,n#R@e-r q 0@n 7@@+,,j>_ ( 9@&@(#A>+*l%',R@:.),!,~,{,0.w +%|>/+~+/+'@{+p@{+a-B#a$7#a%*,1%d&V=n-A%~>0&G@j#],I.{+{+I.],j#G@0&~>A%n-V=d&1%*,a%7#a$B#a-{+p@{+'@/+~+/+|>+%w 0.{,~,!,),:.R@',l%+*A>(#&@9@( _ j>,,@+7@n 0@q r e-R@n#>,O%[+p@,@_+~+H+H+H+I&A*A&2&r-I&I&J;s=w-;,Q*o.T+Y>$$D+c@", +"G*q#t$Y>Z>N>j=N.w-i*`>r-3*3*A&.*A*2&^+^+{+[+p@7*_+p@l ,E=.,r !#$.7@2$9@_#q n ( 2.7@s ;*<$+,3.@,%.#,U%9&$,u#T+T>i*%, %q$p$n$.%[=p$&,s%#$U*5 *,.#!+d&+&8&=,G&n#j#j;-,4$4$-,j;j#n#G&=,8&+&d&!+.#*,5 U*#$s%&,p$[=.%n$p$q$ %%,i*T>T+u#$,9&U%#,%.@,3.+,<$;*s 7@2.( n q _#9@2$7@$.!#r .,E= ,l p@_+7*p@[+{+^+^+2&A*.*A&3*3*r-`>i*w-N.j=N>Z>Y>t$q#G*", +"G*N>j@C@C@O@M.6@O>i*J;3*A*3*A&.*A&r-{+]+^+[+(+(+(+_+}.P>R@`=r H@_ 7@8@n q $.7@2.j>>.@+Q>R>{&v$O%( r*S>+%M$V#H>T>y#l*I=U>%>V>+=I>%>J>]+~+U*5 Z@.#6 Q$K-+&W>e=M$F@X>P;J+J+P;X>F@M$e=W>+&K-Q$6 .#Z@5 U*~+]+J>%>I>+=V>%>U>I=l*y#T>H>V#M$+%S>r*( O%v${&R>Q>@+>.j>2.7@$.q n 8@7@_ H@r `=R@P>}._+(+(+(+[+^+]+{+r-A&.*A&3*A*3*J;i*O>6@M.O@C@C@j@N>G*", +"3@a.h@*+W@$@]&l#i*B*.*}%s$3*I&A&A&2&~+{+/+(+~+/+H+_+}.S@o#:#s !#( 2$8@_ q n 8@2._#>.v$j=i%u+H@E*G@F*F>q*E*G>H>[$b*n$I>+=L;t=z;L;z;J>'@H+r@8#x-7-6 9$]+9-K>L>w>M>P@E+6$6$E+P@M>w>L>K>9-]+9$6 7-x-8#r@H+'@J>z;L;z;t=L;+=I>n$b*[$H>G>E*q*F>F*G@E*H@u+i%j=v$>._#2.8@n q _ 8@2$( !#s :#o#S@}._+H+/+~+(+/+{+~+2&A&A&I&3*s$}%.*B*i*l#]&$@W@*+h@a.3@", +"3@t>u>,#t$v>G${$e&a* &;= &.*A&A*A*2&_+H+H+p@~+]+{+_+{$~$N%< 2 : 2.9@2$_ j>n 8@( _#0@N% +M&^%j&w>l x+x>@&y>z>;#A>-@K-B>I=S;L;t=z;K;L;@-0*r@[+j$9#p&J+E 9-C>D>3;E>e+#>s@s@#>e+E>3;D>C>9-E J+p&9#j$[+r@0*@-L;K;z;t=L;S;I=B>K--@A>;#z>y>@&x>x+l w>j&^%M& +N%0@_#( 8@n j>_ 2$9@2.: 2 < N%~${$_+{+]+~+p@H+H+_+2&A*A*A&.* &;= &a*e&{$G$v>t$,#u>t>3@", +"2@T.T%~ }#h>/=i>{=B*T$;=;=T$s$}%.*I&,@[+[+7*(+]+{+W%M$J$)&&@%.H@$._ n n @+( 7@n j>9@K&8@7.>.y=k>l>I@`@D;m>n>T+;%*= &.%r$5$q.o$m$ %5$9-0*;=[+R&<&U&J+7#'@N=o>p>q>E.r>s>s>r>E.q>p>o>N='@7#J+U&<&R&[+;=0*9-5$ %m$o$q.5$r$.% &*=;%T+n>m>D;`@I@l>k>y=>.7.8@K&9@j>n 7@( @+n n _ $.H@%.&@)&J$M$W%{+]+(+7*[+[+,@I&.*}%s$T$;=;=T$B*{=i>/=h>}#~ T%T.2@", +"W+4>X$y+5>6>-*~&7>~>.*K-9-@-;=;=s$I&,@[+[+,@p@]+/+8>M$O%b m I@R#_ $.( 6@$.2.2$6@@+_ 9>b i+H@0>a>3;o#Z@D;b>C#g#;%c>{+9-}%3*A&T$@-}%2& *.*;=[+R&#$A#s%y*^+d>e>f>O;X+'>g>g>'>X+O;f>e>d>^+y*s%A##$R&[+;=.* *2&}%@-T$A&3*}%9-{+c>;%g#C#b>D;Z@o#3;a>0>H@i+b 9>_ @+6@2$2.$.6@( $._ R#I@m b O%M$8>/+]+p@,@[+[+,@I&s$;=;=@-9-K-.*~>7>~&-*6>5>y+X$4>W+", +"a@/>(>P._>h&O-0&5$e*}%s$K-'=,- &s$T$B#{+:>!=<#<>5@H*V.3@[>:$+ }>6-7#q.r$q.0*a-(+j$B#|>1>2>j$J=|> *5 a !#3>r A=a '&!#_+;=3*q.p$o&T*$-~+/+0$r@0${+[+~+A#A#A#^+}%}%n$A%0$0$A%n$}%}%^+A#A#A#~+[+{+0$r@0$/+~+$-T*o&p$q.3*;=_+!#'&a A=r 3>!#a 5 *|>J=j$2>1>|>B#j$(+a-0*q.r$q.7#6-}>+ :$[>3@V.H*5@<><#!=:>{+B#T$s$ &,-'=K-s$}%e*5$0&O-h&_>P.(>/>a@", +"->;>>>,>'>)>!><=T&J*A*3*A*;=,- &A&2&#$[+~>d*s#{>:=4#X+N@ #8=-&@ V-Z@r$5$r$.*]>p@j$8#S;r@6$A#1&P*m$X%: &.^>2 k%a 3 &./+,-.*m$8&o&T*a=.*s$ &K- &}%0*.*y%>-^+^+}%}%o$n$0$0$n$o$}%}%^+^+>-y%.*0*}% &K- &s$.*a=T*o&8&m$.*,-/+&.3 a k%2 ^>&.: X%m$P*1&A#6$r@S;8#j$p@]>.*r$5$r$Z@V-@ -&8= #N@X+4#:={>s#d*~>[+#$2&A& &,-;=A*3*A*J*T&<=!>)>'>,>>>;>->", +" >.>+>@>#>H%z#1-p$:%A&r-2& &,- &I&'*#$p@g;Z*T#$>k=U.O@3@d+8=H;b*^-7#5$5$5$A*o=7*j$4$%>r@&>p&J**>}%a%H@H@=>;.H@a ]&]&0$@-.* *g=J*e*J*s$s$}%T$T$T$}%s$s%/+{+}%}%o$p$:%0$0$:%p$o$}%}%{+/+s%s$}%T$T$T$}%s$s$J*e*J*g= *.*@-0$]&]&a H@;.=>H@H@a%}%*>J*p&&>r@%>4$j$7*o=A*5$5$5$7#^-b*H;8=d+3@O@U.k=$>T#Z*g;p@#$'*I& &,- &2&r-A&:%p$1-z#H%#>@>+>.> >", +"T;U;V;Y.=@/ .-W;K-8&.*3*A*K-9-T$A&I&4$p@M;N;^$X;u;p#G*3@o+g + Y;Z@U&5$T&5$3*7%W%j$s%n-1=Z;y*p$u= &`;]&H@e-_-v$: &.k%/+s$r-+& *3-:%:%o$p$ %p$o$m$m$n$H+H+0*s$n$n$:%l*0$0$l*:%n$n$s$0*H+H+n$m$m$o$p$ %p$o$:%:%3- *+&r-s$/+k%&.: v$_-e-H@]&`; &u=p$y*Z;1=n-s%j$W%7%3*5$T&5$U&Z@Y;+ g o+3@G*p#u;X;^$N;M;p@4$I&A&T$9-K-A*3*.*8&K-W;.-/ =@Y.V;U;T;", +"X.+.E+a@V.n D=B*A*m$s$0*T$K-}%A*.*K-R-~+M;N;H$O;u;E;P;G*c@L.4&,.U&J+T&T&5$I&m&q@j$A#T*^->&o@m$$-0$Q;]&&.3.q;~#&.!#S-p@A&R;m$A%$-1&e*o$ %.%q$o$A%A%m$s$.*A* %n$z=q%S;0$0$S;q%z=n$ %A*.*s$m$A%A%o$q$.% %o$e*1&$-A%m$R;A&p@S-!#&.~#q;3.&.]&Q;0$$-m$o@>&^-T*A#j$q@m&I&5$T&T&J+U&,.4&L.c@G*P;E;u;O;H$N;M;~+R-K-.*A*}%K-T$0*s$m$A*B*D=n V.a@E++.X.", +"Z.X.V.b@^#G@0%C;2&K-0*s$T$T$A&r-.*9-U*[+D;Z*h;i;f;E;F;G*G;L.4&H;p&`@5$5$r$I&r@q@I;U*8&6-5=L*;=c-{+==&.!#a q;%.]&: F=_+.*J;p$o$a=x*x*:%J*G-J*z=s;n-z=T$0*q.q$o&K;L;q%0$0$q%L;K;o&q$q.0*T$z=n-s;z=J*G-J*:%x*x*a=o$p$J;.*_+F=: ]&%.q;a !#&.=={+c-;=L*5=6-8&U*I;q@r@I&r$5$5$`@p&H;4&L.G;G*F;E;f;i;h;Z*D;[+U*9-.*r-A&T$T$s$0*K-2&C;0%G@^#b@V.X.Z.", +"T.X.p#x#f;G@+%0&3*@-0*0*}%T$0*3*.*K-E H+g;t;h;i;u;H* =X+ =i+,.v;`@);r$r$q.3*r@q@n;1=m$o@#=w;x;l=4$>&a v$H@q;r k%a y;_+K-3*q.q.G-,;x*l*G-a=J*e*T*n-1&8&p$q.G-o&z;A;B;0$0$B;A;z;o&G-q.p$8&1&n-T*e*J*a=G-l*x*,;G-q.q.3*K-_+y;a k%r q;H@v$a >&4$l=x;w;#=o@m$1=n;q@r@3*q.r$r$);`@v;,.i+ =X+ =H*u;i;h;t;g;H+E K-.*3*0*T$}%0*0*@-3*0&+%G@f;x#p#X.T.", +"+.e;I.f;%$m 0%0&3*;=T$0*s$K-;=}%0*}%A#[+g;D*h;i;j;4#V.k;2@L.,.l;);8*r$q.q.3*r@q@m;n;m$>@o;p;a-T&s%>&G@G@3 q;r A=a r;_+9-A&[=l=a=,;n-J*G-a=l*n-x*s;1& *o$a=a=q%t=%-l&0$0$l&%-t=q%a=a=o$ *1&s;x*n-l*a=G-J*n-,;a=l=[=A&9-_+r;a A=r q;3 G@G@>&s%T&a-p;o;>@m$n;m;q@r@3*q.q.r$8*);l;,.L.2@k;V.4#j;i;h;D*g;[+A#}%0*}%;=K-s$0*T$;=3*0&0%m %$f;I.e;+.", +"j <;Z@@%4$E ~+r-A*0*9-s$K-9-}%T$ &I&/+~+[;A#J+^-6 !-};x F+m@D >@%*|;G-1;7*U&X%9#j$2;3;/=4;!$|*,&5;6;k#l#a %._-G@d-b 7;^;8;9;}%}%0;0;G@!#9=;;T$a;b;c;:;o&:%:%a=l*e*l*d;d;l*e*l*a=:%:%o&:;c;b;a;T$;;9=!#G@0;0;}%}%9;8;^;7;b d-G@_-%.a l#k#6;5;,&|*!$4;/=3;2;j$9#X%U&7*1;G-|;%*>@D m@F+x };!-6 ^-J+A#[;~+/+I& &T$}%9-K-s$9-0*A*r-~+E 4$@%Z@<;j ", +"j `%n*);8#E ~+2&0*}%@-.*}% &A*0*}%2&(+~+W-U*`@6-Q$o@:.v !;-@S&~;%*X-P$%;,@p&X%@%x-a-{;{$j !$|*k S@];)&l#!#I@;.G@Z-[ !&^;/;(;}%K-f._;a v$D=;;}%:;5*`$,;o&:%l*';J*n-o&7&7&o&n-J*';l*:%o&,;`$5*:;}%;;D=v$a _;f.K-}%(;/;^;!&[ Z-G@;.I@!#l#)&];S@k |*!$j {${;a-x-@%X%p&,@%;P$X-%*~;S&-@!;v :.o@Q$6-`@U*W-~+(+2&}%0*A* &}%.*@-}%0*2&~+E 8#);n*`%j ", +"3=+;M-J-8#R-~+I&}% &9-0*s$}%3*.*}%3*7*(+p%x-5 ;-6 @;#;e G+N&o@Q$X-$;J*%;,@p&~@J-E m&K${$4._._.k O%~&]&!#N%l#< o#3 a J$&;*;=;H+0$^=-;&.3.+%;;s$e*F->;,;o&l*J*';l*n-o&,=,=o&n-l*';J*l*o&,;>;F-e*s$;;+%3.&.-;^=0$H+=;*;&;J$a 3 o#< l#N%!#]&~&O%k _._.4.{$K$m&E J-~@p&,@%;J*$;X-Q$o@N&G+e #;@;6 ;-5 x-p%(+7*3*}%.*3*}%s$0*9- &}%I&~+R-8#J-M-+;3=", +">%U-V-J-B#A#~+A&T$K-L-}%}%}%A&0*K-.*p@(+W-U*`@n*6$!-] <.N&b*o@t-X-M=l*Y-7*p&a%`@A#{+/$l B%:$i o*~$/=0@!#Z-j&~$)%H@u J$=*@&`-7*]+J J '&%.q* ;}%:%S*.;x*l*:%o&G-:%n-l*B=B=l*n-:%G-o&:%l*x*.;S*:%}% ;q*%.'&J J ]+7*`-@&=*J$u H@)%~$j&Z-!#0@/=~$o*i :$B%l /${+A#`@a%p&7*Y-l*M=X-t-o@b*N&<.] !-6$n*`@U*W-(+p@.*K-0*A&}%}%}%L-K-T$A&~+A#B#J-V-U->%", +"Y%I-u-J-#$>-[+A* &K-L-}%s$s$I&.*K-.*/+(+0-A#J+M-X%N-L.M.O-@ ^-x-i.i.P$P-p@U&6$J+A#~+h*o#'&>.>.'&m {$M.u h***E*l 8@i+m#)&+%Q-'-R-L z&S-~#+%1-T$l*S*l-e*P$o&e*:%1&e*G-T-T-G-e*1&:%e*o&P$e*l-S*l*T$1-+%~#S-z&L R-'-Q-+%)&m#i+8@l E***h*u M.{$m '&>.>.'&o#h*~+A#J+6$U&p@P-P$i.i.x-^-@ O-M.L.N-X%M-J+A#0-(+/+.*K-.*I&s$s$}%L-K- &A*[+>-#$J-u-I-Y%", +"p-q-^-@%a$>-H+.* &T$,-0*.*.*r-A&}%3*^+p@s->-t-u-~@v-0@2$w-s=V*x-y-y&a=[=/+7#9$p&A#~+!%o#'&3 3 H@R@)%5.9@I$z-A-l >.,%N%[ @$B-C-j$D-E-A=v$D=k- &o&F-l-z=P$o&n-:%1&e*G-H-H-G-e*1&:%n-o&P$z=l-F-o& &k-D=v$A=E-D-j$C-B-@$[ N%,%>.l A-z-I$9@5.)%R@H@3 3 '&o#!%~+A#p&9$7#/+[=a=y&y-x-V*s=w-2$0@v-~@u-t->-s-p@^+3*}%A&r-.*.*0*,-T$ &.*H+>-a$@%^-q-p-", +"4-5-6-7-8->-/+0*T$s$9-.*.*.*2&A&s$I&[+p@0-E y*)-9$6$8@8@s=z#a-0$b-{-c-T&0$n*6 p&E H+ -: M#M#d-b e-I@c=9@h*:-<-l L%!$]&G@4 f-g-6-h-i-'&: j-k-}%1&l-m-n-J*:%1&J*o&n-l*o-o-l*n-o&J*1&:%J*n-m-l-1&}%k-j-: '&i-h-6-g-f-4 G@]&!$L%l <-:-h*9@c=I@e-b d-M#M#: -H+E p&6 n*0$T&c-{-b-0$a-z#s=8@8@6$9$)-y*E 0-p@[+I&s$A&2&.*.*.*9-s$T$0*/+>-8-7-6-5-4-", +"=---;-8*p%>-/+0*}%.*,-s$}%}%A&.*T$3*_+_+'-1=7#)-!-)*>.R#4 +-V*/+~-{-]-5$m&^-Q$U&U*/+/-H@!%(-M#b _-~#c=/ ]$:-<-E*,&E$&.%.4 [-}-;-l.|-]&!#9=1-s$z=w*2-x*l*J*J*3-:%T*z=]=]=z=T*:%3-J*J*l*x*2-w*z=s$1-9=!#]&|-l.;-}-[-4 %.&.E$,&E*<-:-]$/ c=~#_-b M#(-!%H@/-/+U*U&Q$^-m&5$]-{-~-/+V*+-4 R#>.)*!-)-7#1='-_+_+3*T$.*A&}%}%s$,-.*}%0*/+>-p%8*;---=-", +"}*u+L=M=0*:%N=O=/$'%H$j&~=C%0*n$9%P=<#_#r*o Q=_$H@!$3@R=S=A=T=C%I&[=U=^+N*V=R&l*[=p&W=X=v ,+%=f _#%.8@q&n=z*Y=C=D=Z=l ~$'%`=:# -&.9@k B%.-+-7%@-h=#- &0*.%$-u=%-&-*-e*e**-&-%-u=$-.%0* &#-h=@-7%+-.-B%k 9@&. -:#`='%~$l Z=D=C=Y=z*n=q&8@%._#f %=,+v X=W=p&[=l*R&V=N*^+U=[=I&C%T=A=S=R=3@!$H@_$Q=o r*_#<#P=9%n$0*C%~=j&H$'%/$O=N=:%0*M=L=u+}*", +"!$,+%&h..*:%v=w=H${$J$l <=@&A*n$4*x=!&6@B _.=*y=]&%=N@P@x#'&f&<=I&l=_*/+b$==o=z=A&U&A=j o %=7 ,%_ G@8@q&>&z*B=C=D=8.M$M$h*E=s F=8@0@|.0@G=Y*r@ &H=w* &s$p$P$I=J=K=_*e*e*_*K=J=I=P$p$s$ &w*H= &r@Y*G=0@|.0@8@F=s E=h*M$M$8.D=C=B=z*>&q&8@G@_ ,%7 %=o j A=U&A&z=o===b$/+_*l=I&<=f&'&x#P@N@%=]&y==*_.B 6@!&x=4*n$A*@&<=l J${$H$w=v=:%.*h.%&,+!$", +" +c=j.d=A*q$e=f={$v$l#m#<=.=}%g=h=i=/=|.Y%_.I$`*3 j=G*5#k=!#I*.=2&l=7=8#m=n=o=T*s$7#'&k F$x &=c 7@!#8@r&>&J p=q=f&0 {$^.r=&@3.k B%o*8@u s=@$r@ &4*0= &}%A%n$l*t=t=u=+&+&u=t=t=l*n$A%}% &0=4* &r@@$s=u 8@o*B%k 3.&@r=^.{$0 f&q=p=J >&r&8@!#7@c &=x F$k '&7#s$T*o=n=m=8#7=l=2&.=I*!#k=5#G*j=3 `*I$_.Y%|./=i=h=g=}%.=<=m#l#v${$f=e=q$A*d=j.c= +", +"1.Q@c&I A&q.!=~=]&8@L%H@C%{=A%'=]=^=/=k (=o j&_=3 ;* =^#:=a I*<=2&[=+=y%}=|=1=A%{+>@3 B%5.x 2=3=8@!#8@4=5=9*6=7=I*u+)%)&!%H@7@o*8=8=|.7@y#9=R&;=>=0=A%o$A%m$ %8&T*a=b=b=a=T*8& %m$A%o$A%0=>=;=R&9=y#7@|.8=8=o*7@H@!%)&)%u+I*7=6=9*5=4=8@!#8@3=2=x 5.B%3 >@{+A%1=|=}=y%+=[=2&<=I*a :=^# =;*3 _=j&o (=k /=^=]='=A%{=C%H@L%8@]&~=!=q.A&I c&Q@1.", +"p / W*p*A&q.X*Y*k c e 0@q*Z*p$ &g.%&T#o*8.^%G$`*]&F* =4#`+a I*.=I&r$+=7#@=#=E q$[+$=3 L%5.%=&=^&7@v$8@*===7&-=P*+%B n#]&R#4.k ,&s*<.|.0@z#v*R&;=>=,=8&p$o$o$A& &'=T$)=)=T$'= &A&o$o$p$8&,=>=;=R&v*z#0@|.<.s*,&k 4.R#]&n#B +%P*-=7&==*=8@v$7@^&&=%=5.L%3 $=[+q$E #=@=7#+=r$I&.=I*a `+4# =F*]&`*G$^%8.o*T#%&g. &p$Z*q*0@e c k Y*X*q.A&p*W*/ p ", +"n 6@z*#&.*A*B*4 e >%C*g q*D*o&}%j.%*E*|.0 ^%j&_$: F*G*H*`+: I*@&2&.%J*n*K*m*7#3*#$L*3 B% +,+}*v 9@v$8@M*N*g.O*P*0%Q*~#H@7@R*t*:$}$^%8@0@z#v*'@s$N S*T* % %0*2&/+7%U*V*V*U*7%/+2&0* % %T*S*N s$'@v*z#0@8@^%}$:$t*R*7@H@~#Q*0%P*O*g.N*M*8@v$9@v }*,+ +B%3 L*#$3*7#m*K*n*J*.%2&@&I*: `+H*G*F*: _$j&^%0 |.E*%*j.}%o&D*q*g C*>%e 4 B*A*.*#&z*6@n ", +"a G@9*#&0*.*a*b*x v+c*@.:*d*e* &%&f*g*>.v+v h*P%I@;*O@)@`+!#i*j*k*q$l*o@/&m*n*.*B#d.3 o*F$7.7 ^%9@!#8@F+^*p*(*_*q*r*a 0@$.s*t*5.c o 0@8@u*v*{+A&N w*x*p$p$0*,@#$E y*U&U&y*E #$,@0*p$p$x*w*N A&{+v*u*8@0@o c 5.t*s*$.0@a r*q*_*(*p*^*F+8@!#9@^%7 7.F$o*3 d.B#.*n*m*/&o@l*q$k*j*i*!#`+)@O@;*I@P%h*v v+>.g*f*%& &e*d*:*@.c*v+x b*a*.*0*#&9*G@a ", +"!#v$7&H s$s$f&1$+*]%b.@*#*$*o&}%%*&***>.v+c =*-*%.;*p+.$>*!#0%,*'*.%p$)*!*~*{*]+8#]*]&k ^%,+!$,%u 3 8@F+^*/*(*_*:*<*7@8@q i [*(#}*|*8@L%1*2*{+3*4*5*6*:%o$}%7*a$p&J+8*8*J+p&a$7*}%o$:%6*5*4*3*{+2*1*L%8@|*}*(#[*i q 8@7@<*:*_*(*/*^*F+8@3 u ,%!$,+^%k ]&]*8#]+{*~*!*)*p$.%'*,*0%!#>*.$p+;*%.-*=*c v+>.**&*%*}%o&$*#*@*b.]%+*1$f&s$s$H 7&v$!#", +"6#w$A&}%B&C&D&d&B X#^#E&F&G&H&I&/+s%,+,%,&B%&.n#J$M%8.3&o L.~#n#J&K&L&] {%M&4.G$G@F$k&N&8@|@> O&P&y%Q&R&b$S&p@:%T&U&q&F+q&s&r&V&W&X&M&,%y#Y&o$}%Z&`& *m$q$5$5$.%o$A%.*.*A%o$.%5$5$q$m$ *`&Z&}%o$Y&y#,%M&X&W&V&r&s&q&F+q&U&T&:%p@S&b$R&Q&y%P&O&> |@8@N&k&F$G@G$4.M&{%] L&K&J&n#~#L.o 3&8.M%J$n#&.B%,&,%,+s%/+I&H&G&F&E&^#X#B d&D&C&B&}%A&w$6#", +"4 9&0&s$a&b&c&d&w+-+a@e+2.m e&f&5 9$7.F$,&k ]&o#J$}.g&h& +1.v$l#r#^$i&] {%-%4.j&!#_.k&-@7@|@x.U 3$4$l&m&b$n&(+o&2&p&q&F+r&s&t&u&v&w&Z%o x&5&p$s$y&z&+&m$ %r$r$q$n$8&}%}%8&n$q$r$r$ %m$+&z&y&s$p$5&x&o Z%w&v&u&t&s&r&F+q&p&2&o&(+n&b$m&l&4$3$U x.|@7@-@k&_.!#j&4.-%{%] i&^$r#l#v$1. +h&g&}.J$o#]&k ,&F$7.9$5 f&e&m 2.e+a@-+w+d&c&b&a&s$0&9&4 ", +"B%v$@&H+#&$&%&D%d@&&*&=&O@_#$.-&;&>&7.F$,&k '&)%J$}._.x+] n : )&r#!&~&L.{%{&k '%]&^&/&(&u |@_&:&3$<&[&E }&|&[+1&2&J+/ +@.7 3&v+B u+x _.4&5&s$s$6&7&8&m$ %.%.%p$A%+&T$T$+&A%p$.%.% %m$8&7&6&s$s$5&4&_.x u+B v+3&7 @. +/ J+2&1&[+|&}&E [&<&3$:&_&|@u (&/&^&]&'%k {&{%L.~&!&r#)&: n ] x+_.}.J$)%'&k ,&F$7.>&;&-&$._#O@=&*&&&d@D%%&$&#&H+@&v$B%", +"B%: < C%/+j.`@D%`.y$E%F%Z.G%H%I%J%K%e@,%:$L%H@)%l M%M.N.7@G@m#N%r#O%P%M.m%Q%L%M%&.c R%S%9@|@T%o%3$p%q%E U%V%s%n$W%X%n i+,+Y%b.Z%w+7. +i Y@`%{+ &.&H A%m$p$ % %o$A%+&s$s$+&A%o$ % %p$m$A%H .& &{+`%Y@i +7.w+Z%b.Y%,+i+n X%W%n$s%V%U%E q%p%3$o%T%|@9@S%R%c &.M%L%Q%m%M.P%O%r#N%m#G@7@N.M.M%l )%H@L%:$,%e@K%J%I%H%G%Z.F%E%y$`.D%`@j./+C%< : B%", +"$@K#< 0%4$#$a%w V+b%c%d%e%f%g%h%[$i%j%^%i+2$v$N#{$'%v$I@k%m#N#l#l%~$_$g m%]%8@M$v$v n%1$6@j@4%o%3$p%q%Z@<%r%s%o$t%.#1 u%r+v%w%`.r+c@1.h P x%y%r@z%N A%m$o$p$p$n$m$A%s$s$A%m$n$p$p$o$m$A%N z%r@y%x%P h 1.c@r+`.w%v%r+u%1 .#t%o$s%r%<%Z@q%p%3$o%4%j@6@1$n%v v$M$8@]%m%g _$~$l%l#N#m#k%I@v$'%{$N#v$2$i+^%j%i%[$h%g%f%e%d%c%b%V+w a%#$4$0%< K#$@", +"U@u$g+o#+%@%#%A $%A$%%&%*%B.%@=%-%;%>%,%1._ 3.&@M$'%o#)%!%m#&@m#~%N#K$i {%]%0@l I@^%/%g$9@j@(%_%3$a$:%7#<%[%J+}%|%1%2%u#&+3%4%~ W#5%( 7@6%G+Q$7%8%9%m$m$n$o$o$o$o$o$T$T$o$o$o$o$o$n$m$m$9%8%7%Q$G+6%7@( 5%W#~ 4%3%&+u#2%1%|%}%J+[%<%7#:%a$3$_%(%j@9@g$/%^%I@l 0@]%{%i K$N#~%m#&@m#!%)%o#'%M$&@3._ 1.,%>%;%-%=%%@B.*%&%%%A$$%A #%@%+%o#g+u$U@", +"t$u$-.v$&$w$x$a.y$z$A$B$C$>#g@D$;+m+E$F$j+( 3.&@l G$H${$I$J$($b < &@K$:$<$L$8@M$v$_.N$g$u j@O$U 3$B#P$Q$R$S$J+T$U$V$W$u#8+-#X$X#k@Y$~#7@P h$Q$j$Z$`$m$m$n$o$p$ %q$.%T$T$.%q$ %p$o$n$m$m$`$Z$j$Q$h$P 7@~#Y$k@X#X$-#8+u#W$V$U$T$J+S$R$Q$P$B#3$U O$j@u g$N$_.v$M$8@L$<$:$K$&@< b ($J$I${$H$G$l &@3.( j+F$E$m+;+D$g@>#C$B$A$z$y$a.x$w$&$v$-.u$t$", +"C@$$T@%$&$*$K+:+=$-$;$>$,$'$)$X+T.Q#!$5.j+( ~#&@~${$]$^$/$($~$k#m R@_$:$<$[$|.^.: }$|$1$2$|@x.~.3$4$5$6$7$8$9$0$a$b$U#c$8+d$e$L+U@f$I@8@g$h$i$j$k$l$m$m$n$o$p$q$q.r$s$s$r$q.q$p$o$n$m$m$l$k$j$i$h$g$8@I@f$U@L+e$d$8+c$U#b$a$0$9$8$7$6$5$4$3$~.x.|@2$1$|$}$: ^.|.[$<$:$_$R@m k#~$($/$^$]${$~$&@~#( j+5.!$Q#T.X+)$'$,$>$;$-$=$:+K+*$&$%$T@$$C@", +"m+o.B#R@C#D#E#F#G#k+P+6+h#%+H#z+I#]@N@X+N@!@J#K#1 L#M#b m#l#m#N#&@n#t+q#O#{ N@F.$@b@p#p+p+P#E+T.;+Q#R#0@] / S#s S@T#U#V#W#X#Y#Z#`# $.$^#+$3 y#@$A##$~+{+]+{+{+^+/+(+^+^+(+/+^+{+{+]+{+~+#$A#@$y#3 +$^#.$ $`#Z#Y#X#W#V#U#T#S@s S#/ ] 0@R#Q#;+T.E+P#p+p+p#b@$@F.N@{ O#q#t+n#&@N#m#l#m#b M#L#1 K#J#!@N@X+N@]@I#z+H#%+h#6+P+k+G#F#E#D#C#R@B#o.m+", +"#@M@9#;.T@0#a#b#c#d#e#> C+0+f#g#h#-+c@V.3@)#i#I.-.j#k#[ l#[ m#n#&@o#Z.;+]#E+r+F.^#5#p#d+e+A %@;+q#S.3 7@] f N.s r#s#t#u#*+'#b+z+v#w#Y+U.x#8@y#z#A#B#~+{+]+{+/+{+H+_+/+/+_+H+{+/+{+]+{+~+B#A#z#y#8@x#U.Y+w#v#z+b+'#*+u#t#s#r#s N.f ] 7@3 S.q#;+%@A e+d+p#5#^#F.r+E+]#;+Z.o#&@n#m#[ l#[ k#j#-.I.i#)#3@V.c@-+h#g#f#0+C+> e#d#c#b#a#0#T@;.9#M@#@", +"d+ #.#+#@###$#%#&#*#=#-#~ ;#>#z+,#'#O@p+3@)#D@5@g+K.!#: !#&.a 3.~#: {#K@]#;+r+ #O@X+^#o+e+=@/#t+D+S.H@u Q@(#:._#:#<#[#}#;#|#1#A+2#3#Y+4#5#0@).6#7#8#~+{+]+/+H+H+~+,@H+H+,@~+H+H+/+]+{+~+8#7#6#).0@5#4#Y+3#2#A+1#|#;#}#[#<#:#_#:.(#Q@u H@S.D+t+/#=@e+o+^#X+O@ #r+;+]#K@{#: ~#3.a &.!#: !#K.g+5@D@)#3@p+O@'#,#z+>#;#~ -#=#*#&#%#$###@#+#.# #d+", +")@Y+s@t@u@v@w@x@y@z@A@B@u@0+C@0+1@-+c@o+3@!@D@E@g+F@G@a &.H@a %.I@H@J@K@L@t+s+M@N@O@P@c@o+q+%@;+;+d@7@L.@.7.Q@2.R@S@T@U@$ V@R R+W@X@I+V.$@i+Y@+ Z@`@[+{+^+/+[+[+p@q@^+^+q@p@[+[+/+^+{+[+`@Z@+ Y@i+$@V.I+X@W@R+R V@$ U@T@S@R@2.Q@7.@.L.7@d@;+;+%@q+o+c@P@O@N@M@s+t+L@K@J@H@I@%.a H@&.a G@F@g+E@D@!@3@o+c@-+1@0+C@0+u@B@A@z@y@x@w@v@u@t@s@Y+)@", +")@!@~@{@]@^@/@(@_@:@<@[@}@B+|@B.1@V+2@o+3@Y+4@5@ @.@_ 6@7@8@9@$._ 0@l+; n+`.;+#@a@r+b@c@V.q+%@s+;+d@M.5.,+e@7.N.2 m f@g@z+h@R i@j@k@l@X+c@i+m@n@o@6 [+{+^+/+[+[+p@q@r@r@q@p@[+[+/+^+{+[+6 o@n@m@i+c@X+l@k@j@i@R h@z+g@f@m 2 N.7.e@,+5.M.d@;+s+%@q+V.c@b@r+a@#@;+`.n+; l+0@_ $.9@8@7@6@_ .@ @5@4@Y+3@o+2@V+1@B.|@B+}@[@<@:@_@(@/@^@]@{@~@!@)@", +"e+I+J+K+L+M+N+O+P+Q+5+6+y.R+S+T+U+V+W+o+X+Y+Z+`+ @.@j+/ L.h L.N.p ] +@; @@`.`.#@+.X.$@V.p+A %@;+t+m+h +x 0 ,+:.%.&@0+R+B+A+0+R+*@A+=@W.W.5.-@;@>@6 ~+{+]+/+H+H+~+,@'@'@,@~+H+H+/+]+{+~+6 >@;@-@5.W.W.=@A+*@R+0+A+B+R+0+&@%.:.,+0 x +h m+t+;+%@A p+V.$@X.+.#@`.`.@@; +@] p N.L.h L./ j+.@ @`+Z+Y+X+o+W+V+U+T+S+R+y.6+5+Q+P+O+N+M+L+K+J+I+e+", +":+<+[+@+}+|+1+2+3+4+5+6+7+8+9+0+a+b+c+d+e+f+H.I.g+h+] / ] M.i+j+N.j+O.k+l+; m+n+Y.>+U.o+p+q+r+s+t+m+ +7.u+v+w+x+@+3.}+y+8+z+A+B+C+y+D+{ E+ +F+G+D !+~+{+]+{+/+{+H+_+/+/+_+H+{+/+{+]+{+~+!+D G+F+ +E+{ D+y+C+B+A+z+8+y+}+3.@+x+w+v+u+7. +m+t+s+r+q+p+o+U.>+Y.n+m+; l+k+O.j+N.j+i+M.] / ] h+g+I.H.f+e+d+c+b+a+0+9+8+7+6+5+4+3+2+1+|+}+@+[+<+:+", +"o.p.q.2 $ r.s.t.u.v.w.x.y.z.A.B.R C.D.E.F.G.H.I.J.K.L./ / M.M.1.N.N.O.P.Q.R.S.p.T.T.U.V.V.W.X.Y.Z.`. +w .+b.B ++@+%.#+y.$+%+&+*+=+-+;+>+{ ,+'+)+D !+~+{+]+{+{+^+/+(+_+_+(+/+^+{+{+]+{+~+!+D )+'+,+{ >+;+-+=+*+&+%+$+y.#+%.@+++B b..+w +`.Z.Y.X.W.V.V.U.T.T.p.S.R.Q.P.O.N.N.1.M.M./ / L.K.J.I.H.G.F.E.D.C.R B.A.z.y.x.w.v.u.t.s.r.$ 2 q.p.o.", +"O + P Q R S & T U V W X Y Z ` ...+.@.#./ $._ : %.&.*.=.-.;.>.,.'.).!.~.{.].a ^./.(._.:.:.h h <.[.j }.b |.e _.1.2.3.3.%.4.h 5.6.7.8.9.0.a.b.c.d.e.f.g.h.i.j.L k.l.m.n.n.m.l.k.L j.i.h.g.f.e.d.c.b.a.0.9.8.7.6.5.h 4.%.3.3.2.1._.e |.b }.j [.<.h h :.:._.(./.^.a ].{.~.!.).'.,.>.;.-.=.*.&.%.: _ $./ #.@.+... .` Z Y X W V U T & S R Q P + O ", +". + @ # $ % & * = - ; > , ' ) ! ~ { ] ^ / ( _ : < [ } | 1 2 3 4 5 6 7 8 9 0 a b c d e f ] g h i j k l m n o o p q 2 r s t u g v w x y z A B C D E F G H I I J K L M N N M L K J I I H G F E D C B A z y x w v g u t s r 2 q p o o n m l k j i h g ] f e d c b a 0 9 8 7 6 5 4 3 2 1 | } [ < : _ ( / ^ ] { ~ ! ) ' , > ; - = * & % $ # @ + . "}; diff --git a/data/pixmaps/misc/bg-matrix-lines.xpm b/data/pixmaps/misc/bg-matrix-lines.xpm new file mode 100644 index 0000000..f221308 --- /dev/null +++ b/data/pixmaps/misc/bg-matrix-lines.xpm @@ -0,0 +1,155 @@ +/* XPM */ +static char * bg_paper_white_xpm[] = { +"108 108 44 1", +" c None", +". c #F0F0F0", +"+ c #EBEBEB", +"@ c #EFEFEF", +"# c #F2F2F2", +"$ c #F6F6F6", +"% c #E6E6E6", +"& c #EDEDED", +"* c #F3F3F3", +"= c #F4F4F4", +"- c #E9E9E9", +"; c #F7F7F7", +"> c #F9F9F9", +", c #FBFBFB", +"' c #FDFDFD", +") c #939393", +"! c #929292", +"~ c #919191", +"{ c #969696", +"] c #949494", +"^ c #959595", +"/ c #909090", +"( c #8F8F8F", +"_ c #8E8E8E", +": c #979797", +"< c #8D8D8D", +"[ c #8B8B8B", +"} c #8A8A8A", +"| c #E1E1E1", +"1 c #878787", +"2 c #D2DDF1", +"3 c #D3DFF3", +"4 c #DBE7FB", +"5 c #D8E4F8", +"6 c #DAE5F9", +"7 c #D0DCF0", +"8 c #D4E0F4", +"9 c #D5E1F5", +"0 c #D6E2F6", +"a c #DAE6FA", +"b c #D7E3F7", +"c c #D8E3F7", +"d c #DDE8FC", +"e c #DEE9FD", +"..+@@+#@+$..+@%&@@#*=*##@@@==@+%@.+&@+@+&*&%+-%@@%@.-+@%#;>#&@.@*-%+#$=-@@#=#@@#++@=#--@-@#@+@#@+@@@&&&&@=&#", +"$$@*=@*..>#*@$*>;$$;>;*@%&$$@+.,==&.#@.+@$.&#@@$#@=;#=;*@$>=#=;$$@@##$=&#@@@&+&#@+@##@@=%+@@@=$>@@@@@@@@#>==", +";$@=$#=.=>*$=,$,,>;>,,=@#*==.@=,,,=;;=;.#=#.==#>*#$$#=>;=>,;==$*$*$;=$>$>;$$=*$>$@@#*##$@#=$=#=>#@@@#***$>*.", +"$$@$>=;*=,=>$>@=>;;>,,;#,;====$>,';,;=;*#=*#*##===$=@@==;,'>==#@##$>=$,>.*$;;$=$>$=$=##=>$$>$@@=>=#=;>>>>=&@", +"$$@$>=;*;,#$*$&#==$$;$$=@#$$=#$'#;=;#+*###*=***@$;$*###$#;>=#*#@++#=#*$=@*$$$=#@=$$$#@@*=##$$##=>*@*>>>>>#@@", +"#=@==@#@=$+@+.+=@@@@@@@@@&@=$===&=#=.+##@+@*@##@@*@&##@=@#*@+&+%--@@&@.@$;$####@+@==@@@#@@@*=#@##+%+@@@#.@=#", +"@#@=#+@&+@+.&@+$@@++&@@&#@&#;$@+.=.*#&*.@-@*@@#-&@+-##@#@=#&+&+%%-@#&@#.@#@&&@@++@##@@@@@#=***#@@%%+&++@&+=@", +"@=#>$@=*%@@>$$@$;*@@=;$=+@$>=@@=*=&.#.#&=&*;###-#$@@>>*$#$$*=;>$%+=$.#;>@#==$;=@*=*###@@@=$=$>>#=@@#=##$#+#@", +">$=>,;.&==$>;=##$;$$>,>$#=$;;;;;.=;;;===*;.$@>=$'$=>>==,>;;>;=#*;$;;;;;;$#$,>;>$>=#*===*@=$>>>$=>#@$>$==&&=@", +")!!))~~!{]))))^{]]))]^]!~/!]^)!)!]]]]]^{!^~)()~~{!~]]~~^^))^]!!)!)^^^^^^~(!{]]]){^^))!!)~!)^^^))^]]^^])]((]~", +"!!])!/~])~/~~!){))!~!)!~~_()^!~!^]]]!~~!/!~!~^))^!~))~(!)!!))))]~!]^^]]^)~]:{^{^^^^)!~)^)^^^^!((!]^)~!!!~){~", +"(!^^)~~~__(~!~/~~~/(/!~(!<>@@&*#@#*=#.&.===###@=$.+&#$$*##.@&@;$#+-+@@@@&@*@&.*@++&++&#@@=$===>=*#&@$;$.#*.#=.=$$*@+@##@++@#=$,*+-", +"**$,,=#*;;>>>$==.=>>>;$$=;>=@@*>>$===#@.>;=@@*;>*$=;,>=;*&+@.@@#=*=;;=..=@##@#>>=#$$#*;$>;;;*&&#=#@@#=>,>#++", +">*=>>;=$.#$;=@@#;>>$==#@$$$$##*$,;$>>$##@#**=$$**$=>,>=;$#@=$##$@@#$;$=$##$;##=#..$$.#;>$##$;*#$>>,>$$>,,;=$", +">=$=$,$;##=$=@#>>,>=*==.=#=$$==$;==$;=#.$=*.#$;$@##=>=@#>$===#*=@@*;>;;>##>,>;;=.#;;@.;>>==;>$=$$>,>=#=$$$;,", +"$=,#*,$;$.@*=#=>=;$##$$###=;$##*#@&@##@@>;*@#$>;*$=$,;#=$$=@@@@@**$;;$$>@&#=.#*@##$$@@==>>;$=##*>>>>$=$$@@@*", +"@#'#@>*=*-|%+++@@#@+-++%@@*$*&+&@+%+@@@@-&#$;$@%&@&@=@+&@*#+-&@+@@.*=*$>;==*&&@&@@*#--&&@*=#@@#*=#@@.##.@+%+", +"==*#*###$;#@*#@#+@..#=$$&$,,=.#==@+.;>$#;>,@$*$+.$*@#@-%@@*$$#.#;=###@#;=#>#,;>.=#*======.@=$;>,&#@#+##;@@#*", +"@#$;$*#.$>=#$=#=@@@@=,,,#=;;=*;,$>,>=@@##=>.$#;#@*#@$;*#>;$$=##=,>;$#@=>,>,$,;>====;>>>>@@##.@@==$#>=,;>====", +"&#>>$===;>$*$=.#==*=>',>$==$$=;'>$$>>$##=$,==@##*;=*;>=$>$$$$=$>,>>$#.=>>>,$>;,;==$>>,,,@*$$@++.$=@;$,=#===*", +"#=====$>>>#@#@&@$;>>>>=@=#=>$#=>=&+@;>=#;$;$=@@#>,;=$=#=*=$>>$$;;$===$;>$;>$$$;$=$;;>>>;$>,,$@@=$=@$#>@&@.##", +".@&@.###$$@+@@@##$;=#@@&##=$#@#>.@@@@@.=#.@=**#=;>$#=#@*$$$;$#@#=##*$>;$$>>>$$*#@*=*=$$*$$;>;=#*=$.;#;##&@.@", +"&++&..&-##&+@##;@#.+-+#=#**@&@$,>=@.*=$;..+.@*@@>>$**@+@*.@@&+@###@@#=#@@=*;*>=#-&&+&.#@&++@@&+-&.@=@=.=#*@%", +"#..#*#@+##@&#==;#==@@#$>*$$@@=>>,=@#$;$=@$@#-#@&>>$==@+.#@@@@@#$#==@&@@@&#&=.>=#+@@++#*@@++@@&+++@&=@=@@#=@%", +",,>$==$;#=.@==.=>,,>>>;==>>#*>>##=;=+|-.+$##-$*=#==$>==,>>>,>$$;$,,*&@=;>,#;@>@@>,>=*>>$,>>,>;=$*$=,$>#@@*=@", +",$##==$>>;;$=#*$;>',$.#$#>#;$@#++#$>=@@@@#+#+=++;$$>,,,$##=>>$$;>>$*=;>$;#&@@#=$$$$$*#@@>;$>>$#@@+>$#>##==.,", +"$.&@@#$>*$>$.@#=;>,,;#=;*;#$$.$.@@@#$$@+#=@@+=@#*=====*#@@@#=*=;.*==$>>$,$###@@@#*===***$$$;>>$#++>>=>@+$=@>", +"#@@@##=$+@@@@==#=*##@+++#=@##@=#@++@*=@+@#@@-@@@@@#.@&@@+--+&&@####.@@@+#@@##@&&&@@@@@@@@#*@@@&%&+*.&*#.;#+@", +"@#=$$=.@@&-%.>=+>$***.@@##@@&+&&+@##@@@#@##@+@++&@@@@@@=&++&@&@@;=@+++-%&+&.#@@@@@@@@@&+&#*&++-|+-&+-.==$#++", +"~!!!!!~/])~(~)~<)~/!]]))!~!~((_(((!~(<((!))~((!!~//~!~!)!~~)])!!]!~/~~~!!!!)!~~~)!!!!~~(~)]!!))~}<~]!!](/~!/", +"]^)~~)^{]^{^!!)^)~(~!!~~)){^]^!]!~((!!(<)))(~~^^]!!]]!!)]!)^{{]]!~!]^^]^!!)]]))^])!)]])!)]]]]])!~)]{]){~(!{^", +"^^^!~){{]!!)!~){^)!)])~~)!:^]{){!~(~!!~(!~!,=#&&=$#@#.@@#*#.*##*$$#@*$$=$>#%&@.$>@+#.#;,>*.*@#.#@@>@=+#;.#>=#>;####;@+@#@@=**..#*##*##@+", +"=>*;=&.+.@@@&@@.@&@#@@@+#@&&@.@@@#=$=***#*##*=@%#@@==+|+@@#;;#@*;>*=@@=+$&=;&&=@&@@+##@#+%+@+.$@@#=#..@@;;*&", +"=,$,>@@%;$=***##@&;,#.=@>=..=$=#+@==#@#$>>$=##@+*.@#=+|+*@@$>$=;'=@>$+##,.>>++#&#-%.,*@>.+&@+$>&&=$#@@&-#=*@", +",>>>,,;#@,;&@>;=#$$$>;=$,>$$$#.#@>>@&&&.$;$#=>;=*=$=.@@#=;=@#>$&;,==#&#@.@#*@#$#@#=$=##$;='$>=>@>@&=*##.>;==", +"#=$;>>=@@;=@$,>=*$=$>$##>$$>,>=##>;**##$#.###@@#$;>;==$;$$$$$;;$&##$$#;=>$;$#=;=>;;>;$$>>;>>*;>*,#*>;$$===$$", +"+.#@@==@>,;$,,*@*$==>$@@#@#;,>=##===;=*>$##=#+-&*==#..=$===$#+&=@=#$$#;=#@.#@=,,,$==*#*$>>*>+$=*,=;,>$;;@#=$", +"&#@%%@=#>>$$>=&@&###=#&@@@@#=#@##.@*;#@$=#@..@&&@@@&++@@@@@@+%+@=$@@@+#.>==#++@@>#&+&&&@$=.=+@@@;#=;#@*=@@.#", +"=$*++#$$@@@.*@&*%@@@#@@*===#+-@==#@*;#@*@@+%&;;.##@@&&@@+.@++##@@#+&&+##;#==&+&@>#++&@@@#&#@@+.+=@#@+-@@@@@&", +">>;==$;$@=*##@@$+#==$==>>,>=+-.,=$*=;=#$=$.%+>>@$=*#@@.#=>$&@$=&.$#$$#$#+-@=@@;,>#@@####@-#@$@$##@@@-+@@+&.#", +"{)!]^])]!{^!)!~))^)!^^)^]^^)(_!:()~/!)!]^{]((~!()!!~~~~~{{]~(~~_]{^{{!]!!(~!(<~]!~(~!!!!~<~!!~)!/(~~((!/[()^", +"{!(~)!!^/])~]^))^]/())~~(~))~/){[~(<(!)]!!!~((/!))!!))!!^!~!!~!^)^!])~^])(~)((]:!~~)^]]^!~(^(!~!((~)!)]~(!^{", +"^)({){!)~(!]/!{)~!!~!)])(~~(_~!)(!^^))!~(~!))!~/)!~~~(~)^~(!)~_(((<~)~]]]<({{)^{]!~(~!!~)))!(_/]())(_~~_~~!)", +"(~(~}<<~__/~(~)))]])!~~~!)~_<_((}_~~~~!!]!(___(((((~~(~!~~!)([<~<(<~!(~(^_())!)]!~_<_(~~!!~~~!))_(((((((__((", +"~/<~(~(~!~_(^^!(!)))!~~~_(((()^{(~!~(~~!((_(~~(<(_(~!~!!^~(~~((((!(~~(~_^((((~!~)~_<[<(((_<<~)!()~/!~((~~~~!", +"^)~]^^!~]{!~{^(~(/!)!~!]!)))]^{{^{^)~~))(_(!^^)(//~~!!!!{~_())~(]{~((~^~)~~/_/!~)!((__(!!(_~^^])]!~))!~!!!~!", +"]^{^~<(!!:{]]~(^~~!))!)^))]^^^]]!]])!]^{{^!!]^]!!~~/~~~/!!!!~(~)){~~~~^~~!^)(~)!!~~!))]{)<<)^~/)~~~~!^^!^]))", +"]!]~~()^{^!!^^)!^)!]]!!]((~)])!~/!]))]^^^])]^^!~])!~~!~(])!!)]))~]!^^)](~!^^//)!^!!^{^)]!<,;@#$>,$.#$>',#@=$#>==;,>$=@=;$==$;&&;#*';>#$=@=,>@>#@*#@#,&=>>*.#=$=#=$;>,#$>>>,,>==###*=$###&+@##$#@#", +"$;;;>>;=$$;>$##=,,;*$,>*>$#**#=$$>>$=$;>$=,$=>#$;>$*$,,$,*.$>$;'@$,,>=##,;$$$$>,$;>,,,>>$$;;;>>,$=#@#$$$,;==", +"$#@###*$;$=$$=##;=#*$$$=;=*#@@#$=$=.@*==*@$=#*@$>$*##==$;@@=>$=;.=;>;=#.,>;=@&&.$==>;*#=.*===#*=$=*#$>>$>;;;", +"@++&@&@$$====#.#@@=$.+@$=*=$=##*@@&+@##@@&@##@.;>#@@@+&#$@&#*@@##@@@###=|%+@#*;,$.@$=@+@@#*#@+&@#=*#=$$====#", +"*@@#*@#;**==#@@===>,$@#>=#@*$$==###.*$=.=*#;;#=;>*@##@.$$*#=*.#$=@+@###=*=$;=@&&;..;>#.=;;;=##=$.=;=#*$$$$#&", +">;;;$**=##=$*@#=';$>,>$$>#&@*$$;;>;$;>$#*=@;,;,;$##=;$;>;$$;$=;,;##$>$##-+@$>>;>=@.$>>>,;$$=$;>,#>,>==;>=;>$", +">,,;=*#.##*$$===,;=$>>;=,$##*=;>>>>$$;$=@*+=>>,.#.@=;>;$;$$>>>>>>==>>$##*.#$;=@@=##=>,>>*.@#=;;$=;>;$;>,.;,,", +"$,,=#*=.=##$>>$=$;;$==$;>;>>;$;>;>;==;>>=>@=>$;%###*;>=@,;;>,,$=;#@=$##$$#@=$$#@;;$=;,>$=.@#$>$##====;>>*$$#", +"=*==@+@$>>*>;@=#;>>;#@#>#&%>==+=;;#.*;>;;;==*#=;@&%##>#=$=#$>>$#.&+@##*=#;==>=@>$##@@$;@,;*@@@@@=$#&&##@@=>$", +"((/!~_<<)~[/)~~<(~))~(~^~~_!()(///__~]]!///~~~~!(~()_/()_<<<<<[}!~!)!~((_(<[([}_)~~~(!]~(((((_<}(/(((/~(<(~(", +"~~~))~(_~)~])(^^)^{:^!){~^)!({^~]]!!!]!//~!!!!!!)]~)_((!!!~((_((!!]^)~~!!)!)^!(~)~!~(~)~!!!))!/(~~~!!~~)/~~(", +"{^)!))]^/]!]~(^{]]^^]!~!~^]~~{{]{:{{{]!(!]]]!)!!{)$,#=$$=#*=>$#=$>>>$$=*=$$=,,,,,;;=;;;=#*=$$>>>,,$$;#,*$&;=;$#,;&=,=.@#=*###$>;$;>>>$*=;>$*@$==#>$#>;$=", +"@@+*@=@=>>,,;==;,;##==*#>;$=$;$=;;;;;=..*=;===$$*$==;$#$#@$#*@$*;;=>$+.$@++@..@@@#=##=$=$$#@=>$@+*@#-*@##=$$", +"=@-@&#&@@@@@+%%+=#.*=#.###.#####...##.&+-&#=.@@*;>=@.@&.@@@=+#@@@.@;=-@@@++@####@@@@@*#@##@&.;$@%&+@-*#;&#=#", +">$@$#;.#$=$>$##$++@=$==>@@@####=====;=.&%+.*@+@#$;*@.@@=##@>&$@&+&+$;@==#@@#=====#..=;=@@#@@.$$#@#@*@#*>@=$#", +"$;=,$>=;;**;$#.=##$,$@@=#=$;$#=>;;;;,;=.#.*=*@@=@$$=;=*$=#*;=;$@@@&;,$>>;=#=$$==#===$>$*======$$,$;=$@#*#;>$", +"&*='=$#>,$$>>*.=@@;,>#=,;>,,$.#;=#*;;;#@,;*==##=#>,,,$@.@+#.>=>.*#&$,$>;>$*=$=##+@###**#>>>>$=$>,=;#>&##+=>>", +"$;>;#@@=>=#=;$#@,;#@.*=*+=>$#*$=,=...##*#>;@#=#@;,,;.@=;-@#@#;>=;>;#@=>,,,,;.=$&=*>=>*$@>>>>>$##=>'#@>$==##*", +"$.@#$=@+*..=$#@+==.@@==##$;$#=$;#&&#;$*@@$$=>,=@;>>$##=$#@+%+=#+*==@@#$>;#=;=*#+=#$#>@#@@#$>=@@@>=$@&.&#@#=$", +"&@#$$=#=@@.==@+++@@++#@-*#@@@@#==@&#$=&%&@@=,>#@=*##*##..@%|%@#@==#@@#**>&&=#@&+#@$#$@@+@@=$=@@#>@@++&+#%@*=", +"<(!^]!]{((~)~(_(!^^!!^)<~_<__< c #F0EFE6", +", c #CAC7AA", +"..+..+@.+#..+.$%..@&*&@@...**.+$..+%.+.+%&%$+=$..$..=+.$@-;@%...&=$+@#*=..@*@..@++.*@==.=.@.+.@.+...%%%%.*%@.+#", +"##.&*.&..;@&.#&;-##-;-&.$%##.+.>**%.@..+.#.%@..#@.*-@*-&.#;*@*-##..@@#*%@...%+%@.+.@@..*$+...*#;........@;**+$&", +"-#.*#@*.*;&#*>#>>;-;>>*.@&**..*>>>*--*-.@*@.**@;&@##@*;-*;>-**#&#&#-*#;#;-##*&#;#..@&@@#.@*#*@*;@...@&&&#;&.++*", +"##.#;*-&*>*;#;.*;--;>>-@>-****#;>>->-*-&@*&@&@@***#*..**->>;**@.@@#;*#>;.&#--#*#;#*#*@@*;##;#..*;*@*-;;;;*%.*;>", +"##.#;*-&->@#&#%@**##-##*.@##*@#>@-*-@+&@@@&*&&&.#-#&@@@#@-;*@&@.++@*@&#*.&###*@.*###@..&*@@##@@*;&.&;;;;;@..->;", +"@*.**.@.*#+.+.+*.........%.*#***%*@*.+@@.+.&.@@..&.%@@.*.@&.+%+$==..%...#-#@@@@.+.**...@...&*@.@@+$+...@..*@..+", +".@.*@+.%+.+.%.+#..++%..%@.%@-#.+.*.&@%&..=.&..@=%.+=@@.@.*@%+%+$$=.@%.@..@.%%..++.@@.....@*&&&@..$$+%++.%+*.%%,", +".*@;#.*&$..;##.#-&..*-#*+.#;*..*&*%.@.@%*%&-@@@=@#..;;&#@##&*-;#$+*#.@-;.@**#-*.&*&@@@...*#*#;;@*..@*@@#@+@.*;+", +";#*;>-.%**#;-*@@#-##;>;#@*#-----.*---***&-.#.;*#>#*;;**>;--;-*@&-#------#@#>;-;#;*@&***&.*#;;;#*;@.#;#**%%*..-@", +"#**##&@*>-####;>--##-;-*@.*-;#*#*-----;>*;@#.#@&>*@--@@;;##;-**#*#;;;;;;&.*>---#>;;##**#@*#;;;##;--;;-#-..-@&>#", +"**-#*.&-#@.@&*#>##*&*#*@@%.#;*@*;---*@&*.*@*@;##;*@##@.*#**####-@*-;;--;#&->>;>;;;;#*&#;#;;;;*..*-;#&***@#>@@>#", +".*;;#@@&%%.@*@.@&@...*&.*++*-@.*--*@.......@.*&@#@@**@......@@*#.@@*####@%.*..*@.@&@@&**####*.+=.&@++.@..*-++;#", +".@****&@..@#-*@@@@...**@;%+@*.@-@.@**--*@@@%++=$@..@&@.+++++%..@*@..&##*#...+%@@.@@@*#&...@&*&@@*&.=+*#*+%@$=--", +"#*@@*;;;#**##*#;**@.@-;#>@%.@.*;****--*&*&*..+.+@@@@#-*..@@.@***;*..*#-#>-##.@##;;;##;@+.@@*****#&%+.#;;@.*++*.", +";;#@*;;;-*@@@&#;-#*@*;;->-&@@&#>>--&@..%@@#.#*;#@@@&->;@#;;##;-#>;-***#->*&*..**;>;#*#*.##***&@@#.%%.@*;-*;*@@+", +"#--*@@@.*@.@&&#;;-*@*-;->>-*&*-;>>*@@...&@#.#&;#%...*;-.#;;####@;>>;*@*;>*#-*&##.##..@*&@@&&&**&*.....@;*.;>;#+", +";;+.@@;.#*.%%.@*##*&..#>>>-@@##@**-;;*@@&#;#**&@#*..*&.#@@.+.-;#>;**###--#;;##;#;..@*##.#;#..#;@.&*@.+%.**-;#@@", +".@+@@%@+.++=+%..@@@.%+%.@*&.%.@@*&&*&....@&.%++$&&..*@.*&.%+%.@.@..@*##;#@@.=+.%#....&@+.*&.%@**-#****-;>-@@.%+", +"%..;;..%&@.@&*@.%.***@@@.*#.+%@##&@@..%.-#@+=+....%.&.%.&.++%++%@..*#***;*&@%.#-#.@&.@*.*##&.+.@@.++.@*#>&+=+%%", +"&&#>>*@&--;;;#**.*;;;-##*-;*..&;;#***@..;-*..&-;&#*->;*-&%+....@*&*--*..*.@@.@;;*@##@&-#;---&%%@*@..@*;>;@++...", +";&*;;-*#.@#-*..@-;;#**@.####@@&#>-#;;#@@.@&&*##&&#*;>;*-#@.*#@@#..@#-#*#@@#-@@*@..##.@-;#@@#-&@#;;>;##;>>-*##*@", +";*#*#>#-@@*#*.@;;>;*&**.*@*##**#-**#-*@.#*&.@#-#.@@*;*.@;#***@&*..&-;--;@@;>;--*.@--..-;;**-;#*##;>;*@*###->>;#", +"#*>@&>#-#..&*@*;*-#@@##@@@*-#@@&@.%.@@..;-&.@#;-&#*#>-@*##*.....&&#--##;.%@*.@&.@@##..**;;-#*@@&;;;;#*##...&#**", +".@>@.;&*&=,$+++..@.+=++$..&#&%+%.+$+....=%@#-#.$%.%.*.+%.&@+=%.+...&*&#;-**&%%.%..&@==%%.&*@..@&*@...@@..+$++++", +"**&@&@@@#-@.&@.@+...@*##%#>>*.@**.+.-;#@-;>.#&#+.#&.@.=$..&##@.@-*@@@.@-*@;@>-;.*@&******..*#-;>%@.@+@@-..@&.+$", +".@#-#&@.#;*@#*@*....*>>>@*--*&->#;>;*..@@*;.#@-@.&@.#-&@;-##*@@*>;-#@.*;>;>#>-;****-;;;;..@@...**#@;*>-;*******", +"%@;;#***-;#&#*.@**&*;>>;#**##*->;##;;#@@*#>**.@@&-*&-;*#;####*#;>;;#@.*;;;>#;->-**#;;>>>.&##.++.#*.-#>*@***&@*-", +"@*****#;;;@.@.%.#-;;;;*.*@*;#@*;*%+.-;*@-#-#*..@;>-*#*@*&*#;;##--#***#-;#-;###-#*#--;;;-#;>>#..*#*.#@;.%..@@@&*", +"..%..@@@##.+...@@#-*@..%@@*#@.@;.......*@..*&&@*-;#@*@.&###-#@.@*@@&#;-##;;;##&@.&*&*##&##-;-*@&*#.-@-@@%....*-", +"%++%..%=@@%+.@@-.@.+=+@*@&&.%.#>;*..&*#-..+..&..;;#&&.+.&...%+.@@@..@*@..*&-&;*@=%%+%.@.%++..%+=%..*.*.*@&.$$%@", +"@..@&@.+@@.%@**-@**..@#;&##..*;;>*.@#-#*.#.@=@.%;;#**.+.@.....@#@**.%...%@%*.;*@+..++@&..++..%+++.%*.*..@*.$$+.", +">>;#**#-@*..**.*;>>;;;-**;;@&;;@@*-*+,=.+#@@=#&*@**#;**>;;;>;##-#>>&%.*-;>@-.;..;>;*&;;#>;;>;-*#&#*>#;@..&*.@;>", +">#@@**#;;--#*@&#-;>>#.@#@;@-#.@++@#;*....@+@+*++-##;>>>#@@*;;##-;;#&*-;#-@%..@*#####&@..;-#;;#@..+;#@;@@**.>->*", +"#.%..@#;&#;#..@*-;>>-@*-&-@##.#....@##.+@*..+*.@&*****&@...@*&*-.&**#;;#>#@@@...@&***&&&###-;;#@++;;*;.+#*.;&-%", +"@...@@*#+....**@*&@@.+++@*.@@.*@.++.&*.+.@..=.....@..%..+==+%%.@@@@....+@..@@.%%%........@&...%$%+&.%&@.-@+.%.=", +".@*##*...%=$.;*+;#&&&...@@..%+%%+.@@...@.@@.+.++%......*%++%.%..-*.+++=$%+%.@.........%+%@&%++=,+=%+=.**#@+++%+", +"@*****@.-#@.@#@+#@.*--##*&*@..%...*@.+..*##@..**&..&*@*#*&&#-#**-*@.@@&****#*@@&#****&@.@#-**##@$+@-**-..@*....", +"-;#&&#;>-;>;**#;#@.@**@@##>;-;*-*@..**.+###.@@;;-**--**#-*#;>>--*&*-;;-;**#--##;-#*#--#*#-----#*@#->-#>&.*>;-.@", +";;;*@#>>-**#*@#>;#*#-#&@#*>;->#>*@.@**@.*@*+*.*.*@*-#..#-*&#;-***@&-;#*#..@##*#;*@@&##*&-@@*#@..>>*#.@>;@*>*-@-", +"@##&@@@.>@+.&.+.+=+.&&@&&.>*@-@;.@##@..@@.;.;.+,%.&-&%.->#&*#*@.#..@*#->@@*-#@.@*@.@*#&.#%+*;*@#@-@#@.>@;#;+@.>", +"*.#..*+.$.*@+=%@*+..+.#...@.++.@$=+...@@...#;.==+=$.&%+@$%@*@.+=+=+##.*%=...@%+&@*#-#.+*,&*.&@.*+.*@.@.%,=+=+.@", +".%#*#>*;....+=++.%..%.@..@&@...*+.@@....++......=$$.*..;.@**##&@=@.@.->.%..@@.%@+#*..*@.,%%+@@%@+......%.@*@..+", +"#*;;;>#;;;#*##**.&@@*@@*@&**@@&**#;;*@@@*;;#*#;>@@.@#..;-*&*#;-#&;#*.&>.&@&**@.@=@.+.*@@+.%.#&.@-*@**&@&%..@*--", +";;;---#-#*@@#;;;#>#*>;#>*######-##;;;##**;;&@#;*;;-;;..;;#*#;---;#@;&+**#&*--###@@.*-..>#*&-;*@*>;#;>;;>;-@..->", +"@&@@**;;...@*->>;>@.>>#;####-;-#&@@*##*@.#*.@#@$.&*;>@.;##;>>#*#@.%-&+#-#.&;##;-;-#>;@@>-&*;#@*#;*@#;##;>;@+.#;", +".@.@@.#*@&**&*;>*@%%*#@.@...@&@.&@@&##@.&##*#;@$%..#;.+@.@->;&.&.@.@..;.*+@-.@;*@;-@@@@-.+.@..*&&..@&@@&@@.++.@", +"*;&-*%.+....%....%.@...+@.%%.....@*#*&&&@&@@&*.$@..**+,+..@--@.&-;&*..*+#%*-%%*.%..+@@.@+$+.+.#..@*@....--&%=$$", +"*>#>;..$-#*&&&@@.%->@.*.;*..*#*@+.**@.@#;;#*@@.+&..@*+,+&..#;#*->*.;#+@@>.;;++@%@=$.>&.;.+%.+#;%%*#@..%=@*&.%.&", +">;;;>>-@.>-%.;-*@###;-*#>;###@.@.;;.%%%.#-#@*;-*&*#*...@*-*.@;#%->**@%@...@&.@#@.@*#*@@#-*>#;*;.;.%*&@@.;-**#-;", +"@*#-;;*..-*.#>;*&#*#;#@@;##;>;*@@;-&&@@#@.@@@..@#-;-**#-#####--#%@@##@-*;#-#@*-*;--;-##;;-;;&-;&>@&;-##***###&.", +"+.@..**.;>-#>>&.&#**;#..@.@->;*@@***-*&;#@@*@+=%&**@..*#***#@+%*.*@##@-*@..@.*>>>#**&@&#;;&;+#*&>*->;#--.@*##*@", +"%@.$$.*@;;##;*%.%@@@*@%....@*@.@@..&-@.#*@....%%...%++......+$+.*#...+@.;**@++..;@%+%%%.#*.*+...-@*-@.&*...@@&#", +"*#&++@##....&.%&$...@..&***@+=.**@.&-@.&..+$%--.@@..%%..+..++@@..@+%%+@@-@**%+%.;@++%...@%@..+.+*.@.+=.....%++.", +";;-**#-#.*&@@..#+@**#**;;>;*+=.>*#&*-*@#*#.$+;;.#*&@...@*;#%.#*%.#@##@#@+=.*..->;@..@@@@.=@.#.#@@...=+..+%.@...", +">#*-;-#-*>;*#*@##;#*;;#;-;;#.%*>.#&.*#*-;>-..&*.#**&&&@@>>-@.@@%->;>>*-**.@*.+@-*@.@****@+@**@#*..@@..*.=.#;;-#", +">*.@#**;.-#@-;##;-..##@@.@##@.#>=@.+.*#-***@...*##**##**;*&**&*;#;*-#&;-#.@#..->*@@#;--;*@.;.*@*..@#*#-@.*;>;-#", +";#.>#>*#@.*-.*>#&**&*#-#.@@.%@*#.*;;##*@.@*##*@.#*@&@.@#;@.*#@%...+&#@---+.>>#;>-*@.@**@###*.%.-.##.%@&%@@*#--#", +".@.&$++&%%.&.@###--#*&&&*#&%+%..$%@@@&**-*.%%%.....@@.@*@@*#.=+@+.+@*.@.;%.##*#-*@%+%.@@**&@@*##%.......%%..@@.", +"@.+@.@.@*@%.;;*.*###*@@&%....#;>.&*@.@&*..%.@@.+.%.@*&**;@.@@....*.@@.&%;....@*@#@%+=+...%++@#*.#@.*&..@&@@*###", +";#&-;;*@->*@>;.@..*#*&*-*###-;>>;>;#@&##.%.*;;#...@&****>&%.##@.->@..@;@#&&.%.*@#*..%%.**.%@;;-#-*&##*@***&*##-", +"-;>;&+.**>>--@.;@@*##*#;##-;;;--*--#*-;>>;**-;-**&@.@@@.****@.@##>&@@&;@@*;#.@#**@@*##->#++#;@.#@&@@*;;*;-##-;;", +"-*-@&.#;>;**;;#*;#*--**-..@#-#*&.*-##-;;;-#-;;*@-#*@@*@.-#**#-##@-*;;#-.@*;;..#*;**;>;#-*++*#%+&-;*@*;#.;---;>>", +"*%..;#;->&.@->;.>*.*#&@#-*@@.+$$.#;;#*&.%.*;>;&.*#*@*-#.;&%.;>-..*@>>&&%&.*#..@.;@.#;#@@;#*#-#**>-&*#*.+..%...@", +"=+;*#$%...-#$$@**+=.&&*#.%+.....+.##*@.+...@@&&&....*-*.%.........+**+%+#..@...+.$$.--**@*.+%*@$-+$.#.%..%%....", +"+....%%&#;@@@.*@*##@@*#*....&**@*.*>#+%;@.@.=@#$...@-@.#%...+@;-#*@.&##&%++%.@@&&@&@...$+%..@&.=@&*#--*..@*##**", +";;#*-#*--;@*#@#.--*@&#*.---*@.@&@*-;*%%@&&#@+*-+-#*#;*@-..&&.*-&-####-;;@@@@&&&@*....*##@..@*&.+@#-&@##..@###**", +">>#*>;*@>>*;>;;@#*@@->-@-;;#@@*;%*;;*@..@*;#.-;@-#.@*.+@;-;;*#*+####-;;>#-;;-##*-&@#-#->>*@#;*@..#-@.#;#.*--#*#", +"#-&&;;.+-;*;;#;*#**#;;#@#--#&@*#+@-;#*@@.&***;>*;-@@#&.*>#-;-;#.&..&#-##*###*&@&*@@;>-*;>*@;;&.*@*#*&*##**#-;--", +".*@.##&@.&.@.%*&#####@..;;-#*@.%..@#*..#.@..*;#@*@%%@@.*@+%@*-;@@++.##@.....+++%+++&>#@>.%.#*..*;&@##.+%#*&*-;#", +".#@%.#-;%@.@.+@&..@**@.@####-#@.@..*@++@@*.%@*..++$$..%.@==%%..%&%+@#*..*@.%%%%%..==@.%-%+.**.@#&%+@*.+%*@.@**&", +".-*.@##-@-*#*.*@...*#***.@&*####@@&&.....-@%@..#**..#-*#;..@.++=#.@-;*@@#@.@#-#**;.$@.+&@..@#;;;+%.%.&*@@&*&@..", +".;-*;>#@#;#;-@*.>#@#;#@..@**@.&#.#;*@##@+-*.@.@>--@.-;**>**;*@@.#*->;@@#...*>>>;@>*%-#.##@%.#>>-.;;++*#.@#;#...", +".*--;>-.@#;>#.@#;>>@.*#@;**->;#*.*-#**#-%%-@&>-;@#*.*>;.;@.&@.@>%*;;&.@*#*@*#-;>@#;;;>>;**@@@&*#@@@%+.@@#@.@@..", +"#---;;-*##-;#@@*>>-&#>;&;#@&&@*##;;#*#-;#*>#*;@#-;#&#>>#>&.#;#->.#>>;*@@>-####;>#-;>>>;;##---;;>#*@.@###>-***&*", +"#@.@@@&#-#*##*@@-*@&###*-*&@..@#*#*..&**&.#*@&.#;#&@@**#-..*;#*-.*-;-*@.>;-*.%%.#**;-&@*.&***@&*#*&@#;;#;---#..", +".++%.%.##****@.@..*#.+.#*&*#*@@&..%+.@@..%.@@..-;@...+%@#.%@&..@@...@@@*,$+.@&->#..#*.+..@&@.+%.@*&@*##****@.%+", +"&..@&.@-&&**@..***;>#.@;*@.&##**@@@.&#*.*&@--@*-;&.@@..##&@*&.@#*.+.@@@*&*#-*.%%-..-;@.*---*@@*#.*-*@&####@%+.*", +";---#&&*@@*#&.@*>-#;>;##;@%.&##--;-#-;#@&*.->->-#@@*-#-;-##-#*->-@@#;#@@=+.#;;-;*..#;;;>-##*#-;>@;>;**-;*-;#*@@", +";>>-*&@.@@&##***>-*#;;-*>#@@&*-;;;;##-#*.&+*;;>.@..*-;-#-##;;;;;;**;;#@@&.@#-*..*@@*;>;;&..@*--#*-;-#-;>.->>-*.", +"#>>*@&*.*@@#;;#*#--#**#-;-;;-#-;-;-**-;;*;.*;#-$@@@&-;*.>--;>>#*-@.*#@@##@.*##@.--#*->;#*..@#;#@@****-;;&##@.#>", +"*&**.+.#;;&;-.*@-;;-@.@;@%$;**+*--@.&-;---**&@*-.%$@@;@*#*@#;;#@.%+.@@&*@-**;*.;#@@..#-.>-&.....*#@%%@@..*;#@@*", +"...*@%++#@=.#@@+.@##@.&;@@%*.#....%%@--*...@@@@*.@.#%..#%+++++=$*&*#*@..%.+=.=$%#@&@.*-@.....%+$......@.+.@.%.@", +"&@@##&.%&#&-#.;;#;>>;*#>@;#*.>;@--***-*..@******#-@#%..***@..%..**-;#&@**#*#;*.@#&*@.@#@***##*..@@@**@&#.@@...&", +">;#*##-;.-*-&.;>--;;-*@*@;-@@>>->>>>>-*.*---*#**>#+..*..;-#*&@@@*#-;#&#>.@*;>;*@;&@@.@&.##***&@@-**-#@*;###**#-", +"-#*@.*;>>-%@;;>&-@@*--##@@&.&*;;->>>>>-.*--&@**&-@$.%*..;#&*#-*.*#;;*.@#++.*##*.>*@**--@###**&@&#@.**.@-@**#->;", +".&*@.&####.@##;@>#&#;;#**.@@#.*-->>---*..**..*#***.*.*&;#&.&-;#@%.#;#@@*-#-#@->;;@&-;>>-&#-;#*@@....&**#.@*#;>>", +"@**@&#*.$@..%+@.#@.@@.++&.*.#.*-*--*&*&..*-@@##&#*.#.*@;@.%..&@@+%.&@.*-#*;#%@;#&.@#&&##+.@@.......@#;-@@*#*#;;", +"-#@.@#*.*;*#;;>#.@*#*...++@+&%#*+%%%.*--%*-@@*@%#.,%%*%+#**@&#-;#@.+++@;..-#+.*.++.@+$+.***&@&#;%..@->#+*##@.@&", +"##.-@#@----###*@*#-;;;#@*##@.&**------**@>>-..*-#-@@-;#;#;->+@@##@.>>@->;#*-;-##;;-->>-@-..#-@@-@*;.;;;+*&*###*", +"*-*>#;->-;;;;;;->>;--#@.@*&..&**-->>---**-;*..&*>>;->;*#-#;#.%*&*@.;;.#>;*&#-#***-;-;;;#;@.#-#*#.*-@;>>@-#@@@&#", +".*@>*;#>@*##*@&*;#@*#;;;##*&*##*>>>>>--*---*@&*##;;;>>##-@>&#%-*-#@>-%*>*..@*&@@@#;-#-;;;#&*-;#&.#**@;#@;-#*&*#", +"..+&.*.*;;>>-**->-@@**&@;-#*#-#*-----*..&*-***##&#**-#@#@.#@&.#&--*;#+.#.++......@*@@*#*##@.*;#.+&.@=&.@@*##**@", +"*.=.%@%.....+$$+*@.&*@.@@@.@@@@@...@@.%+=%@*...&-;*...%....*+@.....-*=...++.@@@@.....&@.@@.%.-#.$%+.=&@-%@*@.@.", +";#.#@-.@#*#;#@@#++.*#**;...@@@@*****-*.%$+.&.+.@#-&....*@@.;%#.%+%+#-.**@..@*****@..*-*..@...##@.@.&.@&;.*#@.*-", +"#-*>#;*--&&-#@.*@@#>#..*@*#-#@*;---->-*.@.&*&..*.##*-*&#*@&-*-#...%->#;;-*@*##**@***#;#&******##>#-*#.@&@-;#*;>", +"%&*>*#@;>##;;&.*..->;@*>-;>>#.@-*@&---@.>-&**@@*@;>>>#...+@.;*;.&@%#>#;-;#&*#*@@+.@@@&&@;;;;#*#;>*-@;%@@+*;;;>>", +"#-;-@..*;*@*-#@.>-@..&*&+*;#@&#*>*...@@&@;-.@*@.->>-..*-=.@.@-;*-;-@.*;>>>>-.*#%*&;*;&#.;;;;;#@@*;>@.;#**@@&#--", +"#..@#*.+&..*#@.+**...**@@#-#@*#-@%%@-#&..##*;>*.-;;#@@*#@.+$+*@+&**..@#;-@*-*&@+*@#@;.@..@#;*...;*#.%.%@.@*##**", +"%.@##*@*...**.+++..++@.=&@....@**.%@#*%$%..*>;@.*&@@&@@...$,$.@.**@..@&&;%%*@.%+@.#@#..+..*#*..@;..++%+@$.&*@.%", +"+.*;-*->..&#&.%.*;;**;#+&%+%%++.>*....++.@.@-*.&@@@**@...*&%$+@##*&@@@..;...%+....#@;.@.&&*##@@*;....@.*+.@@.%+", +"#.+@;;-***##*@@#*;;##;#%-@.&*..@#*&&@@*;*--;>#*>*&*-#@..#>>-.%.@##*##**@##;*.@*...;*;&#*;#*##**##&#.@;**##*@**#", +";*.@*###;-##*&#;.@&&*#@.;##-#*@@@*-;#*->.->>>;->*@*-#.%.-#####@.--;>>>;>.#>>*-;@..;#>*;#;;#;;##;##;**;&@>-**#;>", +"&@&&..*;;#**&@#;#*&#;#**#-#*@@@.@*#-*@@*.-;#--***..#-@......*##***-;;#->.@-;**#@..;#>*;#*#;;#*#;*@-#**.*;-#*&*#", +".=$+@#**#*@@@@&#*%+..+++&-#.%..%.......@*>#..*&@>@.->;*&%...%%@-...@.++.-.%@.+.@..;#;&#*=.;;@..;*+@##@%;-;>-@.%", +".&*@@*&....++.@@.+=.**...+.##..*.@*@@@.+*.&@@@%**@@->;*@*;.@@&>+@%+.@.%.$%.+$+++@#@*&.&.=.+=.+=*..%+++.@#&..@@.", +"->;*&**.*##&@**@.%.*;;*&#&@#*...&#-#@@&*>#;*&#*>#@.&##*#*&%*&.;.#@.&*@@*.*##*@.=**=$$$@&.*.+**.####*&*#>&@@@...", +"*#*..*#&-;-#;;-*;##;;-&@####*####--#@.*>;*-@...#;#***&*-*.%-#.##>#&**@@#;#&.&##*.##>;&*.##@@;>##&*#*@&#-*#-;;;;", +"#;#@*;>>-###;>;#>;-##*@.*;;##;;#;###@.#>*.#@..+.--;;-*@**.@;*@-;>;#-#@@*#*.%.*-;*;#;;@#&;#**;>;#@*#&@@@&**#*@@&", +"##*..*-#-*&*;;;-*@...@***;;#*#*.;*&***#-;#>#*-.&#-;;*..@@.##.*-#;#*-#@.*.@**@...@#@*&.*.&*#*@##&&-;#*#-#;;#.+++", +".@.++@***@.@@@@@&.%+%@@@.@*@@*@%@@..@#*.;@@+.#@*#*@@.+.@@.#@%*&&%+.@@..@+%..%+%..#&##.&..@#@+.*.+.@..@*@-#*@...", +"*--**;>;@..@@..@#*.%.&@++%..@&&@%@@..#*.@+=,=*.@@..@@.@*&=@@.@.*.+%@@..#@%==+%&;##++==**@@#@=.*.+..++%.%%++%.@@", +"#-#@.@@.@@*;;##-&@..*;#.@..@@..@.;;@@;>**%%+@>#*..*;>;###,.*@.+;;##-#*#>;&.@***#.##;;@*.#*#@=.#+;>>*@*#@@@@*--*"}; diff --git a/data/pixmaps/misc/bg-paper-grey.xpm b/data/pixmaps/misc/bg-paper-grey.xpm new file mode 100644 index 0000000..c0fc3cc --- /dev/null +++ b/data/pixmaps/misc/bg-paper-grey.xpm @@ -0,0 +1,118 @@ +/* XPM */ +static char * bg_paper_grey_xpm[] = { +"100 100 15 1", +" c None", +". c #D3D3D3", +"+ c #CDCDCD", +"@ c #CBCBCB", +"# c #C8C8C8", +"$ c #CACACA", +"% c #CECECE", +"& c #C6C6C6", +"* c #D0D0D0", +"= c #D1D1D1", +"- c #C4C4C4", +"; c #D4D4D4", +"> c #D6D6D6", +", c #D8D8D8", +"' c #DCDCDC", +".++@#$+%%@$@@#&#@%+@$$$$$*+$$$+++%$*@=#+@-@+##++&#$$#$+%%$@$$$$$$@%@&#$#@#+%%+++%=+@###@+#%=@#@++..+", +"+&$@@@@#&$$@@$#$+%*+$#@+@+$$$$$#&+#%@=@%%&+%$$%%##@@#$++@+@######%=+&$$$@&##@@++@%+@###@@#$$##$@$==$", +"$@%*%%+@&@@+%+@+%%.=@#+%+#$$$+%%+*+%+%#@@#+%@@%=+@++@@@@$%+$##$$#@%$-&#&####@+%@#@####+==+$#@%+++%@&", +"%..=%+%*%%%*=*+%=+;;+$%=+$$+%****=**%=+%%@%%++%======%%+@*%%+@@@@%.=+**+%=%%%%%++@@@@+=;>=%%;;=%==+$", +"%==%@$+%%%%===++%#.;%+=%$%*%++$$+%%%.;;>,%==%%%=;;;;;.=*%+%==%@@+@===;.%%=%%%+@%===%%+%%%+%=>;+@+;.%", +"#@++@@+@#++%=%$#@&%.*%*+#++++$$+%+%+==;=;%%%%@$+==%%*%+++#+*=+@$@-$@@*%@@###@@#%;=%%+++++@%.;=@##%=+", +"#$+%%%%@#$@+%+##$&$%%%%@&&$$%%*=.%%@=@+#@%%%%$&#%@##@@#$@&#$+++@$&+%+==++#&#@+@+=@@+++%%%@*..=%+#$+#", +"=+%*%%%@##$+%+$#$&&$+%+$#-&+%%***%%@=@%#@.===+#$*@##@@@@%#&&#+%+#&+@$+%@@=@@==%+%%%%%%++%+==*==%#+=#", +"=@+*..=%+@@+%**@&&&$%%@@%++$##+%%%@#@++%%@+**+%*@%%=;=$#@&#++@@@$$@##@@#@#==%+@@=@#@==@#%*%+%=;.=++$", +";=;;>;.==%%%*.;.=%+%=.=%%+%%+%====%%=.;;,%%=*+%=+%*.;.*%=%==%+@@#@%%=>;=.@====%%;=+%=.%++$@++++$#&$%", +".%%=%%+%*.*+++%%%=+@*;.%@@%%%*=.=$@%;>;====.=%=.*%=;;.;;.%==+@+++#+%%.=@$@*%%*%+*+@@%=;=%%=;;=%+@&%;", +"%$$###@++*+###$@@+$#+==%##@+++%=*#$+==%$#%@+$&#+$%.;=*==%+%+$$+**+=%%=%##+%@@%%$@#$$$%..%+%==%+#&#%;", +"@*%@$+==%$##@++%=@@@@%%%@&$@##@%%=%%%+@@%%@+#&#+$@%=+@%%@==%@$@+@%%@$%%+%**@@*%$#@%%@$%%@##&#@@#&&$+", +"$%%+@+=%##&#+%++*+%+@@++@$++@$+%*@+%*%@$@=%%+#+=%#@+++%%+==%$#$$#%%#&#$$+*%$$=*$##++$#@+@@#&#+%+@@@$", +"$@*=%+%+#+$@%%@@%%%+$@%%%%=.=%%==#$%=%@#$%@+@&$%+@@+=====%%@$$@@#=.%+*%%=%%@@==++##$@+%%%####@+@@===", +"+%>',;;;==%=;>;;,==%@%.;.=;,;====>.%@$@=,.=.=+=;.=%%;>.=;==*%+%@#$++%..=.==%%>>..=%+%==%%+%==*%%*=;,", +"%@$%=%%=%;=**%+@@.@&&+*%++=;*$#@%$#&=@%@;*@%=%=>,==%@@%*%$+%%%=%$+%#%&$#*+%%++++++*=+@$#&.%=%;%%$==%", +"*@#+%@+%+====+&&&%+$$+%$&@#&#+==%%+#*@%$%=%%=@$%%#$@@+%%+&#$@%=+#&#&@&$#++++$####==%%*==++@%#+&$#+++", +"+$#@%@+*%++%+#-&#@++@@+$-#@@##@%%+@&++=%%%$+%$#+@#@@@@+@#&##@%*+###&@#$&$++@##&&&=%@@=;;*@+=$@&+%+++", +"###%=%=.=@$####+=+%+#@%+#+.;=$#+%$@$@+==%#&$+@+%+%+@##@@$$@+++@$#@$#@@@$@+@$$###$@#&&@==+@+=@%#=.=*%", +"%@@=;===%%@$+%==.%%+@%=%#*=====*+%*=+%%%+$#@%+%=%@@@$@%=%+%%%@#$@@###@@%%=%+%+@@%@@$#$+%%+@*$%$%%.=*", +">%%.;=%%$=%*;>;%+%%%=.=@&#+=*%+@$**;*=%==##@%%=;=%*==.;=%%%==%+%==+%$%#+%>..;.*%=.;;==.;>.*=+=+*+%%=", +";%%=.%++$%++==%@#%@@==+##&+=%@$@+=@=%>%=.##@++=;*%=====%@%++=.===.%.+*#+%;==;;%%==;;==.;;;=.+=+==%+=", +"$%+*=++*+#&&###$++##%%##%%+$+;'>*;@%%>@%+%++@#++&###&#@@$@&&%.=+$#&%$=#==#&#+%##@&##&#$+@%@+&@#%==%+", +"##$$@+%%@$#-&@*%@%#%$@=%;;%@#+====%;%;+;;$@@#&&&@%%+##@@$##@%+$#@$%.==%+@@@@@%%==#$@##@%==;#@%#%%++*", +"#%@#@*=%+$#&&$%+$%$%@@*@*===%@@=;%+==;+=%%+++++%%===%+%+$*%++@##@&@%%%===%%+++%%%@@@$##@%;;##+#=;@+=", +"@;====++%+%%%=;;;%+=%%=+%=;;=%+=;=%==>=====%*=.==;>>;..=%%%%*===;%==%%=...========%%===.,.;%*.%%*$%;", +"==.>,*#+;#@%%%*==%%==.;..;=%%===%=%%=;=;;.======+.;;.=.==$+=;;;>,.;.*%=========.;.%%.;;>';>.;>*++@%;", +"*$@%=%@%;@%*+$$@@+%+%==.===+%=;==+@@%==++%**%+%+@+%%@$@++$+%*%%%++++@+%%%@++++%%=%@$++@@%,;%$++$=*%+", +"&$#&#++@#@%=%++%%@@&#$#+$+%==++=;@@@=%%##$++$$++@$+@#&&$$+%+$##$#++@$$@@#$@+@$$@+@$$$$$@+%@$&$@&%=+&", +"&$++@+%@&#@+@$@%%@+-#$&@&+%=%++%=+%+;+=+=+%+$@**@$+%@#$+++%%$#@+@==%@@+@#+%%%@@+%$%%+@%==&&+@*%-#%+&", +"*-%;=%=;=;>;=%%%%%=&+%$%#=%@@%==%%=#=#=;'.=%$%.=$&@%+@+%*@*=%+@$&%%+$@%*%+%*%+@%*@.;+#+%@%$%@%=&%#@#", +"=,=+%;>.%+;==;=@==*%=;;=%,>;===%%===@#=>>;>,=%.;%,.%+%=;>;>;@@*+.>===%.;%%+@$@=;+'%+=%%=+;*+%=%*.'>;", +"#==*=;>;;=.==.=%==%%%==*+;=%%====;;======>,,=+==#*%++@@%%>%*%*$-=.=*%%=.%;@+=*+%='..;%%.%;=*====.=%+", +"###@+@@++=%%%+%%+%%++%%%++@##+%%%+##@+@#&%%=%@==#$+%+@#$@%#@+=%&=%%%++%*%>%=;=+%%;=.=@%=%$+%++%%%.=*", +"$@+%%@###@&@+&#@&+@@@@@@$@@###@@++##%%@#+##$##==##@+@#$$$#@%#%;++@%+$$@@@%%=+$=*&@+%$#+%+-#@#&##&#$%", +"#***%+$&-#&%*&&@#@@@@$#$@%%%+@@+%=@+=%@%,*%+#&%=#@@#&&@+@%=.$%;@$@=%#@@#$#$@&#%%-$%+#@%+@#+%@#@@#&#%", +"+%%++%+#&+%..+@%=%*==%%%*%%%%@@%=%@@+@#%,.=*@#=;%*%$&#%*%=%*%==#=+;%$*%#+%#$%%%%$=;=%==+%%**%%%%%%%=", +";*===.==*=.=%===;%=..=*===%+@+%%%%%%%%+=,%==++;';==%$$%=%$#%+==+;@.+$..+=.==;%%=%;,;=;*@==%+%**==$$%", +",$@+%%%%%=.$&%*+=#+**+@+%;=++%=%@##@+%%=;%*=%+;';%==@#@+$-+=#@;%%&*##;;%.%>,*&%=#*;.=;@#..+@%==.>%+%", +"%=&$.=#$+%@@@#$+@&#@@@%*%=##=...*@$@%+#$+%+@+*==%+$+=%#@.$&++%.%=*=%%=%@%=%+@+%%@$+-@#+#=#=.+%%%*#$+", +"==$+=@&#+%@+@#@%%#@@#&#+%%#$%%%%@%*%%%==%@$#$++@$@@@@@$$@.%%@@%$+#@$@%+$+#$$#$@@##$##%$#%&%%#$@@+++@", +"=#&$@&&%=%@++#@==%=%$&#+%%+++$+%#@%%+%;>.%++%**+@+++@%;.+=+%@@%$+%=*%=+&&&@++%%%@##%#;@+%&+$&#@$$=%+", +"%##@@#+.=.%%%+%.====%+%=%%*=%$%=@+%=**=..===.;;======;,;=+@===;%*#++%;;==#%.;...=@+*+;===$%+$%=%+==*", +"@===*%=.%,===%==%+++%;>=++%=%$%=%==;,.$$*%%==..==;*=;;%%==%;..;%%$%++.;.=#%;;.===%.%==;*;+=%=;>=====", +"@=+%%%==@;%++@++##&#+;>*&+@%+$+%@+@*,;##=@+%%==*%+#@.=@+.*@%@@%@%;>=+==$&#%==%%%%=>%=@=@%%===>;==;.*", +"$+&#+@+%@@#@+##@#$##@=.+-=@%*+@+$#&$==%+=@++%%%%%&&$%=%%.$&#&&+$++=%+=;%$+%=%++++%;%++%@+*=%%==+*>=@", +"#*$@%$#@@#$*=@@%%=%@@%*@&>%=;=+@$+++%==*+@@++@@++#+%++%+#@#+$@%#$@=%@==$-+%%@#$$#+%=#=+%+==%@+@$%=+#", +"@%=+$*+&@%++%+@$@=%%=.%+@=+##@@+%=%+@@+%*@+%%%=%@#%=+@%.===;%@%$$$;=&&@#&$+%=%++%@@@+=.*$=@@=.%%.%%+", +"%..*%=%@@@$$@+%%%+@%.;.==,.%%%%++$+=...=====%%=%+%%+@=>;%;=;%+=%=#.=@@+@$+%.;.=%%++%%%+@@.=======..=", +"%+%.=##+=+@@@+%%%.====@#&=%+%=%%+==.=%%=;=.=%+%++#%=%%====+=%%=%.#====%+%@%.;>;===.;;%@+=@%*+%==%%%%", +"%$&+%&#=%=*+@+%+$+@@@$#&&#&#@%%@@=.=+##@=**%%++++&%.=@@%=$&%==%#%@%%*.*+%@+==..=++=.%##$@$+%@@+%+++%", +"++-&$$%=#%%+@@+@#@@$###$$+$$@+$#&&#++$#$++%%*%%%*++++%=%@@&%%%%#%%+#@=%@++%%+@@$&@;;@#%*@%%%%+##+#$@", +"#&#++##@+#@+$$++$==%@$@+%*+$@@$###$@$##+%$@+%%+%=$@++@$@@%$+##@$=%+##**@+#++#&#@$+;;+@.;%$#+%+#@=#$$", +"$-%=%$&#=&+=+@%%@$+%%*;,,*@##@+%*.=+#&#%=+@+%+$@*#%.=#&$==+%&&%%.%=+@*=%=#%=@#@%%#@+@$@++-$%+@+=;==.", +"=*=$@,,%++;>=%%+@*.;====*;*@@+%=;==*%%%%%==**+$+=.====*====;++;.;@==%===;=,,=$$++%+*;.+%,$;,*@*.==..", +"%@#%%%=+%+@@%%+@+===*%++%+=+&@;.#%=%=>%@,===%$%=@.=*=;%#$@+%*%@@%.;;.=%%%%%%%===,;.==%%=>%%+@$$+==%+", +"$$#%+@%@*$$+%%@+=$$$+%*%%%+$#+..%%%@%;+$;$@+@#+%$==%%=+$%$@@@@$##%%%%%%%%+==*=+@@%==%+%=;%@$%%@@*=%@", +"%&&+#&##%@+%%$&$%$##@%%+#.+##+%==%+#@*$#%$@*%+=;%#$##+@+;@@@@$##&@$##$@@+$%%@$@$&&+%@#+%*=@$%*@#@=+$", +";$#+##@#+@++@##@%@$$@%%+@;%$#@+%%=%+++#&+#$%%@%=+&@$#$#@=%==%@$@@+@@@+%%%+%%#-$+#&+%##%*+%+@+%+@@++@", +"%=%=%*.+%@@@@@%==##$@+%=.==%@+==@=%==+#@%+%..%%=+%;.%+$#%%;;=@@%=*===;;;.;;;%&@%&*.=@+==+#%%@@=;.@+%", +"#.%=%=;%%**%++%=%@@@@$@%=%==+%;;%%+=.%+==;;,,==.=%>>..=*.%.;%@+*=+%=.....==>>%=.$.;=++*%@%.;%+=;.+%*", +"$%$+@+=+%*==+@+++=%%+@@@@%%%%*==*=$%.%*=@++==@$+@#*=%=;;>@*%$#+%%@%*%@$@++#=,%=;%%==%@###;.=.=%+%%%+", +"%@#@#$%+=&@%@#@%==%++%*%@=@#+%@@%;$+=%=%-$$%*$#++&++#+%%=@+$&#%%@*==+&-&#%&+.$@=@@%.=@-&$=##;;+@=%@#", +"=%@#&@*%@#-&%=+@%#++$&#@+=+$@++@$..$%%-$#%@+=+&#=#%=%%=%&.+##%*%+@+%+@$#&%@###&&#++%%%%+@%%%.;=%%@%=", +"+@@$#@%%+&&$%@&#%#@%%%%+@@##@+@$#@+&@+#%@$#@%@&&@&%*@#@$-=@&&#+%%&$@@@@#&@$#&&&##@@$$$##&@+%=%@@@&$+", +"@$@+@@+%%$+%%@@@+$+%%==%@+@+*=%++%=@+%%=@#@%%%++@$==+#@+$*+$#$+%*&#$+=..*@++#$%%+*%+++%%+@+%%@##@#$$", +"@@++++%*%==+@*;=@+%+@+%%%==.;=%%==.=%%=*$#%===;.%@=.%%==%%===%%%+',;=%%$&@*=@+=;==%%%=;.=%+%%+@@++++", +"$%%++%==+++#&@=%#+%=%@@++%%%*%@+*+%%$$%+$#%=%%=*@@%%+%*%@+=;=%%%+%+@$+=..$**$#%*+$$$+%%+@*+$+%%@@@@%", +"+%%+@%=%+-$@#&#@@#%.=%@@$$#$@$#@%%+=$&$&$@%%+$@$#$@@$@+$&$%%@#@%%>;=@##$#+=*@###&$@@+@$#&%#&#++$#+$#", +"*%%%@@+++&$+@##$+&@%%%+$####@@$@+=%;+##&*%*=+$#$@$@@######++##@%%%*%@$+==+%%+#&##%*=%+$$@+$#$@$#&*$&", +"*+%%@##@+@$$@++@$#$##$@$#$#$++$##+#=+#@$,%%%%$#+=&$$#&&@+$%=+@%%@@%=+@@%=$$@+$&#@+*=%@#@%%++++$##%@@", +"@##%#$=+%$##$%=%#%.,#++;+$$%*%$#$$$++%%+$=.,%%#%+@+%@##@%*.;=%%%+%$++#+=#@%%==@$=&$%=====+@%..%%==+#", +";@%>*@%%;=%@@%=%#%%.+=@=***..%$$+***%%%%+=%=@.*=@.;;;;;>,+%+@+%==.=;>=>,.@%%%=+$%=====.;,=*===*%=;=%", +".%@%$@=##@#&-#+@&%#@+=&#%$$+++$+**%++++++@$%@.==+++%==.==++$#@%%++@+@#+=%@%+%=%@%+++@@+*=%%%++%%@*%%", +"#*$+$%=#&$$##$+%+%#$%%&&$&-&&&$+=+$$$+@++&@;*=+==#$@+%%%%+@$#@%@&=%+#-#+%#%%%=%%=@@+++%%%$++$@%+#@@@", +"&&$.%##&%$%%+$$@@%%%*%+##$&&&&&$*+$$%%++%$%,=.+==#@%+@$+*+@##+=%@;;=+@@+*&+%++$$%@@@++%%%@%*++*%$%++", +"@@@=%@@#%&@%@##@++=%%@=+$$&&$$$+**++**+@+++=+=+%#@%*%$#@%.=@#@%%+$@$@%$&##%%$#&&$%@$#@+%%===*%++@=%+", +"*,%==.;%=@%*%%=;;%=+=@=+$+$$+%+%*=+$%%@@%@+=@=+%#%=.=*%%%;.=%%*+$@+#@.%#@%=%@%%@@;=%%*======%@#$%%+@", +"=+#+@##-@*%+@+===;;%;%.@+;...*+$$.+$%%+%.@='..+.;@++%%@$#@%=;;;%#==$@;=+=;;=%;,;=+++%%%@#.=*%$&@;+@@", +"$$$$@@@+%+@$###@%+@@%=%++$$$$$$++%&-$==+$@$%%$#@#@#$&;%%@@%=&-%$&#@+$#$@@##$$&&$%$==@$%%$%+#=###;+%+", +"&$######$-&#$$@%=%+%==%++$$&&$$$++$#+==%+&&#$&#+@$@#@=.+%+%=##=@&#+%@$@+++$#$###@#%*@$@+@=+$%#&&%$@%", +"&%+@@+%%+#@%+@###@@+%+@@+&&&&&$$+$$$+%%+@@###&&@@$%&%@.$+$@%&$.+&+*=%+%%%%@#$@$###@%+$#@%=@++%#@%#$@", +"+##&&$++$&$%%++%%#$@+@$@+$$$$$+**%+$+++@@%@++$@%@%=@%%=@%$$+#@;*@=;;=**===%+%%+@+@@%=+#@=;%=%>%=%%+@", +"=====;,,;+%*%+%*%%%*%%%%%***%%*.;>.%+*==%$#+=*=.*===+;%===*=$+>===;;=%%%%=====%%=%%=.*$@=,.;=>%%$.%+", +"%@+@#@%%@;;=+@++#===%%%%+++++$+*.,;*%=;=%@$%=*==+%%=#.@=.;.;@$=++%==%+++++%**+$+==%==*@@%=%=%=%%#=+@", +"$$%%$@%*+%%@&@==+%+@$@%+#$$$$&$+*%*%+%==+=@@+$+%@+%%$+$@===.$&@##$+%+@@++%+++@#@%++++++@@&@$+@=%%%$#", +"#&@@##%*+==$&#%+&$#&&@*%$+%%$$$%=&$%++%%+%#&&&@=*=;%*#+#*%%.@&@#$#@%+@+%%;=%%%%%%####@+@#&+$%#.%%;+#", +"+#+%+$@%=&$%=*%+%;+#@%%@+&+***%%%%#$=%+%=$&&$*=+$>=%=%$#+$#$%=+#&&&&$*+@.+%#+#%@=#####@%%+#-%=#@++%%", +";%**+@%=;++*==++%%@$@%+@$%..%$@%==@@+#&+=$##@%%+@%=;,;+%;%++==%@#$%+$+%%;+%@%#=%==%@#+===#+@=.*.%=%+", +"+==*++=;;;==;;%=>%%====%++=.%@+.,.==+&#%=+%%%%%%**=,',=%=++%==%%%#..+%=.;%=@%@==;==+@+==%#==;;.;%,=%", +"&==%@%=.=+##++#@;%.;..;;*&+==*=;;*%=%$+=%%%%++%===+%.,;%@@+%%%%*=#==*.;====@%#=%=%%+@@%%+#====%=+;=%", +"+++@@+%%@+##@@#@.$%=%+==%@+%%%%+#+$$#&@+&+%+$@%==@&&$=.=%@@+@@++%@@#+=%+===#+#%@+#@+@@++@@%@*%#++@@+", +"@#$@@+%@#*%%%+@%=#@@$@+%%%+$#@+$&=$&&&#$&+%+$@=.=$@@@@@%=$$#&&&#&=@-&+$#%==#@&+#@##@##@@#@@#++#%%&$+", +"##@++%%@#@+%@#@++@$@+%%%=%+@$+%%+=$#@$$+++==@$%=====*+@@+++$##@$&*%$#++@%==#@&+#@+@##@+@#+%$@++=+#$@", +"+@+%%%%%@+.;=*;;;%$@=.==.=======%+&@=*+%%&%=$&#+%.===..%$===%=;;=$=.%=;=%==#@#%@+>=##%==#+;%@@%.#$#&", +"==*=;;=%%=;>=++==*;=@@==+=%+%%%=;+=%%%%.++%%$&#+%+#=%%%&;%.;*%=.=,.=;,;;;%@%+%=%=>=;>=;>+==.;;;=%@%*", +"=+@@%%++%*.=+##+%@%%@+==*%@$@%%%+-@#+%@+&@%*%@@+@+%.+%=#=@%=%+%%+*+@@+%=>++>,,,%%=+=;++=@@@@+%+@&%%%", +"%$#$@##$+#@@##$%%@@@@+@@@@$$@%=+&#+$%===@#@+++%+$+=.$@=@@&@%++%%@#@%*%@@+=@@&#%+=@@%%#&@@%+@+%%@$+@$", +"&$@@@#&#@&#$@@+%=+##@@##@#@@@%*@&+*@%==;=$$##$+%++=%#+%$#-#@$@%%+@+=.=+$#+#@##%@%#@++#&#@%+@%%%%%++@"}; diff --git a/data/pixmaps/misc/bg-paper-white.xpm b/data/pixmaps/misc/bg-paper-white.xpm new file mode 100644 index 0000000..45e2325 --- /dev/null +++ b/data/pixmaps/misc/bg-paper-white.xpm @@ -0,0 +1,135 @@ +/* XPM */ +static char *paper-background[] = { +/* width height num_colors chars_per_pixel */ +" 111 112 16 1", +/* colors */ +". c #e1e1e1", +"# c #e6e6e6", +"a c #e9e9e9", +"b c #ebebeb", +"c c #ededed", +"d c #efefef", +"e c #f0f0f0", +"f c #f2f2f2", +"g c #f3f3f3", +"h c #f4f4f4", +"i c #f4f4f4", +"j c #f7f7f7", +"k c #f6f6f6", +"l c #fbfbfb", +"m c #f9f9f9", +"n c #fdfdfd", +/* pixels */ +"eebddbfdbkeebd#cddfghgffdddhhdb#debcdbdbcgc#ba#dd#deabd#fjmfcdedga#bfkhaddfifddfbbdifaadadfdbdfdbdddccccdicfdbk", +"kkdghdgeemfgdkgmjkkjmjgd#ckkdbeliicefdebdkecfddkfdijfhjgdkmifijkkddffkicfdddcbcfdbdffddh#bdddhkmddddddddfmihb#g", +"jkdikfiehmgkhlkllmjmllidfgiiedilllijjijefifeihfmgfkkfhmjimljhikgkgkjikmkmjkkigkmkddfgffkdfhkifimfdddfgggkmgebbi", +"kkdkmijgilimkmdhmjjmlljfljiiiikmlnjljhjgfigfgffhiikiddhijlnmhhfdffkmiklmegkjjkikmkikhffimkkmkddhmifhjmmmmhcdhml", +"kkdkmijgjlfkgkcfhikkjkkidfkkhfknfjijfbgfffgigggdkjkgfffkfjmifgfdbbfifgkidgkkkifdikkkfddghffkkffimgdgmmmmmfddjlm", +"fhdiidfdhkbdbebidddddddddcdhkihicifhebffdbdgdffddgdcffdhdfgdbcb#aaddcdedkjkffffdbdiidddfdddghfdffb#bdddfedifdeb", +"dfdifbdcbdbecdbkddbbcddcfdcfjkdbeiegfcgedadgddfacdbaffdfdhfcbcb##adfcdfedfdccddbbdffdddddfhgggfdd##bcbbdcbidcc.", +"dhfmkdhg#ddmkkdkjgddijkibdkmiddighcefefchcgjfffafkddmmgkfkkghjmk#bikefjmdfiikjidghgfffdddikikmmfiddfiffkfbfdhmb", +"mkimljeciikmjiffkjkkmlmkfikjjjjjehjjjiiigjekdmiknkhmmhilmjjmjhfgjkjjjjjjkfklmjmkmifgiihgdhkmmmkimfdkmkhicchdejf", +"kihkkgfhljkkkkmljjkkjmjhfehjmkikijjjjjmlimfkdkfglhfjjffmmkkmjihkikmmmmmmgdiljjjklmmkkiikfhkmmmkkmjjmmjkjddjfglk", +"hijkhegjkfefghklkkigikiffcdkmifimjjjhfgieififmkkmhfkkfdhkiikkkkjfijmmjjmkgjnlmlmmmmkhgkmkmmmmiddijmkghihfklfflk", +"dimmkffgccdfhfefgfedehgdibbhjfdijjifeeeedeefdhgfkffiifddddddffhkeffhkkkkfcdheehfdfgffgiikkkkhdbadgfbbdfddhjbbmk", +"dfhiiigfddfkjiffffdddiifmcbfidfjfefhijjifffcbba#fddfgfdbbbbbcdefifddgkkikdddbcffdfffhkgdddfghgffhgdabhkhbcf#ajj", +"kiffimmmkihkkikmihfdfjmklfcefehmihhijjighgiddbdbffffkjhddffefhihmiedhkjknjkkefkkmmmkkmfbdffhiiiikgcbdkmmfdhbbie", +"mmkfhmmmjhfffgkmjkhfhmmjljgffgklljjgfedcffkdkhmkfffgjlmfkmmkkmjklmjiiikjlhghddhhmlmkikhdkkiihgffkeccdfimjimiffb", +"kjjhfffdifefggkmmjifhjmjlljigijmnliffeeegfkdkgmkcdddimjekmmkkkkfmllmhfimlikjhgkkdkkddfigffggghhgiddeddfmhdmlmkb", +"mmbdffmdkieccdfhkkigeekllljffkkfiijmmiffgkmkhhgfkieeigekffdbdjmklmiikkkjjkmmkkmkmddfhkkdkmkddkmfegifdbcdiijmkff", +"dfbffcfbdbbabcddfffecbcdfigdcdffiggigddddfgdcbb#ggdeifdigecbcefdfddfikkmkffdabdckddddgfbdhgdcfihjkihhijmljffdcb", +"ceemmddcgfdfghfeceiihfffdikebcfkkgffedcdjkfbabddddcdgdcegdbbcbbcfddhkihimigfcdkjkefgefieikkgdbdffdbbdfiklgbabcc", +"ggkllifgjjmmmkhheimmmjkkhjmiddgmmkiiifdemjhddgjmgkijlmijgcbdeddfhgijjheehdffdfmmifkkfgjkmjjjgccfifddfimlmfbbded", +"mgimmjikefkjhddfjmmkhhfdkkkkffgkljkmmkffdfggikkggkimlmijkfdikffkddfkjkikffkjffifeekkefjmkffkjgfkmmlmkkmlljikkif", +"mikhklkjffikidfmmlmigiiehfhkkihkjihkjifekigefkjkdffimidfmkiiifgiddgjmjjmffmlmjjhefjjdejmmihjmkikkmlmifikkkjllmk", +"kilfglkjkedgifimijkffkkfffhjkffgfdcdffddmjgdfkmjgkikljfikkidddddggkjjkkmdcfiefgdffkkddhimmjkiffgmmmmkikkdddgkii", +"dfnfdmgiga.#bbbddfdbabb#ddgkgcbcdb#bddddacfkjkd#cdcdhdbcdgfbacdbddeghgkmjhigccdcddgfaaccdgifddfghfddeffedb#bbbb", +"ihgfgfffkjfdgfdfbdeefikkcklliefiidbejmkfjmldkgkbekgdfda#ddgkkfefjifffdfjifmfljmehfghihhihedhkjmlcfdfbffjddfgdb#", +"dfkjkgfekmifkifhddddilllfijjigjlkmlmiddffhmekfjfdgfdkjgfmjkkiffilmjkfdhmlmlkljmhhhijmmmmddffeddiikfmhljmiiiiihi", +"cfmmkhhijmkgkiefihgimnlmkhhkkijnmkkmmkffhkliidffgjigjmikmkkkkikmlmmkfeimmmlkmjljhikmmllldgkkdbbekidjklhfiiigfij", +"fhiihikmmmfdfdcdkjmmmmidifimkfhmhcbdjmifjkjkiddfmljikifhghkmmkkjjkiiikjmkjmkkkjkhkjjmmmjkmllkddikidkfmdcdefffgi", +"edcdefffkkdbdddffkjifddcffikfdfmedddddeifedhggfijmkfifdgkkkjkfdfhffgkmjkkmmmkkgfdgighkkgkkjmjhfgikejfjffcdeddij", +"cbbceecaffcbdffjdfebabfifggdcdklmhdegikjeebedgddmmkggdbdgeddcbdfffddfhfddhgjgmhfaccbcefdcbbddcbacedidiehfgd##cf", +"feefgfdbffdcfhhjfihddfkmgkkddimmlidfkjkidkdfafdcmmkiidbefdddddfkfihdcdddcfciemhfbddbbfgddbbddcbbbdcididdfid##bd", +"llmkiikjfiedihehmllmmmjiimmfgmmffijhb.aebkffakgifihkmihlmmmlmkkjkllgcdijmlfjdmddmlmhgmmklmmlmjikgkilkmfddghdfml", +"lkffhikmmjjkifgkjmnlkefkfmfjkdfbbfkmiddddfbfbibbjkkmlllkffimmkkjmmkghjmkjfcddfhkkkkkgfddmjkmmkfddbmkfmffiieljli", +"kecddfkmgkmkedfijmlljfhjgjfkkekedddfkkdbfhddbhdfgiiiiigfdddfhgijegiikmmklkfffdddfghihgggkkkjmmkfbbmmimdbkhdmgjc", +"fdddffhkbddddhifigffdbbbfidffdifdbbdghdbdfddadddddfedcddbaabccdffffedddbfddffdcccddddddddfgdddc#cbgecgfejfbdcea", +"dfhkkheddca#emibmkgggeddffddcbccbdffdddfdffdbdbbcddddddhcbbcdcddjidbbba#cbcefdddddddddcbcfgcbba.bacbaeihkfbbbcb", +"fhiiihfejkfdfkfbkfeijjkkhgifddcdddhfdbddhkkfddiigeegifhkiggkjkiijifeffgiihikiffgkihhigfdfkjihkkf#bfjhijdefhedde", +"jmkggkmljmlmiikmkfdfiiffkklmjmhjifddhhdbkkkdffmmjihjjihkjikmlljjigijmmjmiikjjkkmjkikjjkikjjjjjkifkjljklgdhlmjef", +"mmmhfklljiikifklmkikjkgfkinmjlklhfdfiifdifibhdidifijkeekjigkmjihifgjmkikddfkkikmiffgkkigjffikfddllikefnmfilijfj", +"fkkgfffenfbdgdbdbabdggfggdlifjfmdfkkfddffdmdmdb.cdgjgcdjlkgikhfekedfikjlffijkfefhfefikgekcbimhfkfjfkfdlfmkmbfel", +"hdkddhbd#dhfbacfhbddbdkddefdbbdf#abdddffdddkmdaaba#dgcbf#cfifdbababkkeicadddfcbgfikjkdbh.ghdgfdhbeifdfec.ababdf", +"eckhklhmddedbabbdcddcdfddfgfddehbdffddddbbdddddda##dhddmefhikkgfafefejndcdeffdcfbkideifd.ccbffcfbdeddddcdfhfddb", +"kimmmlkmmmkikkihdgffhffifgihffgihkmmifffimmkikmlffdfkddmjighkmjkgmkhdgldgfgiifefafdbdhffbdcdkgdfjhfiigfgcdefhjj", +"mmmjjjkjkhffkmmmklkhlmklikkkkkkjkkmmmkkiimmgfkmhmmjmmddmmkikmjjjmkfmgbiikgijjkkkffdijdelkigjmifinmkmlmmlmjfdejl", +"fgffhimmeeefijlnmlfellkmkkkkjmjkgffhkkhfdkidfkf#egimlfdmkkmllkikfdcjgbkjkdgmkkmjmjklmffnjgimkfhkmifkmkkmlmfbdkm", +"dfdffdkhfghhgimlifccikfdfeddfgfegffgkkfdgkkikmf#cdekmdbfefjlmgegdfefddmdhbfjefmhfmjffffjdbdfddhggeefgffgffdbbdf", +"hmgjicebedddcddedcdfdddbfdccdedddfikigggfgffghd#fddhib.bddfjjfdgjmghddibkcijccidcddbffdfb#bdbekddfhfeeddjjgca##", +"hlklmdd#jkigggffdcjlfehdmieehkifbdiifdfkmmkiffdbgedfhb.bgddkmkijnidmkbfflemmbbfcfa#elgdmebcdbkmcchkfddcafigdcdg", +"lmmmlljfdljcdmjifkkkmjhklmkkkfefdmmdcccekjkfhmjhgikieddfijidfmkcjliifcfdedfgdfkfdfhkhffkjinkmimdmdchgffemjiikjm", +"fikjmmiddjidklmigkikmkffmkkmlmiffmjggffkfefffddfkjmjihkjkkkkkjjkcffkkfjhmkjkfhjimjjmjkkmmjmmgjmglfgmjkkiiikkkgd", +"befddihdmljkllgdgkiimkddfdfjlmiffihijigmkffifbacgiifeehkihikfbchdifkkfjhfdefdilllkhhgfgkmmgmbkhglijlmkjjdfikkif", +"cfd##difmmkkmhcdcfffifcddddfhfdffedgjfdkifdeedccdddcbbddddddb#bdikdddbfemhhfbbddmfcbcccdkiehbdddjfijfdghddeffgk", +"hkgbbfkkdddegdcg#dddfddgiiifbadihfdgjfdgddb#cjjeffddccddbedbbffddfbccbffjfiicbcdmfbbcdddfcfddbebidfdbadddddcbbd", +"mmjiikjkdhgffddkbfihkhimmlmibaelikghjifkhke#bmmdkigfddefimkcdkicekfkkfkfbadhddjlmfddffffdafdkdkffdddabddbcefedd", +"lkijmjkjilmikhfkkmkimmkmjmmkdcindkgeikijmljddgidkihgggfflljfdffcjlmllijhidfidbfjifdfiiiifbfiifkiedffddheadkmmjk", +"lhdfkhimejkfjmkkmjedkkffdfkkfeklafdbdikjhiifddeikkiikkiimigiigimkmijkgmjkdfkddjnhffkmjjmifdmdifiddfkhkjfdimlmjk", +"mkdlklikfdijeilkghhgikjkdffdcfikdimmkkhfdfhkkifekhfgfdfkmfdikfcdddbgkfjjjbdllkmljifdfhhfkkkidcejdkkdcfgcffhkjjk", +"dfdg#bbgccegdfkkkjjkhgggikgcbcdd#cfffgihjidcccdddddffdfiffikdabfbdbfidfdmcdkkikjifcbcdffiigffikkcdddddddccddffd", +"febfdfdfhfcdmmhdikkkhffgcddddkmldgifdfghddcdffdbdcdfighimfdffddddidffdgcmddddfifkfcbabdddcbbfkidkfehgddfgffhkkk", +"mkgjmmhfjlhflmdfdehkigijikkkjmllmlmkfgkkdcdimmkdeefgiiiilgcdkkfdjlfddfmfkggeceifkhddccdhidcfmmjkjigkkhfhihghkkj", +"jmlmgbdihnljjfdmffhkkikmkkjmmmjjijjkijmllmiijmjiigfefffeiiihfdfkklgffgmffimkdfkhiffikkjlkbbkmfekfgffimmimjkkjmm", +"jijfgdkmlmiimmkimkijjhhjddfkjkhgeijkkjmmmjkjmmifjkhffhfdjkhikjkkfjimmkjdfhmmeekhmihmlmkjibbikcbgjmifimkdmjjjmll", +"icedmkmjngdfjlmdlhdhkgfkjhffeb##ekmmkigecdimlmgdikifijkemgcdmljddhfllggcgdikedfdmfdkmkffmkikjkihnjghkidbddcddef", +"abmhk#cdedjk##fhibadgghkecbddddebekkifdbddeffgggddeeijidcddddeddddbiibcbkddfdddbd##djjiifiebcif#jb#ekecddccddee", +"bddddccgkmfffdifikkffikidddegihfidhlkbcmfdfdafk#dddfjfdkcdedbfmjkifegkkgcbbcdffggfgfddd#bcddfgdafgikjjiddfikkii", +"mmkhjkhjjmfikfkejjifgkidjjjifefgfhjmiccfggkfbhjbjkhkmifjddggdijgjkkkkjmmffffgggfhddedhkkfddfhgdbfkjgfkkedfkkkii", +"nlkilmhfllimlmmfkiffjljfjmmkffimcimmifddfimkejmfjkefidbfmjmmikibkkkkjmmlkjmmjkkijgfkjkjllifkmifedkjfekmkdhjjkik", +"kjggmmdbjmhmmkmikihkmmkfkjjkgfhkbfjmkhffdgihimlimjffkgdilkjmjmkdgddgkjkkikkkigfgiffmnjimlhfmmgeifikigikkhikjmjj", +"difdkkgfdgdfecigkkkkkfddmmjkifdcddfkiddkdfddimkfhfccffdifbcfhjmffbbdkkfdedddbbbcbbbglkflecdkiddimgfkkdbckhgijmk", +"dkfcekjmcfdfdbfgeefihfdfkkkkjkfdfddifbbffidcfhddbb##ddcdfaaccdecgcbfkiedhfdcccccddaafdcjcbdhhefkgcbfidbchfefiig", +"djhdfkkjfjikidifeddhkiiidfgikkkkffggeddedjfcfedkiiddkjikmedfdbbakefjmhffkfefkjkhimd#fdbgfddfkmmmbcdcdghffghgfde", +"dmjimlkfkmkmjfhdlkfkmkfddfihfegkdkmhfkkfbjidfdfnjjfejmihliimiffdkijlmffkeddhlnlmflhcjkdkkfcdknljdmmbbikdfkmkddd", +"dijjmljdfkmlkefkmnlfdikfmihjlmkidijkhikjccjfgnjmfkidhlmdmfdgfdflchmmgefikhfikjmlfkmmmllmihfffgikfffcbdffkfdffdd", +"kjjjmmjikkjmkffilljgklmgmkfggfhkkmmkikjmkhlkhmfkjmkgkllklgekmkjndkllmiffljkkkkmlkjmlllmmkkjjjmmlkifdfkkkljihhgi", +"kfdfffgkjkikkhffjifgkkkhjigfddfkikiedgihgdkhfgdkmkgffhikjddimkijehjmjifelmjidccekhimjgfhegiihfgikigfkmmkmjjjked", +"dbbcdcdkkihihfefddikebdkighkiffgddcbdffddcdffdejmfdddbcfkdcfgddffdddfffh.#bdfgjlkedkidbddfgfdbcdfhgfhkkiiihfdcb", +"gddfgdfjgghifddhhimlkdfmifdgkkhhfffegkieigfjjfijmgdffdekkgfhgefkhdbdfffighkjidccjeejmfeijjjiffhkeijifgkkkkfcbdh", +"mjjjkggiffikgdfinjkmlmkkmfcdgkkjjmjkjmkfgidjljljkffijkjmjkkjkijljffkmkffabdkmmjmidekmmmljkkikjmlfmlmiijmijmkhff", +"mlljhgfeffgkkihiljikmmjhlkffgijmmmmkkjkidgbimmlefedhjmjkjkkmmmmmmhhmmkffgefkjiddhffimlmmgedfijjkhjmjkjmlejlljid", +"kllifgheiffkmmkikjjkiikjmjmmjkjmjmjiijmmimdhmkj#fffgjmidljjmllkhjfdhkffkkfdhkkfdjjkijlmkhedfkmkffiihijmmgkkfekl", +"hghhdbdkmmgmjdhfjmmjfdfmfc#mihbijjfegjmjjjiigfijdc#ffmfikhfkmmkfecbdffgifjhhmhdmkffddkjdljgdddddikfccffddimkffi", +"ddehfcbbkfaekffbdfkkfdgmffcidkdeeeccfjjieeeffffidfdkcedkcbbbbba#ighkifddcdbada#ckfgfdijfdddddcb#dedddefdbdfdcdf", +"gffkkgdcgkgjkdmmkmlnmiklfmkhdlmfjjihijieefhihhhhkjfkcddiiifddcddiijmkgfiikikmidfkghfdfkfhhikkiedfffihfgkeffddeg", +"lmkikkjmejijgdmljjmmjhfifmjfflljlnllljhdijjjikiilkbediddmjkigfffikjmkgkldfimnmifmgffdfgdkkihhgffjiijkfhmkkkhikj", +"jkifehmlljcfmmlgjffijjkkffgegimmjllllljeijjgfhigjf#dciddmkghkjiehkmmidfkbbdikkielhfiijjfkkkihgfgkfehhefjfiikjlm", +"eghfegkkkkdfkkmflkgkmmkiidffkdhjjlljjjheeiieeikiiididigmkgegjmkfcdkmkffijkjkfjlmmfgjmlljgkjmkiffdddeghikdfikmll", +"fhhfgkie#fddcbfdkfeffdbbgdidkdijijjighgedijffkkgkidkdifmfdcdegffbcdgfehjkimkcfmkgdfkggkkbdffeddddddfkmjffhkikmm", +"jkfdfkhdhmhkmmnkefikidddbbfbgckibcccehjjcijffhfckd.ccicbkihfgkjmkfdbbbfmddjkbdidbbdfb#bdiiigfgkmcdefjlkbhkkfdfg", +"kkejfkfjjjjkkkifhkjmmmkfikkfdgihjjjjjjiiflnjddijkjffjmkmkmjlbffkkfdlnfjlmkijmjkkmmjjlljfjddkjffjfimdmmmbighkkki", +"ijilkmjljmmmmmmjnlmjjkfdfhgddgihjjlljjjihjmhddgillmjlmikjkmkdchgifdmmdklmigkjkiiijmjmmmkmfekjkikdijfmllfjkfffgk", +"dhflimklfikkhfgimkfhkmmmkkigikkillllljjijjjhfgikkmmmllkkjflgkcjhjkfljciliedfhgfffkmjkjmmmkghjmkgdkihfmkfmjkhgik", +"ddbgdhdimmlljhijljffhhgfmjkikjkijjjjjieegijihhkkgkiijkfkfdkfgdkgjjhmkbekdbbdeedddfhffikikkfdhmkdbgdfagdffikkihf", +"hdadcfcdddddb##bifeghfefffefffffeeeffecbacfheddgjmhdedcedddibfdddedjiadddbbdffffdddddgfdffdcejkd#cbdagfjcfhfefe", +"mkdkfjefkikmkffkbbdikiimdddffffiihhijiec#begdbdfkjgdeddhffdmckdcbcbkjdhhfddfiiiihfeeijiddfddekkfdfdgdfgmdikfdij", +"kjhlkmhjjggjkfeiffklkddhfhkjkfimjjjjljiefegigddhdkkijigkifgjijkdddcjlkmmjhfikkiifhiikmkghiihhikklkjikdfgfjmkimn", +"cginikfmlkkmmgehddjlmfiljmllkefjhfgjjjfdljgiiffhfmlllkdedbfemimegfcklkmjmkgikiffbdfffggfmmmmkikmlhjfmcffbimmmll", +"kjmjfddimifijkfdljfdeghgbimkfgkilieeeffgfmjdfifdjlljedhjadfdfjmijmjfdimlllljeikcigmhmgkdmmmmmkffimnfdmkhhffgkjj", +"kedfkidbgeeikfdbiheddhiffkjkfhkjfccfjkgddkkimlidjmmkffhkfdb#bhfbgihddfkmjfijigfbhfkfmdfddfkmidddmikdcecfdfikkii", +"cdfkkhfiddeihdbbbddbbfdagfddddfihdcfkic#cddhlmfdhgffgffeed#.#dfdhhfddfggmccifdcbfdkfkddbddikiddfmddbbcbf#dgifdc", +"bdimjijlddgkgdcdhmmhimkbgcbccbbeliddedbbefdfjidgfffhhfdddhgc#bfkkigfffedmddecbddddkfmdfdggikkffimddddfdibdffdcb", +"kdbfmmjiiikkiffkimmkkmkcjfdghddfkiggffimhjjmlkilhgijkfddklljdcdfkkikkihfkkmidfidddmimgkhmkikkiikkgkefmiikkhfhik", +"mhdfikkkmjkkigkmefggikfdmkkjkifffijmkijldjlllmjlhfhjkdcdjkkkkkfdjjmlllmldknlijmfddmklimkmmkmmkkmkkmhhmgfljihkml", +"gfggedimmkiigfkmkhgkmkihkjkhfffdfhkjiffidjmkjjiiiddkjfdddddeikkhiijmmkjlefjmiikfddmklimkikmmkhkmifjkiidhmjkigik", +"da#bfkihkhffffgkhcbdebbbgjkdcddcdddddddfilkdeigflfdjlmigcdddccfjdddfdbbdjdcfdbdfddmkmgkiadmmfddmhbfkkfcmjmljfdc", +"dgiffigddedbbdffdbadiiddebdkkddhdfifffdbidgfffciiffjlmifimdffglbfcbefdcd#cdb#bbbfkfigdgdadbadbaiddcbbbdfkgedffe", +"jlmigihdikkgfiifecdhmmigkgfkiddegkjkffginkmigkhlkfegkkikigcigdmdkfdgiffheikkifdahha###fgdhdbihdkkkkighklgfffedd", +"ikiddikgjmjkmmjhmkkmmjgfkkkkikkkkjjkfdilmijfdddkmkhiigijidcjkdkklkgiiffkmkgegkkidkklmgidkkffmlkkgikifgkjikjmmmm", +"kmkfhmnljkkkmlmklmjkkhfdimmkkmmkmkkkfeklhekfddbdjjmmjhfiidfmifjmnmkjkffikhdcdhjmhmkmmfkgmkiimlmkfikgfffghikhffg", +"kkiddijkjigimmmjhfdddfiiimmkikidmigiiikjmklkijegkjmmiddffekkehjkmkijkfeidfhifdddfkfigdhdgikhfkkggjmkikjkmmkebbb", +"dfdbbfihifdfffffgecbcfffdfiffhfcffddfkhdmffbdkfikhffdbdffdkfchggcbdffddfbcddcbcddkgkkdgddfkfbdhdbdfddfhfjkifdde", +"ijjhimlmfddffddfkhdcdgfbbcddfggfcffddkidfba.aheffeeffdfigaffdfdidbcffddkfcaabcgmkkbbaahiffkfadidbddbbcdccbbcdff", +"kjkfdffdffimmkkjgfddimkdfddffeefdmmffmlhhccbflkideimlmkkk.difebmmkkjkhklmgdfiiikdkkmmfhdkhkfadkbmllifikffffijji" +}; diff --git a/data/pixmaps/misc/bg-segmentcanvas.xpm b/data/pixmaps/misc/bg-segmentcanvas.xpm new file mode 100644 index 0000000..172e5b6 --- /dev/null +++ b/data/pixmaps/misc/bg-segmentcanvas.xpm @@ -0,0 +1,171 @@ +/* XPM */ +static char * bg_segmentcanvas_xpm[] = { +"100 100 68 1", +" c None", +". c #DDDCDB", +"+ c #D9D8D7", +"@ c #E6E5E4", +"# c #D7D6D5", +"$ c #E3E2E1", +"% c #DFDEDD", +"& c #DEDDDC", +"* c #E0DFDE", +"= c #E2E1E0", +"- c #E7E6E5", +"; c #E1E0DF", +"> c #DCDBDA", +", c #E5E4E3", +"' c #DBDAD9", +") c #D2D1D0", +"! c #CFCECD", +"~ c #D8D7D6", +"{ c #C7C6C5", +"] c #D6D5D4", +"^ c #D0CFCE", +"/ c #D1D0CF", +"( c #C9C8C7", +"_ c #CAC9C8", +": c #CBCAC9", +"< c #D4D3D2", +"[ c #C8C7C6", +"} c #CECDCC", +"| c #DAD9D8", +"1 c #D5D4D3", +"2 c #CDCCCB", +"3 c #D3D2D1", +"4 c #DFDEDC", +"5 c #CCCBCA", +"6 c #CBCBCA", +"7 c #C6C5C4", +"8 c #CACAC9", +"9 c #D2D0D0", +"0 c #E4E3E2", +"a c #CFCFCE", +"b c #D6D6D5", +"c c #E0DFDD", +"d c #D5D3D3", +"e c #DBDBDA", +"f c #C5C4C3", +"g c #CFCECC", +"h c #CFCDCD", +"i c #D4D4D2", +"j c #DEDDDB", +"k c #D9D7D7", +"l c #D2D1CF", +"m c #D6D4D4", +"n c #D4D3D1", +"o c #DBDAD8", +"p c #DDDCDA", +"q c #E2E0E0", +"r c #D7D5D5", +"s c #C8C8C7", +"t c #D2D2D1", +"u c #D5D5D4", +"v c #E8E7E6", +"w c #DCDADA", +"x c #D1D0CE", +"y c #E1E1DF", +"z c #D1CFCF", +"A c #D3D1D1", +"B c #DCDCDB", +"C c #D8D7D5", +".+.@.#$%&*+=-%=;>,.',')&#!~!{]]^/(_):_'<[^}]='&|!/|/]1_|$^2!2]/['~^<^/+32]!:+1:'#3>31~]>&~.;|3'.>%3#", +"*>%=~)4>~#!~~!1#]#//'1!|/}|^!.#)]3|;##@'1%+.$+|')5|<^~!1')]'1>|)$&1'.+'|&;#];~)$*+%>=,%%*>*$&'$&~%~+", +")^535(<2_2_3)(2)^:[_!5<%|>$'#*.>%|.%~~%'1]]'.^!1!}>~]./3*..*~*&3>'1%'3|.'+1<|3}|]5313#!5)}2+'>~2/)2}65)}_!^(5/^35!3:^&)2~3<&])1^]<_13_)^2+){!3_<)_$>]1}(^]:^)!#<)>12~~^~+1.1]~]*;)/&~<.'3'~)&'^.'/.*&0]a$#)=>|@&]$=.++$", +"|)/+1/]/b'^<+^#1:/^}<}3.32'c)+%;@++,']0;|;]#=#<'&'<^)%#<.)/]1&>^]>'%&3'']%'<>>#;.|.^/=)<0]3&~1&#/1.;", +"5(_]/[:[~~{}2_+<(^)})1';~+-%^#'~+!}'3}~)2<:!~!:|#:!})|^/'/1&'>+)..^)#^#/}+<2)0#).#;'/.~1;.)&*]*;<111>^(<)5)2:.]2~1^#31;13=+#$>>#!+*]#>)]']~<5]~5<^3*)5~<5+/']5|~!#3]*|<>13$'#,;'$|'$<#=#+;~~|#>&<1|)+&3<])+|/'~~=1]=+~;~<;d)*&&=<<;~+;11|~.", +")5:!{5^(/'!2!_1+:]|51+'0>]%>'&~<.#/&#^~3!#!3+_/|5_!(/+!^#^<]}1~^1#}1>1|]3#22#1)|'#'^!&e#]5^~:2/f_~/2", +">/213+%|%@1/|'=*)#+!>;>+//><_^}(#<2|3{3^}<(^~2~'(23}]+_!|/1]!~+^<1}#>//!g1/)|~}|>}3}5~#h55<&<3]!)*)2", +",+<;''=~#><#=>>>!+.3&+!3/)>!{]]<;>1*~/&>'%<>$1>*#;;]';]'0'&&]&*#.>]>&#+>'*%>=><|]/.1/;;#+>>=+|0>+,+#", +"<5)*i)'::~33+}}/_'|5|]3%'+*1<$;|%'#%]/%%|'<'%<]>~&&~&;#|&]+>)#'/11/#'#~']~]/|]5)]]]2)=+/~]/|]3')<>!!", +"#3+*}/&!#0<^+3#'<;'^&+#>)}#1<*~2]^:<22>12)5/~2:)5_5_}<^!<5^]:!<_^!_]~^)):^/5#)(~&<)!<.}_#^2&#}#}3'^/", +",>|%^~$#*,/]=~|+/++<'~/1}2|12~^2>)!>]<'33>31><]&3^1)3|3}~#>%/1>~&+]=.<'']'>1.~)$&<.+#.#+0+#0+#*#>*+&", +"|^5]})#!1|:/&)}2:#~:<'1'~~=#}'##=##*+1>]]&]~%11%]|,'>=]1*%.j<~;+|+'%1}~+)#~/|')|1^1}2]]1k/3+!/+3/3}^", +"')/.]/)!1&^^.^/'~;*3'~2~~3|)5|]!1/^]^}3}}1!3+:_/_)':^|)/+)2/(5/:^<^^}53^(<12+~:)1))^2+~//!^1}5#^:]//", +"$+>0&>%'*$//.+**/>./)5_+]5<3/.3_1^^+))~31>1'#_#>3||5)>1^1))323~)+~}#~<>+#=.)'|/'*]+.'@*].'';+1*'+0|&", +"+/)<^^)!]+}2+++)(]lf51>0|3&>~%~1;'';]+0%..m&|!&=~*&#%,.#&%%>|;=&=.]*%|$%|>])>'3>&]'~1&1).]<&~3%.#><]", +"<^!)_:!}|'5!|<)!5|1}'$=;~/]~#|#<>]].31>3)1}]]:]|2]~!1~^^]3/)/#~)])2~]!*|**~*%<.%~>|]=%|=&)}:[/32^)5)}}#!5<2}#)3]2<%^!/[!]!)](2/211:!}:]/_3/}||31)^%>53<3']#.]~&13*+3~n+", +"=~|>1'><..3#]<&|)|~)'1_^<<&&#>~^#~#%]).'+&~~.+;@]<%>*$]|'^&>]*&~%>~;&+=&]*.]'~#=+}>>/'.|%+>;#~$+];'.", +"+!5!(3<:]]:2/^+]5]3:##<=$'**.=|~=*>='1*')+#<~#%&^1*]].1>|#$>>0;|'|+;>)+~)&>3+])~)!.>!'|2)^/12^>!:)(}", +"%^<|3.12>|3+.'*'n&+)&|)'~^##:1#^+~<&')k3)>]1.1<>]&", +"+/>+/'))%|<'~<']/+32'1_])_3/!~^/|!}~22|3)%''.)o'^.*)3>]/|]1~23+^<+]>]<,%3|3_+'<>|]&+)'33*1+%<#*~]&>;", +"(_35_~)!#^:)2}~^_#/2.1);>#;'';+'0||$#],>',~#>3.=1>&!30&+*'+.)';1>%+>~#;+}13^%./]^^|/5]!^+!]~5)#!::[!", +"}!|+~$+3&~!###%<)*'~='#>~<'<1'33+)^>3/+:2+!~;52~}10123!:^:)<[)3_^2(l)}+~^&|}<33>/!~!/]^#>/<+33]<1", +"&&@%+*#)%'3.']%~].#^##^/!}^__]!23::#3}1^)')]*<+&!]>}1=13]/+]}+]^'><']}.~2#~~%#1%~~%1~*]~;>.=*;", +"~#]2_1/5|~}1<^|1^13_3#^1+|~1'$##.1'*<3'.;;1'=#1']>+5'=#+0p&,'>$%=&|$>+,&^#1!%'/~~<|+3%.1>#].&**+|&~|#23|~~]^#|2}|<)3!'~_}/^1)51|1<3)#/^'/{]|<&|!#+1+3/|})%)~%!}#13~!!", +">|&..0+3%32&=>'1/+~.~#>)~;<#.1',;**<1", +"3/^^/~/}~}5|<:2:}12_35}'1)#^!+/5~/#&~..~%.)]*++$]1$<~*+=*%=|+;*#'%>.|+;.~*+!))!~<)1!^|]#.2}#)~.1'0]1q~.%+&%.**1#=|]>]1>3#>r&*.&>~>%#.+/]##>1_3^s/3/~)!])].)<'53'!/1:225]", +"<]$+/;>~;'',&>&]|%|#&&'>^:]1<|^<>///[)):}5!", +".&*]^.~!1]/1<}^}/+1!+~)35}#1!#]]|!/&+!<<3.^}%#<=~<.+|&~]e]#.)|'3%>#*%|;'1*~1;#/|#/#/^'~~.]^#]~>3^~;%", +"+t<)2<<^+#53]!111.|<&|1'.*0&#*&|><.@+#=>|*<#$~]%#~&]'%<~;~+|)|##;|/+~<'12+]}#32+<2]!!.#/~):+<^3:2||1", +"]^'+/+%>*+)>.1|%>=.3>]}+'~#3/#3!!5++:/~^}<53]8:<^_:{/|2}1_5:[^:2)_f}:(1!2&'3>'<&+)>~>0<}|]1=+]'#&&)]", +".#&~<''3~^2+]}1~/~3(]35+<{5:2$1<'3]~<'+]~]#&]<;|'0>#&>#&#)>##'^3&32~1]|]''~$", +")21)^]))|/}&]^'#/+1/*'3%+).'.$.|;*$*#*v&';|..#$-|&;|$033*&*=+%*'=*~&''$+)#}!]^!)})|^}#}^'^2+)}3!1<21", +"1)>1)'#1|<#$'#%+#&#)&~^.+)>'|']1'~1]<]+^5/}2)}'1+#^'~}&&|=&o>~+*1<.]].)!>#~&#<]>,", +"1))2!<33&~:~]{)32+|)|12>+)..~.'#||&0%|;..,~+$%=@&.%]',''$>%;+.0$=.].'<%]:.>^~]:/1].^}~!5]^}>]3]}^~31", +"3:#13>;&&#!*>/;w]0*#.~)$;]'>+&.>=*.%]/~13|3]'3]+31+)3]^3'1)!_!)!2:(5[(1}2&~^'1[].#|/^>1)%~3*~)+t+>/]", +"+#*~<.&]##3&')>]<%~23!/*~(2}!!5/1(:^7[3:(!{_2{^]:_1!/15232(5_2^}^)/]<3>.*0+~;+3;*]~<<*]/%~^|1'", +"+##!21)2/)}|]_3!2<^(^^)&3_)3~<2#3_1~x3.3^+]|>1|.)#;/1;+#&~#%%y,|&=>;%>00.>^}#/}|]23^^|!^&<2+/!~<+]:3", +"#!]33||~>'#%|];#^+']&.~*+|*>*&'='~;='+,.>-0$=]',|~&^/%|>=+]%'#1!'|2<~/~#}1!/.^5+1z'1<.!3;#1%11&]+)5.", +"~<%>>=*+&>1.|3.1/*;3'.].1)##|.|1A/<~)121~].13]:2+^[<~&+{!$'+0]3~)&+73;;;##;~1;]2|]}]<5#<_]3!~<<&~^~<1&]+|3~", +"!!<#}!#^~%+&~}'11;]:|*#.+<*'#&<5|.'*]3#!3&1<&+#32|&)!#^^]^#^[~]!1!_1)2#!(.~}'~2>'3$&|;+1%>C%~3#)~~}3", +"'+&;}],++>3+]_'~1&<}'.)~]^>~2#}73!2)(_!2<')}<^)#/3/((<}_]/<1/'~/~1}=%+$'2.%|0']|!_#]!<2231~]>&~.;|3'.>%3#.+.@.#$%&*+=-%=;>,.',')&#!~!{]]^/(_):_'<[^}]='&|!/", +"|<^~!1')]'1>|)$&1'.+'|&;#];~)$*+%>=,%%*>*$&'$&~%~+*>%=~)4>~#!~~!1#]#//'1!|/}|^!.#)]3|;##@'1%+.$+|')5", +">~]./3*..*~*&3>'1%'3|.'+1<|3}|]5313#!5)}2$'#*.>%|.%~~%'1]]'.^!1!}", +"&)2~3<&])1^]<_13_)^2+){!3_<)_+'>~2/)2}65)}_!^(5/^35!3:^", +";)/&~<.'3'~)&'^.'/.*&0]a$#)=>|@&]$=.++$-;%-&~;;;,|#='&$]&;>$>]1}(^]:^)!#<)>12~~^~+1.1]~]*", +"<^)%#<.)/]1&>^]>'%&3'']%'<>>#;.|.^/=)<0]3&~1&#/1.;|)/+1/]/b'^<+^#1:/^}<}3.32'c)+%;@++,']0;|;]#=#<'&'", +"!})|^/'/1&'>+)..^)#^#/}+<2)>#!+*]#>)]']~<5]~5<^3*)5~<5+0#).#;'/.~1;.)&*]*;<111>^(<)5)2:.]2~1^#31;13=+#", +";~~|#>&<1|)+&3<])+|/'~~=1]=+~;~<;d)*&&=<<;~+;11|~.%+|*33|/~|<+1^||2+>/']5|~!#3]*|<>13$'#,;'$|'$<#=#+", +"!(/+!^#^<]}1~^1#}1>1|]3#22#1)|'#'^!&e#]5^~:2/f_~/2)5:!{5^(/'!2!_1+:]|51+'0>]%>'&~<.#/&#^~3!#!3+_/|5_", +"3}]+_!|/1]!~+^<1}#>//!g1/)|~}|>}3}5~#h55<&<3]!)*)2>/213+%|%@1/|'=*)#+!>;>+//><_^}(#<2|3{3^}<(^~2~'(2", +";]';]'0'&&]&*#.>]>&#+>'*%>=><|]/.1/;;#+>>=+|0>+,+#,+<;''=~#><#=>>>!+.3&+!3/)>!{]]<;>1*~/&>'%<>$1>*#;", +"&~&;#|&]+>)#'/11/#'#~']~]/|]5)]]]2)=+/~]/|]3')<>!!<5)*i)'::~33+}}/_'|5|]3%'+*1<$;|%'#%]/%%|'<'%<]>~&", +"5_}<^!<5^]:!<_^!_]~^)):^/5#)(~&<)!<.}_#^2&#}#}3'^/#3+*}/&!#0<^+3#'<;'^&+#>)}#1<*~2]^:<22>12)5/~2:)5_", +"1)3|3}~#>%/1>~&+]=.<'']'>1.~)$&<.+#.#+0+#0+#*#>*+&,>|%^~$#*,/]=~|+/++<'~/1}2|12~^2>)!>]<'33>31><]&3^", +",'>=]1*%.j<~;+|+'%1}~+)#~/|')|1^1}2]]1k/3+!/+3/3}^|^5]})#!1|:/&)}2:#~:<'1'~~=#}'##=##*+1>]]&]~%11%]|", +"':^|)/+)2/(5/:^<^^}53^(<12+~:)1))^2+~//!^1}5#^:]//')/.]/)!1&^^.^/'~;*3'~2~~3|)5|]!1/^]^}3}}1!3+:_/_)", +"|5)>1^1))323~)+~}#~<>+#=.)'|/'*]+.'@*].'';+1*'+0|&$+>0&>%'*$//.+**/>./)5_+]5<3/.3_1^^+))~31>1'#_#>3|", +"&#%,.#&%%>|;=&=.]*%|$%|>])>'3>&]'~1&1).]<&~3%.#><]+/)<^^)!]+}2+++)(]lf51>0|3&>~%~1;'';]+0%..m&|!&=~*", +"~!1~^^]3/)/#~)])2~]!]].31>3)1}]]:]|2]", +"/[!]!)](2/211:!}:]/_3/}||31)^%>53<3']#.]~&13*+3~n+0+>*|**~*%<.%~>|]=%|=&)}:[/32^)5)}}#!5<2}#)3]2<%^!", +"%>*$]|'^&>]*&~%>~;&+=&]*.]'~#=+}>>/'.|%+>;#~$+];'.=~|>1'><..3#]<&|)|~)'1_^<<&&#>~^#~#%]).'+&~~.+;@]<", +"*]].1>|#$>>0;|'|+;>)+~)&>3+])~)!.>!'|2)^/12^>!:)(}+!5!(3<:]]:2/^+]5]3:##<=$'**.=|~=*>='1*')+#<~#%&^1", +"<(}+3^)<#33]152!}<}7]~^>#:1#^+~<&')k3)>]1.1<>]&%^<|3.12>|3+.'*'n&+)&|)'~^#]/|]1~23+^<+]>]<,%3|3_+'<>|]&+)'33*1+%<#*~]&>;+/>+/'))%|<'~<']/+32'1_])_3/!~^/|!}~22|3)%''.)o'^.", +"&!30&+*'+.)';1>%+>~#;+}13^%./]^^|/5]!^+!]~5)#!::[!(_35_~)!#^:)2}~^_#/2.1);>#;'';+'0||$#],>',~#>3.=1>", +"~}10123!:^:)<[)3_^2(l)}+~^&|}<33>/!~!/]^#>/<+33]<1}!|+~$+3&~!###%<)*'~='#>~<'<1'33+)^>3/+:2+!~;52", +">}1=13]/+]}+]^'><']}.~2#~~%#1%~~%1~*]~;>.=*;&&@%+*#)%'3.']%~].#^##^/!}^__]!23::#3}1^)')]*<+&!]", +"+5'=#+0p&,'>$%=&|$>+,&^#1!%'/~~<|", +"3!'~_}/^1)51|1<3)#/^'/{]|<&|!#+1+3/|})%)~%!}#13~!!']]13.1!%~2~.|%|1>+3%.1>#].&**+|&~|#23|~~]^#|2}|<)", +"1}]#_!2}<5[^/:2^!/}5~33=%1+~3&>~.~#>)~;<#.1',;**<1>|&..0+3%32&=>'1/+.|+;.~*+!))!~<)1!^|]#.2}#)~.13#>r&*.&>~>%#.+/]##>1_3^s/3/~)!])].)<'53'!/1:225]<)#3_13^'3/.]3+)#.1)~~',.~*>'0]1q~.%+&%.**1#=|]>]1", +"}5!<]$+/;>~;'',&>&]|%|#&&'>^:]1<|^<>///[)):", +".+|&~]e]#.)|'3%>#*%|;'1*~1;#/|#/#/^'~~.]^#]~>3^~;%.&*]^.~!1]/1<}^}/+1!+~)35}#1!#]]|!/&+!<<3.^}%#<=~<", +"&]'%<~;~+|)|##;|/+~<'12+]}#32+<2]!!.#/~):+<^3:2||1+t<)2<<^+#53]!111.|<&|1'.*0&#*&|><.@+#=>|*<#$~]%#~", +":{/|2}1_5:[^:2)_f}:(1!2&'3>'<&+)>~>0<}|]1=+]'#&&)]]^'+/+%>*+)>.1|%>=.3>]}+'~#3/#3!!5++:/~^}<53]8:<^_", +"#3>$1<'3]~<'+]~]#&]<;|'0>#&>#&#)>##'^3&32~1]|]''~$.#&~<''3~^2+]}1~/~3(]35+<{5:21)'#1|<#$'#%+#&#)&~^.+)>'|']1'~1]<]+^5/}2)}'1+#^'~}&&|=&o>~+*1<.]].)!>#~&#<]>,&|./^|3!+#)+#!)!2]<}]^(#/[335!2:5[[))2<^:+!_<^3]/)", +"%]',''$>%;+.0$=.].'<%]:.>^~]:/1].^}~!5]^}>]3]}^~311))2!<33&~:~]{)32+|)|12>+)..~.'#||&0%|;..,~+$%=@&.", +"+)3]^3'1)!_!)!2:(5[(1}2&~^'1[].#|/^>1)%~3*~)+t+>/]3:#13>;&&#!*>/;w]0*#.~)$;]'>+&.>=*.%]/~13|3]'3]+31", +"1!/15232(5_2^}^)/]<3>.*0+~;+3;*]~<<*]/%~^|1'+#*~<.&]##3&')>]<%~23!/*~(2}!!5/1(:^7[3:(!{_2{^]:_", +";/1;+#&~#%%y,|&=>;%>00.>^}#/}|]23^^|!^&<2+/!~<+]:3+##!21)2/)}|]_3!2<^(^^)&3_)3~<2#3_1~x3.3^+]|>1|.)#", +"&^/%|>=+]%'#1!'|2<~/~#}1!/.^5+1z'1<.!3;#1%11&]+)5.#!]33||~>'#%|];#^+']&.~*+|*>*&'='~;='+,.>-0$=]',|~", +"]^/;1)12<':{!1%]!'#!'+)']+;]3&#/']1|}/>>=*+&>1.|3.1/*;3'.].1)##|.|1A/<~)121~].13]:2+^[<~&+{!", +"&)!#^^]^#^[~]!1!_1)2#!(.~}'~2>'3$&|;+1%>C%~3#)~~}3!!<#}!#^~%+&~}'11;]:|*#.+<*'#&<5|.'*]3#!3&1<&+#32|", +"/((<}_]/<1/'~/~1}=%+$'2.%|0']|!_#]!<223+]_'~1&<}'.)~]^>~2#}73!2)(_!2<')}<^)#/3"}; diff --git a/data/pixmaps/misc/close.xpm b/data/pixmaps/misc/close.xpm new file mode 100644 index 0000000..6ae2c3e --- /dev/null +++ b/data/pixmaps/misc/close.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char *close_icon[] = { +/* columns rows colors chars-per-pixel */ +"10 10 2 1", +"x c black", +" c none", +/* pixels */ +"xx xx" +" xx xx " +" xx xx " +" x xx " +" xx " +" xx " +" xx x " +" xx xx " +" xx xx " +"xx xx" + +}; diff --git a/data/pixmaps/misc/configure-audio.png b/data/pixmaps/misc/configure-audio.png new file mode 100644 index 0000000..db3399f Binary files /dev/null and b/data/pixmaps/misc/configure-audio.png differ diff --git a/data/pixmaps/misc/configure-general.png b/data/pixmaps/misc/configure-general.png new file mode 100644 index 0000000..0a7a7e7 Binary files /dev/null and b/data/pixmaps/misc/configure-general.png differ diff --git a/data/pixmaps/misc/configure-midi.png b/data/pixmaps/misc/configure-midi.png new file mode 100644 index 0000000..a87d785 Binary files /dev/null and b/data/pixmaps/misc/configure-midi.png differ diff --git a/data/pixmaps/misc/configure-notation.png b/data/pixmaps/misc/configure-notation.png new file mode 100644 index 0000000..2273c8d Binary files /dev/null and b/data/pixmaps/misc/configure-notation.png differ diff --git a/data/pixmaps/misc/connected-selected.xpm b/data/pixmaps/misc/connected-selected.xpm new file mode 100644 index 0000000..653cd46 --- /dev/null +++ b/data/pixmaps/misc/connected-selected.xpm @@ -0,0 +1,20 @@ +/* XPM */ +static char *someicon[] = { +/* columns rows colors chars-per-pixel */ +"12 12 2 1", +"x c black", +" c none", +/* pixels */ +"xxxxxxxxxxxx" +"x x" +"x xxxxxxxx x" +"x xxxxxxxx x" +"x xxxxxxxx x" +"x xxxxxxxx x" +"x xxxxxxxx x" +"x xxxxxxxx x" +"x xxxxxxxx x" +"x xxxxxxxx x" +"x x" +"xxxxxxxxxxxx" +}; diff --git a/data/pixmaps/misc/connected-used.xpm b/data/pixmaps/misc/connected-used.xpm new file mode 100644 index 0000000..d568074 --- /dev/null +++ b/data/pixmaps/misc/connected-used.xpm @@ -0,0 +1,20 @@ +/* XPM */ +static char *someicon[] = { +/* columns rows colors chars-per-pixel */ +"12 12 2 1", +"x c black", +" c none", +/* pixels */ +" " +" " +" xxxxxxxx " +" xxxxxxxx " +" xxxxxxxx " +" xxxxxxxx " +" xxxxxxxx " +" xxxxxxxx " +" xxxxxxxx " +" xxxxxxxx " +" " +" " +}; diff --git a/data/pixmaps/misc/connected.xpm b/data/pixmaps/misc/connected.xpm new file mode 100644 index 0000000..05ee86b --- /dev/null +++ b/data/pixmaps/misc/connected.xpm @@ -0,0 +1,20 @@ +/* XPM */ +static char *someicon[] = { +/* columns rows colors chars-per-pixel */ +"12 12 2 1", +"x c white", +" c none", +/* pixels */ +" " +" " +" xxxxxxxx " +" xxxxxxxx " +" xxxxxxxx " +" xxxxxxxx " +" xxxxxxxx " +" xxxxxxxx " +" xxxxxxxx " +" xxxxxxxx " +" " +" " +}; diff --git a/data/pixmaps/misc/mono.xpm b/data/pixmaps/misc/mono.xpm new file mode 100644 index 0000000..bf95410 --- /dev/null +++ b/data/pixmaps/misc/mono.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char *mono[] = { +/* columns rows colors chars-per-pixel */ +"31 21 2 1", +" c black", +". c none", +/* pixels */ +"...............................", +"...............................", +"...............................", +"...............................", +"...............................", +"...............................", +"............. .............", +"............ ............", +"........... ... ...........", +"........... ..... ...........", +"........... ..... ...........", +"........... ..... ...........", +"........... ... ...........", +"............ ............", +"............. .............", +"...............................", +"...............................", +"...............................", +"...............................", +"...............................", +"..............................." +}; diff --git a/data/pixmaps/misc/stereo.xpm b/data/pixmaps/misc/stereo.xpm new file mode 100644 index 0000000..641c0ce --- /dev/null +++ b/data/pixmaps/misc/stereo.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char * stereo_xpm[] = { +"31 21 2 1", +" c None", +". c #000000", +" ", +" ", +" ", +" ", +" ", +" ", +" ..... ..... ", +" ............. ", +" ... ... ... ", +" .. ... .. ", +" .. .... .. ", +" .. ... .. ", +" ... ... ... ", +" ............. ", +" ..... ..... ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/misc/unconnected-selected.xpm b/data/pixmaps/misc/unconnected-selected.xpm new file mode 100644 index 0000000..27ba058 --- /dev/null +++ b/data/pixmaps/misc/unconnected-selected.xpm @@ -0,0 +1,20 @@ +/* XPM */ +static char *someicon[] = { +/* columns rows colors chars-per-pixel */ +"12 12 2 1", +"x c black", +" c none", +/* pixels */ +"xxxxxxxxxxxx" +"x x" +"x xxxxxxxx x" +"x x x x" +"x x x x" +"x x x x" +"x x x x" +"x x x x" +"x x x x" +"x xxxxxxxx x" +"x x" +"xxxxxxxxxxxx" +}; diff --git a/data/pixmaps/misc/unconnected-used.xpm b/data/pixmaps/misc/unconnected-used.xpm new file mode 100644 index 0000000..79e60b4 --- /dev/null +++ b/data/pixmaps/misc/unconnected-used.xpm @@ -0,0 +1,20 @@ +/* XPM */ +static char *someicon[] = { +/* columns rows colors chars-per-pixel */ +"12 12 2 1", +"x c black", +" c none", +/* pixels */ +" " +" " +" xxxxxxxx " +" x x " +" x x " +" x x " +" x x " +" x x " +" x x " +" xxxxxxxx " +" " +" " +}; diff --git a/data/pixmaps/misc/unconnected.xpm b/data/pixmaps/misc/unconnected.xpm new file mode 100644 index 0000000..ac615db --- /dev/null +++ b/data/pixmaps/misc/unconnected.xpm @@ -0,0 +1,20 @@ +/* XPM */ +static char *someicon[] = { +/* columns rows colors chars-per-pixel */ +"12 12 2 1", +"x c white", +" c none", +/* pixels */ +" " +" " +" xxxxxxxx " +" x x " +" x x " +" x x " +" x x " +" x x " +" x x " +" xxxxxxxx " +" " +" " +}; diff --git a/data/pixmaps/misc/welcome-icon.png b/data/pixmaps/misc/welcome-icon.png new file mode 100644 index 0000000..6aa1716 Binary files /dev/null and b/data/pixmaps/misc/welcome-icon.png differ diff --git a/data/pixmaps/rg21/4/blank.xpm b/data/pixmaps/rg21/4/blank.xpm new file mode 100644 index 0000000..9341f0d --- /dev/null +++ b/data/pixmaps/rg21/4/blank.xpm @@ -0,0 +1,15 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"4 8 1 1", +". c None", +/* pixels */ +"....", +"....", +"....", +"....", +"....", +"....", +"....", +"...." +}; diff --git a/data/pixmaps/rg21/4/chordmod-accent.xpm b/data/pixmaps/rg21/4/chordmod-accent.xpm new file mode 100644 index 0000000..17f8eea --- /dev/null +++ b/data/pixmaps/rg21/4/chordmod-accent.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * chordmod_accent_xpm[] = { +"5 3 2 1", +" c black", +". c None", +" ...", +".. .", +" ..."}; diff --git a/data/pixmaps/rg21/4/chordmod-dash.xpm b/data/pixmaps/rg21/4/chordmod-dash.xpm new file mode 100644 index 0000000..664a057 --- /dev/null +++ b/data/pixmaps/rg21/4/chordmod-dash.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * chordmod_dash_xpm[] = { +"5 3 2 1", +" c None", +". c black", +" . ", +" . ", +" "}; diff --git a/data/pixmaps/rg21/4/chordmod-dot.xpm b/data/pixmaps/rg21/4/chordmod-dot.xpm new file mode 100644 index 0000000..2c31250 --- /dev/null +++ b/data/pixmaps/rg21/4/chordmod-dot.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * chordmod_dot_xpm[] = { +"5 3 2 1", +" c None", +". c black", +" .. ", +" .. ", +" "}; diff --git a/data/pixmaps/rg21/4/chordmod-legato.xpm b/data/pixmaps/rg21/4/chordmod-legato.xpm new file mode 100644 index 0000000..ef9481b --- /dev/null +++ b/data/pixmaps/rg21/4/chordmod-legato.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * chordmod_legato_xpm[] = { +"5 3 2 1", +" c None", +". c black", +" ", +".... ", +" "}; diff --git a/data/pixmaps/rg21/4/chordmod-pause.xpm b/data/pixmaps/rg21/4/chordmod-pause.xpm new file mode 100644 index 0000000..8bcf6e7 --- /dev/null +++ b/data/pixmaps/rg21/4/chordmod-pause.xpm @@ -0,0 +1,10 @@ +/* XPM */ +static char * chordmod_pause_xpm[] = { +"8 5 2 1", +" c None", +". c black", +" .... ", +" . . ", +". .", +". .. .", +" .. "}; diff --git a/data/pixmaps/rg21/4/chordmod-sfz.xpm b/data/pixmaps/rg21/4/chordmod-sfz.xpm new file mode 100644 index 0000000..7407d39 --- /dev/null +++ b/data/pixmaps/rg21/4/chordmod-sfz.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * chordmod_sfz_xpm[] = { +"5 3 2 1", +" c None", +". c black", +" ..", +".. . ", +".. . "}; diff --git a/data/pixmaps/rg21/4/chordmod-trill.xpm b/data/pixmaps/rg21/4/chordmod-trill.xpm new file mode 100644 index 0000000..e89b630 --- /dev/null +++ b/data/pixmaps/rg21/4/chordmod-trill.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * chordmod_trill_xpm[] = { +"5 3 2 1", +" c black", +". c None", +" ....", +" . .", +" .."}; diff --git a/data/pixmaps/rg21/4/chordmod-turn.xpm b/data/pixmaps/rg21/4/chordmod-turn.xpm new file mode 100644 index 0000000..ee6e37d --- /dev/null +++ b/data/pixmaps/rg21/4/chordmod-turn.xpm @@ -0,0 +1,8 @@ +/* XPM */ +static char * chordmod_turn_xpm[] = { +"5 3 2 1", +" c None", +". c black", +" . . ", +". . ", +" "}; diff --git a/data/pixmaps/rg21/4/clef-alto.xpm b/data/pixmaps/rg21/4/clef-alto.xpm new file mode 100644 index 0000000..462a3ae --- /dev/null +++ b/data/pixmaps/rg21/4/clef-alto.xpm @@ -0,0 +1,34 @@ +/* XPM */ +static char * clef_alto_xpm[] = { +"12 29 2 1", +" c None", +". c black", +" ", +" ", +" ", +" ", +" ", +" . . ... ", +" . . . . ", +" . . . .. ", +" . . . ", +" . . . ", +" . . . ", +" . . . .. ", +" . . .. . ", +" . . .. . ", +" . ... ", +" . . .. . ", +" . . .. . ", +" . . . .. ", +" . . . ", +" . . . ", +" . . . ", +" . . . .. ", +" . . . . ", +" . . ... ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/rg21/4/clef-bass.xpm b/data/pixmaps/rg21/4/clef-bass.xpm new file mode 100644 index 0000000..cdf2ff0 --- /dev/null +++ b/data/pixmaps/rg21/4/clef-bass.xpm @@ -0,0 +1,34 @@ +/* XPM */ +static char * clef_bass_xpm[] = { +"12 29 2 1", +" c None", +". c black", +" ", +" ", +" ", +" ", +" ", +" ... ", +" .. .. .. ", +". .. .. ", +". .. ", +".. .. ", +".. .. ", +" .. .. ", +" .. .. ", +" .. ", +" .. ", +" . ", +" .. ", +" . ", +" . ", +" . ", +" .. ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/rg21/4/clef-tenor.xpm b/data/pixmaps/rg21/4/clef-tenor.xpm new file mode 100644 index 0000000..70ea310 --- /dev/null +++ b/data/pixmaps/rg21/4/clef-tenor.xpm @@ -0,0 +1,34 @@ +/* XPM */ +static char * clef_tenor_xpm[] = { +"12 29 2 1", +" c None", +". c black", +" . . ... ", +" . . . . ", +" . . . .. ", +" . . . ", +" . . . ", +" . . . ", +" . . . .. ", +" . . .. . ", +" . . .. . ", +" . ... ", +" . . .. . ", +" . . .. . ", +" . . . .. ", +" . . . ", +" . . . ", +" . . . ", +" . . . .. ", +" . . . . ", +" . . ... ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/rg21/4/clef-treble.xpm b/data/pixmaps/rg21/4/clef-treble.xpm new file mode 100644 index 0000000..bbfd5f5 --- /dev/null +++ b/data/pixmaps/rg21/4/clef-treble.xpm @@ -0,0 +1,34 @@ +/* XPM */ +static char * clef_treble_xpm[] = { +"12 29 2 1", +" c None", +". c black", +" . ", +" . . ", +" . . ", +" . . ", +" . . ", +" . . ", +" .. ", +" .. ", +" .. ", +" . ", +" . ", +" .. ", +" .. ", +" . . ", +" . .. ", +" .. . ", +" . .... ", +".. . . .. ", +".. . . .. ", +".. .. . .. ", +".. . . .. ", +" . . .. ", +" .. . . ", +" .. . . ", +" .... ", +" . ", +" .. . ", +" . . ", +" .. "}; diff --git a/data/pixmaps/rg21/4/dot.xpm b/data/pixmaps/rg21/4/dot.xpm new file mode 100644 index 0000000..bda1b45 --- /dev/null +++ b/data/pixmaps/rg21/4/dot.xpm @@ -0,0 +1,9 @@ +/* XPM */ +static char * dot_xpm[] = { +"3 4 2 1", +" c None", +". c black", +" ", +" ..", +" ..", +" "}; diff --git a/data/pixmaps/rg21/4/note-bodyempty.xpm b/data/pixmaps/rg21/4/note-bodyempty.xpm new file mode 100644 index 0000000..9cab84b --- /dev/null +++ b/data/pixmaps/rg21/4/note-bodyempty.xpm @@ -0,0 +1,9 @@ +/* XPM */ +static char * note_bodyempty_xpm[] = { +"6 4 2 1", +" c None", +". c black", +" ... ", +". . ", +". . ", +" ... "}; diff --git a/data/pixmaps/rg21/4/note-bodyfilled.xpm b/data/pixmaps/rg21/4/note-bodyfilled.xpm new file mode 100644 index 0000000..f1c16d4 --- /dev/null +++ b/data/pixmaps/rg21/4/note-bodyfilled.xpm @@ -0,0 +1,9 @@ +/* XPM */ +static char * note_bodyfilled_xpm[] = { +"6 4 2 1", +" c None", +". c black", +" ... ", +"..... ", +"..... ", +" ... "}; diff --git a/data/pixmaps/rg21/4/note-breve.xpm b/data/pixmaps/rg21/4/note-breve.xpm new file mode 100644 index 0000000..0f695b7 --- /dev/null +++ b/data/pixmaps/rg21/4/note-breve.xpm @@ -0,0 +1,9 @@ +/* XPM */ +static char * note_bodyempty_xpm[] = { +"12 4 2 1", +" c None", +"x c black", +"x x xxx x x ", +"x xx xx x ", +"x xx xx x ", +"x x xxx x x "}; diff --git a/data/pixmaps/rg21/4/notemod-doubleflat.xpm b/data/pixmaps/rg21/4/notemod-doubleflat.xpm new file mode 100644 index 0000000..3762136 --- /dev/null +++ b/data/pixmaps/rg21/4/notemod-doubleflat.xpm @@ -0,0 +1,13 @@ +/* XPM */ +static char * notemod_flat_xpm[] = { +"5 8 2 1", +" c None", +"x c black", +"x x ", +"x x ", +"x x ", +"xxxxx", +"x x x", +"xxxx ", +"x x ", +" "}; diff --git a/data/pixmaps/rg21/4/notemod-doublesharp.xpm b/data/pixmaps/rg21/4/notemod-doublesharp.xpm new file mode 100644 index 0000000..f9f26ca --- /dev/null +++ b/data/pixmaps/rg21/4/notemod-doublesharp.xpm @@ -0,0 +1,14 @@ +/* XPM */ +static char * notemod_doublesharp_xpm[] = { +"5 8 2 1", +" c None", +"x c black", +" ", +" ", +"x x", +" x x ", +" x ", +" x x ", +"x x", +" " +}; diff --git a/data/pixmaps/rg21/4/notemod-flat.xpm b/data/pixmaps/rg21/4/notemod-flat.xpm new file mode 100644 index 0000000..d22d4db --- /dev/null +++ b/data/pixmaps/rg21/4/notemod-flat.xpm @@ -0,0 +1,13 @@ +/* XPM */ +static char * notemod_flat_xpm[] = { +"5 8 2 1", +" c None", +". c black", +" . ", +" . ", +" . ", +" ... ", +" . . ", +" .. ", +" . ", +" "}; diff --git a/data/pixmaps/rg21/4/notemod-natural.xpm b/data/pixmaps/rg21/4/notemod-natural.xpm new file mode 100644 index 0000000..220151c --- /dev/null +++ b/data/pixmaps/rg21/4/notemod-natural.xpm @@ -0,0 +1,13 @@ +/* XPM */ +static char * notemod_natural_xpm[] = { +"5 8 2 1", +" c None", +". c black", +" . ", +" . ", +" ... ", +" . . ", +" . . ", +" ... ", +" . ", +" . "}; diff --git a/data/pixmaps/rg21/4/notemod-sharp.xpm b/data/pixmaps/rg21/4/notemod-sharp.xpm new file mode 100644 index 0000000..b642818 --- /dev/null +++ b/data/pixmaps/rg21/4/notemod-sharp.xpm @@ -0,0 +1,13 @@ +/* XPM */ +static char * notemod_sharp_xpm[] = { +"5 8 2 1", +" c None", +". c black", +" . ", +" . . ", +" ....", +".. . ", +" . ..", +".... ", +" . . ", +" . "}; diff --git a/data/pixmaps/rg21/4/rest-breve.xpm b/data/pixmaps/rg21/4/rest-breve.xpm new file mode 100644 index 0000000..49de514 --- /dev/null +++ b/data/pixmaps/rg21/4/rest-breve.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char * rest_breve_xpm[] = { +"6 21 2 1", +" c None", +". c black", +" ", +" ", +" ", +" ", +" ", +" .... ", +" .. ", +" .. ", +" .. ", +" .. ", +" .... ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/rg21/4/rest-crotchet.xpm b/data/pixmaps/rg21/4/rest-crotchet.xpm new file mode 100644 index 0000000..776180e --- /dev/null +++ b/data/pixmaps/rg21/4/rest-crotchet.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char * rest_crotchet_xpm[] = { +"6 21 2 1", +" c None", +". c black", +" ", +" ", +" ", +" . ", +" . ", +" .. ", +" . ", +" .. ", +" . ", +".. ", +". ", +" . ", +" . ", +" ... ", +".. . ", +".. ", +" . ", +" . ", +" ", +" ", +" "}; diff --git a/data/pixmaps/rg21/4/rest-demisemi.xpm b/data/pixmaps/rg21/4/rest-demisemi.xpm new file mode 100644 index 0000000..c2c2321 --- /dev/null +++ b/data/pixmaps/rg21/4/rest-demisemi.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char * rest_demisemi_xpm[] = { +"6 21 2 1", +" c None", +". c black", +" ", +" ", +" ", +" ", +" .. .", +" .... ", +" . ", +" . . ", +".... ", +" . ", +". . ", +".. ", +" . ", +". ", +". ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/rg21/4/rest-demisemiquaver.xpm b/data/pixmaps/rg21/4/rest-demisemiquaver.xpm new file mode 100644 index 0000000..c2c2321 --- /dev/null +++ b/data/pixmaps/rg21/4/rest-demisemiquaver.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char * rest_demisemi_xpm[] = { +"6 21 2 1", +" c None", +". c black", +" ", +" ", +" ", +" ", +" .. .", +" .... ", +" . ", +" . . ", +".... ", +" . ", +". . ", +".. ", +" . ", +". ", +". ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/rg21/4/rest-hemidemisemi.xpm b/data/pixmaps/rg21/4/rest-hemidemisemi.xpm new file mode 100644 index 0000000..21695f3 --- /dev/null +++ b/data/pixmaps/rg21/4/rest-hemidemisemi.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char * rest_hemidemisemi_xpm[] = { +"6 21 2 1", +" c None", +". c black", +" ", +" ", +" ", +" ", +" .. .", +" .... ", +" . ", +" . .. ", +" ... ", +" . ", +". . ", +"... ", +" . ", +".. ", +".. ", +" . ", +". ", +". ", +". ", +" ", +" "}; diff --git a/data/pixmaps/rg21/4/rest-hemidemisemiquaver.xpm b/data/pixmaps/rg21/4/rest-hemidemisemiquaver.xpm new file mode 100644 index 0000000..21695f3 --- /dev/null +++ b/data/pixmaps/rg21/4/rest-hemidemisemiquaver.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char * rest_hemidemisemi_xpm[] = { +"6 21 2 1", +" c None", +". c black", +" ", +" ", +" ", +" ", +" .. .", +" .... ", +" . ", +" . .. ", +" ... ", +" . ", +". . ", +"... ", +" . ", +".. ", +".. ", +" . ", +". ", +". ", +". ", +" ", +" "}; diff --git a/data/pixmaps/rg21/4/rest-minim.xpm b/data/pixmaps/rg21/4/rest-minim.xpm new file mode 100644 index 0000000..9154562 --- /dev/null +++ b/data/pixmaps/rg21/4/rest-minim.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char * rest_minim_xpm[] = { +"6 21 2 1", +" c None", +". c black", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ... ", +" ... ", +"..... ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/rg21/4/rest-quaver.xpm b/data/pixmaps/rg21/4/rest-quaver.xpm new file mode 100644 index 0000000..b1e37a3 --- /dev/null +++ b/data/pixmaps/rg21/4/rest-quaver.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char * rest_quaver_xpm[] = { +"6 21 2 1", +" c None", +". c black", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +".. . ", +".... ", +" . ", +" . ", +" . ", +" . ", +" . ", +" ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/rg21/4/rest-semibreve.xpm b/data/pixmaps/rg21/4/rest-semibreve.xpm new file mode 100644 index 0000000..5512819 --- /dev/null +++ b/data/pixmaps/rg21/4/rest-semibreve.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char * rest_semibreve_xpm[] = { +"6 21 2 1", +" c None", +". c black", +" ", +" ", +" ", +" ", +" ", +"..... ", +" ... ", +" ... ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/rg21/4/rest-semiquaver.xpm b/data/pixmaps/rg21/4/rest-semiquaver.xpm new file mode 100644 index 0000000..2a227d3 --- /dev/null +++ b/data/pixmaps/rg21/4/rest-semiquaver.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char * rest_semiquaver_xpm[] = { +"6 21 2 1", +" c None", +". c black", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +".. . ", +"..... ", +" . ", +" . ", +". . ", +"... ", +" . ", +" . ", +". ", +". ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/rg21/4/tail-down-1.xpm b/data/pixmaps/rg21/4/tail-down-1.xpm new file mode 100644 index 0000000..c7eee55 --- /dev/null +++ b/data/pixmaps/rg21/4/tail-down-1.xpm @@ -0,0 +1,11 @@ +/* XPM */ +static char * tail_down_1_xpm[] = { +"4 6 2 1", +" c black", +"x c None", +" xx", +" x", +"xx x", +"xxx ", +"xxx ", +"xx x"}; diff --git a/data/pixmaps/rg21/4/tail-down-2.xpm b/data/pixmaps/rg21/4/tail-down-2.xpm new file mode 100644 index 0000000..88664b9 --- /dev/null +++ b/data/pixmaps/rg21/4/tail-down-2.xpm @@ -0,0 +1,15 @@ +/* XPM */ +static char * tail_down_2_xpm[] = { +"4 10 2 1", +" c black", +". c None", +" ..", +" .", +".. .", +"... ", +" . ", +" .", +".. .", +"... ", +"... ", +".. ."}; diff --git a/data/pixmaps/rg21/4/tail-down-3.xpm b/data/pixmaps/rg21/4/tail-down-3.xpm new file mode 100644 index 0000000..5f56376 --- /dev/null +++ b/data/pixmaps/rg21/4/tail-down-3.xpm @@ -0,0 +1,18 @@ +/* XPM */ +static char * tail_down_3_xpm[] = { +"4 13 2 1", +" c black", +"x c None", +" xx", +" x", +"xx x", +"xxx ", +" x ", +" x", +"xx x", +"xxx ", +" x ", +" x", +"xx x", +"xxx ", +"xxx "}; diff --git a/data/pixmaps/rg21/4/tail-down-4.xpm b/data/pixmaps/rg21/4/tail-down-4.xpm new file mode 100644 index 0000000..633af2d --- /dev/null +++ b/data/pixmaps/rg21/4/tail-down-4.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char * tail_down_4_xpm[] = { +"4 17 2 1", +" c black", +". c None", +" ..", +" .", +".. .", +"... ", +" . ", +" .", +".. .", +"... ", +" . ", +" .", +".. .", +"... ", +" . ", +" .", +".. .", +"... ", +"... "}; diff --git a/data/pixmaps/rg21/4/tail-up-1.xpm b/data/pixmaps/rg21/4/tail-up-1.xpm new file mode 100644 index 0000000..28d877c --- /dev/null +++ b/data/pixmaps/rg21/4/tail-up-1.xpm @@ -0,0 +1,11 @@ +/* XPM */ +static char * tail_up_1_xpm[] = { +"4 6 2 1", +" c None", +". c black", +" . ", +" .", +" .", +" . ", +"... ", +".. "}; diff --git a/data/pixmaps/rg21/4/tail-up-2.xpm b/data/pixmaps/rg21/4/tail-up-2.xpm new file mode 100644 index 0000000..bda5b0f --- /dev/null +++ b/data/pixmaps/rg21/4/tail-up-2.xpm @@ -0,0 +1,15 @@ +/* XPM */ +static char * tail_up_2_xpm[] = { +"4 10 2 1", +" c None", +". c black", +" . ", +" .", +" .", +" . ", +"... ", +".. .", +" .", +" . ", +"... ", +".. "}; diff --git a/data/pixmaps/rg21/4/tail-up-3.xpm b/data/pixmaps/rg21/4/tail-up-3.xpm new file mode 100644 index 0000000..ea06dcf --- /dev/null +++ b/data/pixmaps/rg21/4/tail-up-3.xpm @@ -0,0 +1,18 @@ +/* XPM */ +static char * tail_up_3_xpm[] = { +"4 13 2 1", +" c None", +". c black", +" .", +" .", +" . ", +"... ", +".. .", +" ..", +" . ", +".. ", +".. .", +" .", +" . ", +"... ", +".. "}; diff --git a/data/pixmaps/rg21/4/tail-up-4.xpm b/data/pixmaps/rg21/4/tail-up-4.xpm new file mode 100644 index 0000000..68664cd --- /dev/null +++ b/data/pixmaps/rg21/4/tail-up-4.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char * tail_up_4_xpm[] = { +"4 17 2 1", +" c None", +". c black", +" .", +" .", +" . ", +"... ", +".. .", +" .", +" . ", +"... ", +".. .", +" .", +" . ", +"... ", +".. .", +" .", +" . ", +"... ", +".. "}; diff --git a/data/pixmaps/rg21/4/unknown.xpm b/data/pixmaps/rg21/4/unknown.xpm new file mode 100644 index 0000000..8698b03 --- /dev/null +++ b/data/pixmaps/rg21/4/unknown.xpm @@ -0,0 +1,16 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 8 2 1", +"x c Gray0", +" c None", +/* pixels */ +" xxx ", +" x ", +" x ", +" xx ", +" x ", +" ", +" x ", +" " +}; diff --git a/data/pixmaps/rg21/8/blank.xpm b/data/pixmaps/rg21/8/blank.xpm new file mode 100644 index 0000000..9341f0d --- /dev/null +++ b/data/pixmaps/rg21/8/blank.xpm @@ -0,0 +1,15 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"4 8 1 1", +". c None", +/* pixels */ +"....", +"....", +"....", +"....", +"....", +"....", +"....", +"...." +}; diff --git a/data/pixmaps/rg21/8/chordmod-accent.xpm b/data/pixmaps/rg21/8/chordmod-accent.xpm new file mode 100644 index 0000000..cb9ac22 --- /dev/null +++ b/data/pixmaps/rg21/8/chordmod-accent.xpm @@ -0,0 +1,15 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 7 2 1", +" c Gray0", +". c None", +/* pixels */ +".........", +". .....", +"... ...", +"..... .", +"... ...", +". .....", +"........." +}; diff --git a/data/pixmaps/rg21/8/chordmod-dash.xpm b/data/pixmaps/rg21/8/chordmod-dash.xpm new file mode 100644 index 0000000..54fd3c9 --- /dev/null +++ b/data/pixmaps/rg21/8/chordmod-dash.xpm @@ -0,0 +1,15 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 7 2 1", +" c Gray0", +". c None", +/* pixels */ +".........", +".........", +"... ....", +"... ....", +".... ....", +".........", +"........." +}; diff --git a/data/pixmaps/rg21/8/chordmod-dot.xpm b/data/pixmaps/rg21/8/chordmod-dot.xpm new file mode 100644 index 0000000..980e70a --- /dev/null +++ b/data/pixmaps/rg21/8/chordmod-dot.xpm @@ -0,0 +1,15 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 7 2 1", +" c Gray0", +". c None", +/* pixels */ +".........", +".........", +".........", +"... ....", +"... ....", +".........", +"........." +}; diff --git a/data/pixmaps/rg21/8/chordmod-legato.xpm b/data/pixmaps/rg21/8/chordmod-legato.xpm new file mode 100644 index 0000000..920855d --- /dev/null +++ b/data/pixmaps/rg21/8/chordmod-legato.xpm @@ -0,0 +1,15 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 7 2 1", +" c Gray0", +". c None", +/* pixels */ +".........", +".........", +".........", +".........", +" .", +".........", +"........." +}; diff --git a/data/pixmaps/rg21/8/chordmod-pause.xpm b/data/pixmaps/rg21/8/chordmod-pause.xpm new file mode 100644 index 0000000..18a7554 --- /dev/null +++ b/data/pixmaps/rg21/8/chordmod-pause.xpm @@ -0,0 +1,17 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 9 2 1", +" c Gray0", +". c None", +/* pixels */ +".............", +".... ....", +".. ..... ..", +".. ....... ..", +". ......... .", +". .... .... .", +". ... ... .", +"...... ......", +"............." +}; diff --git a/data/pixmaps/rg21/8/chordmod-rfz.xpm b/data/pixmaps/rg21/8/chordmod-rfz.xpm new file mode 100644 index 0000000..742663f --- /dev/null +++ b/data/pixmaps/rg21/8/chordmod-rfz.xpm @@ -0,0 +1,15 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 7 2 1", +" c Gray0", +". c None", +/* pixels */ +"....... ", +". . . ..", +". ... ..", +". .. .", +" .... ...", +" ... ....", +".... ...." +}; diff --git a/data/pixmaps/rg21/8/chordmod-sfz.xpm b/data/pixmaps/rg21/8/chordmod-sfz.xpm new file mode 100644 index 0000000..81bd468 --- /dev/null +++ b/data/pixmaps/rg21/8/chordmod-sfz.xpm @@ -0,0 +1,15 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 7 2 1", +" c Gray0", +". c None", +/* pixels */ +"....... ", +".. . ..", +". .... ..", +". .", +"... . ...", +" . ....", +".... ...." +}; diff --git a/data/pixmaps/rg21/8/chordmod-trill.xpm b/data/pixmaps/rg21/8/chordmod-trill.xpm new file mode 100644 index 0000000..f614398 --- /dev/null +++ b/data/pixmaps/rg21/8/chordmod-trill.xpm @@ -0,0 +1,15 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 7 2 1", +" c Gray0", +". c None", +/* pixels */ +"... .....", +".. ......", +" . ", +". ... . ", +" ... ...", +". . ....", +"........." +}; diff --git a/data/pixmaps/rg21/8/chordmod-turn.xpm b/data/pixmaps/rg21/8/chordmod-turn.xpm new file mode 100644 index 0000000..c327eb5 --- /dev/null +++ b/data/pixmaps/rg21/8/chordmod-turn.xpm @@ -0,0 +1,15 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 7 2 1", +" c Gray0", +". c None", +/* pixels */ +".........", +".........", +". .. .", +" .. .. .", +" .. ..", +".........", +"........." +}; diff --git a/data/pixmaps/rg21/8/clef-alto.xpm b/data/pixmaps/rg21/8/clef-alto.xpm new file mode 100644 index 0000000..5587472 --- /dev/null +++ b/data/pixmaps/rg21/8/clef-alto.xpm @@ -0,0 +1,61 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"24 53 2 1", +" c Gray0", +". c None", +/* pixels */ +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +". .. .... ......", +". .. ... ..... ....", +". .. .. ........ ...", +". .. . ........ ..", +". .. . ........ ..", +". .. . ......... .", +". .. .. .......... .", +". .. .............. .", +". .. .............. .", +". .. .............. .", +". .. .............. .", +". .. ............. ..", +". .. ..... ....... ..", +". .. ..... ..... ...", +". .. ..... .. ....", +". .. .... ......", +". .. . .............", +". .. ..............", +". .. . .............", +". .. .... ......", +". .. ..... .. ....", +". .. ..... ..... ...", +". .. ..... ....... ..", +". .. ............. ..", +". .. .............. .", +". .. .............. .", +". .. .............. .", +". .. .............. .", +". .. .. .......... .", +". .. . ......... .", +". .. . ........ ..", +". .. . ........ ..", +". .. .. ........ ...", +". .. ... ..... ....", +". .. ..... ......", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/data/pixmaps/rg21/8/clef-bass.xpm b/data/pixmaps/rg21/8/clef-bass.xpm new file mode 100644 index 0000000..6fe4fba --- /dev/null +++ b/data/pixmaps/rg21/8/clef-bass.xpm @@ -0,0 +1,61 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"24 53 2 1", +" c Gray0", +". c None", +/* pixels */ +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"...... .........", +".... ..... ........", +"... ......... .......", +"... .......... ......", +".. ........... ......", +".. ............ .. .", +".. .......... .. .", +".. ......... .....", +".. ......... .....", +".. ......... .....", +"... .......... .. .", +"................ .. .", +"................ .....", +"............... ......", +"............... ......", +"............... ......", +".............. .......", +".............. .......", +".............. .......", +"............. ........", +"............. .........", +"............ .........", +"............ ..........", +"........... ...........", +".......... ............", +"......... .............", +"........ ..............", +"....... ...............", +"..... .................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/data/pixmaps/rg21/8/clef-tenor.xpm b/data/pixmaps/rg21/8/clef-tenor.xpm new file mode 100644 index 0000000..c4a2bdd --- /dev/null +++ b/data/pixmaps/rg21/8/clef-tenor.xpm @@ -0,0 +1,61 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"24 53 2 1", +" c Gray0", +". c None", +/* pixels */ +". .. ..... ......", +". .. ... ..... ....", +". .. .. ........ ...", +". .. . ........ ..", +". .. . ........ ..", +". .. . ......... .", +". .. .. .......... .", +". .. .............. .", +". .. .............. .", +". .. .............. .", +". .. .............. .", +". .. ............. ..", +". .. ..... ....... ..", +". .. ..... ..... ...", +". .. ..... .. ....", +". .. .... ......", +". .. . .............", +". .. ..............", +". .. . .............", +". .. .... ......", +". .. ..... .. ....", +". .. ..... ..... ...", +". .. ..... ....... ..", +". .. ............. ..", +". .. .............. .", +". .. .............. .", +". .. .............. .", +". .. .............. .", +". .. .. .......... .", +". .. . ......... .", +". .. . ........ ..", +". .. . ........ ..", +". .. .. ........ ...", +". .. ... ..... ....", +". .. ..... ......", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................" +}; diff --git a/data/pixmaps/rg21/8/clef-treble.xpm b/data/pixmaps/rg21/8/clef-treble.xpm new file mode 100644 index 0000000..e0d344c --- /dev/null +++ b/data/pixmaps/rg21/8/clef-treble.xpm @@ -0,0 +1,61 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"24 53 2 1", +" c Gray0", +". c None", +/* pixels */ +"........................", +"........................", +"............ .........", +"........... .. ........", +".......... ... .......", +".......... ... .......", +".......... ... .......", +".......... ... .......", +".......... ... .......", +".......... ... .......", +".......... ... .......", +".......... .. ........", +".......... .. ........", +".......... . .........", +".......... . .........", +"........... ..........", +"........... ...........", +".......... ...........", +"......... ...........", +"........ . ...........", +"........ .. ...........", +"....... .. ...........", +"...... ... ...........", +"..... .... ...........", +"..... .... ...........", +".... ..... ...........", +"... ...... ..........", +"... ..... ......", +".. .... . .... ....", +".. ... .. ..... ...", +". ... ... ...... ..", +". ... ... ...... ..", +". .. .... ....... .", +". .. .... ....... .", +". .. .... ....... .", +". .. .... ....... .", +". .. ..... ...... .", +". ... .... ...... .", +". ... .... ...... .", +".. ... ... ..... ..", +".. ..... .. ..... ..", +"... ....... .... ...", +".... ...... ... ....", +"...... .... . ......", +"......... ........", +"............. .........", +".... ....... .........", +"... ...... .........", +"... ..... ..........", +"... ..... ..........", +".... ..... ...........", +"..... .............", +"........................" +}; diff --git a/data/pixmaps/rg21/8/dot.xpm b/data/pixmaps/rg21/8/dot.xpm new file mode 100644 index 0000000..867a67b --- /dev/null +++ b/data/pixmaps/rg21/8/dot.xpm @@ -0,0 +1,16 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"4 8 2 1", +" c Gray0", +". c None", +/* pixels */ +"....", +"....", +"....", +". .", +". .", +"....", +"....", +"...." +}; diff --git a/data/pixmaps/rg21/8/dual-arrow.xpm b/data/pixmaps/rg21/8/dual-arrow.xpm new file mode 100644 index 0000000..97724bd --- /dev/null +++ b/data/pixmaps/rg21/8/dual-arrow.xpm @@ -0,0 +1,18 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"23 10 2 1", +" c black", +". c None", +/* pixels */ +".... ........... ....", +".... ......... ....", +".... ....... ....", +".... ..... ....", +".... ....", +".... ..... ....", +".... ....... ....", +".... ......... ....", +".... ........... ....", +".......................", +}; diff --git a/data/pixmaps/rg21/8/note-bodyempty.xpm b/data/pixmaps/rg21/8/note-bodyempty.xpm new file mode 100644 index 0000000..511087b --- /dev/null +++ b/data/pixmaps/rg21/8/note-bodyempty.xpm @@ -0,0 +1,16 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 8 2 1", +" c Gray0", +". c None", +/* pixels */ +".. ..", +". ... .", +" ..... ", +" ...... ", +" ...... ", +" ..... ", +". ... .", +".. .." +}; diff --git a/data/pixmaps/rg21/8/note-bodyfilled.xpm b/data/pixmaps/rg21/8/note-bodyfilled.xpm new file mode 100644 index 0000000..c50bd39 --- /dev/null +++ b/data/pixmaps/rg21/8/note-bodyfilled.xpm @@ -0,0 +1,16 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 8 2 1", +" c Gray0", +". c None", +/* pixels */ +".... .", +".. ", +". ", +" ", +" ", +" .", +" ..", +". ...." +}; diff --git a/data/pixmaps/rg21/8/note-breve.xpm b/data/pixmaps/rg21/8/note-breve.xpm new file mode 100644 index 0000000..b14c6ee --- /dev/null +++ b/data/pixmaps/rg21/8/note-breve.xpm @@ -0,0 +1,16 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"17 8 2 1", +"x c Gray0", +" c None", +/* pixels */ +"x x xxxx x x ", +"x x xx x x x ", +"x xxx xx x ", +"x xx xx x ", +"x xx xx x ", +"x xx xxx x ", +"x x x xx x x ", +"x x xxxx x x " +}; diff --git a/data/pixmaps/rg21/8/notemod-doubleflat.xpm b/data/pixmaps/rg21/8/notemod-doubleflat.xpm new file mode 100644 index 0000000..4dce635 --- /dev/null +++ b/data/pixmaps/rg21/8/notemod-doubleflat.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 14 2 1", +"x c Gray0", +" c None", +/* pixels */ +"x x ", +"x x ", +"x x ", +"x x ", +"x x ", +"x x ", +"x xxx xx ", +"xxxxxxxxx", +"x xx xx", +"x xx xx", +"x xx x ", +"x x x x ", +"xx xx ", +"x x " +}; diff --git a/data/pixmaps/rg21/8/notemod-doublesharp.xpm b/data/pixmaps/rg21/8/notemod-doublesharp.xpm new file mode 100644 index 0000000..8855a27 --- /dev/null +++ b/data/pixmaps/rg21/8/notemod-doublesharp.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 14 2 1", +"x c Gray0", +" c None", +/* pixels */ +" ", +" ", +" ", +" ", +"xx xx", +"xx xx", +" xxxx ", +" xx ", +" xx ", +" xxxx ", +"xx xx", +"xx xx", +" ", +" " +}; diff --git a/data/pixmaps/rg21/8/notemod-flat.xpm b/data/pixmaps/rg21/8/notemod-flat.xpm new file mode 100644 index 0000000..a2cd8a7 --- /dev/null +++ b/data/pixmaps/rg21/8/notemod-flat.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 14 2 1", +"x c Gray0", +" c None", +/* pixels */ +" x ", +" x ", +" x ", +" x ", +" x ", +" x ", +" x xx ", +" xxxxx", +" x xx", +" x xx", +" x x ", +" x x ", +" xx ", +" x " +}; diff --git a/data/pixmaps/rg21/8/notemod-natural.xpm b/data/pixmaps/rg21/8/notemod-natural.xpm new file mode 100644 index 0000000..c1c43c7 --- /dev/null +++ b/data/pixmaps/rg21/8/notemod-natural.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 14 2 1", +" c Gray0", +". c None", +/* pixels */ +". ....", +". ....", +". ... ", +". .. ", +". ", +". .. ", +". ... ", +". ... ", +". .. ", +". ", +". .. ", +". ... ", +"..... ", +"..... " +}; diff --git a/data/pixmaps/rg21/8/notemod-sharp.xpm b/data/pixmaps/rg21/8/notemod-sharp.xpm new file mode 100644 index 0000000..692a75b --- /dev/null +++ b/data/pixmaps/rg21/8/notemod-sharp.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 14 2 1", +"x c Gray0", +" c None", +/* pixels */ +" x ", +" x x ", +" x xx", +" xxxxx", +"xxxxx ", +"xx x ", +" x x ", +" x x ", +" x xx", +" xxxxx", +"xxxxx ", +"xx x ", +" x x ", +" x " +}; diff --git a/data/pixmaps/rg21/8/rest-breve.xpm b/data/pixmaps/rg21/8/rest-breve.xpm new file mode 100644 index 0000000..dfc215e --- /dev/null +++ b/data/pixmaps/rg21/8/rest-breve.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 37 2 1", +" c Gray0", +". c None", +/* pixels */ +"......", +"......", +"......", +"......", +"......", +"......", +"......", +"......", +"......", +" ", +". .", +". .", +". .", +". .", +". .", +". .", +". .", +". .", +" ", +"......", +"......", +"......", +"......", +"......", +"......", +"......", +"......", +"......", +"......", +"......", +"......", +"......", +"......", +"......", +"......", +"......", +"......" +}; diff --git a/data/pixmaps/rg21/8/rest-crotchet.xpm b/data/pixmaps/rg21/8/rest-crotchet.xpm new file mode 100644 index 0000000..7c3f8f1 --- /dev/null +++ b/data/pixmaps/rg21/8/rest-crotchet.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 37 2 1", +" c Gray0", +". c None", +/* pixels */ +".........", +".........", +".........", +".........", +".. ......", +"... .....", +".... ....", +".... ...", +".... ..", +".... .", +"... ..", +"... ...", +".. ....", +".. ....", +". .....", +". .....", +" ......", +". ......", +".. .....", +".. .....", +"... ....", +".... ....", +"..... ...", +".. ..", +". .", +" .... ", +" ......", +" ......", +". ......", +".. ......", +"... .....", +".........", +".........", +".........", +".........", +".........", +"........." +}; diff --git a/data/pixmaps/rg21/8/rest-demisemi.xpm b/data/pixmaps/rg21/8/rest-demisemi.xpm new file mode 100644 index 0000000..31f0f53 --- /dev/null +++ b/data/pixmaps/rg21/8/rest-demisemi.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 37 2 1", +" c Gray0", +". c None", +/* pixels */ +"............", +"............", +"............", +"............", +"... .... ..", +".. .. ..", +".. ..", +"... . ...", +"........ ...", +"....... ...", +"....... ...", +"....... ....", +".. ... ....", +". . ....", +". ....", +".. . .....", +"...... .....", +"...... .....", +"..... .....", +"..... .....", +". .. ......", +" ......", +" ......", +". . .......", +".... .......", +"... ........", +"... ........", +"... ........", +"... ........", +".. .........", +".. .........", +"............", +"............", +"............", +"............", +"............", +"............" +}; diff --git a/data/pixmaps/rg21/8/rest-demisemiquaver.xpm b/data/pixmaps/rg21/8/rest-demisemiquaver.xpm new file mode 100644 index 0000000..31f0f53 --- /dev/null +++ b/data/pixmaps/rg21/8/rest-demisemiquaver.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 37 2 1", +" c Gray0", +". c None", +/* pixels */ +"............", +"............", +"............", +"............", +"... .... ..", +".. .. ..", +".. ..", +"... . ...", +"........ ...", +"....... ...", +"....... ...", +"....... ....", +".. ... ....", +". . ....", +". ....", +".. . .....", +"...... .....", +"...... .....", +"..... .....", +"..... .....", +". .. ......", +" ......", +" ......", +". . .......", +".... .......", +"... ........", +"... ........", +"... ........", +"... ........", +".. .........", +".. .........", +"............", +"............", +"............", +"............", +"............", +"............" +}; diff --git a/data/pixmaps/rg21/8/rest-hemidemisemi.xpm b/data/pixmaps/rg21/8/rest-hemidemisemi.xpm new file mode 100644 index 0000000..ced1ff5 --- /dev/null +++ b/data/pixmaps/rg21/8/rest-hemidemisemi.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 37 2 1", +" c Gray0", +". c None", +/* pixels */ +".... ..... ", +"... ... ", +"... .", +".... . .", +"......... .", +"......... .", +"......... ..", +"... ... ..", +".. .. ..", +".. ..", +"... . ...", +"........ ...", +"....... ...", +"....... ...", +"....... ....", +".. ... ....", +". . ....", +". ....", +".. . .....", +"...... .....", +"...... .....", +"..... .....", +"..... .....", +". .. ......", +" ......", +" ......", +". . .......", +".... .......", +"... ........", +"... ........", +"... ........", +"... ........", +".. .........", +".. .........", +"............", +"............", +"............" +}; diff --git a/data/pixmaps/rg21/8/rest-hemidemisemiquaver.xpm b/data/pixmaps/rg21/8/rest-hemidemisemiquaver.xpm new file mode 100644 index 0000000..ced1ff5 --- /dev/null +++ b/data/pixmaps/rg21/8/rest-hemidemisemiquaver.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 37 2 1", +" c Gray0", +". c None", +/* pixels */ +".... ..... ", +"... ... ", +"... .", +".... . .", +"......... .", +"......... .", +"......... ..", +"... ... ..", +".. .. ..", +".. ..", +"... . ...", +"........ ...", +"....... ...", +"....... ...", +"....... ....", +".. ... ....", +". . ....", +". ....", +".. . .....", +"...... .....", +"...... .....", +"..... .....", +"..... .....", +". .. ......", +" ......", +" ......", +". . .......", +".... .......", +"... ........", +"... ........", +"... ........", +"... ........", +".. .........", +".. .........", +"............", +"............", +"............" +}; diff --git a/data/pixmaps/rg21/8/rest-minim.xpm b/data/pixmaps/rg21/8/rest-minim.xpm new file mode 100644 index 0000000..b7e3ad5 --- /dev/null +++ b/data/pixmaps/rg21/8/rest-minim.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 37 2 1", +" c Gray0", +". c None", +/* pixels */ +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +". .", +". .", +". .", +" ", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +"........." +}; diff --git a/data/pixmaps/rg21/8/rest-quaver.xpm b/data/pixmaps/rg21/8/rest-quaver.xpm new file mode 100644 index 0000000..13ad886 --- /dev/null +++ b/data/pixmaps/rg21/8/rest-quaver.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 37 2 1", +" c Gray0", +". c None", +/* pixels */ +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +". .... .", +" .. .", +" ..", +". . ..", +"..... ..", +"..... ...", +"..... ...", +"..... ...", +".... ....", +".... ....", +".... ....", +"... .....", +"... .....", +"... .....", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +"........." +}; diff --git a/data/pixmaps/rg21/8/rest-semibreve.xpm b/data/pixmaps/rg21/8/rest-semibreve.xpm new file mode 100644 index 0000000..68e41d5 --- /dev/null +++ b/data/pixmaps/rg21/8/rest-semibreve.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 37 2 1", +" c Gray0", +". c None", +/* pixels */ +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +" ", +". .", +". .", +". .", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +"........." +}; diff --git a/data/pixmaps/rg21/8/rest-semiquaver.xpm b/data/pixmaps/rg21/8/rest-semiquaver.xpm new file mode 100644 index 0000000..b01b6c7 --- /dev/null +++ b/data/pixmaps/rg21/8/rest-semiquaver.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 37 2 1", +" c Gray0", +". c None", +/* pixels */ +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".........", +".. .... ", +". . ", +". .", +".. . .", +"...... .", +"...... ..", +"...... ..", +"...... ..", +". .. ...", +" ...", +" ...", +". . ....", +".... ....", +".... ....", +"... .....", +"... .....", +"... .....", +".. ......", +".. ......", +".. ......", +".........", +".........", +".........", +".........", +"........." +}; diff --git a/data/pixmaps/rg21/8/tail-down-1.xpm b/data/pixmaps/rg21/8/tail-down-1.xpm new file mode 100644 index 0000000..0dfb657 --- /dev/null +++ b/data/pixmaps/rg21/8/tail-down-1.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 14 2 1", +" c Gray0", +". c None", +/* pixels */ +" ....", +" ...", +" ..", +" ..", +".. .", +"... .", +"... .", +".... .", +".... ", +"..... ", +"..... ", +"..... ", +"..... ", +"..... " +}; diff --git a/data/pixmaps/rg21/8/tail-down-2.xpm b/data/pixmaps/rg21/8/tail-down-2.xpm new file mode 100644 index 0000000..75a2b9e --- /dev/null +++ b/data/pixmaps/rg21/8/tail-down-2.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 20 2 1", +" c Gray0", +". c None", +/* pixels */ +" ....", +" ...", +" ..", +" ..", +".. .", +"... .", +" . .", +" . .", +" . ", +" . ", +".. . ", +"... ", +"... ", +".... ", +".... .", +".... ", +"..... ", +"..... ", +"..... ", +"..... " +}; diff --git a/data/pixmaps/rg21/8/tail-down-3.xpm b/data/pixmaps/rg21/8/tail-down-3.xpm new file mode 100644 index 0000000..905855f --- /dev/null +++ b/data/pixmaps/rg21/8/tail-down-3.xpm @@ -0,0 +1,34 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 26 2 1", +" c Gray0", +". c None", +/* pixels */ +" ....", +" ...", +" ..", +" ..", +".. .", +"... .", +" . .", +" . .", +" . ", +" . ", +".. . ", +"... ", +" . ", +" . ", +" . .", +" . ", +".. . ", +"... ", +"... ", +".... ", +".... .", +".... ", +"..... ", +"..... ", +"..... ", +"..... " +}; diff --git a/data/pixmaps/rg21/8/tail-down-4.xpm b/data/pixmaps/rg21/8/tail-down-4.xpm new file mode 100644 index 0000000..6ac32d7 --- /dev/null +++ b/data/pixmaps/rg21/8/tail-down-4.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 32 2 1", +" c Gray0", +". c None", +/* pixels */ +" ....", +" ...", +" ..", +" ..", +".. .", +"... .", +" . .", +" . .", +" . ", +" . ", +".. . ", +"... ", +" . ", +" . ", +" . .", +" . ", +".. . ", +"... ", +" . ", +" . ", +" . .", +" . ", +".. . ", +"... ", +"... ", +".... ", +".... .", +".... ", +"..... ", +"..... ", +"..... ", +"..... " +}; diff --git a/data/pixmaps/rg21/8/tail-up-1.xpm b/data/pixmaps/rg21/8/tail-up-1.xpm new file mode 100644 index 0000000..d31acb4 --- /dev/null +++ b/data/pixmaps/rg21/8/tail-up-1.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 14 2 1", +" c Gray0", +". c None", +/* pixels */ +".... .", +"..... ", +"..... ", +"..... ", +"..... ", +".... ", +".... .", +"... .", +"... .", +".. .", +" ..", +" ..", +" ...", +" ...." +}; diff --git a/data/pixmaps/rg21/8/tail-up-2.xpm b/data/pixmaps/rg21/8/tail-up-2.xpm new file mode 100644 index 0000000..6b9713b --- /dev/null +++ b/data/pixmaps/rg21/8/tail-up-2.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 20 2 1", +" c Gray0", +". c None", +/* pixels */ +".... .", +"..... ", +"..... ", +"..... ", +"..... ", +".... .", +".... ", +"... ", +"... ", +".. . ", +" . ", +" . ", +" . .", +" . .", +"... .", +".. .", +" ..", +" ..", +" ...", +" ...." +}; diff --git a/data/pixmaps/rg21/8/tail-up-3.xpm b/data/pixmaps/rg21/8/tail-up-3.xpm new file mode 100644 index 0000000..3ce76a6 --- /dev/null +++ b/data/pixmaps/rg21/8/tail-up-3.xpm @@ -0,0 +1,34 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 26 2 1", +" c Gray0", +". c None", +/* pixels */ +".... .", +"..... ", +"..... ", +"..... ", +"..... ", +".... .", +".... ", +"... ", +"... ", +".. . ", +" . ", +" . .", +" . ", +" . ", +"... ", +".. . ", +" . ", +" . ", +" . .", +" . .", +"... .", +".. .", +" ..", +" ..", +" ...", +" ...." +}; diff --git a/data/pixmaps/rg21/8/tail-up-4.xpm b/data/pixmaps/rg21/8/tail-up-4.xpm new file mode 100644 index 0000000..4430e5e --- /dev/null +++ b/data/pixmaps/rg21/8/tail-up-4.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 32 2 1", +" c Gray0", +". c None", +/* pixels */ +".... .", +"..... ", +"..... ", +"..... ", +"..... ", +".... .", +".... ", +"... ", +"... ", +".. . ", +" . ", +" . .", +" . ", +" . ", +"... ", +".. . ", +" . ", +" . .", +" . ", +" . ", +"... ", +".. . ", +" . ", +" . ", +" . .", +" . .", +"... .", +".. .", +" ..", +" ..", +" ...", +" ...." +}; diff --git a/data/pixmaps/rg21/8/unknown.xpm b/data/pixmaps/rg21/8/unknown.xpm new file mode 100644 index 0000000..8698b03 --- /dev/null +++ b/data/pixmaps/rg21/8/unknown.xpm @@ -0,0 +1,16 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 8 2 1", +"x c Gray0", +" c None", +/* pixels */ +" xxx ", +" x ", +" x ", +" xx ", +" x ", +" ", +" x ", +" " +}; diff --git a/data/pixmaps/splash-1.0.png b/data/pixmaps/splash-1.0.png new file mode 100644 index 0000000..3ea96bb Binary files /dev/null and b/data/pixmaps/splash-1.0.png differ diff --git a/data/pixmaps/splash-1.2.3.png b/data/pixmaps/splash-1.2.3.png new file mode 100644 index 0000000..ce0dedd Binary files /dev/null and b/data/pixmaps/splash-1.2.3.png differ diff --git a/data/pixmaps/splash-1.4-1.5.png b/data/pixmaps/splash-1.4-1.5.png new file mode 100644 index 0000000..f16c568 Binary files /dev/null and b/data/pixmaps/splash-1.4-1.5.png differ diff --git a/data/pixmaps/splash.png b/data/pixmaps/splash.png new file mode 100644 index 0000000..fef0347 Binary files /dev/null and b/data/pixmaps/splash.png differ diff --git a/data/pixmaps/toolbar/accent.xpm b/data/pixmaps/toolbar/accent.xpm new file mode 100644 index 0000000..7e03ac4 --- /dev/null +++ b/data/pixmaps/toolbar/accent.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 8 7 1", +" c Gray0", +". c #2a2a2a", +"X c Gray43", +"o c #8d8d8d", +"O c Gray70", +"+ c Gray84", +"@ c None", +/* pixels */ +"@@@@@@@@@@@", +"@OO@@@@@@@@", +"@O..Xo@@@@@", +"@@@+XX.Xo+@", +"@@@@@@++X o", +"@@@+XX.Xo+@", +"@O..Xo@@@@@", +"@OO@@@@@@@@" +}; diff --git a/data/pixmaps/toolbar/accidental-doubleflat.xpm b/data/pixmaps/toolbar/accidental-doubleflat.xpm new file mode 100644 index 0000000..d7aae71 --- /dev/null +++ b/data/pixmaps/toolbar/accidental-doubleflat.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # # # ", +" # # # ", +" # # # ", +" # # # ", +" # # # ", +" # # # ", +" #@#@#@##. # ", +" #--@#--#+ @#+# ", +" # @# #+ .##### ", +" # -@# -#- ###### ", +" # #-# #- #####. ", +" #+. #+. .+#@ ", +" + + ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/accidental-doublesharp.xpm b/data/pixmaps/toolbar/accidental-doublesharp.xpm new file mode 100644 index 0000000..1961653 --- /dev/null +++ b/data/pixmaps/toolbar/accidental-doublesharp.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" #- -# @#+# ", +" @@ @@ .##### ", +" .@. ###### ", +" @@ @@ #####. ", +" #- -# .+#@ ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/accidental-flat.xpm b/data/pixmaps/toolbar/accidental-flat.xpm new file mode 100644 index 0000000..687f915 --- /dev/null +++ b/data/pixmaps/toolbar/accidental-flat.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # # ", +" # # ", +" # # ", +" # # ", +" # # ", +" # # ", +" #@##. # ", +" #--#+ @#+# ", +" # #+ .##### ", +" # -#- ###### ", +" # #- #####. ", +" #+. .+#@ ", +" + ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/accidental-follow.xpm b/data/pixmaps/toolbar/accidental-follow.xpm new file mode 100644 index 0000000..0f6e8c2 --- /dev/null +++ b/data/pixmaps/toolbar/accidental-follow.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" ## # ", +" ## @#+# ", +" ## .##### ", +" ######## ###### ", +" ## #####. ", +" ## .+#@ ", +" ## ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/accidental-natural.xpm b/data/pixmaps/toolbar/accidental-natural.xpm new file mode 100644 index 0000000..8e3acda --- /dev/null +++ b/data/pixmaps/toolbar/accidental-natural.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # # ", +" # # ", +" # # ", +" # -# # ", +" #+## # ", +" #@ # @#+# ", +" # # .##### ", +" # # ###### ", +" # -# #####. ", +" #+## .+#@ ", +" #@ # ", +" # ", +" # ", +" # "}; diff --git a/data/pixmaps/toolbar/accidental-none.xpm b/data/pixmaps/toolbar/accidental-none.xpm new file mode 100644 index 0000000..2eb5c81 --- /dev/null +++ b/data/pixmaps/toolbar/accidental-none.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" @#+# ", +" .##### ", +" ###### ", +" #####. ", +" .+#@ ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/accidental-sharp.xpm b/data/pixmaps/toolbar/accidental-sharp.xpm new file mode 100644 index 0000000..71b1373 --- /dev/null +++ b/data/pixmaps/toolbar/accidental-sharp.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # # ", +" # # # ", +" # # # ", +" #.## # ", +" @###+ # ", +" ##.# @#+# ", +" # # .##### ", +" # # ###### ", +" #.## #####. ", +" @###+ .+#@ ", +" ##.# ", +" # # ", +" # # ", +" # "}; diff --git a/data/pixmaps/toolbar/accmenu-doubleflat.xpm b/data/pixmaps/toolbar/accmenu-doubleflat.xpm new file mode 100644 index 0000000..813f6ea --- /dev/null +++ b/data/pixmaps/toolbar/accmenu-doubleflat.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 17 8 1", +" c Gray4", +". c Gray21", +"X c #515151", +"o c #727272", +"O c Gray54", +"+ c Gray70", +"@ c #c5c5c5", +"# c None", +/* pixels */ +"###########", +"#@+##O@####", +"#oo## o####", +"#oo## +####", +"#oo## @####", +"#oo## #####", +"#oo##.#####", +"#oo#@ #####", +"#oo##X#####", +"#oo@oX#+o+#", +"#O . +", +"#oX#X O#X O", +"#oo#o ##o @", +"#oo+ X##.+#", +"#O X@+O.+##", +"#o.##o +###", +"#@+##++####" +}; diff --git a/data/pixmaps/toolbar/accmenu-doublesharp.xpm b/data/pixmaps/toolbar/accmenu-doublesharp.xpm new file mode 100644 index 0000000..8ecbe47 --- /dev/null +++ b/data/pixmaps/toolbar/accmenu-doublesharp.xpm @@ -0,0 +1,20 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 8 6 1", +" c #0e0e0e", +". c #767676", +"X c Gray54", +"o c Gray75", +"O c Gray80", +"+ c None", +/* pixels */ +"++++++++", +"+O.o+O.O", +"+X + X", +"+O . o", +"+++. .++", +"+o . o", +"+X O X", +"+O.O+o.O" +}; diff --git a/data/pixmaps/toolbar/accmenu-flat.xpm b/data/pixmaps/toolbar/accmenu-flat.xpm new file mode 100644 index 0000000..0033ae5 --- /dev/null +++ b/data/pixmaps/toolbar/accmenu-flat.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"7 17 7 1", +" c #040404", +". c #282828", +"X c #6f6f6f", +"o c #888888", +"O c #b4b4b4", +"+ c #c5c5c5", +"@ c None", +/* pixels */ +"@@@@@@@", +"@+O@@@@", +"@XX@@@@", +"@XX@@@@", +"@XX@@@@", +"@XX@@@@", +"@XX@@@@", +"@XX@@@@", +"@XX@@@@", +"@XX+XO@", +"@o +", +"@o.@O o", +"@XX@@ O", +"@XX@Xo@", +"@XXXO@@", +"@o O@@@", +"@OO@@@@" +}; diff --git a/data/pixmaps/toolbar/accmenu-natural.xpm b/data/pixmaps/toolbar/accmenu-natural.xpm new file mode 100644 index 0000000..1cd3b38 --- /dev/null +++ b/data/pixmaps/toolbar/accmenu-natural.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"6 19 6 1", +" c #060606", +". c #2f2f2f", +"X c #5f5f5f", +"o c Gray57", +"O c Gray84", +"+ c None", +/* pixels */ +"++++++", +"+O++++", +"+oO+++", +"+oO+++", +"+oO+++", +"+oXo.o", +"+o o", +"+o o", +"+oO+Oo", +"+oO+Oo", +"+oO+Oo", +"+oO+Oo", +"+o o", +"+o o", +"+o.oXo", +"++++Oo", +"++++Oo", +"++++Oo", +"+++++O" +}; diff --git a/data/pixmaps/toolbar/accmenu-sharp.xpm b/data/pixmaps/toolbar/accmenu-sharp.xpm new file mode 100644 index 0000000..d44e4f4 --- /dev/null +++ b/data/pixmaps/toolbar/accmenu-sharp.xpm @@ -0,0 +1,34 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"8 20 8 1", +" c #020202", +". c #2d2d2d", +"X c Gray31", +"o c #777777", +"O c Gray59", +"+ c Gray66", +"@ c #c6c6c6", +"# c None", +/* pixels */ +"########", +"#####@##", +"##@@#+@#", +"##@+#+@#", +"##@+#+@#", +"##++#+X@", +"##@Oo o", +"#@. .@", +"#o oO@#", +"#@XO#++#", +"##@+#+@#", +"##@+#OX@", +"##@Oo o", +"#@. .@", +"#o oO@#", +"#@XO#++#", +"##@+#+@#", +"##@+#+@#", +"##@+#@@#", +"##@@####" +}; diff --git a/data/pixmaps/toolbar/add_tracks.png b/data/pixmaps/toolbar/add_tracks.png new file mode 100644 index 0000000..eb7eae3 Binary files /dev/null and b/data/pixmaps/toolbar/add_tracks.png differ diff --git a/data/pixmaps/toolbar/add_tracks.xpm b/data/pixmaps/toolbar/add_tracks.xpm new file mode 100644 index 0000000..f7d6f7c --- /dev/null +++ b/data/pixmaps/toolbar/add_tracks.xpm @@ -0,0 +1,70 @@ +/* XPM */ +static char * add_tracks_xpm[] = { +"22 18 49 1", +" c None", +". c #666666", +"+ c #939393", +"@ c #FF0400", +"# c #9E0606", +"$ c #E6E6E6", +"% c #C7D485", +"& c #CBD692", +"* c #C7D484", +"= c #C9D58C", +"- c #B7B7B7", +"; c #C4C4C4", +"> c #B2A47B", +", c #C8BD99", +"' c #DDBF66", +") c #D5B760", +"! c #E2DCCC", +"~ c #E4C050", +"{ c #D7AD32", +"] c #D4CCB8", +"^ c #CFB459", +"/ c #DCB73F", +"( c #E3C666", +"_ c #F2D76E", +": c #EDCA4F", +"< c #D7B344", +"[ c #B2892D", +"} c #AA8E58", +"| c #C8AA50", +"1 c #ECCB58", +"2 c #FADC63", +"3 c #F9D653", +"4 c #DDB435", +"5 c #AA8A45", +"6 c #DBD9D5", +"7 c #D7AF3B", +"8 c #F4D150", +"9 c #F3CC41", +"0 c #BA8A19", +"a c #CCB88C", +"b c #D0A52D", +"c c #BD9227", +"d c #B98C25", +"e c #B38210", +"f c #9D7829", +"g c #D2CCC0", +"h c #99753A", +"i c #A38A68", +"j c #DFD9D5", +"......................", +".++@#$$.%%%%%%%%%%%%%.", +".++#@$$.%&*%***%%*%=%.", +"........-------------.", +".++;;$$.%%%%%%%%%%%%%.", +".++;;$$.%%%%%%%%%%%%%.", +"........-------------.", +".++;;$$.$$$$$$$$$$$$$.", +".++;;$$.$$$$$$$$$$$$$.", +"........----->,------.", +".++;;$$.$$$$$')$$$$$$.", +".++;;$$.$$$$!~{]$$$$$.", +"........--^/(_:<[}---.", +" |12345 ", +" 67890 ", +" abcdea ", +" afg hi ", +" j "}; diff --git a/data/pixmaps/toolbar/breve.xpm b/data/pixmaps/toolbar/breve.xpm new file mode 100644 index 0000000..8483638 --- /dev/null +++ b/data/pixmaps/toolbar/breve.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" # # -####. # # ", +" # #+#- @#-# # ", +" # #@# .#@# # ", +" # #@#. #@# # ", +" # #-#@ -#+# # ", +" # # .####- # # ", +" "}; diff --git a/data/pixmaps/toolbar/button-metronome.png b/data/pixmaps/toolbar/button-metronome.png new file mode 100644 index 0000000..7c45410 Binary files /dev/null and b/data/pixmaps/toolbar/button-metronome.png differ diff --git a/data/pixmaps/toolbar/chord.xpm b/data/pixmaps/toolbar/chord.xpm new file mode 100644 index 0000000..e779785 --- /dev/null +++ b/data/pixmaps/toolbar/chord.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" @#+# ", +" .##### ", +" ###### ", +" #####@ ", +" .+@+ # ", +" +@+# ", +" .##### ", +" ###### ", +" #####. ", +" .+#@ ", +" "}; diff --git a/data/pixmaps/toolbar/clef-alto.xpm b/data/pixmaps/toolbar/clef-alto.xpm new file mode 100644 index 0000000..00827a8 --- /dev/null +++ b/data/pixmaps/toolbar/clef-alto.xpm @@ -0,0 +1,57 @@ +/* XPM */ +static char *clef-alto[] = { +/* width height num_colors chars_per_pixel */ +" 15 31 19 1", +/* colors */ +". c #000000", +"# c #a8a8b0", +"a c #b0b0b0", +"b c #a8b0a8", +"c c #a8b0a8", +"d c #b0acb0", +"e c #000000", +"f c #b0acb0", +"g c #000000", +"h c None", +"i c #a8b0a8", +"j c #a8b0a8", +"k c #000000", +"l c #a8b0a8", +"m c #a8b0a8", +"n c #000000", +"o c #a8b0a8", +"p c None", +"q c #000000", +/* pixels */ +"hhhhhhhhhhhhhhh", +"ppppppppppppppp", +"hhhhhhhhhhhhhhh", +"ppppppppppppppp", +"ddddddddddddddd", +"ppppppppppppppp", +"hhhhhhhhiifhhhh", +"ppa.jklkak.appp", +"phi.ikg.pp..lhh", +"mmaejki.kmq.adm", +"pha.igbkppq.ipp", +"ppa.ikoqppqelph", +"hpa.igqeba.iphp", +"ppa.ae.ajqbphph", +"oma.i..clbmmmom", +"hpa.iq.qnqqbhph", +"ppa.igiqppq.lhp", +"hpi.ikoippq.aph", +"pha.igbeapq.aph", +"mma.ikk.am..lmd", +"pha.iginbk.aphp", +"ppliobpbiicppph", +"hpppppppppphhph", +"phhhphphpphpphp", +"dmmdmd#dmomddmd", +"phhphphphphphph", +"phphphphphphphp", +"hphphphphphphph", +"hphphphphphphph", +"phphphphphphphp", +"phphphphphphphp" +}; diff --git a/data/pixmaps/toolbar/clef-alto.xpm_rg21 b/data/pixmaps/toolbar/clef-alto.xpm_rg21 new file mode 100644 index 0000000..cd6682c --- /dev/null +++ b/data/pixmaps/toolbar/clef-alto.xpm_rg21 @@ -0,0 +1,35 @@ +/* XPM */ +static char * clef_alto_xpm[] = { +"12 29 3 1", +" c None", +". c black", +"x c gray60", +" ", +" ", +" ", +" ", +"xxxxxxxxxxxx", +" . . ... ", +" . . . . ", +" . . . .. ", +" . . . ", +"x.x.xxxxxx.x", +" . . . ", +" . . . .. ", +" . . .. . ", +" . . .. . ", +"x.x...xxxxxx", +" . . .. . ", +" . . .. . ", +" . . . .. ", +" . . . ", +"x.x.xxxxxx.x", +" . . . ", +" . . . .. ", +" . . . . ", +" . . ... ", +"xxxxxxxxxxxx", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/clef-bass.xpm b/data/pixmaps/toolbar/clef-bass.xpm new file mode 100644 index 0000000..489991f --- /dev/null +++ b/data/pixmaps/toolbar/clef-bass.xpm @@ -0,0 +1,54 @@ +/* XPM */ +static char *clef-bass[] = { +/* width height num_colors chars_per_pixel */ +" 15 31 16 1", +/* colors */ +". c #000000", +"# c #a8b0a8", +"a c #a8b0a8", +"b c #b0acb0", +"c c #b0acb0", +"d c #000000", +"e c None", +"f c #a8b0a8", +"g c #a8b0a8", +"h c #000000", +"i c #a8b0a8", +"j c #a8b0a8", +"k c #a8b0a8", +"l c #b0acb0", +"m c None", +"n c #000000", +/* pixels */ +"eeeeeeeeeeeeeee", +"mmmmmmmmmmmmmmm", +"eeeeeeeeeeeeeee", +"mmmmmmmmmmmmmmm", +"ccccccccccccccc", +"mmmmmigfjmmmmmm", +"eeejhjmb.gejeee", +"mmmhfmemd.j.fmm", +"emj..hmei.fijme", +"kck..nck#.fkkkc", +"membngemi.fhlem", +"ememememh.ihgme", +"memememj.dmmeem", +"emememen.jeemem", +"kckckcn.akkkckc", +"ememjnhemeememe", +"membhimmemememe", +"emigmmmemememem", +"ememeememememem", +"ckckckckckckckc", +"mememememememem", +"emememememememe", +"emememememememe", +"mememememememem", +"ckckckckckckckc", +"emememememememe", +"mememememememem", +"emememememememe", +"emememememememe", +"mememememememem", +"mememememememem" +}; diff --git a/data/pixmaps/toolbar/clef-bass.xpm_rg21 b/data/pixmaps/toolbar/clef-bass.xpm_rg21 new file mode 100644 index 0000000..21eef58 --- /dev/null +++ b/data/pixmaps/toolbar/clef-bass.xpm_rg21 @@ -0,0 +1,35 @@ +/* XPM */ +static char * clef_bass_xpm[] = { +"13 29 3 1", +" c None", +". c black", +"x c gray60", +" ", +" ", +" ", +" ", +"xxxxxxxxxxxxx", +" ... ", +" .. .. .. ", +" . .. .. ", +" . .. ", +"x..xxxx..xxxx", +" .. .. ", +" .. .. ", +" .. .. ", +" .. ", +"xxxxxx..xxxxx", +" . ", +" .. ", +" . ", +" . ", +"xxxx.xxxxxxxx", +" .. ", +" ", +" ", +" ", +"xxxxxxxxxxxxx", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/clef-tenor.xpm b/data/pixmaps/toolbar/clef-tenor.xpm new file mode 100644 index 0000000..e75422e --- /dev/null +++ b/data/pixmaps/toolbar/clef-tenor.xpm @@ -0,0 +1,56 @@ +/* XPM */ +static char *clef-tenor[] = { +/* width height num_colors chars_per_pixel */ +" 13 31 18 1", +/* colors */ +". c #000000", +"# c #a8a8b0", +"a c #b0b0b0", +"b c #a8b0a8", +"c c #b0acb0", +"d c #000000", +"e c #000000", +"f c #000000", +"g c None", +"h c #a8b0a8", +"i c #a8b0a8", +"j c #000000", +"k c #a8b0a8", +"l c #a8b0a8", +"m c #000000", +"n c #a8b0a8", +"o c None", +"p c #000000", +/* pixels */ +"ggggggggggggg", +"ooooooohhkooo", +"ga.hjkjaf.agg", +"oh.hjj.ood.ko", +"ca.hfh.jlp.ac", +"oa.hfbjoop.ho", +"oa.hjnpoop.kg", +"oadijp.ba.hgo", +"oa.ad.ahpboog", +"la.h.dkkblllc", +"oa.hp.ppmpbog", +"oa.hfhpoop.kg", +"gh.hfbiogp.ao", +"oa.hfbdaop.ag", +"ladhjfdal.dkl", +"oadijiebj.ago", +"gkhbbobihkoog", +"goooooooooogo", +"ogoogoogoggog", +"clcnlcn#clcln", +"ogoogogogogog", +"gogogogogogog", +"ogogogogogogo", +"gogogogogogog", +"lclclclclclcl", +"gogogogogogog", +"gogogogogogog", +"ogogogogogogo", +"ogogogogogogo", +"gogogogogogog", +"gogogogogogog" +}; diff --git a/data/pixmaps/toolbar/clef-tenor.xpm_rg21 b/data/pixmaps/toolbar/clef-tenor.xpm_rg21 new file mode 100644 index 0000000..4deecb2 --- /dev/null +++ b/data/pixmaps/toolbar/clef-tenor.xpm_rg21 @@ -0,0 +1,35 @@ +/* XPM */ +static char * clef_tenor_xpm[] = { +"12 29 3 1", +" c None", +". c black", +"x c gray60", +" . . ... ", +" . . . . ", +" . . . .. ", +" . . . ", +"x.x.xxxxxx.x", +" . . . ", +" . . . .. ", +" . . .. . ", +" . . .. . ", +"x.x...xxxxxx", +" . . .. . ", +" . . .. . ", +" . . . .. ", +" . . . ", +"x.x.xxxxxx.x", +" . . . ", +" . . . .. ", +" . . . . ", +" . . ... ", +"xxxxxxxxxxxx", +" ", +" ", +" ", +" ", +"xxxxxxxxxxxx", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/clef-treble.xpm b/data/pixmaps/toolbar/clef-treble.xpm new file mode 100644 index 0000000..cf4cdcf --- /dev/null +++ b/data/pixmaps/toolbar/clef-treble.xpm @@ -0,0 +1,61 @@ +/* XPM */ +static char *clef-treble[] = { +/* width height num_colors chars_per_pixel */ +" 13 31 23 1", +/* colors */ +". c #000000", +"# c #b0b0b0", +"a c #a8b0a8", +"b c #a8b0a8", +"c c #b0acb0", +"d c #b0acb0", +"e c #000000", +"f c #000000", +"g c #000000", +"h c None", +"i c #a8b0a8", +"j c #000000", +"k c #a8b0a8", +"l c #000000", +"m c #a8b0a8", +"n c #a8b0a8", +"o c #b0acb0", +"p c #000000", +"q c #b0a4b0", +"r c #a8b0a8", +"s c None", +"t c #000000", +"u c #000000", +/* pixels */ +"shshshshshshh", +"shshshskshshs", +"hshshsfeoshsh", +"shshsc.p.bshs", +"ndndnpeblidnd", +"hshskelsifhsh", +"shshitbsc.shs", +"hshscemhiushs", +"shsh#phbetshs", +"ndndnfniekndn", +"shshbeltfshsh", +"hshssqe.bhshs", +"shshbfebsshsh", +"shsbf.pshshsh", +"ndnf.ifbndndn", +"hsoeiheshshsh", +"shfebapflahsh", +"ha.cap.e.ecsh", +"skpbjfllbl.bs", +"nk.beknfnnlkd", +"sbebjlsebsiis", +"hsjlsflgbhikh", +"shsflabikalss", +"hshs#ffeelbsh", +"ndnrnnb#fnndn", +"shshshsspshsh", +"hshiplshlshsh", +"shspeesskbshs", +"shspefhsksshs", +"shso.faoashsh", +"hshsbkioshhsh" +}; diff --git a/data/pixmaps/toolbar/clef-treble.xpm_rg21 b/data/pixmaps/toolbar/clef-treble.xpm_rg21 new file mode 100644 index 0000000..6191885 --- /dev/null +++ b/data/pixmaps/toolbar/clef-treble.xpm_rg21 @@ -0,0 +1,35 @@ +/* XPM */ +static char * clef_treble_xpm[] = { +"13 29 3 1", +" c None", +"# c black", +"x c gray60", +" # ", +" # # ", +" # # ", +" # # ", +"xxxxxx#x#xxxx", +" # # ", +" ## ", +" ## ", +" ## ", +"xxxxxx#xxxxxx", +" # ", +" ## ", +" ## ", +" # # ", +"xxx#xx##xxxxx", +" ## # ", +" # #### ", +" ## # # ## ", +" ## # # ## ", +"x##x##x#xx##x", +" ## # # ## ", +" # # ## ", +" ## # # ", +" ## # # ", +"xxxxx####xxxx", +" # ", +" ## # ", +" # # ", +" ## "}; diff --git a/data/pixmaps/toolbar/continuous-page-mode.xpm b/data/pixmaps/toolbar/continuous-page-mode.xpm new file mode 100644 index 0000000..3e49e7b --- /dev/null +++ b/data/pixmaps/toolbar/continuous-page-mode.xpm @@ -0,0 +1,98 @@ +/* XPM */ +static char * continuous_page_mode_1_xpm[] = { +"22 22 73 1", +" c None", +". c #FFFFFF", +"+ c #B1B1B1", +"@ c #000000", +"# c #F9F7F0", +"$ c #F7F3EA", +"% c #F5F0E4", +"& c #F3F0E2", +"* c #F4F0E4", +"= c #F4F1E4", +"- c #F4F1E5", +"; c #F5F2E6", +"> c #F5F3E7", +", c #F6F2E8", +"' c #F5F3E8", +") c #F6F4E9", +"! c #F3EEDE", +"~ c #F4EEDF", +"{ c #F3EFE0", +"] c #F3EFE1", +"^ c #F4F0E3", +"/ c #F2EBDA", +"( c #F2EDDB", +"_ c #F2EDDD", +": c #F2EDDE", +"< c #F3EEDF", +"[ c #F3EEE0", +"} c #868585", +"| c #A4A3A3", +"1 c #A7A6A5", +"2 c #A7A6A6", +"3 c #A8A7A7", +"4 c #A3A2A2", +"5 c #F0EAD7", +"6 c #F1EAD8", +"7 c #F1EBD9", +"8 c #F7F4EB", +"9 c #322580", +"0 c #453A8C", +"a c #362A83", +"b c #2C1F7D", +"c c #DEDEDE", +"d c #3F3E3E", +"e c #4D4291", +"f c #5C539A", +"g c #1D1D1D", +"h c #F9F9F8", +"i c #BDB9D4", +"j c #44398C", +"k c #6D66A5", +"l c #BABAC0", +"m c #FEFDFC", +"n c #FBFAFA", +"o c #E4E2EB", +"p c #42378A", +"q c #716AA6", +"r c #FBFBFA", +"s c #FFFFFE", +"t c #564D96", +"u c #584F98", +"v c #4B4090", +"w c #332681", +"x c #352983", +"y c #392C85", +"z c #FEFEFD", +"A c #7B73AB", +"B c #665D9F", +"C c #FEFEFE", +"D c #FCFCFA", +"E c #FBFAF9", +"F c #5E559B", +"G c #4F4592", +"H c #FDFDFC", +" ", +" .................... ", +" .........+.......+.. ", +" .@@@@@@@@@@@@@@@@@@. ", +" ..#$%+&*=-;>,')+.... ", +" .@@@@@@@@@@@@@@@@@@. ", +" ...+!~{]^==-+....... ", +" .@@@@@@@@@@@@@@@@@@. ", +" .................... ", +" .........+.......+.. ", +" .@@@@@@@@@@@@@@@@@@. ", +" .....+/(_:!<[]&+.... ", +" .@@@@@}|123|44}@@@@. ", +" ...+567890abbc...... ", +" .@@@@@@d9efbbg@@@@@. ", +" .......hijkblmm..... ", +" .......nopqb.rs..m.. ", +" ......bbjtuvwxy.zm.. ", +" .......bjABvbb.CDEC. ", +" ........bFGbb..H.... ", +" ........ bbb ....... ", +" b "}; diff --git a/data/pixmaps/toolbar/crotchet.xpm b/data/pixmaps/toolbar/crotchet.xpm new file mode 100644 index 0000000..d2e1136 --- /dev/null +++ b/data/pixmaps/toolbar/crotchet.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" ", +" ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" @#+# ", +" .##### ", +" ###### ", +" #####. ", +" .+#@ ", +" "}; diff --git a/data/pixmaps/toolbar/delete-track.png b/data/pixmaps/toolbar/delete-track.png new file mode 100644 index 0000000..2ddfdef Binary files /dev/null and b/data/pixmaps/toolbar/delete-track.png differ diff --git a/data/pixmaps/toolbar/delete_track.png b/data/pixmaps/toolbar/delete_track.png new file mode 100644 index 0000000..52763c3 Binary files /dev/null and b/data/pixmaps/toolbar/delete_track.png differ diff --git a/data/pixmaps/toolbar/delete_track.xpm b/data/pixmaps/toolbar/delete_track.xpm new file mode 100644 index 0000000..2fd5793 --- /dev/null +++ b/data/pixmaps/toolbar/delete_track.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char * delete_track_xpm[] = { +"22 18 19 1", +" c None", +". c #666666", +"+ c #939393", +"@ c #FF0400", +"# c #9E0606", +"$ c #E6E6E6", +"% c #C7D485", +"& c #CBD692", +"* c #C7D484", +"= c #C9D58C", +"- c #B7B7B7", +"; c #C4C4C4", +"> c #C1BEBE", +", c #CF0000", +"' c #A39C9C", +") c #C8C5C5", +"! c #B4B1B1", +"~ c #927D7D", +"{ c #DADADA", +"......................", +".++@#$$.%%%%%%%%%%%%%.", +".++#@$$.%&*%***%%*%=%.", +"........-------------.", +".++;;$$.%%%%%%%%%%%%%.", +".++;;$$.%%%%%%%%%%%%%.", +"........-------------.", +" ", +" ", +" ", +" >,' ', ", +" ),,, ',, ", +" ),,,,, ", +" ,,, ", +" ,,,,, ", +" ',,,,,' ", +" !,, ),,! ", +" ~) )~{ "}; diff --git a/data/pixmaps/toolbar/demisemi.xpm b/data/pixmaps/toolbar/demisemi.xpm new file mode 100644 index 0000000..828e542 --- /dev/null +++ b/data/pixmaps/toolbar/demisemi.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" # ", +" #@ ", +" ##@ ", +" ###@ ", +" # @@ ", +" #@ .- ", +" ##@ . ", +" ###@ . ", +" # .@@ . ", +" #@ .-. ", +" ##@ . ", +" ###@ . ", +" # .@@ . ", +" # .-. ", +" # - ", +" # . ", +" # . ", +" @#+# . ", +" .##### ", +" ###### ", +" #####. ", +" .+#@ ", +" "}; diff --git a/data/pixmaps/toolbar/dotted-breve.xpm b/data/pixmaps/toolbar/dotted-breve.xpm new file mode 100644 index 0000000..73c1e88 --- /dev/null +++ b/data/pixmaps/toolbar/dotted-breve.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char * breve_xpm[] = { +"14 26 2 1", +" c none", +". c black", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +". . ... . . ", +". .. .. . ..", +". .. .. . ..", +". . ... . . ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/dotted-crotchet.xpm b/data/pixmaps/toolbar/dotted-crotchet.xpm new file mode 100644 index 0000000..2640c7a --- /dev/null +++ b/data/pixmaps/toolbar/dotted-crotchet.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" ", +" ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" @#+# ", +" .##### ## ", +" ###### ## ", +" #####. ", +" .+#@ ", +" "}; diff --git a/data/pixmaps/toolbar/dotted-demisemi.xpm b/data/pixmaps/toolbar/dotted-demisemi.xpm new file mode 100644 index 0000000..47fe2a7 --- /dev/null +++ b/data/pixmaps/toolbar/dotted-demisemi.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" # ", +" #@ ", +" ##@ ", +" ###@ ", +" # @@ ", +" #@ .- ", +" ##@ . ", +" ###@ . ", +" # .@@ . ", +" #@ .-. ", +" ##@ . ", +" ###@ . ", +" # .@@ . ", +" # .-. ", +" # - ", +" # . ", +" # . ", +" @#+# . ", +" .##### ## ", +" ###### ## ", +" #####. ", +" .+#@ ", +" "}; diff --git a/data/pixmaps/toolbar/dotted-hemidemisemi.xpm b/data/pixmaps/toolbar/dotted-hemidemisemi.xpm new file mode 100644 index 0000000..2bdca1f --- /dev/null +++ b/data/pixmaps/toolbar/dotted-hemidemisemi.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char * dotted_hemidemisemi_xpm[] = { +"14 26 2 1", +" c none", +". c black", +" ", +" ", +" ", +" . ", +" .. ", +" .. ", +" . . ", +" . . ", +" .. . ", +" .. . ", +" . . ", +" . . ", +" .. . ", +" .. . ", +" . . ", +" . . ", +" .. . ", +" .. . ", +" . . ", +" ..... ", +" ...... .. ", +" ...... .. ", +" .... ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/dotted-minim.xpm b/data/pixmaps/toolbar/dotted-minim.xpm new file mode 100644 index 0000000..df331a8 --- /dev/null +++ b/data/pixmaps/toolbar/dotted-minim.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" ", +" ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" @#+# ", +" .#- .# ## ", +" #- .@ ## ", +" #. -#. ", +" .+## ", +" "}; diff --git a/data/pixmaps/toolbar/dotted-quaver.xpm b/data/pixmaps/toolbar/dotted-quaver.xpm new file mode 100644 index 0000000..985fe92 --- /dev/null +++ b/data/pixmaps/toolbar/dotted-quaver.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" ", +" # ", +" #. ", +" #@ ", +" ##. ", +" ##+ ", +" # .- ", +" # . ", +" # . ", +" # . ", +" # .. ", +" # - ", +" # + ", +" # + ", +" # - ", +" # . ", +" @#+# ", +" .##### ## ", +" ###### ## ", +" #####. ", +" .+#@ ", +" "}; diff --git a/data/pixmaps/toolbar/dotted-rest-breve.xpm b/data/pixmaps/toolbar/dotted-rest-breve.xpm new file mode 100644 index 0000000..a43eabd --- /dev/null +++ b/data/pixmaps/toolbar/dotted-rest-breve.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char * rest_breve_xpm[] = { +"9 21 2 1", +" c None", +". c black", +" ", +" ", +" ", +" ", +" ", +"....... ", +" ... ", +" ... ..", +" ... ..", +" ... ", +"....... ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/dotted-rest-crotchet.xpm b/data/pixmaps/toolbar/dotted-rest-crotchet.xpm new file mode 100644 index 0000000..c6e2e84 --- /dev/null +++ b/data/pixmaps/toolbar/dotted-rest-crotchet.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" - ", +" -- ", +" #. ", +" #+ ", +" .##@ ", +" ###- ", +" @##@ ## ", +" +#. ## ", +" .# ", +" @- ", +" .###. ", +" +#### ", +" ##- .. ", +" +# ", +" #- ", +" @ ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/dotted-rest-demisemi.xpm b/data/pixmaps/toolbar/dotted-rest-demisemi.xpm new file mode 100644 index 0000000..b3d5668 --- /dev/null +++ b/data/pixmaps/toolbar/dotted-rest-demisemi.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" ", +" #+ ", +" .#+ .- ", +" +#+@@ ", +" @. ", +" #. ", +" .#. .@ ## ", +" ##@ @@ ## ", +" @#@-# ", +" .+ ", +" +@ ", +" .#+ .# ", +" ##@.++ ", +" @##@#@ ", +" -+ ", +" #- ", +" -#. ", +" -+ ", +" +- ", +" @ ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/dotted-rest-hemidemisemi.xpm b/data/pixmaps/toolbar/dotted-rest-hemidemisemi.xpm new file mode 100644 index 0000000..f11dc67 --- /dev/null +++ b/data/pixmaps/toolbar/dotted-rest-hemidemisemi.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char * rest_hemidemisemi_xpm[] = { +"9 21 2 1", +" c None", +". c black", +" ", +" ", +" ", +" ", +" .. . ", +" .... ", +" . ", +" . .. ..", +" ... ..", +" . ", +". . ", +"... ", +" . ", +".. ", +".. ", +" . ", +". ", +". ", +". ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/dotted-rest-minim.xpm b/data/pixmaps/toolbar/dotted-rest-minim.xpm new file mode 100644 index 0000000..424e42b --- /dev/null +++ b/data/pixmaps/toolbar/dotted-rest-minim.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ## ", +" ###### ## ", +" ###### ", +" ########## ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/dotted-rest-quaver.xpm b/data/pixmaps/toolbar/dotted-rest-quaver.xpm new file mode 100644 index 0000000..c7bcd6a --- /dev/null +++ b/data/pixmaps/toolbar/dotted-rest-quaver.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" .#+ .# ", +" ##@.++ ## ", +" @##@#@ ## ", +" -+ ", +" #- ", +" -#. ", +" -+ ", +" +- ", +" # ", +" -@ ", +" ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/dotted-rest-semibreve.xpm b/data/pixmaps/toolbar/dotted-rest-semibreve.xpm new file mode 100644 index 0000000..7e460d8 --- /dev/null +++ b/data/pixmaps/toolbar/dotted-rest-semibreve.xpm @@ -0,0 +1,34 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" ", +" ", +" ", +" ########## ", +" ###### ", +" ###### ", +" ## ", +" ## ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/dotted-rest-semiquaver.xpm b/data/pixmaps/toolbar/dotted-rest-semiquaver.xpm new file mode 100644 index 0000000..8106327 --- /dev/null +++ b/data/pixmaps/toolbar/dotted-rest-semiquaver.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" ", +" ", +" ", +" .#. .@ ", +" ##@ @@ ", +" @#@-# ", +" .+ ## ", +" +@ ## ", +" .#+ .# ", +" ##@.++ ", +" @##@#@ ", +" -+ ", +" #- ", +" -#. ", +" -+ ", +" +- ", +" @ ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/dotted-semibreve.xpm b/data/pixmaps/toolbar/dotted-semibreve.xpm new file mode 100644 index 0000000..a8dff5a --- /dev/null +++ b/data/pixmaps/toolbar/dotted-semibreve.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" -####. ", +" @#- @#- ", +" +# .#+ ## ", +" +#. #+ ## ", +" -#@ -#@ ", +" .####- ", +" "}; diff --git a/data/pixmaps/toolbar/dotted-semiquaver.xpm b/data/pixmaps/toolbar/dotted-semiquaver.xpm new file mode 100644 index 0000000..0734632 --- /dev/null +++ b/data/pixmaps/toolbar/dotted-semiquaver.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" # ", +" #. ", +" ## ", +" ##+ ", +" # .+ ", +" #. .- ", +" #+ - ", +" ##- .. ", +" #.@. - ", +" # - . ", +" # .- ", +" # . ", +" # . ", +" # - ", +" # # ", +" # @ ", +" # . ", +" @#+# ", +" .##### ## ", +" ###### ## ", +" #####. ", +" .+#@ ", +" "}; diff --git a/data/pixmaps/toolbar/down-bow.xpm b/data/pixmaps/toolbar/down-bow.xpm new file mode 100644 index 0000000..6826845 --- /dev/null +++ b/data/pixmaps/toolbar/down-bow.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 9 6 1", +" c #010101", +". c #797979", +"X c #929292", +"o c Gray72", +"O c #d3d3d3", +"+ c None", +/* pixels */ +"+++++++++++", +"+O........O", +"+X X", +"+X X", +"+XXooooooXX", +"+XO++++++OX", +"+XO++++++OX", +"+XO++++++OX", +"+O++++++++O" +}; diff --git a/data/pixmaps/toolbar/event-delete.png b/data/pixmaps/toolbar/event-delete.png new file mode 100644 index 0000000..2cc8f6b Binary files /dev/null and b/data/pixmaps/toolbar/event-delete.png differ diff --git a/data/pixmaps/toolbar/event-delete.xpm b/data/pixmaps/toolbar/event-delete.xpm new file mode 100644 index 0000000..8a771a5 --- /dev/null +++ b/data/pixmaps/toolbar/event-delete.xpm @@ -0,0 +1,92 @@ +/* XPM */ +static char * event_delete_xpm[] = { +"32 32 57 1", +" c None", +". c #C40000", +"+ c #B50000", +"@ c #F70000", +"# c #CF0000", +"$ c #940000", +"% c #BF0000", +"& c #B20000", +"* c #FC0000", +"= c #D90000", +"- c #880000", +"; c #390000", +"> c #930000", +", c #BA0000", +"' c #C60000", +") c #F00000", +"! c #BD0000", +"~ c #540000", +"{ c #970000", +"] c #B90000", +"^ c #6F0000", +"/ c #BE0000", +"( c #C30000", +"_ c #B40000", +": c #F20000", +"< c #F40000", +"[ c #950000", +"} c #C80000", +"| c #E60000", +"1 c #C50000", +"2 c #6C0000", +"3 c #9E0000", +"4 c #C70000", +"5 c #990000", +"6 c #A70000", +"7 c #FD0000", +"8 c #E00000", +"9 c #C20000", +"0 c #B00000", +"a c #EB0000", +"b c #B60000", +"c c #830000", +"d c #A80000", +"e c #EA0000", +"f c #5B0000", +"g c #F30000", +"h c #BB0000", +"i c #5E0000", +"j c #DC0000", +"k c #8B0000", +"l c #FA0000", +"m c #E40000", +"n c #9F0000", +"o c #4B0000", +"p c #AD0000", +"q c #450000", +"r c #460000", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" .+ @# ", +" $%.& *=-; ", +" >,'& )!~ ", +" {].+ ).^ ", +" $/(_ :.^ ", +" $!.+ <.^ ", +" []}=|12 ", +" 3%445 ", +" 44'6 ", +" 789(10 ", +" *abcd,._ ", +" 7e]f [!(+ ", +" ghi $/.& ", +" *jk $]'& ", +" lmno {,.+ ", +" mpq >%( ", +" r ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/event-edit-advanced.png b/data/pixmaps/toolbar/event-edit-advanced.png new file mode 100644 index 0000000..e98b1a0 Binary files /dev/null and b/data/pixmaps/toolbar/event-edit-advanced.png differ diff --git a/data/pixmaps/toolbar/event-edit-advanced.xpm b/data/pixmaps/toolbar/event-edit-advanced.xpm new file mode 100644 index 0000000..e040017 --- /dev/null +++ b/data/pixmaps/toolbar/event-edit-advanced.xpm @@ -0,0 +1,409 @@ +/* XPM */ +static char * event_edit_advanced_xpm[] = { +"32 32 374 2", +" c None", +". c #868686", +"+ c #7D7D7D", +"@ c #777777", +"# c #6F6F6F", +"$ c #6A6A6A", +"% c #676767", +"& c #656565", +"* c #626262", +"= c #606060", +"- c #585858", +"; c #515151", +"> c #4A4A4A", +", c #484848", +"' c #C9C9C9", +") c #939393", +"! c #7A7A7A", +"~ c #FFFFFF", +"{ c #FEFEFE", +"] c #BABABA", +"^ c #707070", +"/ c #6E6E6E", +"( c #7793C6", +"_ c #556FD3", +": c #6D6D6D", +"< c #718DD5", +"[ c #6C6C6C", +"} c #B9B9B9", +"| c #6B6B6B", +"1 c #708CD4", +"2 c #FDFDFD", +"3 c #546ED1", +"4 c #708BD3", +"5 c #696969", +"6 c #FBFBFB", +"7 c #FAFAFA", +"8 c #F9F9F9", +"9 c #5773D9", +"0 c #536ECF", +"a c #536CCE", +"b c #6E89CF", +"c c #6F8AD1", +"d c #6F8BD2", +"e c #546ED2", +"f c #686868", +"g c #F7F7F7", +"h c #F5F5F5", +"i c #5B77E1", +"j c #4B62BA", +"k c #6D87CC", +"l c #6C86CB", +"m c #526BCB", +"n c #666666", +"o c #B7B7B7", +"p c #F4F4F4", +"q c #DFEDFF", +"r c #CFDCFF", +"s c #C2CDF0", +"t c #55699F", +"u c #506496", +"v c #6078B5", +"w c #4F68C4", +"x c #4F68C5", +"y c #6B86CA", +"z c #6D88CE", +"A c #B8B8B8", +"B c #B5B5B5", +"C c #B2B2B2", +"D c #E1EEFF", +"E c #D6E3FF", +"F c #C1CDF0", +"G c #A6B0CE", +"H c #A4AECC", +"I c #9DA6C2", +"J c #364787", +"K c #394A8C", +"L c #5C72AD", +"M c #667FC1", +"N c #6881C4", +"O c #5068C7", +"P c #F8F8F8", +"Q c #B1B1B1", +"R c #E0EEFF", +"S c #C3CFF2", +"T c #B4BEDF", +"U c #A1ABC8", +"V c #A0AAC7", +"W c #8E97B1", +"X c #3D4C73", +"Y c #3A496E", +"Z c #4054A0", +"` c #637CBB", +" . c #6780C2", +".. c #636363", +"+. c #F2F2F2", +"@. c #ACB6D6", +"#. c #ACB6D5", +"$. c #AFB9D9", +"%. c #9FA9C6", +"&. c #666C7E", +"*. c #13182E", +"=. c #384569", +"-. c #5D75B1", +";. c #FCFCFC", +">. c #F6F6F6", +",. c #F1F1F1", +"'. c #A6B0CF", +"). c #A7B1CF", +"!. c #ABB5D4", +"~. c #ADB8D7", +"{. c #9BA5C0", +"]. c #4B505E", +"^. c #05060C", +"/. c #1A2240", +"(. c #404244", +"_. c #BAC6E8", +":. c #A2ABC8", +"<. c #A3ACCA", +"[. c #A5AFCD", +"}. c #A8B2D1", +"|. c #ADB7D7", +"1. c #777F94", +"2. c #1E2025", +"3. c #000000", +"4. c #838383", +"5. c #3B3B3B", +"6. c #9AA4BF", +"7. c #9AA3BF", +"8. c #9DA6C3", +"9. c #A9B3D2", +"0. c #4F5462", +"a. c #383838", +"b. c #5F5F5F", +"c. c #B6B6B6", +"d. c #B4B4B4", +"e. c #B0B0B0", +"f. c #949DB7", +"g. c #959EB9", +"h. c #98A1BD", +"i. c #9BA5C1", +"j. c #9EA7C4", +"k. c #ABB6D5", +"l. c #828AA2", +"m. c #1C1E23", +"n. c #505050", +"o. c #5D5D5D", +"p. c #363636", +"q. c #5E5E5E", +"r. c #C7C7C7", +"s. c #9098B2", +"t. c #8F98B2", +"u. c #939CB7", +"v. c #99A2BE", +"w. c #9FA8C5", +"x. c #A7B1D0", +"y. c #A5AECC", +"z. c #514A3F", +"A. c #5D5548", +"B. c #6D6455", +"C. c #737373", +"D. c #5C5C5C", +"E. c #C0CCEF", +"F. c #8E97B0", +"G. c #8B94AD", +"H. c #8E96B0", +"I. c #919AB4", +"J. c #97A0BB", +"K. c #9BA4C0", +"L. c #A0A9C7", +"M. c #7C849A", +"N. c #494D5A", +"O. c #0F1012", +"P. c #524B40", +"Q. c #5F574A", +"R. c #716758", +"S. c #373737", +"T. c #5B5B5B", +"U. c #C5C5C5", +"V. c #8C95AE", +"W. c #939BB6", +"X. c #99A3BF", +"Y. c #737A8E", +"Z. c #1D1F24", +"`. c #474137", +" + c #4E473C", +".+ c #585144", +"++ c #665E4F", +"@+ c #786E5D", +"#+ c #7E7E7E", +"$+ c #3A3A3A", +"%+ c #595959", +"&+ c #C2C2C2", +"*+ c #8C94AD", +"=+ c #8D96AF", +"-+ c #9099B3", +";+ c #767E93", +">+ c #101113", +",+ c #494339", +"'+ c #575044", +")+ c #635A4D", +"!+ c #726858", +"~+ c #847967", +"{+ c #766750", +"]+ c #3D3D3D", +"^+ c #565656", +"/+ c #C0C0C0", +"(+ c #D0DCFF", +"_+ c #8891A9", +":+ c #868EA6", +"<+ c #676D80", +"[+ c #474B58", +"}+ c #3F434E", +"|+ c #353842", +"1+ c #0E0F11", +"2+ c #4D463D", +"3+ c #534C40", +"4+ c #5B5346", +"5+ c #655C4E", +"6+ c #827664", +"7+ c #928671", +"8+ c #88755B", +"9+ c #241D17", +"0+ c #555555", +"a+ c #969798", +"b+ c #B3B3B5", +"c+ c #86878B", +"d+ c #4A4D56", +"e+ c #3A3E49", +"f+ c #4D4D4D", +"g+ c #40392F", +"h+ c #3D372D", +"i+ c #3F382E", +"j+ c #423B31", +"k+ c #473F34", +"l+ c #4D4538", +"m+ c #554C3F", +"n+ c #5F5546", +"o+ c #6A5E4D", +"p+ c #4E4539", +"q+ c #6D5D46", +"r+ c #272319", +"s+ c #D5D5D5", +"t+ c #C6C6C6", +"u+ c #A4A4A3", +"v+ c #94928F", +"w+ c #85827E", +"x+ c #79756F", +"y+ c #6F6B63", +"z+ c #69645B", +"A+ c #463F33", +"B+ c #635C50", +"C+ c #645B4E", +"D+ c #675E50", +"E+ c #746A5A", +"F+ c #7F7462", +"G+ c #897E6B", +"H+ c #978A75", +"I+ c #A3957E", +"J+ c #B0A189", +"K+ c #A08866", +"L+ c #282117", +"M+ c #E0E0E0", +"N+ c #D3D3D3", +"O+ c #A5A4A1", +"P+ c #96938F", +"Q+ c #8A8680", +"R+ c #817C74", +"S+ c #7A746B", +"T+ c #766F64", +"U+ c #51493C", +"V+ c #756B5D", +"W+ c #776D5C", +"X+ c #7B7160", +"Y+ c #827765", +"Z+ c #8A7F6B", +"`+ c #948773", +" @ c #9E907A", +".@ c #A99B83", +"+@ c #B4A48B", +"@@ c #BEAE94", +"#@ c #A98D68", +"$@ c #2A2318", +"%@ c #4F4F4F", +"&@ c #DFDFDF", +"*@ c #D4D4D4", +"=@ c #B7B7B4", +"-@ c #AAA8A4", +";@ c #9F9B95", +">@ c #969189", +",@ c #8F897F", +"'@ c #8B8377", +")@ c #887F71", +"!@ c #615747", +"~@ c #897D6A", +"{@ c #8D816D", +"]@ c #918571", +"^@ c #988B76", +"/@ c #9F927C", +"(@ c #A89A83", +"_@ c #B9A98F", +":@ c #C2B196", +"<@ c #C9B89C", +"[@ c #AE9369", +"}@ c #2B2418", +"|@ c #464646", +"1@ c #E2E2E2", +"2@ c #D8D8D8", +"3@ c #CCCCCA", +"4@ c #C1BEBA", +"5@ c #B6B2AC", +"6@ c #ADA79F", +"7@ c #A59F94", +"8@ c #A1998C", +"9@ c #9E9485", +"0@ c #9D917F", +"a@ c #706452", +"b@ c #9E917B", +"c@ c #A2947E", +"d@ c #A79982", +"e@ c #AD9E86", +"f@ c #BAAA90", +"g@ c #C0B095", +"h@ c #C7B69A", +"i@ c #CCBB9E", +"j@ c #D2C0A3", +"k@ c #B49568", +"l@ c #2C251D", +"m@ c #3C3C3C", +"n@ c #B8B4A9", +"o@ c #B5AEA5", +"p@ c #AEA79D", +"q@ c #A79E90", +"r@ c #A2978A", +"s@ c #9E9382", +"t@ c #9B907E", +"u@ c #978A79", +"v@ c #958774", +"w@ c #928570", +"x@ c #93836E", +"y@ c #6E6150", +"z@ c #9B8870", +"A@ c #9E8B71", +"B@ c #A18E6F", +"C@ c #A38C6F", +"D@ c #A58E70", +"E@ c #AA916E", +"F@ c #AD946E", +"G@ c #B1936D", +"H@ c #B2966B", +"I@ c #B59669", +"J@ c #B7986A", +"K@ c #2D2519", +"L@ c #151511", +"M@ c #2F2720", +"N@ c #2E2A27", +"O@ c #2D261E", +"P@ c #2C2825", +"Q@ c #282421", +"R@ c #2A241D", +"S@ c #2A2723", +"T@ c #272320", +"U@ c #27231C", +"V@ c #26221C", +"W@ c #26231F", +"X@ c #27201A", +"Y@ c #28211A", +"Z@ c #2C251E", +"`@ c #29221A", +" # c #2D261B", +".# c #2B281C", +"+# c #2C281C", +"@# c #2C2519", +"## c #2D291D", +"$# c #090905", +" . + @ # $ % & * = - ; > , , ; ; ; ; ; ; ; ; ; ; ; ", +" @ ' ' ' ' ' ' ' ' ' ' ' ) ' ' ' ' ' ' ' ' ' ' ' ; ", +" ! ' ~ ~ ~ ~ ~ ~ ~ ~ { ~ ] ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ' ; ", +" ^ ' ~ ~ ~ ~ ~ ~ ~ ~ { ~ ] ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ' ; ", +" / ' ~ ~ ~ ~ ~ ~ ~ ~ { ~ ] ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ' ; ", +" / ' ~ ~ ~ ~ ~ ~ ~ ~ { ~ ] ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ' ; ( ( _ ", +" : ' ~ ~ ~ ~ ~ ~ ~ ~ { ~ ] ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ' ; < ( _ _ ", +" [ ) ] ] ] ] ] ] ] ] } ] ] ] ] ] ] ] ] ] ] ] ] _ < < _ _ ( ", +" | ' ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ] ~ ~ ~ ~ { { { { { 1 < _ _ ( ( _ ", +" $ ' ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ] ~ ~ { 2 2 2 2 2 3 4 3 1 1 _ ( _ ", +" 5 ' ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ] { 2 2 6 7 8 9 0 a b c d 3 e ( _ ", +" f ' ~ ~ ~ ~ ~ ~ ~ ~ ~ { } 2 6 8 g h i j j k l m a c 4 ( _ ", +" n ' ~ ~ ~ ~ ~ ~ ~ ~ { 2 o 7 g p q r s t u v w x y z a ( ", +" n ) ] ] ] ] ] ] ] } A o B C D E F G H I J K L M N O m ", +" & ' ~ ~ ~ ~ ~ ~ { 2 6 P Q R S T U V V U W X Y Z ` ._ ", +" ..' ~ ~ ~ ~ { 2 2 7 g +.q S @.#.$.$.V V %.&.*.=.-. ", +" * ' ~ ~ ~ { 2 ;.8 >.,.R S '.).!.~.$.$.V {.].^./.(. ", +" * ' ~ ~ { 2 ;.8 h D E _.:.<.[.}.!.$.$.|.1.2.3.4.5. ", +" = ' ~ { 2 6 P p R S 6.7.8.V <.G 9.~.$.9.0.3.4.! a. ", +" b.) } A c.d.e.q S f.g.h.i.j.U [.}.!.k.l.m.n.o.[ p. ", +" q.r.2 7 >.,.R S s.t.u.g.v.i.w.<.[.x.y.0.z.A.B.C.p. ", +" D.r.7 >.D E E.F.G.H.I.u.J.K.8.U L.M.N.O.P.Q.R.@ S. ", +" T.U.>.q S t.V.G.G.G.W W.g.h.X.v.Y.Z.`. +.+++@+#+$+ ", +" %+&+E S F.G.G.G.G.G.*+=+-+-+;+N.>+,+ +'+)+!+~+{+]+ ", +" ^+/+(+=+_+_+_+_+_+:+<+[+}+|+1+2+ +3+4+5+!+6+7+8+9+ ", +" 0+a+b+c+d+e+e+e+e+|+1+f+g+h+h+i+j+k+l+m+n+o+p+q+r+ ", +" - ' ~ s+t+c.u+v+w+x+y+z+A+B+C+D+B.E+F+G+H+I+J+K+L+ ", +" n.A M+N+U.B O+P+Q+R+S+T+U+V+W+X+Y+Z+`+ @.@+@@@#@$@ ", +" %@o &@*@r.=@-@;@>@,@'@)@!@~@{@]@^@/@(@J+_@:@<@[@}@ ", +" |@} 1@2@3@4@5@6@7@8@9@0@a@b@c@d@e@+@f@g@h@i@j@k@l@ ", +" m@n@o@p@q@r@s@t@u@v@w@x@y@z@A@B@C@D@E@F@G@H@I@J@K@ ", +" L@M@N@O@P@Q@R@S@T@U@V@W@X@Y@Z@`@ #$@T@.#+#@###K@$# "}; diff --git a/data/pixmaps/toolbar/event-edit.png b/data/pixmaps/toolbar/event-edit.png new file mode 100644 index 0000000..822ba5a Binary files /dev/null and b/data/pixmaps/toolbar/event-edit.png differ diff --git a/data/pixmaps/toolbar/event-edit.xpm b/data/pixmaps/toolbar/event-edit.xpm new file mode 100644 index 0000000..37302c2 Binary files /dev/null and b/data/pixmaps/toolbar/event-edit.xpm differ diff --git a/data/pixmaps/toolbar/event-insert-tempo.png b/data/pixmaps/toolbar/event-insert-tempo.png new file mode 100644 index 0000000..8e69b38 Binary files /dev/null and b/data/pixmaps/toolbar/event-insert-tempo.png differ diff --git a/data/pixmaps/toolbar/event-insert-timesig.png b/data/pixmaps/toolbar/event-insert-timesig.png new file mode 100644 index 0000000..c56a31b Binary files /dev/null and b/data/pixmaps/toolbar/event-insert-timesig.png differ diff --git a/data/pixmaps/toolbar/event-insert.png b/data/pixmaps/toolbar/event-insert.png new file mode 100644 index 0000000..03fd5d1 Binary files /dev/null and b/data/pixmaps/toolbar/event-insert.png differ diff --git a/data/pixmaps/toolbar/eventfilter.xpm b/data/pixmaps/toolbar/eventfilter.xpm new file mode 100644 index 0000000..d60ae96 --- /dev/null +++ b/data/pixmaps/toolbar/eventfilter.xpm @@ -0,0 +1,124 @@ +/* XPM */ +static char * eventfilter_xpm[] = { +"32 32 89 1", +" c None", +". c #000000", +"+ c #181818", +"@ c #171717", +"# c #161616", +"$ c #959595", +"% c #ABABAB", +"& c #C0C0C0", +"* c #D0D0D0", +"= c #D1D1D1", +"- c #D2D2D2", +"; c #D3D3D3", +"> c #040404", +", c #0F0F0F", +"' c #939393", +") c #949494", +"! c #A0A0A0", +"~ c #A3A3A3", +"{ c #AFAFAF", +"] c #BBBBBB", +"^ c #CACACA", +"/ c #CECECE", +"( c #C1C1C1", +"_ c #070707", +": c #242424", +"< c #A6A6A6", +"[ c #AAAAAA", +"} c #ADADAD", +"| c #B7B7B7", +"1 c #BDBDBD", +"2 c #C2C2C2", +"3 c #C5C5C5", +"4 c #C9C9C9", +"5 c #CDCDCD", +"6 c #1F1F1F", +"7 c #A2A2A2", +"8 c #A7A7A7", +"9 c #A9A9A9", +"0 c #B0B0B0", +"a c #B6B6B6", +"b c #BEBEBE", +"c c #C3C3C3", +"d c #CCCCCC", +"e c #060606", +"f c #757575", +"g c #9E9E9E", +"h c #A8A8A8", +"i c #ACACAC", +"j c #B3B3B3", +"k c #B9B9B9", +"l c #C6C6C6", +"m c #CBCBCB", +"n c #BABABA", +"o c #050505", +"p c #0B0B0B", +"q c #828282", +"r c #B2B2B2", +"s c #C7C7C7", +"t c #141414", +"u c #989898", +"v c #BFBFBF", +"w c #101010", +"x c #1E1E1E", +"y c #7A7A7A", +"z c #BCBCBC", +"A c #565656", +"B c #020202", +"C c #5F5F5F", +"D c #030303", +"E c #0E0E0E", +"F c #393939", +"G c #090909", +"H c #717171", +"I c #AEAEAE", +"J c #C8C8C8", +"K c #A5A5A5", +"L c #B1B1B1", +"M c #888888", +"N c #CFCFCF", +"O c #B4B4B4", +"P c #8B8B8B", +"Q c #C4C4C4", +"R c #A1A1A1", +"S c #9B9B9B", +"T c #010101", +"U c #B5B5B5", +"V c #8D8D8D", +"W c #868686", +"X c #898989", +" ", +" ", +" ", +" ", +" .......... ", +" .+@#@$%&*=-;;;.... ", +" >,.')!~{]&^/=;;;;;;(_.. ", +" :''!<[}|12345*;;;;;;;;;. ", +" 6'789%0abc4d/*;;;;;;;;;&e ", +" .fghi0jk](lm/*;;;;;;;;;no ", +" .pq!9rak12sd5*;;;;;;;;;.. ", +" .t'uhan1vl^5=;;;;;;;... ", +" .w#xy&ckS. ", +" T2cU). ", +" .32rV. ", +" .lvrM. ", +" .m(UW. ", +" .=&OW. ", +" .=]UX. ", +" .... ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/eventlist.png b/data/pixmaps/toolbar/eventlist.png new file mode 100644 index 0000000..21a203d Binary files /dev/null and b/data/pixmaps/toolbar/eventlist.png differ diff --git a/data/pixmaps/toolbar/eventlist.xpm b/data/pixmaps/toolbar/eventlist.xpm new file mode 100644 index 0000000..f985011 --- /dev/null +++ b/data/pixmaps/toolbar/eventlist.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"22 18 6 1", +"X c #000000", +"O c #404040", +". c None", +"r c #d04040", +"o c #808080", +" c None", +/* pixels */ +" XXXXXXXXXXXXX ", +" X...........X ", +" X...........X ", +" X..XOO.OO...X ", +" X..Ooo.Oo...X ", +" X...........X ", +" X..XOO.OOO..X ", +" X..Ooo.Ooo..X ", +" X...........X ", +" X..XOO..OO..X ", +" X..Ooo..Oo..X ", +" X...........X ", +" X..XOO.OO...X ", +" X..Ooo.Oo...X ", +" X...........X ", +" X...........X ", +" X...........X ", +" XXXXXXXXXXXXX " +}; diff --git a/data/pixmaps/toolbar/group-beam.xpm b/data/pixmaps/toolbar/group-beam.xpm new file mode 100644 index 0000000..af8fbf0 --- /dev/null +++ b/data/pixmaps/toolbar/group-beam.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" ", +" ######### ", +" ######### ", +" # # ", +" # # ", +" # # ", +" # # ", +" # # ", +" # # ", +" # # ", +" -@## -@## ", +" +#### +#### ", +" ##### ##### ", +" .#@. .#@. ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/group-chord.xpm b/data/pixmaps/toolbar/group-chord.xpm new file mode 100644 index 0000000..4248f23 --- /dev/null +++ b/data/pixmaps/toolbar/group-chord.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" -@## ", +" +#### ", +" ##### ", +" .#@.# ", +" -@## ", +" +#### ", +" ##### ", +" .#@. ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/group-crescendo.xpm b/data/pixmaps/toolbar/group-crescendo.xpm new file mode 100644 index 0000000..0177a76 --- /dev/null +++ b/data/pixmaps/toolbar/group-crescendo.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 18 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" ", +" ", +" ", +" .-### ", +" .-##-. ", +" .-##-. ", +" ###+. ", +" .-##-. ", +" .-##-. ", +" .-### ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/group-decrescendo.xpm b/data/pixmaps/toolbar/group-decrescendo.xpm new file mode 100644 index 0000000..f652728 --- /dev/null +++ b/data/pixmaps/toolbar/group-decrescendo.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 18 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" ", +" ", +" ", +" ###+. ", +" .-##-. ", +" .-##-. ", +" .-### ", +" .-##-. ", +" .-##-. ", +" ###+. ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/group-grace.xpm b/data/pixmaps/toolbar/group-grace.xpm new file mode 100644 index 0000000..521c7f8 --- /dev/null +++ b/data/pixmaps/toolbar/group-grace.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" -## #. ", +" @##+@# ## ", +" #@- # #.- ", +" # # # @ ", +" # # # .- ", +" # @## # @ ", +" @## #### # # ", +" #### @#@ # # ", +" @#@ # -- ", +" # . ", +" -@## ", +" +#### ", +" ##### ", +" .#@. ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/group-ottava.xpm b/data/pixmaps/toolbar/group-ottava.xpm new file mode 100644 index 0000000..55d5555 --- /dev/null +++ b/data/pixmaps/toolbar/group-ottava.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 18 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" ", +" ", +" ### ", +" #. -@ ", +" # #@ ", +" ##- ## # +# # ", +" +.#. # -# #- #@ ", +" ++ # # #- +- # ", +" # # #-# # +@ ", +" #. #- #+. # .#+ ", +" .##@ # .## +# ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/group-simple-tuplet.xpm b/data/pixmaps/toolbar/group-simple-tuplet.xpm new file mode 100644 index 0000000..c82bf8e --- /dev/null +++ b/data/pixmaps/toolbar/group-simple-tuplet.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" ", +" ############# ", +" ############# ", +" # # # ", +" # # # ", +" # # # ", +" # # # ", +" # # # ", +" # # # ", +" # # # ", +" -@## -@## -@## ", +" +#### +#### +#### ", +" ##### ##### ##### ", +" .#@. .#@. .#@. ", +" ", +" #### ", +" #- ", +" ##. ", +" @# ", +" . @# ", +" +##. ", +" "}; diff --git a/data/pixmaps/toolbar/group-slur.xpm b/data/pixmaps/toolbar/group-slur.xpm new file mode 100644 index 0000000..5760f49 --- /dev/null +++ b/data/pixmaps/toolbar/group-slur.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" -+##### ", +" ############# ", +" ######@- # ", +" # # # ", +" # # # ", +" # # # ", +" # # # ", +" # # # ", +" # # -@## ", +" # -@## +#### ", +" -@## +#### ##### ", +" +#### ##### .#@. ", +" ##### .#@. ", +" .#@. # ", +" .@ ", +" # .@ ", +" .## @+@ ", +" -####-. ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/group-tuplet.xpm b/data/pixmaps/toolbar/group-tuplet.xpm new file mode 100644 index 0000000..163e831 --- /dev/null +++ b/data/pixmaps/toolbar/group-tuplet.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" ", +" ############# ", +" ############# ", +" # # # ", +" # # # ", +" # # # ", +" # # # ", +" # # # ", +" # # # ", +" # # # ", +" -@## -@## -@## ", +" +#### +#### +#### ", +" ##### ##### ##### ", +" .#@. .#@. .#@. ", +" ", +" ###@ ", +" .# ", +" +#- ", +" # ", +" ", +" #. ", +" "}; diff --git a/data/pixmaps/toolbar/group-unbeam.xpm b/data/pixmaps/toolbar/group-unbeam.xpm new file mode 100644 index 0000000..00ad0b7 --- /dev/null +++ b/data/pixmaps/toolbar/group-unbeam.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" #. #. ", +" ## ## ", +" #.- #.- ", +" # @ # @ ", +" # .- # .- ", +" # @ # @ ", +" # # # # ", +" # # # # ", +" # -- # -- ", +" # . # . ", +" -@## -@## ", +" +#### +#### ", +" ##### ##### ", +" .#@. .#@. ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/guitarchord.png b/data/pixmaps/toolbar/guitarchord.png new file mode 100644 index 0000000..72949fe Binary files /dev/null and b/data/pixmaps/toolbar/guitarchord.png differ diff --git a/data/pixmaps/toolbar/hemidemisemi.xpm b/data/pixmaps/toolbar/hemidemisemi.xpm new file mode 100644 index 0000000..3683ae8 --- /dev/null +++ b/data/pixmaps/toolbar/hemidemisemi.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" # ", +" #@ ", +" ##@ ", +" ###@ ", +" # @@ ", +" #@ .- ", +" ##@ . ", +" ###@ . ", +" # @@ . ", +" #@ .- ", +" ##@ . ", +" ###@ . ", +" # .@@ . ", +" #@ .-. ", +" ##@ - ", +" ###@ . ", +" # .@@ . ", +" # .-. ", +" @#+# - ", +" .##### . ", +" ###### . ", +" #####. . ", +" .+#@ ", +" "}; diff --git a/data/pixmaps/toolbar/insert_audio_into_track.xpm b/data/pixmaps/toolbar/insert_audio_into_track.xpm new file mode 100644 index 0000000..89eb1cc --- /dev/null +++ b/data/pixmaps/toolbar/insert_audio_into_track.xpm @@ -0,0 +1,60 @@ +/* XPM */ +static char * insert_audio_into_track_xpm[] = { +"22 18 39 1", +" c None", +". c #666666", +"+ c #939393", +"@ c #FF0400", +"# c #9E0606", +"$ c #E6E6E6", +"% c #C7D485", +"& c #CBD692", +"* c #C7D484", +"= c #C9D58C", +"- c #B7B7B7", +"; c #C4C4C4", +"> c #6D8516", +", c #B6B6B7", +"' c #A9A9B8", +") c #B4B4B7", +"! c #605DEA", +"~ c #4541D0", +"{ c #6A67F4", +"] c #5D5AE7", +"^ c #4B47D6", +"/ c #6865F2", +"( c #5D59E7", +"_ c #4D49D7", +": c #6B68F5", +"< c #6864F2", +"[ c #4B48D6", +"} c #625EEC", +"| c #5956E3", +"1 c #3734C2", +"2 c #403CCB", +"3 c #6360ED", +"4 c #3D3AC8", +"5 c #5F5CE9", +"6 c #4340CE", +"7 c #5D5AE8", +"8 c #4A47D5", +"9 c #6966F3", +"0 c #5E5AE8", +"......................", +".++@#$$.%%%%%%%%%%%%%.", +".++#@$$.%&*%***%%*%=%.", +"........-------------.", +".++;;$$.>>>>>>>>>>>>>.", +".++;;$$.>>>>>>>>>>>>>.", +"........----,-')-----.", +" !~ ", +" {{]^ ", +" {{{/(_ ", +" {{:::<][ ", +" {{{::{}/|1 ", +" ::{2 ", +" {:34 ", +" {:56 ", +" ::78 ", +" {:90 ", +" {:{/ "}; diff --git a/data/pixmaps/toolbar/join.xpm b/data/pixmaps/toolbar/join.xpm new file mode 100644 index 0000000..4e9c3d4 --- /dev/null +++ b/data/pixmaps/toolbar/join.xpm @@ -0,0 +1,36 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"22 22 8 1", +" c Gray0", +". c #080000", +"X c #5d0000", +"o c #c5d37d", +"O c #8c0800", +"+ c #c57dd3", +"@ c Gray100", +"# c None", +/* pixels */ +"######################", +"######################", +"######################", +"######################", +"## ##", +"## ++++++ oooooooo ##", +"## +++++++ ooooooo ##", +"## ++++++++ oooooo ##", +"## +++++++++ ooooo ##", +"## ++++++++ oooooo ##", +"## +++++++ ooooooo ##", +"## ++++++ oooooooo ##", +"## +++++ ooooooooo ##", +"## ++++++ oooooooo ##", +"## +++++++ ooooooo ##", +"## ++++++++ oooooo ##", +"## ##", +"######################", +"######################", +"######################", +"######################", +"######################" +}; diff --git a/data/pixmaps/toolbar/key-green.png b/data/pixmaps/toolbar/key-green.png new file mode 100644 index 0000000..42c39e8 Binary files /dev/null and b/data/pixmaps/toolbar/key-green.png differ diff --git a/data/pixmaps/toolbar/key-white.png b/data/pixmaps/toolbar/key-white.png new file mode 100644 index 0000000..d5098c5 Binary files /dev/null and b/data/pixmaps/toolbar/key-white.png differ diff --git a/data/pixmaps/toolbar/linear-layout.xpm b/data/pixmaps/toolbar/linear-layout.xpm new file mode 100644 index 0000000..7fdbfa0 --- /dev/null +++ b/data/pixmaps/toolbar/linear-layout.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char * linear_layout_1_xpm[] = { +"22 22 16 1", +" c None", +". c #FFFFFF", +"+ c #F8F7EF", +"@ c #B1B1B1", +"# c #000000", +"$ c #F6F5ED", +"% c #F6F6ED", +"& c #F7F7EE", +"* c #F4F3EA", +"= c #F6F4EB", +"- c #F6F5EC", +"; c #F7F6EE", +"> c #F2F2F7", +", c #AFAACD", +"' c #FCFCFD", +") c #2C1F7D", +" ", +" ", +" ", +" ", +" ", +" ", +" ....................+", +" .........@.......@..+", +" .####################", +" .....@.........@$%&++", +" .####################", +" ...@........@**=-%;&+", +" .####################", +" .....................", +" .............>,'.....", +" )) ", +" ))))) )))) ", +" ))))))))))))))) ", +" ))))))))))))))) ", +" )))) ))) ", +" )) ", +" "}; diff --git a/data/pixmaps/toolbar/manage-audio-segments.png b/data/pixmaps/toolbar/manage-audio-segments.png new file mode 100644 index 0000000..27f70df Binary files /dev/null and b/data/pixmaps/toolbar/manage-audio-segments.png differ diff --git a/data/pixmaps/toolbar/manage-audio-segments.xpm b/data/pixmaps/toolbar/manage-audio-segments.xpm new file mode 100644 index 0000000..e3a922a --- /dev/null +++ b/data/pixmaps/toolbar/manage-audio-segments.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * manage_audio_segments_xpm[] = { +"22 22 8 1", +" c None", +"# c #000000", +"@ c #a0a0a0", +"b c #a0a0f0", +"x c #d0d0d0", +"% c #C7D485", +"- c #B7B7B7", +". c #666666", +" # ", +" # @ ", +" # # # ", +" # ##@ #x ", +" #@###@x#@ x ", +" ####@##@#@##@### ", +" # #@@##@# # ", +" # ## # ", +" @ # ", +" # ", +" x ", +" ", +" .--------------. ", +" .%%%%%%%%%%%%%%. ", +" .%%%%%%%%%%%%%%. ", +" .--------------. ", +" .%%%%%%%%%%%%%%. ", +" .%%%%%%%%%%%%%%. ", +" .--------------. ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/manage-midi-devices.xpm b/data/pixmaps/toolbar/manage-midi-devices.xpm new file mode 100644 index 0000000..e765c19 --- /dev/null +++ b/data/pixmaps/toolbar/manage-midi-devices.xpm @@ -0,0 +1,248 @@ +/* XPM */ +static char * manage_midi_devices1_2_xpm[] = { +"22 22 223 2", +" c None", +". c #020200", +"+ c #000000", +"@ c #080B00", +"# c #171F02", +"$ c #354705", +"% c #273504", +"& c #63830E", +"* c #749211", +"= c #6E8A10", +"- c #85A614", +"; c #A5C02E", +"> c #C1D450", +", c #B6CC41", +"' c #BAD046", +") c #C6DE44", +"! c #090909", +"~ c #314306", +"{ c #44580B", +"] c #647C1A", +"^ c #5C7415", +"/ c #6C8222", +"( c #7A9125", +"_ c #C5DD4E", +": c #B1CC39", +"< c #BAD439", +"[ c #BDDB32", +"} c #FFFFFF", +"| c #020202", +"1 c #DADADA", +"2 c #050505", +"3 c #B4B4B4", +"4 c #C4C4C4", +"5 c #020400", +"6 c #181D09", +"7 c #A7C087", +"8 c #4D7113", +"9 c #5A7D16", +"0 c #AED027", +"a c #788F24", +"b c #7D9628", +"c c #8FE31B", +"d c #93D318", +"e c #8CDB16", +"f c #89E917", +"g c #010101", +"h c #D2D2D2", +"i c #D7D7D7", +"j c #0A0E01", +"k c #1E260C", +"l c #EFF2EA", +"m c #3C5A07", +"n c #60801E", +"o c #799023", +"p c #799124", +"q c #99FF00", +"r c #A4C91D", +"s c #ADD31E", +"t c #A5D91D", +"u c #030303", +"v c #FCFCFC", +"w c #D5D5D5", +"x c #050800", +"y c #090C04", +"z c #426208", +"A c #577512", +"B c #799123", +"C c #7A9124", +"D c #84EC15", +"E c #8EE518", +"F c #FDFDFD", +"G c #E7E7E7", +"H c #040600", +"I c #0E1106", +"J c #3D6006", +"K c #537211", +"L c #789023", +"M c #829C24", +"N c #A4C81A", +"O c #A3C712", +"P c #7FEF15", +"Q c #FEFEFE", +"R c #040404", +"S c #DEDEDE", +"T c #010100", +"U c #1A2010", +"V c #3D6306", +"W c #517012", +"X c #788F23", +"Y c #7A941D", +"Z c #A6D519", +"` c #93E10D", +" . c #A9D41D", +".. c #090C00", +"+. c #080808", +"@. c #0C0C0C", +"#. c #EEEEEE", +"$. c #161B0B", +"%. c #3E6306", +"&. c #5B7516", +"*. c #7B9420", +"=. c #7E991D", +"-. c #95E018", +";. c #92E114", +">. c #AADE12", +",. c #131B01", +"'. c #202020", +"). c #F5F5F5", +"!. c #0E1206", +"~. c #426809", +"{. c #5E7B1A", +"]. c #80981F", +"^. c #829A21", +"/. c #85E815", +"(. c #A7D51C", +"_. c #343534", +":. c #2A2B2A", +"<. c #393A39", +"[. c #4B4B4B", +"}. c #232423", +"|. c #45640B", +"1. c #718D1F", +"2. c #809D18", +"3. c #809F18", +"4. c #AED21F", +"5. c #AACE1D", +"6. c #80ED15", +"7. c #ACD21E", +"8. c #020300", +"9. c #FBFBFB", +"0. c #FBFBF9", +"a. c #F9F9F5", +"b. c #F5F7EE", +"c. c #EEF1DF", +"d. c #E3E8C7", +"e. c #D8E0AD", +"f. c #D3DF9A", +"g. c #B6CB5A", +"h. c #ADC63C", +"i. c #A7D324", +"j. c #8BAE13", +"k. c #AFD31F", +"l. c #B7D343", +"m. c #ABD01E", +"n. c #82F609", +"o. c #C0DB16", +"p. c #233003", +"q. c #F5F5F2", +"r. c #E9EEDB", +"s. c #E1EABB", +"t. c #CDE17A", +"u. c #BBD64E", +"v. c #B4D042", +"w. c #ADCF24", +"x. c #91E516", +"y. c #97C016", +"z. c #AFD322", +"A. c #B9D633", +"B. c #AED531", +"C. c #86FD03", +"D. c #C6DE16", +"E. c #141B01", +"F. c #070A01", +"G. c #E5E5E5", +"H. c #DCDCDC", +"I. c #F6F6F6", +"J. c #DCDED3", +"K. c #CFD8A8", +"L. c #C9DE74", +"M. c #BCE130", +"N. c #A7E415", +"O. c #87FF00", +"P. c #8FD215", +"Q. c #BADE25", +"R. c #B2DC40", +"S. c #7FF111", +"T. c #E1EC0C", +"U. c #2B3D06", +"V. c #848484", +"W. c #1B210C", +"X. c #1E270A", +"Y. c #1C2704", +"Z. c #1F2A04", +"`. c #1F2A05", +" + c #1A2304", +".+ c #141B03", +"++ c #0E1302", +"@+ c #3F5109", +"#+ c #A6D715", +"$+ c #B4E40E", +"%+ c #CAE30A", +"&+ c #C2D127", +"*+ c #C6D90A", +"=+ c #A6D433", +"-+ c #A4E43E", +";+ c #86FD02", +">+ c #F9F905", +",+ c #3C4911", +"'+ c #6B720A", +")+ c #BBC616", +"!+ c #C7CB25", +"~+ c #CED28A", +"{+ c #E0E305", +"]+ c #C8CF91", +"^+ c #C8CE04", +"/+ c #C0DC8F", +"(+ c #DEE004", +"_+ c #BCDC72", +":+ c #FAFF00", +"<+ c #475F0C", +"[+ c #686638", +"}+ c #FCF8AF", +"|+ c #F6FF00", +"1+ c #839715", +"2+ c #18180D", +"3+ c #CCD200", +"4+ c #141300", +"5+ c #C7CE00", +"6+ c #272609", +"7+ c #0C0B00", +"8+ c #CDDC00", +"9+ c #87933E", +"0+ c #809420", +" ", +" ", +" . + @ # + $ % % + % + + ", +" & * = - - - ; > , ' ) + ", +"+ + + + + ! + + + + + ~ { ] ^ / ( _ : < [ + ", +"+ } + | 1 + 2 3 4 5 6 7 8 9 0 a b c d e f + ", +"+ } + + } + g h i j k l m n 0 o p q r s t + ", +"+ } + + } + u v w x y } z A 0 B C q q D E + ", +"+ F + + } + u } G H I } J K 0 L M q N O P + ", +"+ Q + + } + R } S T U } V W 0 X Y q Z ` ...", +"+ } + +.F + @.} #.+ $.} %.&.0 *.=.q -.;.>.,.", +"+ } + R F + '.} ).+ !.Q ~.{.0 ].^.P P /.(.+ ", +"+ } _.:.Q <.[.} } T }.Q |.1.0 2.3.4.5.6.7.+ ", +"8.} } F 9.0.a.b.c.d.e.f.g.h.i.j.k.l.m.n.o.p.", +"H F } } } Q v q.r.s.t.u.v.w.x.y.z.A.B.C.D.E.", +"F.1 } G.H.} I.J.K.L.M.N.P O.O.P.P Q.R.S.T.U.", +"V.W.X.Y.Z.`. +.+++@+#+$+%+&+*+=+q -+q ;+>+,+", +" '+)+!+~+{+]+^+/+(+_+:+<+", +" [+}+} |+} |+} |+} } 1+", +" 2+3+4+5+6+3+7+8+9+0+", +" ", +" "}; diff --git a/data/pixmaps/toolbar/manage-synth-plugins.png b/data/pixmaps/toolbar/manage-synth-plugins.png new file mode 100644 index 0000000..f618822 Binary files /dev/null and b/data/pixmaps/toolbar/manage-synth-plugins.png differ diff --git a/data/pixmaps/toolbar/manage-synth-plugins.xpm b/data/pixmaps/toolbar/manage-synth-plugins.xpm new file mode 100644 index 0000000..4ea96e2 --- /dev/null +++ b/data/pixmaps/toolbar/manage-synth-plugins.xpm @@ -0,0 +1,112 @@ +/* XPM */ +static char * manage_synth_plugins1_xpm[] = { +"23 22 87 1", +" c None", +". c #FF6D0B", +"+ c #AA8974", +"@ c #9E9FA1", +"# c #A8A9AB", +"$ c #ACADAE", +"% c #909195", +"& c #FFCAAA", +"* c #EF4D45", +"= c #9D9EA0", +"- c #ADADAF", +"; c #D6D6D8", +"> c #B8B9BB", +", c #FF944C", +"' c #C3D0F9", +") c #C3D1FE", +"! c #BFCEFD", +"~ c #B6C3EF", +"{ c #F11B10", +"] c #A6A7A9", +"^ c #D2DAF1", +"/ c #A6B0D1", +"( c #C3C4C5", +"_ c #FFB5A1", +": c #C5D1FB", +"< c #EAEEFF", +"[ c #D5DEFF", +"} c #BFCEFE", +"| c #B3C0EB", +"1 c #9CA0AE", +"2 c #BAC9FA", +"3 c #C2D0FE", +"4 c #D5DEFE", +"5 c #C2CDF0", +"6 c #C1CFFF", +"7 c #B9C8F9", +"8 c #CBD4F1", +"9 c #CBD7FD", +"0 c #BECDFC", +"a c #C8D4F9", +"b c #000000", +"c c #ADBAE3", +"d c #B9C8F8", +"e c #DC0A00", +"f c #C1CDF6", +"g c #BFCDFE", +"h c #B6C1E7", +"i c #BECDFD", +"j c #C0CEFE", +"k c #9AA2C2", +"l c #6F6F70", +"m c #A1ABCD", +"n c #B0BCE1", +"o c #B7C5F3", +"p c #B6C4F3", +"q c #B3B5B6", +"r c #A9B4D5", +"s c #ADAFB2", +"t c #9EA2B0", +"u c #989CA9", +"v c #D0B9BC", +"w c #ADB3C6", +"x c #B0B7CE", +"y c #D0CEE4", +"z c #120000", +"A c #BCCBFC", +"B c #A9B3D2", +"C c #AAAAAC", +"D c #C2D1FD", +"E c #6A6A6A", +"F c #C1CFFE", +"G c #9FA2AC", +"H c #8B8B8D", +"I c #C1CFFD", +"J c #BCC6E3", +"K c #BAC5E8", +"L c #C0CFFF", +"M c #BBC9F8", +"N c #C3D1FF", +"O c #C6D3FF", +"P c #C2D1FF", +"Q c #B7C5F4", +"R c #BAC9F9", +"S c #BBCAFB", +"T c #A9AEBF", +"U c #A8B1CE", +"V c #A5AECA", +" ", +" ...+ @#$% ", +" ..&&**.+ =-;;;;>% ", +" .,')!~{. ]^')!/;( ", +" ._:<<[}|{+ 1;:<<[}/2# ", +" .&3<4567{. 1;3<896/[1 ", +" .&0[abcde. 1;0[bfg%[% ", +" .&hij/bke+ l;/bmi2%2% ", +" _,&nopmbe lqbr/%%21 ", +" __stuee+ l1;[221% ", +" +%%+ 111% ", +" ..._ ...+ ", +" .._*b_++ ..*{{{.+ ", +" .,vwbx1+ .*')!~{. ", +" ._y c #8F7311", +", c #D0A040", +"' c #996B1C", +" ", +" ................. ", +" ++@+++@+++@+++@++ ", +" . ", +" .#. ... ", +" . .###.$%&. ", +" .#*...*#*.$&$. ", +" .##*$%=.* .&$$. ", +" .#*$&=. .&-.. ", +" . ..;$&>.;-. ", +" .,. ...&&-. ", +" .,,,. .'-&&$. ", +" .,. .&$-.;&$. ", +" . .&$-. .;&=. ", +" .&;$. .;&=. ", +" ++@+.&;-.+@+++.$&- ", +" ....&--.........-- ", +" "}; diff --git a/data/pixmaps/toolbar/matrix.png b/data/pixmaps/toolbar/matrix.png new file mode 100644 index 0000000..3de07c0 Binary files /dev/null and b/data/pixmaps/toolbar/matrix.png differ diff --git a/data/pixmaps/toolbar/matrix.xpm b/data/pixmaps/toolbar/matrix.xpm new file mode 100644 index 0000000..91fd854 --- /dev/null +++ b/data/pixmaps/toolbar/matrix.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"22 18 6 1", +"X c #000000", +"O c #808080", +". c #c0c0c0", +"r c #d04040", +"o c #d0a040", +" c None", +/* pixels */ +" ", +" XXXXXXXXXXXXXXXXX ", +" ..O...O...O...O.. ", +" ", +" XXXXX ", +" XrrrX ", +" XXXXX XXXXX ", +" XrrrX ", +" XXXXX ", +" ", +" XXXXXXXXXX ", +" XooooooooX ", +" XXXXXXXXXX ", +" ", +" ", +" ..O...O...O...O.. ", +" XXXXXXXXXXXXXXXXX " +" " +}; diff --git a/data/pixmaps/toolbar/menu-3-3-hemidemisemi.xpm b/data/pixmaps/toolbar/menu-3-3-hemidemisemi.xpm new file mode 100644 index 0000000..bbdaf42 --- /dev/null +++ b/data/pixmaps/toolbar/menu-3-3-hemidemisemi.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char * scratch[] = { +"14 13 3 1", +" c none", +"# c black", +"x c black", +" ", +" xxx ### ", +" xx # # ", +" xxx #### ", +" xx # # ", +" xxx #### ", +" # # ", +" #### ", +" # # ", +" #### # ", +" ##### ", +" #### ", +" "}; diff --git a/data/pixmaps/toolbar/menu-3-breve.xpm b/data/pixmaps/toolbar/menu-3-breve.xpm new file mode 100644 index 0000000..6bf05b5 --- /dev/null +++ b/data/pixmaps/toolbar/menu-3-breve.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char * scratch[] = { +"14 13 3 1", +" c none", +"# c black", +"x c black", +" ", +" xxx ", +" xx ", +" xxx ", +" xx ", +" xxx ", +" ", +" ", +" # #### # ", +" ### ### ", +" ### ### ", +" # #### # ", +" "}; diff --git a/data/pixmaps/toolbar/menu-3-crotchet.xpm b/data/pixmaps/toolbar/menu-3-crotchet.xpm new file mode 100644 index 0000000..942889d --- /dev/null +++ b/data/pixmaps/toolbar/menu-3-crotchet.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char * scratch[] = { +"14 13 3 1", +" c none", +"# c black", +"x c black", +" ", +" xxx ", +" xx # ", +" xxx # ", +" xx # ", +" xxx # ", +" # ", +" # ", +" # ", +" #### ", +" ##### ", +" #### ", +" "}; diff --git a/data/pixmaps/toolbar/menu-3-demisemi.xpm b/data/pixmaps/toolbar/menu-3-demisemi.xpm new file mode 100644 index 0000000..fd557c1 --- /dev/null +++ b/data/pixmaps/toolbar/menu-3-demisemi.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char * scratch[] = { +"14 13 3 1", +" c none", +"# c black", +"x c black", +" ", +" xxx ", +" xx ### ", +" xxx # # ", +" xx #### ", +" xxx # # ", +" #### ", +" # # ", +" # # ", +" #### ", +" ##### ", +" #### ", +" "}; diff --git a/data/pixmaps/toolbar/menu-3-dotted-breve.xpm b/data/pixmaps/toolbar/menu-3-dotted-breve.xpm new file mode 100644 index 0000000..8a5d61a --- /dev/null +++ b/data/pixmaps/toolbar/menu-3-dotted-breve.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char * scratch[] = { +"14 13 3 1", +" c none", +"# c black", +"x c black", +" ", +" xxx ", +" xx ", +" xxx ", +" xx ", +" xxx ", +" ", +" ", +" # #### # ", +" ### ### ##", +" ### ### ##", +" # #### # ", +" "}; diff --git a/data/pixmaps/toolbar/menu-3-dotted-crotchet.xpm b/data/pixmaps/toolbar/menu-3-dotted-crotchet.xpm new file mode 100644 index 0000000..9ac0731 --- /dev/null +++ b/data/pixmaps/toolbar/menu-3-dotted-crotchet.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char * scratch[] = { +"14 13 3 1", +" c none", +"# c black", +"x c black", +" ", +" xxx ", +" xx # ", +" xxx # ", +" xx # ", +" xxx # ", +" # ", +" # ", +" # ", +" #### ", +" ##### ## ", +" #### ## ", +" "}; diff --git a/data/pixmaps/toolbar/menu-3-dotted-demisemi.xpm b/data/pixmaps/toolbar/menu-3-dotted-demisemi.xpm new file mode 100644 index 0000000..0e8b1cd --- /dev/null +++ b/data/pixmaps/toolbar/menu-3-dotted-demisemi.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char * scratch[] = { +"14 13 3 1", +" c none", +"# c black", +"x c black", +" ", +" xxx ", +" xx ### ", +" xxx # # ", +" xx #### ", +" xxx # # ", +" #### ", +" # # ", +" # # ", +" #### ", +" ##### ## ", +" #### ## ", +" "}; diff --git a/data/pixmaps/toolbar/menu-3-dotted-hemidemisemi.xpm b/data/pixmaps/toolbar/menu-3-dotted-hemidemisemi.xpm new file mode 100644 index 0000000..71db40f --- /dev/null +++ b/data/pixmaps/toolbar/menu-3-dotted-hemidemisemi.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char * scratch[] = { +"14 13 3 1", +" c none", +"# c black", +"x c black", +" ", +" xxx ### ", +" xx # # ", +" xxx #### ", +" xx # # ", +" xxx #### ", +" # # ", +" #### ", +" # # ", +" #### ", +" ##### ## ", +" #### ## ", +" "}; diff --git a/data/pixmaps/toolbar/menu-3-dotted-minim.xpm b/data/pixmaps/toolbar/menu-3-dotted-minim.xpm new file mode 100644 index 0000000..74873ff --- /dev/null +++ b/data/pixmaps/toolbar/menu-3-dotted-minim.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char * scratch[] = { +"14 13 3 1", +" c none", +"# c black", +"x c black", +" ", +" xxx ", +" xx # ", +" xxx # ", +" xx # ", +" xxx # ", +" # ", +" # ", +" # ", +" #### ", +" # # ## ", +" #### ## ", +" "}; diff --git a/data/pixmaps/toolbar/menu-3-dotted-quaver.xpm b/data/pixmaps/toolbar/menu-3-dotted-quaver.xpm new file mode 100644 index 0000000..7d7ee6e --- /dev/null +++ b/data/pixmaps/toolbar/menu-3-dotted-quaver.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char * scratch[] = { +"14 13 3 1", +" c none", +"# c black", +"x c black", +" ", +" xxx ", +" xx ## ", +" xxx # # ", +" xx # # ", +" xxx # # ", +" # # ", +" # ", +" # ", +" #### ", +" ##### ## ", +" #### ## ", +" "}; diff --git a/data/pixmaps/toolbar/menu-3-dotted-semibreve.xpm b/data/pixmaps/toolbar/menu-3-dotted-semibreve.xpm new file mode 100644 index 0000000..ac73f85 --- /dev/null +++ b/data/pixmaps/toolbar/menu-3-dotted-semibreve.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char * scratch[] = { +"14 13 3 1", +" c none", +"# c black", +"x c black", +" ", +" xxx ", +" xx ", +" xxx ", +" xx ", +" xxx ", +" ", +" ", +" #### ", +" ## ## ## ", +" ## ## ## ", +" #### ", +" "}; diff --git a/data/pixmaps/toolbar/menu-3-dotted-semiquaver.xpm b/data/pixmaps/toolbar/menu-3-dotted-semiquaver.xpm new file mode 100644 index 0000000..37ff2de --- /dev/null +++ b/data/pixmaps/toolbar/menu-3-dotted-semiquaver.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char * scratch[] = { +"14 13 3 1", +" c none", +"# c black", +"x c black", +" ", +" xxx ", +" xx ## ", +" xxx # # ", +" xx # # ", +" xxx ## # ", +" # ## ", +" # # ", +" # # ", +" #### ", +" ##### ## ", +" #### ## ", +" "}; diff --git a/data/pixmaps/toolbar/menu-3-hemidemisemi.xpm b/data/pixmaps/toolbar/menu-3-hemidemisemi.xpm new file mode 100644 index 0000000..bbdaf42 --- /dev/null +++ b/data/pixmaps/toolbar/menu-3-hemidemisemi.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char * scratch[] = { +"14 13 3 1", +" c none", +"# c black", +"x c black", +" ", +" xxx ### ", +" xx # # ", +" xxx #### ", +" xx # # ", +" xxx #### ", +" # # ", +" #### ", +" # # ", +" #### # ", +" ##### ", +" #### ", +" "}; diff --git a/data/pixmaps/toolbar/menu-3-minim.xpm b/data/pixmaps/toolbar/menu-3-minim.xpm new file mode 100644 index 0000000..576b0f3 --- /dev/null +++ b/data/pixmaps/toolbar/menu-3-minim.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char * scratch[] = { +"14 13 3 1", +" c none", +"# c black", +"x c black", +" ", +" xxx ", +" xx # ", +" xxx # ", +" xx # ", +" xxx # ", +" # ", +" # ", +" # ", +" #### ", +" # # ", +" #### ", +" "}; diff --git a/data/pixmaps/toolbar/menu-3-quaver.xpm b/data/pixmaps/toolbar/menu-3-quaver.xpm new file mode 100644 index 0000000..1ee48e5 --- /dev/null +++ b/data/pixmaps/toolbar/menu-3-quaver.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char * scratch[] = { +"14 13 3 1", +" c none", +"# c black", +"x c black", +" ", +" xxx ", +" xx ## ", +" xxx # # ", +" xx # # ", +" xxx # # ", +" # # ", +" # ", +" # ", +" #### ", +" ##### ", +" #### ", +" "}; diff --git a/data/pixmaps/toolbar/menu-3-semibreve.xpm b/data/pixmaps/toolbar/menu-3-semibreve.xpm new file mode 100644 index 0000000..d10df5a --- /dev/null +++ b/data/pixmaps/toolbar/menu-3-semibreve.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char * scratch[] = { +"14 13 3 1", +" c none", +"# c black", +"x c black", +" ", +" xxx ", +" xx ", +" xxx ", +" xx ", +" xxx ", +" ", +" ", +" #### ", +" ## ## ", +" ## ## ", +" #### ", +" "}; diff --git a/data/pixmaps/toolbar/menu-3-semiquaver.xpm b/data/pixmaps/toolbar/menu-3-semiquaver.xpm new file mode 100644 index 0000000..d26c9ec --- /dev/null +++ b/data/pixmaps/toolbar/menu-3-semiquaver.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char * scratch[] = { +"14 13 3 1", +" c none", +"# c black", +"x c black", +" ", +" xxx ", +" xx ## ", +" xxx # # ", +" xx # # ", +" xxx ## # ", +" # ## ", +" # # ", +" # # ", +" #### ", +" ##### ", +" #### ", +" "}; diff --git a/data/pixmaps/toolbar/menu-breve.xpm b/data/pixmaps/toolbar/menu-breve.xpm new file mode 100644 index 0000000..b10e863 --- /dev/null +++ b/data/pixmaps/toolbar/menu-breve.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char * scratch[] = { +"14 13 3 1", +" c none", +"# c black", +"x c black", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" # #### # ", +" ### ### ", +" ### ### ", +" # #### # ", +" "}; diff --git a/data/pixmaps/toolbar/menu-crotchet.xpm b/data/pixmaps/toolbar/menu-crotchet.xpm new file mode 100644 index 0000000..72ef0db --- /dev/null +++ b/data/pixmaps/toolbar/menu-crotchet.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char * scratch[] = { +"14 13 3 1", +" c none", +"# c black", +"x c black", +" ", +" ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" #### ", +" ##### ", +" #### ", +" "}; diff --git a/data/pixmaps/toolbar/menu-demisemi.xpm b/data/pixmaps/toolbar/menu-demisemi.xpm new file mode 100644 index 0000000..e8e0882 --- /dev/null +++ b/data/pixmaps/toolbar/menu-demisemi.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char * scratch[] = { +"14 13 3 1", +" c none", +"# c black", +"x c black", +" ", +" ", +" ### ", +" # # ", +" #### ", +" # # ", +" #### ", +" # # ", +" # # ", +" #### ", +" ##### ", +" #### ", +" "}; diff --git a/data/pixmaps/toolbar/menu-dotted-breve.xpm b/data/pixmaps/toolbar/menu-dotted-breve.xpm new file mode 100644 index 0000000..3be4f24 --- /dev/null +++ b/data/pixmaps/toolbar/menu-dotted-breve.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char * scratch[] = { +"14 13 3 1", +" c none", +"# c black", +"x c black", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" # #### # ", +" ### ### ##", +" ### ### ##", +" # #### # ", +" "}; diff --git a/data/pixmaps/toolbar/menu-dotted-crotchet.xpm b/data/pixmaps/toolbar/menu-dotted-crotchet.xpm new file mode 100644 index 0000000..d1a1060 --- /dev/null +++ b/data/pixmaps/toolbar/menu-dotted-crotchet.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char * scratch[] = { +"14 13 3 1", +" c none", +"# c black", +"x c black", +" ", +" ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" #### ", +" ##### ## ", +" #### ## ", +" "}; diff --git a/data/pixmaps/toolbar/menu-dotted-demisemi.xpm b/data/pixmaps/toolbar/menu-dotted-demisemi.xpm new file mode 100644 index 0000000..a9e4813 --- /dev/null +++ b/data/pixmaps/toolbar/menu-dotted-demisemi.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char * scratch[] = { +"14 13 3 1", +" c none", +"# c black", +"x c black", +" ", +" ", +" ### ", +" # # ", +" #### ", +" # # ", +" #### ", +" # # ", +" # # ", +" #### ", +" ##### ## ", +" #### ## ", +" "}; diff --git a/data/pixmaps/toolbar/menu-dotted-hemidemisemi.xpm b/data/pixmaps/toolbar/menu-dotted-hemidemisemi.xpm new file mode 100644 index 0000000..8643f7e --- /dev/null +++ b/data/pixmaps/toolbar/menu-dotted-hemidemisemi.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char * scratch[] = { +"14 13 3 1", +" c none", +"# c black", +"x c black", +" ", +" ### ", +" # # ", +" #### ", +" # # ", +" #### ", +" # # ", +" #### ", +" # # ", +" #### ", +" ##### ## ", +" #### ## ", +" "}; diff --git a/data/pixmaps/toolbar/menu-dotted-minim.xpm b/data/pixmaps/toolbar/menu-dotted-minim.xpm new file mode 100644 index 0000000..80daea2 --- /dev/null +++ b/data/pixmaps/toolbar/menu-dotted-minim.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char * scratch[] = { +"14 13 3 1", +" c none", +"# c black", +"x c black", +" ", +" ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" #### ", +" # # ## ", +" #### ## ", +" "}; diff --git a/data/pixmaps/toolbar/menu-dotted-quaver.xpm b/data/pixmaps/toolbar/menu-dotted-quaver.xpm new file mode 100644 index 0000000..7ba6ef9 --- /dev/null +++ b/data/pixmaps/toolbar/menu-dotted-quaver.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char * scratch[] = { +"14 13 3 1", +" c none", +"# c black", +"x c black", +" ", +" ", +" ## ", +" # # ", +" # # ", +" # # ", +" # # ", +" # ", +" # ", +" #### ", +" ##### ## ", +" #### ## ", +" "}; diff --git a/data/pixmaps/toolbar/menu-dotted-semibreve.xpm b/data/pixmaps/toolbar/menu-dotted-semibreve.xpm new file mode 100644 index 0000000..65127d3 --- /dev/null +++ b/data/pixmaps/toolbar/menu-dotted-semibreve.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char * scratch[] = { +"14 13 3 1", +" c none", +"# c black", +"x c black", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" #### ", +" ## ## ## ", +" ## ## ## ", +" #### ", +" "}; diff --git a/data/pixmaps/toolbar/menu-dotted-semiquaver.xpm b/data/pixmaps/toolbar/menu-dotted-semiquaver.xpm new file mode 100644 index 0000000..1beb8c5 --- /dev/null +++ b/data/pixmaps/toolbar/menu-dotted-semiquaver.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char * scratch[] = { +"14 13 3 1", +" c none", +"# c black", +"x c black", +" ", +" ", +" ## ", +" # # ", +" # # ", +" ## # ", +" # ## ", +" # # ", +" # # ", +" #### ", +" ##### ## ", +" #### ## ", +" "}; diff --git a/data/pixmaps/toolbar/menu-hemidemisemi.xpm b/data/pixmaps/toolbar/menu-hemidemisemi.xpm new file mode 100644 index 0000000..7f37864 --- /dev/null +++ b/data/pixmaps/toolbar/menu-hemidemisemi.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char * scratch[] = { +"14 13 3 1", +" c none", +"# c black", +"x c black", +" ", +" ### ", +" # # ", +" #### ", +" # # ", +" #### ", +" # # ", +" #### ", +" # # ", +" #### # ", +" ##### ", +" #### ", +" "}; diff --git a/data/pixmaps/toolbar/menu-minim.xpm b/data/pixmaps/toolbar/menu-minim.xpm new file mode 100644 index 0000000..837aba3 --- /dev/null +++ b/data/pixmaps/toolbar/menu-minim.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char * scratch[] = { +"14 13 3 1", +" c none", +"# c black", +"x c black", +" ", +" ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" #### ", +" # # ", +" #### ", +" "}; diff --git a/data/pixmaps/toolbar/menu-no-note.xpm b/data/pixmaps/toolbar/menu-no-note.xpm new file mode 100644 index 0000000..576bc2d --- /dev/null +++ b/data/pixmaps/toolbar/menu-no-note.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char * scratch[] = { +"14 13 3 1", +" c none", +"# c black", +"x c black", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/menu-quaver.xpm b/data/pixmaps/toolbar/menu-quaver.xpm new file mode 100644 index 0000000..f2e952f --- /dev/null +++ b/data/pixmaps/toolbar/menu-quaver.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char * scratch[] = { +"14 13 3 1", +" c none", +"# c black", +"x c black", +" ", +" ", +" ## ", +" # # ", +" # # ", +" # # ", +" # # ", +" # ", +" # ", +" #### ", +" ##### ", +" #### ", +" "}; diff --git a/data/pixmaps/toolbar/menu-semibreve.xpm b/data/pixmaps/toolbar/menu-semibreve.xpm new file mode 100644 index 0000000..5dd251b --- /dev/null +++ b/data/pixmaps/toolbar/menu-semibreve.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char * scratch[] = { +"14 13 3 1", +" c none", +"# c black", +"x c black", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" #### ", +" ## ## ", +" ## ## ", +" #### ", +" "}; diff --git a/data/pixmaps/toolbar/menu-semiquaver.xpm b/data/pixmaps/toolbar/menu-semiquaver.xpm new file mode 100644 index 0000000..ad78e40 --- /dev/null +++ b/data/pixmaps/toolbar/menu-semiquaver.xpm @@ -0,0 +1,19 @@ +/* XPM */ +static char * scratch[] = { +"14 13 3 1", +" c none", +"# c black", +"x c black", +" ", +" ", +" ## ", +" # # ", +" # # ", +" ## # ", +" # ## ", +" # # ", +" # # ", +" #### ", +" ##### ", +" #### ", +" "}; diff --git a/data/pixmaps/toolbar/midimixer.png b/data/pixmaps/toolbar/midimixer.png new file mode 100644 index 0000000..a673743 Binary files /dev/null and b/data/pixmaps/toolbar/midimixer.png differ diff --git a/data/pixmaps/toolbar/midimixer.xpm b/data/pixmaps/toolbar/midimixer.xpm new file mode 100644 index 0000000..dfd43b1 --- /dev/null +++ b/data/pixmaps/toolbar/midimixer.xpm @@ -0,0 +1,151 @@ +/* XPM */ +static char * midimixer1_1_xpm[] = { +"22 22 126 2", +" c None", +". c #626262", +"+ c #3D3D3D", +"@ c #474747", +"# c #4D4D4D", +"$ c #575757", +"% c #595959", +"& c #484848", +"* c #5E5E5E", +"= c #606060", +"- c #505050", +"; c #515151", +"> c #5C5C5C", +", c #636363", +"' c #4E4E4E", +") c #525252", +"! c #6F6F6F", +"~ c #2D2D2D", +"{ c #C9C9C9", +"] c #D2D2D2", +"^ c #373737", +"/ c #ADADAD", +"( c #292929", +"_ c #333333", +": c #C8C8C8", +"< c #C5C5C5", +"[ c #CDCDCD", +"} c #222222", +"| c #2F2F2F", +"1 c #272727", +"2 c #212121", +"3 c #F4F4F4", +"4 c #D5D5D5", +"5 c #353535", +"6 c #363636", +"7 c #DBDBDB", +"8 c #E4E4E4", +"9 c #262626", +"0 c #E5E5E5", +"a c #323232", +"b c #3C3C3C", +"c c #E6E6E6", +"d c #2B2B2B", +"e c #FFFFFF", +"f c #DADADA", +"g c #383838", +"h c #303030", +"i c #F3F3F3", +"j c #2C2C2C", +"k c #F9F9F9", +"l c #2E2E2E", +"m c #F5F5F5", +"n c #E8E8E8", +"o c #EBEBEB", +"p c #EDEDED", +"q c #D1D1D1", +"r c #CECECE", +"s c #F6F6F6", +"t c #313131", +"u c #F7F7F7", +"v c #ECECEC", +"w c #D8D8D8", +"x c #3A3A3A", +"y c #D7D7D7", +"z c #FAFAFA", +"A c #343434", +"B c #393939", +"C c #444444", +"D c #FBFBFB", +"E c #D9D9D9", +"F c #404040", +"G c #DFDFDF", +"H c #3B3B3B", +"I c #4A4A4A", +"J c #F2F2F2", +"K c #3F3F3F", +"L c #424242", +"M c #585858", +"N c #E7E7E7", +"O c #545454", +"P c #DCDCDC", +"Q c #FDFDFD", +"R c #6D6D6D", +"S c #D3D3D3", +"T c #696969", +"U c #5F5F5F", +"V c #747474", +"W c #616161", +"X c #666666", +"Y c #E1E1E1", +"Z c #F1EFF3", +"` c #EEEEEE", +" . c #5B5B5B", +".. c #B7B7B7", +"+. c #FEFEFE", +"@. c #7B7B7B", +"#. c #616162", +"$. c #F4F3F5", +"%. c #7A797A", +"&. c #565656", +"*. c #828282", +"=. c #FCFCFC", +"-. c #787878", +";. c #838383", +">. c #868686", +",. c #585759", +"'. c #939393", +"). c #000000", +"!. c #AFAFAF", +"~. c #BEBEBE", +"{. c #010101", +"]. c #707070", +"^. c #3E3E3E", +"/. c #6A6A6A", +"(. c #B9B9B9", +"_. c #1A1A1A", +":. c #7A7A7A", +"<. c #DEDEDE", +"[. c #BCBCBC", +"}. c #8E8E8E", +"|. c #232323", +"1. c #070707", +"2. c #454545", +"3. c #464646", +"4. c #28262D", +"5. c #130D1B", +" ", +". + @ # $ % & & * = - * ; % > , ' ' % ) ! ", +"~ { ] ^ ^ / ( _ : < _ @ [ } | < 1 2 3 4 5 ", +"6 7 8 9 9 0 a _ 8 0 b + c d d 8 ( ( e f g ", +"h < i j j k l l m n b b o ~ ~ p d d e q ^ ", +"6 r s j h e t t u v b b p | a p 9 d e w ^ ", +"x y z A A e A B m v C b p | a D 1 ~ e E ^ ", +"F G D b H e ^ I s v C B J K K e ( t e E ^ ", +"L 0 e C C e I ; v s M @ N O O e a | e P H ", +"' 8 e = . Q R R S D R T r U V Q W X e o L ", +") Y e i Z e ` e 4 s i e Y i i e 4 e e 0 F ", +" .G e e ..e +.e @.k e e #.$.e e %.e e k &. ", +"*.P =.+.-.e e ;.g >.e e ^ e e e ,.e +.m V ", +"'.y s Y > S e ).!.).e ~.{.q $.].^./.n c '. ", +" (.(.q g ] f ).] ).y /._.:.<.).!.).{ [. ", +" }.g }. |.|.|. ).!.). ).] ). ", +" ).!.). 0 .0 ).] ). 1.|.|. ", +" ).] ). 0 $ 0 |.|.|. 0 % 0 ", +" |.|.|. 0 2.0 0 3.0 0 ) 0 ", +" ] 4.] ] j ] ] j ] ] 3.] ", +" ] 5.] q ).] ] ).] q ~ ] ", +" "}; diff --git a/data/pixmaps/toolbar/minim.xpm b/data/pixmaps/toolbar/minim.xpm new file mode 100644 index 0000000..b4f7fd3 --- /dev/null +++ b/data/pixmaps/toolbar/minim.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" ", +" ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" # ", +" @#+# ", +" .#- .# ", +" #- .@ ", +" #. -#. ", +" .+## ", +" "}; diff --git a/data/pixmaps/toolbar/mixer.png b/data/pixmaps/toolbar/mixer.png new file mode 100644 index 0000000..e259590 Binary files /dev/null and b/data/pixmaps/toolbar/mixer.png differ diff --git a/data/pixmaps/toolbar/mixer.xpm b/data/pixmaps/toolbar/mixer.xpm new file mode 100644 index 0000000..35790e6 --- /dev/null +++ b/data/pixmaps/toolbar/mixer.xpm @@ -0,0 +1,89 @@ +/* XPM */ +static char * mixer1_1_xpm[] = { +"22 22 64 1", +" c None", +". c #000000", +"+ c #A0A0A0", +"@ c #666666", +"# c #D0D0D0", +"$ c #E5E5E5", +"% c #9B9B9B", +"& c #B8A4D4", +"* c #9C8EA8", +"= c #A9A4AB", +"- c #979198", +"; c #8F8F8F", +"> c #818181", +", c #949494", +"' c #747474", +") c #7A7A7A", +"! c #3F3F3F", +"~ c #616161", +"{ c #FFFFFF", +"] c #868686", +"^ c #020202", +"/ c #AFAFAF", +"( c #CBCBCB", +"_ c #E9E9E9", +": c #737373", +"< c #D9D9D9", +"[ c #727272", +"} c #3E3E3E", +"| c #6A6A6A", +"1 c #EEEEEE", +"2 c #ECECEC", +"3 c #D2D2D2", +"4 c #6B6B6B", +"5 c #333333", +"6 c #8E8E8E", +"7 c #232323", +"8 c #F1F1F1", +"9 c #787878", +"0 c #070707", +"a c #EAEAEA", +"b c #5D5D5D", +"c c #F7F7F7", +"d c #434343", +"e c #494949", +"f c #FEFEFE", +"g c #FAFAFA", +"h c #515151", +"i c #E7E7E7", +"j c #F9F9F9", +"k c #626064", +"l c #F4F4F4", +"m c #343434", +"n c #2B2B2B", +"o c #F5F5F5", +"p c #464646", +"q c #F8F8F8", +"r c #F0F0F0", +"s c #0F0A18", +"t c #F6F6F6", +"u c #EBEBEB", +"v c #DFDFDF", +"w c #E8E8E8", +"x c #CFCFCF", +"y c #2A2A2A", +" . ", +" . + ", +" . . . ", +" . @.+ .# ", +" .@@..@#.+ # ", +" @....+..@.+..+..@ ", +" . .@$..@.@. ", +" @ . .@ . ", +" @ . ", +" % ", +" & * = - ", +" ; @ > , ", +" ' )!) ~ {$]$ ", +" ) ^/.(_: <[}| ", +" 1:2 .3. 45) ./. ", +" 6!; 777 ./. .3. ", +" ./. 892 .3. 077 ", +" .3. ab_ 777 c)c ", +" 777 $d$ {ef ghi ", +" jkl 1m2 1nc opq ", +" rs$ t.u v.w xya ", +" "}; diff --git a/data/pixmaps/toolbar/move_track_down.png b/data/pixmaps/toolbar/move_track_down.png new file mode 100644 index 0000000..31d632c Binary files /dev/null and b/data/pixmaps/toolbar/move_track_down.png differ diff --git a/data/pixmaps/toolbar/move_track_down.xpm b/data/pixmaps/toolbar/move_track_down.xpm new file mode 100644 index 0000000..f963d6c --- /dev/null +++ b/data/pixmaps/toolbar/move_track_down.xpm @@ -0,0 +1,35 @@ +/* XPM */ +static char * move_track_down_xpm[] = { +"22 18 14 1", +" c None", +". c #666666", +"+ c #939393", +"@ c #FF0400", +"# c #9E0606", +"$ c #E6E6E6", +"% c #C7D485", +"& c #CBD692", +"* c #C7D484", +"= c #C9D58C", +"- c #B7B7B7", +"; c #C4C4C4", +"> c #62664E", +", c #3A3A3A", +"......................", +".++@#$$.%%%%%%%%%%%%%.", +".++#@$$.%&*%*%%%%*%=%.", +"........-------------.", +".++;;$$.>>>>>>>>>>>>>.", +".++;;$$.>>>>>>>>>>>>>.", +"........-----,,,-----.", +".++;;$$.%%%%%,,,%%%%%.", +".++;;$$.%%%%%,,,%%%%%.", +"........-----,,,-----.", +".++;;$$.%%%%%,,,%%%%%.", +".++;;$$.%%%%%,,,%%%%%.", +"........-----,,,-----.", +".++;;$$.%%%,,,,,,,%%%.", +".++;;$$.%%%%,,,,,%%%%.", +"........-----,,,-----.", +".++;;$$.%%%%%%,%%%%%%.", +".++;;$$.%%%%%%%%%%%%%."}; diff --git a/data/pixmaps/toolbar/move_track_up.png b/data/pixmaps/toolbar/move_track_up.png new file mode 100644 index 0000000..6125fa4 Binary files /dev/null and b/data/pixmaps/toolbar/move_track_up.png differ diff --git a/data/pixmaps/toolbar/move_track_up.xpm b/data/pixmaps/toolbar/move_track_up.xpm new file mode 100644 index 0000000..1dcb163 --- /dev/null +++ b/data/pixmaps/toolbar/move_track_up.xpm @@ -0,0 +1,35 @@ +/* XPM */ +static char * move_track_up_xpm[] = { +"22 18 14 1", +" c None", +". c #666666", +"+ c #939393", +"@ c #FF0400", +"# c #9E0606", +"$ c #E6E6E6", +"% c #C7D485", +"& c #CBD692", +"* c #C7D484", +"= c #3A3A3A", +"- c #C9D58C", +"; c #B7B7B7", +"> c #C4C4C4", +", c #62664E", +"......................", +".++@#$$.%%%%%%%%%%%%%.", +".++#@$$.%&*%**=%%*%-%.", +"........;;;;;===;;;;;.", +".++>>$$.%%%%=====%%%%.", +".++>>$$.%%%=======%%%.", +"........;;;;;===;;;;;.", +".++>>$$.%%%%%===%%%%%.", +".++>>$$.%%%%%===%%%%%.", +"........;;;;;===;;;;;.", +".++>>$$.%%%%%===%%%%%.", +".++>>$$.%%%%%===%%%%%.", +"........;;;;;===;;;;;.", +".++>>$$.,,,,,,,,,,,,,.", +".++>>$$.,,,,,,,,,,,,,.", +"........;;;;;;;;;;;;;.", +".++>>$$.%%%%%%%%%%%%%.", +".++>>$$.%%%%%%%%%%%%%."}; diff --git a/data/pixmaps/toolbar/multi-page-mode.xpm b/data/pixmaps/toolbar/multi-page-mode.xpm new file mode 100644 index 0000000..b046c84 --- /dev/null +++ b/data/pixmaps/toolbar/multi-page-mode.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char * multi_page_mode_xpm[] = { +"22 22 7 1", +" c None", +". c #AB0011", +"+ c #FFFFFF", +"@ c #020011", +"# c #50504D", +"$ c #989893", +"% c #131120", +" .......... ", +" .++++++++.+++++++++ ", +" .+@@@@#@+.++@#@@#@+ ", +" .++++++++.+++++++++ ", +" .+@#@@@@+.++@@#@@@+ ", +" .++++++++.+++++++++ ", +" .+@@@#@@+.++@@@@$@+ ", +" .++++++++.+++++++++ ", +" .+@#@@@@+.++@#@@@@+ ", +" .++++++++.+++++++++ ", +" ..........+++++++++ ", +" ++++++++++++++++++ ", +" ++++++++++++++++++ ", +" +@#@@@@++++#@@@@@+ ", +" ++++++++++++++++++ ", +" +@@@@#@++++@@#@@@+ ", +" ++++++++++++++++++ ", +" +@@#@@@++++@#@@#@+ ", +" ++++++++++++++++++ ", +" +#@@@#@++++@@#%+++ ", +" ++++++++++++++++++ ", +" "}; diff --git a/data/pixmaps/toolbar/mute-all.png b/data/pixmaps/toolbar/mute-all.png new file mode 100644 index 0000000..93956d9 Binary files /dev/null and b/data/pixmaps/toolbar/mute-all.png differ diff --git a/data/pixmaps/toolbar/mute-all.xpm b/data/pixmaps/toolbar/mute-all.xpm new file mode 100644 index 0000000..3327042 --- /dev/null +++ b/data/pixmaps/toolbar/mute-all.xpm @@ -0,0 +1,86 @@ +/* XPM */ +static char * mute_all_xpm[] = { +"22 22 61 1", +" c None", +". c #8D8E8E", +"+ c #7F7F7F", +"@ c #727272", +"# c #8A8A8B", +"$ c #ADAEAF", +"% c #7F7F80", +"& c #5F6264", +"* c #092442", +"= c #0C3159", +"- c #0C345E", +"; c #8A9096", +"> c #A7A8A8", +", c #8C8D8E", +"' c #595C5E", +") c #376291", +"! c #47719D", +"~ c #34608F", +"{ c #1B4A7B", +"] c #9EA6AF", +"^ c #C0C1C1", +"/ c #777777", +"( c #0D2640", +"_ c #7C9BBD", +": c #84A2C2", +"< c #5D83AB", +"[ c #255384", +"} c #BFBFBF", +"| c #676767", +"1 c #0B2D52", +"2 c #8AA7C5", +"3 c #668AB1", +"4 c #3C6795", +"5 c #295687", +"6 c #CFCFCF", +"7 c #5C6772", +"8 c #0B2E53", +"9 c #537AA5", +"0 c #356190", +"a c #436D9A", +"b c #E6E6E6", +"c c #A9AAAB", +"d c #7E848A", +"e c #184678", +"f c #2E5B8B", +"g c #E2EFFE", +"h c #F5F5F5", +"i c #9B9B9B", +"j c #9098A1", +"k c #2E5B8A", +"l c #225081", +"m c #D4E1EF", +"n c #FBFBFC", +"o c #B5B6B6", +"p c #AEAEAE", +"q c #BBBBBB", +"r c #D1D1D1", +"s c #E2E3E3", +"t c #07203A", +"u c #808080", +"v c #1E4C7D", +" ", +" ", +" .+@#$ ", +" %&*=-;> ", +" ,'-)!~{]^ ", +" /()_:<~[} ", +" |1!:23456 ", +" 78~<390ab ", +" cde~40fgh ", +" ijkl0mn ", +" opqrs ", +" ", +" ", +" .+@#$ ", +" %&*=-;> ", +" ,'-)!~{]^ ", +" /t)_:<~[} ", +" |1!:23456 ", +" u8~<390ab ", +" cde~40fgh ", +" ijvl0mn ", +" opqrs "}; diff --git a/data/pixmaps/toolbar/no-note.xpm b/data/pixmaps/toolbar/no-note.xpm new file mode 100644 index 0000000..70ef3f1 --- /dev/null +++ b/data/pixmaps/toolbar/no-note.xpm @@ -0,0 +1,30 @@ +/* XPM */ +static char * scratch[] = { +"14 26 1 1", +" c none", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/notation.png b/data/pixmaps/toolbar/notation.png new file mode 100644 index 0000000..81917f8 Binary files /dev/null and b/data/pixmaps/toolbar/notation.png differ diff --git a/data/pixmaps/toolbar/notation.xpm b/data/pixmaps/toolbar/notation.xpm new file mode 100644 index 0000000..0ccf6f9 --- /dev/null +++ b/data/pixmaps/toolbar/notation.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"22 19 6 1", +" c None", +"X c black", +"x c #242724", +"O c #4D4E4D", +"o c #6B6D6B", +". c #848484", +/* pixels */ +" oxX ", +" oxXXXXX ", +" XXXXXxo X ", +" Xxo oxX ", +" X oxXXXXX ", +" XXXXXxo X ", +" Xxo X ", +" X X ", +" X X ", +" X X ", +" X X ", +" X oOXX ", +" X xXXXX ", +" X XXXXX ", +" oOXX .XO. ", +" xXXXX ", +" XXXXX ", +" .XO. ", +" " +}; diff --git a/data/pixmaps/toolbar/palette-accidentals.xpm b/data/pixmaps/toolbar/palette-accidentals.xpm new file mode 100644 index 0000000..f02d200 --- /dev/null +++ b/data/pixmaps/toolbar/palette-accidentals.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char * palette_accidentals_xpm[] = { +"16 16 2 1", +" c None", +". c black", +" . ", +" . . . ", +" . . .. ", +" . ..... ", +" . ..... ", +" . .. . ", +" . . . ", +" . .. . . ", +" ..... . .. ", +" . .. ..... ", +" . .. ..... ", +" . . .. . ", +" . . . . ", +" .. . ", +" . ", +" "}; diff --git a/data/pixmaps/toolbar/palette-clefs.xpm b/data/pixmaps/toolbar/palette-clefs.xpm new file mode 100644 index 0000000..54a0bf4 --- /dev/null +++ b/data/pixmaps/toolbar/palette-clefs.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char * palette_clefs_xpm[] = { +"16 16 2 1", +" c None", +". c black", +" . ... ", +" .. . .. .", +" .. .. .. ", +" .. . .. ", +" . .. .", +" .. . ", +" .. . ", +" . ... . ", +". .. .. . ", +". .. . . ", +". . . ", +" . . . ", +" ... ", +" . ", +" .. ", +" "}; diff --git a/data/pixmaps/toolbar/palette-group.xpm b/data/pixmaps/toolbar/palette-group.xpm new file mode 100644 index 0000000..7ff377a --- /dev/null +++ b/data/pixmaps/toolbar/palette-group.xpm @@ -0,0 +1,35 @@ +/* XPM */ +static char * palette_group_xpm[] = { +"16 16 16 1", +" c None", +". c #282828", +"+ c #9A9898", +"@ c #918F8F", +"# c #5F5E5E", +"$ c #494949", +"% c #7F7D7D", +"& c #807F7F", +"* c #2F2F2F", +"= c #838181", +"- c #474747", +"; c #7C7A7A", +"> c #2C2C2C", +", c #787676", +"' c #707070", +") c #9B9999", +"...+ @ ", +" # .....$% ", +" &*.....", +" =-..... ; ", +"..>, ", +" ", +" ", +" . ..... ", +" . . . ", +" . . . . ", +" . .. . . ", +" . .. .. .. ", +" .. .. .. ", +" .. ' ''", +" '.. ..' ", +" ).....) "}; diff --git a/data/pixmaps/toolbar/palette-marks.xpm b/data/pixmaps/toolbar/palette-marks.xpm new file mode 100644 index 0000000..e9705fc --- /dev/null +++ b/data/pixmaps/toolbar/palette-marks.xpm @@ -0,0 +1,38 @@ +/* XPM */ +static char * palette_marks_xpm[] = { +"16 16 19 1", +" c None", +". c #AFAFAF", +"+ c #010101", +"@ c #787878", +"# c #888888", +"$ c #424242", +"% c #D5D5D5", +"& c #7B7B7B", +"* c #8A8A8A", +"= c #0A0A0A", +"- c #A4A4A4", +"; c #8D8D8D", +"> c #D6D6D6", +", c #D0D0D0", +"' c #090909", +") c #626262", +"! c #494949", +"~ c #2D2D2D", +"{ c #8C8C8C", +" .+++++. ", +" .+@ #+.", +" $. .$", +" @ .@% #", +" & #+@ ", +"*=* # ", +"-=- ; ", +" = > , ", +" = '. ", +" * ,'. ", +" ,' ,) ,", +" ..!~.{!~,'", +" ..,~', .~ ~", +" .{{'! ~{ ", +" ,,'.{ ~, ", +" ,'!.,', "}; diff --git a/data/pixmaps/toolbar/palette-notes.xpm b/data/pixmaps/toolbar/palette-notes.xpm new file mode 100644 index 0000000..74b368a --- /dev/null +++ b/data/pixmaps/toolbar/palette-notes.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char * palette_notes_xpm[] = { +"16 16 2 1", +" c None", +". c black", +" ", +" . ", +" . .. ", +" . .. ", +" . . . ", +" . . . ", +" . . . ", +" . . . ", +" . . . ", +" . .... ", +" . ..... ", +" .... ..... ", +" . . ... ", +" . . ", +" ... ", +" "}; diff --git a/data/pixmaps/toolbar/palette-rests.xpm b/data/pixmaps/toolbar/palette-rests.xpm new file mode 100644 index 0000000..073beaf --- /dev/null +++ b/data/pixmaps/toolbar/palette-rests.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char * palette_rests_xpm[] = { +"16 16 2 1", +" c None", +". c black", +" . ", +" . ", +" .. ", +" . ", +" .. . .. ", +" .... . ", +" . .. ", +" . . . ", +" .... . ", +" . . ", +" . . ... ", +" .. .. . ", +" . .. ", +" . . ", +" . . ", +" "}; diff --git a/data/pixmaps/toolbar/pause.xpm b/data/pixmaps/toolbar/pause.xpm new file mode 100644 index 0000000..8ec0622 --- /dev/null +++ b/data/pixmaps/toolbar/pause.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"12 8 7 1", +" c #010101", +". c Gray26", +"X c Gray47", +"o c #888888", +"O c #afafaf", +"+ c #d5d5d5", +"@ c None", +/* pixels */ +"@@@@@@@@@@@@", +"@@@@@ooo@@@@", +"@@@O O@@", +"@@O X@@@o O@", +"@@.O@@@@@O.@", +"@+X@@OX+@@o+", +"@oO@@o X@@Oo", +"@+@@@@o@@@++" +}; diff --git a/data/pixmaps/toolbar/quantize.png b/data/pixmaps/toolbar/quantize.png new file mode 100644 index 0000000..6f17d6b Binary files /dev/null and b/data/pixmaps/toolbar/quantize.png differ diff --git a/data/pixmaps/toolbar/quantize.xpm b/data/pixmaps/toolbar/quantize.xpm new file mode 100644 index 0000000..088f9d3 --- /dev/null +++ b/data/pixmaps/toolbar/quantize.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"22 19 6 1", +" c None", +"X c black", +"x c #242724", +"O c #4D4E4D", +"o c #6B6D6B", +". c #848484", +/* pixels */ +" ", +" ", +" ", +" .XXXX. ", +" xXo oXO ", +" xX Xx ", +" oX. .X. ", +" XX XX ", +" XX XX ", +" XX XX ", +" XX oXO XX ", +" .X. .XO XX ", +" xX .XoX ", +" OXo ooXO ", +" .XXXX..XO ", +" .Xo ", +" ", +" ", +" " +}; diff --git a/data/pixmaps/toolbar/quaver.xpm b/data/pixmaps/toolbar/quaver.xpm new file mode 100644 index 0000000..2112fb3 --- /dev/null +++ b/data/pixmaps/toolbar/quaver.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" ", +" # ", +" #. ", +" #@ ", +" ##. ", +" ##+ ", +" # .- ", +" # . ", +" # . ", +" # . ", +" # .. ", +" # - ", +" # + ", +" # + ", +" # - ", +" # . ", +" @#+# . ", +" .##### ", +" ###### ", +" #####. ", +" .+#@ ", +" "}; diff --git a/data/pixmaps/toolbar/resize.xpm b/data/pixmaps/toolbar/resize.xpm new file mode 100644 index 0000000..5e577e3 --- /dev/null +++ b/data/pixmaps/toolbar/resize.xpm @@ -0,0 +1,36 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"22 22 8 1", +" c Gray0", +". c #080000", +"X c #5d0000", +"o c #005482", +"O c #8c0800", +"+ c #aa7900", +"@ c Gray100", +"# c None", +/* pixels */ +"######################", +"######################", +"######################", +"######################", +"########## ##########", +"########## ##########", +"########## ##########", +"### ###### ###### ###", +"## ###### ###### ##", +"# ###### ###### #", +" ", +" ", +"# ###### ###### #", +"## ###### ###### ##", +"### ###### ###### ###", +"########## ##########", +"########## ##########", +"########## ##########", +"######################", +"######################", +"######################", +"######################" +}; diff --git a/data/pixmaps/toolbar/rest-breve.xpm b/data/pixmaps/toolbar/rest-breve.xpm new file mode 100644 index 0000000..5462817 --- /dev/null +++ b/data/pixmaps/toolbar/rest-breve.xpm @@ -0,0 +1,34 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" ", +" ", +" ", +" ######### ", +" ##### ", +" ##### ", +" ##### ", +" ##### ", +" ##### ", +" ######### ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/rest-crotchet.xpm b/data/pixmaps/toolbar/rest-crotchet.xpm new file mode 100644 index 0000000..731f84f --- /dev/null +++ b/data/pixmaps/toolbar/rest-crotchet.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" - ", +" -- ", +" #. ", +" #+ ", +" .##@ ", +" ###- ", +" @##@ ", +" +#. ", +" .# ", +" @- ", +" .###. ", +" +#### ", +" ##- .. ", +" +# ", +" #- ", +" @ ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/rest-demisemi.xpm b/data/pixmaps/toolbar/rest-demisemi.xpm new file mode 100644 index 0000000..4aaf678 --- /dev/null +++ b/data/pixmaps/toolbar/rest-demisemi.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" ", +" #+ ", +" .#+ .- ", +" +#+@@ ", +" @. ", +" #. ", +" .#. .@ ", +" ##@ @@ ", +" @#@-# ", +" .+ ", +" +@ ", +" .#+ .# ", +" ##@.++ ", +" @##@#@ ", +" -+ ", +" #- ", +" -#. ", +" -+ ", +" +- ", +" @ ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/rest-hemidemisemi.xpm b/data/pixmaps/toolbar/rest-hemidemisemi.xpm new file mode 100644 index 0000000..b089ce0 --- /dev/null +++ b/data/pixmaps/toolbar/rest-hemidemisemi.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" . ", +" @#@ ", +" .##.-@ ", +" +- ", +" + ", +" #+ @@ ", +" .#+ -# ", +" +#+@+ ", +" @@ ", +" #. ", +" .#. .@ ", +" ##@ @@ ", +" @#@-# ", +" .+ ", +" +@ ", +" .#+ .# ", +" ##@.++ ", +" @##@#@ ", +" -+ ", +" #- ", +" -#. ", +" -+ ", +" +- ", +" @ "}; diff --git a/data/pixmaps/toolbar/rest-minim.xpm b/data/pixmaps/toolbar/rest-minim.xpm new file mode 100644 index 0000000..1f060b2 --- /dev/null +++ b/data/pixmaps/toolbar/rest-minim.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ###### ", +" ###### ", +" ########## ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/rest-quaver.xpm b/data/pixmaps/toolbar/rest-quaver.xpm new file mode 100644 index 0000000..d1b0d23 --- /dev/null +++ b/data/pixmaps/toolbar/rest-quaver.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" .#+ .# ", +" ##@.++ ", +" @##@#@ ", +" -+ ", +" #- ", +" -#. ", +" -+ ", +" +- ", +" # ", +" -@ ", +" ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/rest-semibreve.xpm b/data/pixmaps/toolbar/rest-semibreve.xpm new file mode 100644 index 0000000..016528f --- /dev/null +++ b/data/pixmaps/toolbar/rest-semibreve.xpm @@ -0,0 +1,34 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" ", +" ", +" ", +" ########## ", +" ###### ", +" ###### ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/rest-semiquaver.xpm b/data/pixmaps/toolbar/rest-semiquaver.xpm new file mode 100644 index 0000000..207b2c8 --- /dev/null +++ b/data/pixmaps/toolbar/rest-semiquaver.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" ", +" ", +" ", +" .#. .@ ", +" ##@ @@ ", +" @#@-# ", +" .+ ", +" +@ ", +" .#+ .# ", +" ##@.++ ", +" @##@#@ ", +" -+ ", +" #- ", +" -#. ", +" -+ ", +" +- ", +" @ ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/select.xpm b/data/pixmaps/toolbar/select.xpm new file mode 100644 index 0000000..e9fe6f0 --- /dev/null +++ b/data/pixmaps/toolbar/select.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char *left_ptr_big[] = { +/* width height num_colors chars_per_pixel */ +" 20 20 5 1", +/* colors */ +". c None", +"x c #9090e0", +"y c #8080d0", +"z c #7070c0", +"# c #000000", +/* pixels */ +"....................", +"....................", +".....##.............", +".....#x#............", +".....#xx#...........", +".....#xxy#..........", +".....#xxyy#.........", +".....#xxyyz#........", +".....#xxyyzz#.......", +".....#xxyyzzz#......", +".....#xxyyz####.....", +".....#xx#y#.........", +".....#x#.#z#........", +".....##..#z#........", +".....#....#z#.......", +"..........#z#.......", +"...........#z#......", +"...........#z#......", +"............##......", +"...................." +}; diff --git a/data/pixmaps/toolbar/semibreve.xpm b/data/pixmaps/toolbar/semibreve.xpm new file mode 100644 index 0000000..d11c2a4 --- /dev/null +++ b/data/pixmaps/toolbar/semibreve.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" -####. ", +" @#- @#- ", +" +# .#+ ", +" +#. #+ ", +" -#@ -#@ ", +" .####- ", +" "}; diff --git a/data/pixmaps/toolbar/semiquaver.xpm b/data/pixmaps/toolbar/semiquaver.xpm new file mode 100644 index 0000000..399ccfc --- /dev/null +++ b/data/pixmaps/toolbar/semiquaver.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" # ", +" #. ", +" ## ", +" ##+ ", +" # .+ ", +" #. .- ", +" #+ - ", +" ##- .. ", +" #.@. - ", +" # - . ", +" # .- ", +" # . ", +" # . ", +" # - ", +" # # ", +" # @ ", +" # . ", +" @#+# . ", +" .##### ", +" ###### ", +" #####. ", +" .+#@ ", +" "}; diff --git a/data/pixmaps/toolbar/split.xpm b/data/pixmaps/toolbar/split.xpm new file mode 100644 index 0000000..68369eb --- /dev/null +++ b/data/pixmaps/toolbar/split.xpm @@ -0,0 +1,36 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"22 22 8 1", +" c Gray0", +". c #080000", +"X c #5d0000", +"o c #c5d37d", +"O c #8c0800", +"+ c #c57dd3", +"@ c Gray100", +"# c None", +/* pixels */ +"######################", +"######################", +"######################", +"######################", +"# ## #", +"# ++++++ ## oooooooo #", +"# +++++++ ## ooooooo #", +"# ++++++++ ## oooooo #", +"# +++++++++ ## ooooo #", +"# ++++++++ ## oooooo #", +"# +++++++ ## ooooooo #", +"# ++++++ ## oooooooo #", +"# +++++ ## ooooooooo #", +"# ++++++ ## oooooooo #", +"# +++++++ ## ooooooo #", +"# ++++++++ ## oooooo #", +"# ## #", +"######################", +"######################", +"######################", +"######################", +"######################" +}; diff --git a/data/pixmaps/toolbar/staccatissimo.xpm b/data/pixmaps/toolbar/staccatissimo.xpm new file mode 100644 index 0000000..2bd7272 --- /dev/null +++ b/data/pixmaps/toolbar/staccatissimo.xpm @@ -0,0 +1,18 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"4 7 5 1", +" c Gray4", +". c #7b7b7b", +"X c Gray54", +"o c #a4a4a4", +"O c None", +/* pixels */ +"OOOO", +"OO.O", +"OX X", +"Oo o", +"OO O", +"OO O", +"OOXO" +}; diff --git a/data/pixmaps/toolbar/staccato.xpm b/data/pixmaps/toolbar/staccato.xpm new file mode 100644 index 0000000..03b9db6 --- /dev/null +++ b/data/pixmaps/toolbar/staccato.xpm @@ -0,0 +1,14 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"4 4 4 1", +" c Gray0", +". c #8b8b8b", +"X c #cacaca", +"o c None", +/* pixels */ +"oooo", +"oo.X", +"o. .", +"oo.X" +}; diff --git a/data/pixmaps/toolbar/step_by_step.xpm b/data/pixmaps/toolbar/step_by_step.xpm new file mode 100644 index 0000000..241eed8 --- /dev/null +++ b/data/pixmaps/toolbar/step_by_step.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"18 16 4 1", +"# c #000000", +"o c #ffffff", +". c #c0c0ff", +" c None", +/* pixels */ +" ", +"############ ", +"oo###oo###oo ", +"oo###oo###oo # ", +"oo###oo###oo ## ", +"oo###oo###oo #.# ", +"oo###oo###o###..# ", +"oo###oo###o#.....#", +"oo###oo###o#.....#", +"ooo#oooo#oo###..# ", +"ooo#oooo#ooo #.# ", +"ooo#oooo#ooo ## ", +"ooo#oooo#ooo # ", +"ooo#oooo#ooo ", +"############ ", +" " +}; diff --git a/data/pixmaps/toolbar/tenuto.xpm b/data/pixmaps/toolbar/tenuto.xpm new file mode 100644 index 0000000..a0cb960 --- /dev/null +++ b/data/pixmaps/toolbar/tenuto.xpm @@ -0,0 +1,12 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 3 3 1", +" c Gray44", +". c #bebebe", +"X c None", +/* pixels */ +"XXXXXXXXXXX", +"X. .", +"X. ." +}; diff --git a/data/pixmaps/toolbar/text-mark.xpm b/data/pixmaps/toolbar/text-mark.xpm new file mode 100644 index 0000000..bd79da4 --- /dev/null +++ b/data/pixmaps/toolbar/text-mark.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char * text_mark_xpm[] = { +"14 26 11 1", +" c None", +". c #000000", +"+ c #34021C", +"@ c #200011", +"# c #14000B", +"$ c #1A010E", +"% c #13000A", +"& c #16000C", +"* c #17000C", +"= c #100008", +"- c #18000C", +" ", +" ", +" . ", +" . ", +" . ", +" . ", +" . ", +" . ", +" . ", +" . ", +" . ", +" . ", +" ..... ", +" ...... ", +" ...... ", +" .... ", +" ", +" ", +" +@.#$ ", +" . % . ", +" & ", +" * ", +" = ", +" %-. ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/text.xpm b/data/pixmaps/toolbar/text.xpm new file mode 100644 index 0000000..e8be58d --- /dev/null +++ b/data/pixmaps/toolbar/text.xpm @@ -0,0 +1,40 @@ +/* XPM */ +static char *text[] = { +/* width height num_colors chars_per_pixel */ +" 20 23 10 1", +/* colors */ +". c #000000", +"# c #1d1d1d", +"a c #393939", +"b c #555555", +"c c #727272", +"d c #8e8e8e", +"e c #aaaaaa", +"f c #c7c7c7", +"g c #e3e3e3", +"h c None", +/* pixels */ +"hhhhhhhhhhhhhhhhhhhh", +"hhhhhhhhhhhhhhhhhhhh", +"hhhhhhhhhhhhhhhhhhhh", +"hhhheeeeeeeeeeeeehhh", +"hhhe...ba...ba...hhh", +"hhhe.#hhha.bhhe..hhh", +"hhhe.fhhhb.bhhhb.hhh", +"hhhe#hhhhb.bhhhf.hhh", +"hhhcbhhhhb.bhhhh.hhh", +"hhhbehhhhb.bhhhhaehh", +"hhhhhhhhhb.bhhhhhhhh", +"hhhhhhhhhb.bhhhhhhhh", +"hhhhhhhhhb.bhhhhhhhh", +"hhhhhhhhhb.bhhhhhhhh", +"hhhhhhhhhb.bhhhhhhhh", +"hhhhhhhhhb.bhhhhhhhh", +"hhhhhhhhhb.bhhhhhhhh", +"hhhhhhhhhb.bhhhhhhhh", +"hhhhhhhed#.#eehhhhhh", +"hhhhhhfbbbbbbbhhhhhh", +"hhhhhhhhhhhhhhhhhhhh", +"hhhhhhhhhhhhhhhhhhhh", +"hhhhhhhhhhhhhhhhhhhh" +}; diff --git a/data/pixmaps/toolbar/text_rf.xpm b/data/pixmaps/toolbar/text_rf.xpm new file mode 100644 index 0000000..742663f --- /dev/null +++ b/data/pixmaps/toolbar/text_rf.xpm @@ -0,0 +1,15 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 7 2 1", +" c Gray0", +". c None", +/* pixels */ +"....... ", +". . . ..", +". ... ..", +". .. .", +" .... ...", +" ... ....", +".... ...." +}; diff --git a/data/pixmaps/toolbar/text_sf.xpm b/data/pixmaps/toolbar/text_sf.xpm new file mode 100644 index 0000000..81bd468 --- /dev/null +++ b/data/pixmaps/toolbar/text_sf.xpm @@ -0,0 +1,15 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 7 2 1", +" c Gray0", +". c None", +/* pixels */ +"....... ", +".. . ..", +". .... ..", +". .", +"... . ...", +" . ....", +".... ...." +}; diff --git a/data/pixmaps/toolbar/time-musical.png b/data/pixmaps/toolbar/time-musical.png new file mode 100644 index 0000000..f1b424c Binary files /dev/null and b/data/pixmaps/toolbar/time-musical.png differ diff --git a/data/pixmaps/toolbar/time-musical.xpm b/data/pixmaps/toolbar/time-musical.xpm new file mode 100644 index 0000000..8053513 --- /dev/null +++ b/data/pixmaps/toolbar/time-musical.xpm @@ -0,0 +1,51 @@ +/* XPM */ +static char *time_musical[] = { +/* width height num_colors chars_per_pixel */ +" 20 19 25 1", +/* colors */ +". c None", +"# c #d7d7d7", +"a c #8e8e8e", +"b c #555555", +"c c #2b2b2b", +"d c #101010", +"e c #020202", +"f c #a4a4a4", +"g c #373737", +"h c #000000", +"i c #cecece", +"j c #383838", +"k c #a6a6a6", +"l c #212121", +"m c #757575", +"n c #b3b3b3", +"o c #dcdcdc", +"p c #b2b2b2", +"q c #4a4a4a", +"r c #151515", +"s c #9f9f9f", +"t c #838383", +"u c #888888", +"v c #313131", +"w c #060606", +/* pixels */ +"....................", +"....................", +".......qhhhhq.......", +"...hh..h....h.......", +"...hh.sv....vs......", +"....htqt....tq......", +".....hh......h......", +".....qh......h......", +".....sht.....vs.....", +".....qqh.....tq.....", +".....h.ht.....h.....", +".....h.fh.....h.....", +"....sv..ht....vs....", +"....qt..fhh...tq....", +"....h....hh....h....", +"...sh..........hs...", +"...hhhhhhhhhhhhhh...", +"....................", +"...................." +}; diff --git a/data/pixmaps/toolbar/time-raw.png b/data/pixmaps/toolbar/time-raw.png new file mode 100644 index 0000000..849965e Binary files /dev/null and b/data/pixmaps/toolbar/time-raw.png differ diff --git a/data/pixmaps/toolbar/time-raw.xpm b/data/pixmaps/toolbar/time-raw.xpm new file mode 100644 index 0000000..78c89ab --- /dev/null +++ b/data/pixmaps/toolbar/time-raw.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char * time_raw_xpm[] = { +"19 19 4 1", +" c None", +". c #7A7A7A", +"+ c #000000", +"@ c #A0A0A0", +" ", +" ", +" ", +" .+ @++++++@ +@ ", +" +. +@ ", +" ", +" .+ .+++ +++++@ ", +" +. +@ ", +" ", +" .+ .++++ +@ +@ ", +" +. +@ ", +" ", +" .+ .+++ +++++@ ", +" +. +@ ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/time-real.png b/data/pixmaps/toolbar/time-real.png new file mode 100644 index 0000000..afbb614 Binary files /dev/null and b/data/pixmaps/toolbar/time-real.png differ diff --git a/data/pixmaps/toolbar/time-real.xpm b/data/pixmaps/toolbar/time-real.xpm new file mode 100644 index 0000000..ebba1ad --- /dev/null +++ b/data/pixmaps/toolbar/time-real.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char * time_real_xpm[] = { +"19 19 7 1", +" c None", +". c #7A7A7A", +"+ c #6B6B6B", +"@ c #2A2A2A", +"# c #000000", +"$ c #454545", +"% c #ABABAB", +" ", +" ", +" .+++. @. ", +" .+######. .@. ", +" .$@+++++@#. .@ ", +" .$++% %+%#. ", +" $@+ +@# ", +" .#+% %+#. ", +" +#% %#+ ", +" +#%.###. %#+ ", +" +#% # %#+ ", +" .#+% # +#. ", +" #@% # %@+ ", +" .#+%% . %+#. ", +" .#@+%%%+##+ ", +" .@#####+. ", +" .@$+. ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/transforms-decounterpoint.xpm b/data/pixmaps/toolbar/transforms-decounterpoint.xpm new file mode 100644 index 0000000..6ad9d6e --- /dev/null +++ b/data/pixmaps/toolbar/transforms-decounterpoint.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" # ", +" # ", +" # ", +" # # ", +" # # ", +" # # ", +" # # ", +" -@## # ", +" +#### # ", +" ##### # ", +" .#@.# # ", +" -@## -@## ", +" +#### +#### ", +" ##### ##### ", +" .#@. .#@. ", +" ", +" # # ", +" ###### ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/transforms-tie.xpm b/data/pixmaps/toolbar/transforms-tie.xpm new file mode 100644 index 0000000..16706f8 --- /dev/null +++ b/data/pixmaps/toolbar/transforms-tie.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" ", +" ", +" # # ", +" # # ", +" # # ", +" # # ", +" # # ", +" # # ", +" # # ", +" # # ", +" -@## -@## ", +" +@ # +#### ", +" # -# ##### ", +" .#@. .#@. ", +" ", +" # # ", +" ###### ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/transport-cursor-to-pointer.png b/data/pixmaps/toolbar/transport-cursor-to-pointer.png new file mode 100644 index 0000000..02919ff Binary files /dev/null and b/data/pixmaps/toolbar/transport-cursor-to-pointer.png differ diff --git a/data/pixmaps/toolbar/transport-cursor-to-pointer.xpm b/data/pixmaps/toolbar/transport-cursor-to-pointer.xpm new file mode 100644 index 0000000..65cc416 --- /dev/null +++ b/data/pixmaps/toolbar/transport-cursor-to-pointer.xpm @@ -0,0 +1,18 @@ +/* XPM */ +static char *transport[]={ +"12 12 3 1", +". c None", +"a c #000080", +"# c #c000c0", +"............", +"............", +".##.....aa..", +".##.....aa..", +".##.#...aa..", +".##.##..aa..", +".##.###.aa..", +".##.##..aa..", +".##.#...aa..", +".##.....aa..", +".##.....aa..", +"............"}; diff --git a/data/pixmaps/toolbar/transport-ffwd-end.png b/data/pixmaps/toolbar/transport-ffwd-end.png new file mode 100644 index 0000000..4fd2e0d Binary files /dev/null and b/data/pixmaps/toolbar/transport-ffwd-end.png differ diff --git a/data/pixmaps/toolbar/transport-ffwd-end.xpm b/data/pixmaps/toolbar/transport-ffwd-end.xpm new file mode 100644 index 0000000..b976b78 --- /dev/null +++ b/data/pixmaps/toolbar/transport-ffwd-end.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char *transport[]={ +"11 12 30 1", +". c None", +"# c #000000", +"k c #000100", +"t c #040404", +"d c #0a0a0a", +"g c #0d0d0d", +"o c #222222", +"n c #292a28", +"q c #2b2c28", +"l c #3d403d", +"u c #424542", +"x c #4c4c4c", +"h c #606360", +"e c #72726e", +"a c #7a7e7a", +"p c #7b7d7b", +"r c #959794", +"m c #959995", +"v c #aeb0ae", +"y c #b5b7b5", +"s c #babbba", +"i c #bec1be", +"j c #c1c2c1", +"c c #c2c2c2", +"f c #cacaca", +"b c #d4d4d3", +"B c #d5d5d5", +"z c #d6d7d6", +"w c #d7d8d7", +"A c #d8d8d8", +"...........", +"..#ab..c#..", +"..#def.c#..", +"..##ghij#..", +"..###klm#..", +"..#####n#..", +"..#####g#..", +"..####op#..", +"..##kqrs#..", +"..#tuvwc#..", +"..#xyw.c#..", +"..........."}; diff --git a/data/pixmaps/toolbar/transport-ffwd.png b/data/pixmaps/toolbar/transport-ffwd.png new file mode 100644 index 0000000..6245f0c Binary files /dev/null and b/data/pixmaps/toolbar/transport-ffwd.png differ diff --git a/data/pixmaps/toolbar/transport-ffwd.xpm b/data/pixmaps/toolbar/transport-ffwd.xpm new file mode 100644 index 0000000..4d6b88c --- /dev/null +++ b/data/pixmaps/toolbar/transport-ffwd.xpm @@ -0,0 +1,59 @@ +/* XPM */ +static char *transport[]={ +"11 12 44 1", +". c None", +"m c #000000", +"s c #010101", +"E c #030303", +"u c #050505", +"z c #060606", +"t c #0b0b0b", +"x c #0c0c0c", +"B c #0e0e0e", +"g c #111111", +"j c #131413", +"p c #151515", +"f c #171717", +"i c #171817", +"c c #171a17", +"n c #191a19", +"# c #1a1a17", +"q c #1b1d1b", +"A c #222322", +"v c #2b2e2b", +"J c #2e2e2e", +"L c #31312d", +"P c #393d39", +"N c #3e403e", +"o c #505350", +"F c #525352", +"H c #535353", +"C c #595b59", +"a c #6b6e6b", +"d c #6d706d", +"G c #828582", +"y c #848584", +"r c #8b8f8b", +"k c #8c8e8c", +"h c #8e908e", +"w c #adb1ad", +"O c #b2b4b2", +"M c #b8b8b8", +"K c #b8bbb8", +"D c #c6c7c6", +"I c #c8c8c8", +"e c #d4d5d4", +"b c #d4d6d4", +"l c #d6d7d6", +"...........", +"..NO..PM...", +"..#ab.cde..", +"..fgh.ijkl.", +"..fmnopmqre", +"..fmstumsvw", +"..fmmmmmmxy", +"..fmzABmzCD", +"..fEFGiuHI.", +"..fJK.iLM..", +"..NO..PM...", +"..........."}; diff --git a/data/pixmaps/toolbar/transport-panic.png b/data/pixmaps/toolbar/transport-panic.png new file mode 100644 index 0000000..1b34cf0 Binary files /dev/null and b/data/pixmaps/toolbar/transport-panic.png differ diff --git a/data/pixmaps/toolbar/transport-play.png b/data/pixmaps/toolbar/transport-play.png new file mode 100644 index 0000000..65591c9 Binary files /dev/null and b/data/pixmaps/toolbar/transport-play.png differ diff --git a/data/pixmaps/toolbar/transport-play.xpm b/data/pixmaps/toolbar/transport-play.xpm new file mode 100644 index 0000000..14096e6 --- /dev/null +++ b/data/pixmaps/toolbar/transport-play.xpm @@ -0,0 +1,57 @@ +/* XPM */ +static char *transport[]={ +"14 12 42 1", +". c None", +"i c #000000", +"x c #000100", +"A c #010101", +"u c #010201", +"j c #020202", +"o c #030303", +"d c #050605", +"F c #0b0b0b", +"e c #0d0e0d", +"v c #191a19", +"s c #1e1f1e", +"B c #232423", +"I c #262726", +"k c #272927", +"a c #2b2c2b", +"y c #3e403e", +"G c #464946", +"p c #474947", +"f c #4f504f", +"C c #797a79", +"l c #828382", +"J c #888985", +"b c #8c8f8c", +"z c #9da09d", +"q c #a6a6a6", +"H c #b0b1b0", +"g c #b6b8b6", +"L c #bcbcbc", +"# c #c3c3c3", +"K c #c6c7c6", +"c c #c8c9c8", +"D c #cbcccb", +"m c #cecece", +"w c #d0d0d0", +"t c #d0d1d0", +"r c #d1d2d1", +"h c #d8d8d8", +"M c #d9d9d9", +"E c #dadada", +"N c #dadbda", +"n c #dbdbdb", +"....#.........", +"....abc.......", +"....defgh.....", +"....dijklmn...", +"....diiiopqr..", +"....diiiijsst.", +"....diiiiuvvw.", +"....diiixyzt..", +"....diABCDE...", +"....dFGHh.....", +"....IJK.......", +"....L........."}; diff --git a/data/pixmaps/toolbar/transport-pointer-to-cursor.png b/data/pixmaps/toolbar/transport-pointer-to-cursor.png new file mode 100644 index 0000000..f9868ae Binary files /dev/null and b/data/pixmaps/toolbar/transport-pointer-to-cursor.png differ diff --git a/data/pixmaps/toolbar/transport-pointer-to-cursor.xpm b/data/pixmaps/toolbar/transport-pointer-to-cursor.xpm new file mode 100644 index 0000000..6d1cbb8 --- /dev/null +++ b/data/pixmaps/toolbar/transport-pointer-to-cursor.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char * transport_pointer_to_cursor_xpm[] = { +"22 22 3 1", +" c None", +". c #000080", +"+ c #C000C0", +" ", +" ", +" ", +" .... ++++ ", +" .... ++++ ", +" .... ++++ ", +" .... ++++ ", +" .... .. ++++ ", +" .... .. ++++ ", +" .... ... ++++ ", +" .... ..... ++++ ", +" .... ..... ++++ ", +" .... .... ++++ ", +" .... ... ++++ ", +" .... .. ++++ ", +" .... .. ++++ ", +" .... ++++ ", +" .... ++++ ", +" .... ++++ ", +" .... ++++ ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/transport-record.png b/data/pixmaps/toolbar/transport-record.png new file mode 100644 index 0000000..e331965 Binary files /dev/null and b/data/pixmaps/toolbar/transport-record.png differ diff --git a/data/pixmaps/toolbar/transport-record.xpm b/data/pixmaps/toolbar/transport-record.xpm new file mode 100644 index 0000000..2918feb --- /dev/null +++ b/data/pixmaps/toolbar/transport-record.xpm @@ -0,0 +1,72 @@ +/* XPM */ +static char *transport[]={ +"12 12 57 1", +". c None", +"F c #d76666", +"O c #d79293", +"y c #d85d5e", +"q c #d97a7b", +"k c #d99797", +"1 c #d9bbbb", +"Y c #d9c6c6", +"s c #d9d2d2", +"t c #da5f5f", +"R c #da8282", +"Z c #dab2b3", +"D c #dab8b8", +"# c #dabcbc", +"L c #dac9c9", +"2 c #dad1d2", +"P c #dad6d6", +"C c #db4343", +"M c #db4d4d", +"c c #dbacac", +"0 c #dbadad", +"w c #dbb5b5", +"K c #dbb6b6", +"m c #dbc2c2", +"d c #dbcbcb", +"Q c #dbd2d2", +"r c #dbd3d4", +"B c #dc3b3b", +"a c #dca3a3", +"z c #dca8a8", +"v c #dcadad", +"X c #dcc7c7", +"l c #dcdbdb", +"W c #dd4f4f", +"e c #dd6767", +"G c #dd7878", +"b c #dd9f9f", +"J c #de2828", +"V c #de2a2a", +"n c #de3535", +"S c #de3939", +"T c #df2121", +"x c #df2425", +"E c #df292a", +"j c #df3d3d", +"i c #e01a1a", +"U c #e01c1c", +"f c #e02a2a", +"g c #e11212", +"A c #e11313", +"p c #e20a0a", +"h c #e20e0e", +"I c #e30101", +"N c #e30202", +"u c #e30404", +"H c #e30707", +"o c #e40101", +"....#abcd...", +"..defghijkl.", +".mnoooooopqr", +"stuoooooooiv", +"wxoooooooooy", +"zAoooooooooB", +"zAoooooooooC", +"DEoooooooooF", +".GHooooooIJK", +".LMNoooooAOP", +"..QRSTUVWX..", +"....YZ012..."}; diff --git a/data/pixmaps/toolbar/transport-rewind-end.png b/data/pixmaps/toolbar/transport-rewind-end.png new file mode 100644 index 0000000..c7ba16f Binary files /dev/null and b/data/pixmaps/toolbar/transport-rewind-end.png differ diff --git a/data/pixmaps/toolbar/transport-rewind-end.xpm b/data/pixmaps/toolbar/transport-rewind-end.xpm new file mode 100644 index 0000000..d0f8e0a --- /dev/null +++ b/data/pixmaps/toolbar/transport-rewind-end.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *transport[]={ +"11 12 29 1", +". c None", +"b c #000000", +"o c #000100", +"y c #040404", +"h c #0a0a0a", +"l c #0d0d0d", +"r c #222222", +"p c #292a28", +"u c #2b2c28", +"n c #3d403d", +"x c #424542", +"A c #4c4c4c", +"k c #606360", +"g c #72726e", +"e c #7a7e7a", +"q c #7b7d7b", +"t c #959794", +"m c #959995", +"w c #aeb0ae", +"z c #b5b7b5", +"s c #babbba", +"j c #bec1be", +"i c #c1c2c1", +"c c #c2c2c2", +"f c #cacaca", +"a c #cdcecd", +"d c #d4d4d3", +"v c #d7d8d7", +"# c #d9d9d9", +"...........", +"..bc..deb..", +"..bc.fghb..", +"..bijklbb..", +"..bmnobbb..", +"..bpbbbbb..", +"..blbbbbb..", +"..bqrbbbb..", +"..bstuobb..", +"..bcvwxyb..", +"..bc.vzAb..", +"..........."}; diff --git a/data/pixmaps/toolbar/transport-rewind.png b/data/pixmaps/toolbar/transport-rewind.png new file mode 100644 index 0000000..c1cb1db Binary files /dev/null and b/data/pixmaps/toolbar/transport-rewind.png differ diff --git a/data/pixmaps/toolbar/transport-rewind.xpm b/data/pixmaps/toolbar/transport-rewind.xpm new file mode 100644 index 0000000..af83218 --- /dev/null +++ b/data/pixmaps/toolbar/transport-rewind.xpm @@ -0,0 +1,58 @@ +/* XPM */ +static char *transport[]={ +"11 12 43 1", +". c None", +"o c #000000", +"u c #010101", +"H c #030303", +"v c #050505", +"B c #060606", +"w c #0b0b0b", +"y c #0c0c0c", +"C c #0e0e0e", +"k c #111111", +"h c #131413", +"p c #151515", +"l c #171717", +"i c #171817", +"b c #171a17", +"r c #191a19", +"e c #1a1a17", +"n c #1b1d1b", +"D c #222322", +"t c #2b2e2b", +"L c #2e2e2e", +"J c #31312d", +"M c #393d39", +"O c #3e403e", +"q c #505350", +"G c #525352", +"F c #535353", +"A c #595b59", +"d c #6b6e6b", +"a c #6d706d", +"x c #848584", +"m c #8b8f8b", +"g c #8c8e8c", +"j c #8e908e", +"s c #adb1ad", +"N c #b2b4b2", +"I c #b8b8b8", +"K c #b8bbb8", +"z c #c6c7c6", +"E c #c8c8c8", +"# c #d4d5d4", +"c c #d4d6d4", +"f c #d6d7d6", +"...........", +"...IM..NO..", +"..#ab.cde..", +".fghi.jkl..", +"#mnopqrol..", +"stuovwuol..", +"xyooooool..", +"zABoCDBol..", +".EFvi.GHl..", +"..IJi.KLl..", +"...IM..NO..", +"..........."}; diff --git a/data/pixmaps/toolbar/transport-solo.png b/data/pixmaps/toolbar/transport-solo.png new file mode 100644 index 0000000..d74345a Binary files /dev/null and b/data/pixmaps/toolbar/transport-solo.png differ diff --git a/data/pixmaps/toolbar/transport-solo.xpm b/data/pixmaps/toolbar/transport-solo.xpm new file mode 100644 index 0000000..e299305 --- /dev/null +++ b/data/pixmaps/toolbar/transport-solo.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char * transport_solo_xpm[] = { +"14 12 11 1", +" c None", +". c #696C69", +"+ c #0D0E0D", +"@ c #000000", +"# c #333633", +"$ c #1F211F", +"% c #353735", +"& c #050605", +"* c #070707", +"= c #383A38", +"- c #545854", +" ", +" ", +" .+@@@@# ", +" $@@@@@@@ ", +" @@@ ", +" %&@@@*=- ", +" -=*@@@&% ", +" @@@ ", +" @@@@@@@@$ ", +" *@@@@@+. ", +" ", +" "}; diff --git a/data/pixmaps/toolbar/transport-stop.png b/data/pixmaps/toolbar/transport-stop.png new file mode 100644 index 0000000..3d73b10 Binary files /dev/null and b/data/pixmaps/toolbar/transport-stop.png differ diff --git a/data/pixmaps/toolbar/transport-stop.xpm b/data/pixmaps/toolbar/transport-stop.xpm new file mode 100644 index 0000000..3a11cf7 --- /dev/null +++ b/data/pixmaps/toolbar/transport-stop.xpm @@ -0,0 +1,17 @@ +/* XPM */ +static char *transport[]={ +"13 12 2 1", +". c None", +"# c #000000", +".............", +".............", +"...#######...", +"...#######...", +"...#######...", +"...#######...", +"...#######...", +"...#######...", +"...#######...", +"...#######...", +".............", +"............."}; diff --git a/data/pixmaps/toolbar/transport-tracking.png b/data/pixmaps/toolbar/transport-tracking.png new file mode 100644 index 0000000..a2ceae9 Binary files /dev/null and b/data/pixmaps/toolbar/transport-tracking.png differ diff --git a/data/pixmaps/toolbar/transport-tracking.xpm b/data/pixmaps/toolbar/transport-tracking.xpm new file mode 100644 index 0000000..18dec51 --- /dev/null +++ b/data/pixmaps/toolbar/transport-tracking.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char * transport_tracking_xpm[] = { +"20 22 2 1", +" c None", +". c #222285", +" ", +" ", +" ", +" ", +" ... ", +" .... ", +" .... ", +" .... ", +".. . .... ", +"... .. .... ", +".... ... .... ", +"................... ", +"................... ", +"..... ..... ..... ", +".... ... .... ", +"... .. .... ", +".. . .... ", +" .... ", +" .... ", +" .... ", +" .. ", +" "}; diff --git a/data/pixmaps/toolbar/trill.xpm b/data/pixmaps/toolbar/trill.xpm new file mode 100644 index 0000000..c9f14ca --- /dev/null +++ b/data/pixmaps/toolbar/trill.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"13 11 8 1", +" c #090909", +". c #2d2d2d", +"X c #494949", +"o c #626262", +"O c Gray55", +"+ c #afafaf", +"@ c #d0d0d0", +"# c None", +/* pixels */ +"#############", +"######@######", +"##### +######", +"####@ +######", +"####@ #@o##@#", +"##++X.+OX.@ +", +"#++@. @#+.#.@", +"#+OO X##.O###", +"##@@ +O#.@###", +"###@ X+@ @###", +"####+O#@O####" +}; diff --git a/data/pixmaps/toolbar/triplet.xpm b/data/pixmaps/toolbar/triplet.xpm new file mode 100644 index 0000000..c82bf8e --- /dev/null +++ b/data/pixmaps/toolbar/triplet.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * basis_6_xpm[] = { +"22 24 6 1", +" c None", +"# c black", +"+ c #242724", +"@ c #4D4E4D", +"- c #6B6D6B", +". c #848484", +" ", +" ", +" ", +" ############# ", +" ############# ", +" # # # ", +" # # # ", +" # # # ", +" # # # ", +" # # # ", +" # # # ", +" # # # ", +" -@## -@## -@## ", +" +#### +#### +#### ", +" ##### ##### ##### ", +" .#@. .#@. .#@. ", +" ", +" #### ", +" #- ", +" ##. ", +" @# ", +" . @# ", +" +##. ", +" "}; diff --git a/data/pixmaps/toolbar/turn.xpm b/data/pixmaps/toolbar/turn.xpm new file mode 100644 index 0000000..fa1bc6d --- /dev/null +++ b/data/pixmaps/toolbar/turn.xpm @@ -0,0 +1,22 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"14 8 8 1", +" c #010101", +". c Gray21", +"X c #484848", +"o c #777777", +"O c Gray56", +"+ c #b9b9b9", +"@ c #c8c8c8", +"# c None", +/* pixels */ +"##############", +"###@OO####OO##", +"##X .+#o .#", +"#+.OX @@ Xo@", +"#O@##+ +##@O", +"#@oX @@ XO.+", +"##. o#+. X#", +"###OO####OO@##" +}; diff --git a/data/pixmaps/toolbar/un-mute-all.png b/data/pixmaps/toolbar/un-mute-all.png new file mode 100644 index 0000000..27af613 Binary files /dev/null and b/data/pixmaps/toolbar/un-mute-all.png differ diff --git a/data/pixmaps/toolbar/un-mute-all.xpm b/data/pixmaps/toolbar/un-mute-all.xpm new file mode 100644 index 0000000..36ea88c --- /dev/null +++ b/data/pixmaps/toolbar/un-mute-all.xpm @@ -0,0 +1,87 @@ +/* XPM */ +static char * un_mute_all_xpm[] = { +"22 22 62 1", +" c None", +". c #8D8E8E", +"+ c #7F7F7F", +"@ c #727272", +"# c #8A8A8B", +"$ c #ADAEAF", +"% c #7F7F80", +"& c #5F6264", +"* c #63788F", +"= c #668EB8", +"- c #758FAB", +"; c #8A9096", +"> c #A7A8A8", +", c #8C8D8E", +"' c #595C5E", +") c #6593C5", +"! c #94C6FD", +"~ c #A4D0FF", +"{ c #8CC3FF", +"] c #77AEE9", +"^ c #9EA6AF", +"/ c #C0C1C1", +"( c #777777", +"_ c #5C7188", +": c #DDEDFF", +"< c #E5F2FF", +"[ c #BFDEFF", +"} c #8CC4FF", +"| c #92B5D9", +"1 c #BFBFBF", +"2 c #676767", +"3 c #6088B3", +"4 c #EAF4FF", +"5 c #C7E2FF", +"6 c #97C9FF", +"7 c #86BAF1", +"8 c #CFCFCF", +"9 c #808080", +"0 c #6D87A3", +"a c #BEDEFF", +"b c #B2D7FF", +"c c #8DC4FF", +"d c #A5CCF6", +"e c #E6E6E6", +"f c #A9AAAB", +"g c #7E848A", +"h c #74ABE6", +"i c #84C0FF", +"j c #E2EFFE", +"k c #F5F5F5", +"l c #9B9B9B", +"m c #9098A1", +"n c #89ACD0", +"o c #81B4EC", +"p c #9CC3EC", +"q c #D4E1EF", +"r c #FBFBFC", +"s c #B5B6B6", +"t c #AEAEAE", +"u c #BBBBBB", +"v c #D1D1D1", +"w c #E2E3E3", +" ", +" .+@#$ ", +" %&*=-;> ", +" ,')!~{]^/ ", +" (_!:<[}|1 ", +" 23~<45678 ", +" 90{a5bcde ", +" fgh}6cijk ", +" lmnopqr ", +" stuvw ", +" ", +" ", +" .+@#$ ", +" %&*=-;> ", +" ,')!~{]^/ ", +" (_!:<[}|1 ", +" 23~<45678 ", +" 90{a5bcde ", +" fgh}6cijk ", +" lmnopqr ", +" stuvw ", +" "}; diff --git a/data/pixmaps/toolbar/up-bow.xpm b/data/pixmaps/toolbar/up-bow.xpm new file mode 100644 index 0000000..c25301f --- /dev/null +++ b/data/pixmaps/toolbar/up-bow.xpm @@ -0,0 +1,28 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"9 14 8 1", +" c #181818", +". c #2d2d2d", +"X c Gray26", +"o c #6a6a6a", +"O c #818181", +"+ c Gray69", +"@ c Gray79", +"# c None", +/* pixels */ +"#########", +"##@#####@", +"#oo####oo", +"## #### #", +"## ###+X#", +"##oo##oo#", +"##+.##X+#", +"### ## ##", +"###X++X##", +"###oOoo##", +"###+. ###", +"#### ###", +"####oo###", +"#####@###" +}; diff --git a/data/pixmaps/transport/button-bar-time.png b/data/pixmaps/transport/button-bar-time.png new file mode 100644 index 0000000..d79a2c5 Binary files /dev/null and b/data/pixmaps/transport/button-bar-time.png differ diff --git a/data/pixmaps/transport/button-bar-time.xpm b/data/pixmaps/transport/button-bar-time.xpm new file mode 100644 index 0000000..d2ed579 --- /dev/null +++ b/data/pixmaps/transport/button-bar-time.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 11 4 1", +" c None", +"X c black", +"O c gray25", +"o c gray50", +/* pixels */ +" ", +" OO OO ", +" OO OO ", +" OO OO ", +" OO OO ", +" OO OO ", +" OO OO ", +" OO OO ", +" OO OO ", +" OO OO ", +" ", +}; diff --git a/data/pixmaps/transport/button-clock.xpm b/data/pixmaps/transport/button-clock.xpm new file mode 100644 index 0000000..0ed9391 --- /dev/null +++ b/data/pixmaps/transport/button-clock.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 11 4 1", +" c None", +"X c black", +"O c gray25", +"o c gray50", +/* pixels */ +" oOXXXOo ", +" oXXo oXXo ", +"oXo X oXo", +"OX X o XO", +"Xo X X oX", +"X XX X", +"Xo X oX", +"OX XO", +"oXo oXo", +" oXXo oXXo ", +" oOXXXOo ", +}; diff --git a/data/pixmaps/transport/button-ffwd-end.png b/data/pixmaps/transport/button-ffwd-end.png new file mode 100644 index 0000000..2247807 Binary files /dev/null and b/data/pixmaps/transport/button-ffwd-end.png differ diff --git a/data/pixmaps/transport/button-ffwd-end.xpm b/data/pixmaps/transport/button-ffwd-end.xpm new file mode 100644 index 0000000..067cbc2 --- /dev/null +++ b/data/pixmaps/transport/button-ffwd-end.xpm @@ -0,0 +1,102 @@ +/* XPM */ +static char *end[] = { +/* width height num_colors chars_per_pixel */ +" 14 21 74 2", +/* colors */ +".. c #000000", +".# c #000400", +".a c #080800", +".b c #080808", +".c c #080c08", +".d c #101010", +".e c #101410", +".f c #181818", +".g c #202020", +".h c #202420", +".i c #282828", +".j c #282c28", +".k c #303028", +".l c #303030", +".m c #303430", +".n c #383838", +".o c #404040", +".p c #404440", +".q c #484848", +".r c #484c48", +".s c #505050", +".t c #505450", +".u c #606060", +".v c #606460", +".w c #686868", +".x c #686c68", +".y c #687880", +".z c #707070", +".A c #707470", +".B c #787870", +".C c #787878", +".D c #787c78", +".E c #808080", +".F c #808480", +".G c #8098a0", +".H c #888888", +".I c #888c88", +".J c #909088", +".K c #909090", +".L c #909490", +".M c #989898", +".N c #989c98", +".O c #98b8c8", +".P c #a0a098", +".Q c #a0a0a0", +".R c #a0a4a0", +".S c #a0b8c8", +".T c #a0bcc8", +".U c #a8a8a8", +".V c #a8aca8", +".W c #a8bcc8", +".X c #a8c0c8", +".Y c #a8c4c8", +".Z c #b0b0b0", +".0 c #b0b4b0", +".1 c #b0c0c8", +".2 c #b0c4c8", +".3 c #b0c8d0", +".4 c #b8bcb8", +".5 c #b8c4c8", +".6 c #b8c8c8", +".7 c #b8c8d0", +".8 c #c0c0c0", +".9 c #c0c4c0", +"#. c #c0c8c8", +"## c #c0c8d0", +"#a c #c0ccd0", +"#b c #c8c8c8", +"#c c #c8ccc8", +"#d c #c8ccd0", +"#e c #c8d0d0", +"#f c None", +"#g c #d0d4d0", +"#h c #e8ece8", +/* pixels */ +"#f#f#f#f#f#f#f#f#f#f#f#f#f#f", +"#f#f#f#f#f#f#f#f#f#f#c#c#f#f", +"#f#f.0.N#c#f#f#f#f#f.l.E#f#f", +"#f#f.U.c.L#f#f#f#f#f.j.E#f#f", +"#f#f.U...b.J#f#f#f#f.j.E#f#f", +"#f#f.U.....b.H#f#f#f.j.E#f#f", +"#f#f.U.......#.F#c#f.j.E#f#f", +"#f#f.U.........#.D#c.j.E#f#f", +"#f#f.U.............A.j.E#f#f", +"#f#f.U...............a.E#f#f", +"#f#f.U...............#.E#f#f", +"#f#f.U.............w.j.E#f#f", +"#f#f.U...........z#c.j.E#f#f", +"#f#f.U.......#.B#c#f.j.E#f#f", +"#f#f.U.....#.C#c#f#f.j.E#f#f", +"#f#f.U...b.E#c#f#f#f.j.E#f#f", +"#f#f.U.b.H#c#f#f#f#f.j.E#f#f", +"#f#f.Z.K#c#f#f#f#f#f.j.E#f#f", +"#f#f#c#f#f#f#f#f#f#f.Z.8#f#f", +"#f#f#f#f#f#f#f#f#f#f#f#f#f#f", +"#f#f#f#f#f#f#f#f#f#f#f#f#f#f" +}; diff --git a/data/pixmaps/transport/button-ffwd.png b/data/pixmaps/transport/button-ffwd.png new file mode 100644 index 0000000..358fda8 Binary files /dev/null and b/data/pixmaps/transport/button-ffwd.png differ diff --git a/data/pixmaps/transport/button-ffwd.xpm b/data/pixmaps/transport/button-ffwd.xpm new file mode 100644 index 0000000..d9429f0 --- /dev/null +++ b/data/pixmaps/transport/button-ffwd.xpm @@ -0,0 +1,99 @@ +/* XPM */ +static char *ffwd[] = { +/* width height num_colors chars_per_pixel */ +" 14 18 74 2", +/* colors */ +".. c #000000", +".# c #000400", +".a c #080800", +".b c #080808", +".c c #080c08", +".d c #101010", +".e c #101410", +".f c #181818", +".g c #202020", +".h c #202420", +".i c #282828", +".j c #282c28", +".k c #303028", +".l c #303030", +".m c #303430", +".n c #383838", +".o c #404040", +".p c #404440", +".q c #484848", +".r c #484c48", +".s c #505050", +".t c #505450", +".u c #606060", +".v c #606460", +".w c #686868", +".x c #686c68", +".y c #687880", +".z c #707070", +".A c #707470", +".B c #787870", +".C c #787878", +".D c #787c78", +".E c #808080", +".F c #808480", +".G c #8098a0", +".H c #888888", +".I c #888c88", +".J c #909088", +".K c #909090", +".L c #909490", +".M c #989898", +".N c #989c98", +".O c #98b8c8", +".P c #a0a098", +".Q c #a0a0a0", +".R c #a0a4a0", +".S c #a0b8c8", +".T c #a0bcc8", +".U c #a8a8a8", +".V c #a8aca8", +".W c #a8bcc8", +".X c #a8c0c8", +".Y c #a8c4c8", +".Z c #b0b0b0", +".0 c #b0b4b0", +".1 c #b0c0c8", +".2 c #b0c4c8", +".3 c #b0c8d0", +".4 c #b8bcb8", +".5 c #b8c4c8", +".6 c #b8c8c8", +".7 c #b8c8d0", +".8 c #c0c0c0", +".9 c #c0c4c0", +"#. c #c0c8c8", +"## c #c0c8d0", +"#a c #c0ccd0", +"#b c #c8c8c8", +"#c c #c8ccc8", +"#d c #c8ccd0", +"#e c #c8d0d0", +"#f c None", +"#g c #d0d4d0", +"#h c #e8ece8", +/* pixels */ +"#f#f#c#f#f#f#f#c#f#f#f#f#f#f", +"#f#f.D#c#f#f#f.E#b#f#f#f#f#f", +"#f#f.o.A#f#f#f.t.u#c#f#f#f#f", +"#f#f.o.a.R#f#f.t.#.L#f#f#f#f", +"#f#f.o...g.9#f.t...e.4#f#f#f", +"#f#f.o.....s#c.t.....o#c#f#f", +"#f#f.o.......F.t.......A#c#f", +"#f#f.o.......c.n.......b.R#f", +"#f#f.o...................h.9", +"#f#f.o.....................K", +"#f#f.o.........#.........o#c", +"#f#f.o.......g.q.......f.4#f", +"#f#f.o.....b.R.t.......M#f#f", +"#f#f.o.....A#f.t.....u#f#f#f", +"#f#f.o...o#c#f.t...k#b#f#f#f", +"#f#f.o.e.4#f#f.t.c.Z#f#f#f#f", +"#f#f.p.M#f#f#f.t.F#f#f#f#f#f", +"#f#f.N#c#f#f#f.P#c#f#f#f#f#f" +}; diff --git a/data/pixmaps/transport/button-flip-closed.png b/data/pixmaps/transport/button-flip-closed.png new file mode 100644 index 0000000..3a9ba62 Binary files /dev/null and b/data/pixmaps/transport/button-flip-closed.png differ diff --git a/data/pixmaps/transport/button-flip-closed.xpm b/data/pixmaps/transport/button-flip-closed.xpm new file mode 100644 index 0000000..ca64998 --- /dev/null +++ b/data/pixmaps/transport/button-flip-closed.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 11 4 1", +" c None", +"X c black", +"O c gray25", +"o c gray50", +/* pixels */ +" ", +" ", +" O ", +" OXX ", +" OX XO ", +" OX XO ", +" OX XO ", +" XoooooooX ", +" XXXXXXXXX ", +" ", +" ", +}; diff --git a/data/pixmaps/transport/button-flip-open.png b/data/pixmaps/transport/button-flip-open.png new file mode 100644 index 0000000..92959c8 Binary files /dev/null and b/data/pixmaps/transport/button-flip-open.png differ diff --git a/data/pixmaps/transport/button-flip-open.xpm b/data/pixmaps/transport/button-flip-open.xpm new file mode 100644 index 0000000..09afecf --- /dev/null +++ b/data/pixmaps/transport/button-flip-open.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 11 4 1", +" c None", +"X c black", +"O c gray25", +"o c gray50", +/* pixels */ +" ", +" ", +" XXXXXXXXX ", +" XoooooooX ", +" OX XO ", +" OX XO ", +" OX XO ", +" OXX ", +" O ", +" ", +" ", +}; diff --git a/data/pixmaps/transport/button-from-end.png b/data/pixmaps/transport/button-from-end.png new file mode 100644 index 0000000..6846b0a Binary files /dev/null and b/data/pixmaps/transport/button-from-end.png differ diff --git a/data/pixmaps/transport/button-from-end.xpm b/data/pixmaps/transport/button-from-end.xpm new file mode 100644 index 0000000..f4c120e --- /dev/null +++ b/data/pixmaps/transport/button-from-end.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 11 4 1", +" c None", +"X c black", +"O c gray25", +"o c gray50", +/* pixels */ +" ", +" X OO ", +" XX OO ", +" XX OO ", +" XXoooo OO ", +"XXXXXXX OO ", +" XXoooo OO ", +" XX OO ", +" XX OO ", +" X OO ", +" ", +}; diff --git a/data/pixmaps/transport/button-loop-2.png b/data/pixmaps/transport/button-loop-2.png new file mode 100644 index 0000000..6243235 Binary files /dev/null and b/data/pixmaps/transport/button-loop-2.png differ diff --git a/data/pixmaps/transport/button-loop-2.xpm b/data/pixmaps/transport/button-loop-2.xpm new file mode 100644 index 0000000..75da0f2 --- /dev/null +++ b/data/pixmaps/transport/button-loop-2.xpm @@ -0,0 +1,56 @@ +/* XPM */ +static char *button-loop-2[] = { +/* width height num_colors chars_per_pixel */ +" 30 20 29 1", +/* colors */ +". c None", +"# c #d7d7d7", +"a c #8e8e8e", +"b c #555555", +"c c #2b2b2b", +"d c #101010", +"e c #020202", +"f c #a4a4a4", +"g c #373737", +"h c #000000", +"i c #cecece", +"j c #383838", +"k c #a6a6a6", +"l c #212121", +"m c #757575", +"n c #b3b3b3", +"o c #dcdcdc", +"p c #f3f3f3", +"q c #fdfdfd", +"r c #b2b2b2", +"s c #4a4a4a", +"t c #f7f7f7", +"u c #151515", +"v c #9f9f9f", +"w c #838383", +"x c #888888", +"y c #313131", +"z c #f1f1f1", +"A c #060606", +/* pixels */ +".........#abcdeedcba#.........", +".......fghhhhhhhhhhhhgf.......", +".....ijhhhhhhhhhhhhhhhhji.....", +"....khhhhlmn.....onmlhhhhk....", +"...rhhhs#............#shhhr...", +"...uhhv................vhhu...", +"..whhx..................xhhw..", +"..yhh....................hhy..", +"..Ahh....................hhA..", +"..Ahhx..................xhhA..", +"..yhhhv.....h..........vhhhy..", +"..whhhhs#...hh.......#shhhhw..", +"...uhhhhhlmnhhh.....lhhhhhu...", +"...rhhhhhhhhhhhh....hhhhhhr...", +"....khhhhhhhhhhhh...hhhhhk....", +".....ijhhhhhhhhhh...hhhji.....", +".......fghhhhhhh....hgf.......", +".........#abhhh.....#.........", +"............hh................", +"............h................." +}; diff --git a/data/pixmaps/transport/button-loop-3.png b/data/pixmaps/transport/button-loop-3.png new file mode 100644 index 0000000..dd95b41 Binary files /dev/null and b/data/pixmaps/transport/button-loop-3.png differ diff --git a/data/pixmaps/transport/button-loop.xpm b/data/pixmaps/transport/button-loop.xpm new file mode 100644 index 0000000..3673178 --- /dev/null +++ b/data/pixmaps/transport/button-loop.xpm @@ -0,0 +1,35 @@ +/* XPM */ +static char * button_loop_xpm[] = { +"24 24 8 1", +" c None", +". c #030303", +"+ c #020202", +"@ c #000000", +"# c #010101", +"$ c #060606", +"% c #040404", +"& c #050505", +" ", +" .. ", +" +@@@@@@# ", +" @@@@@@@@@@+ ", +" $@@@@@@@@@@@@+ ", +" @@@@#. .#@@@@. ", +" +@@@. .@@@@ ", +" @@@# +@@@. ", +" @@@ @@@+ ", +" +@@@ +@@# ", +" #@@@ +@@@ ", +" +@@@ +@@# ", +" @@@ + @@@+ ", +" @@@# +@++@@@. ", +" +@@@+ #@@@@@@ ", +" @@@@# @@@@@@. ", +" %@@@# .@@@@@# ", +" %@@ #@@@@@# ", +" @@@@@@@# ", +" .@@@@@@@@& ", +" #@@#+. ", +" . ", +" ", +" "}; diff --git a/data/pixmaps/transport/button-loopend.png b/data/pixmaps/transport/button-loopend.png new file mode 100644 index 0000000..d8b30e3 Binary files /dev/null and b/data/pixmaps/transport/button-loopend.png differ diff --git a/data/pixmaps/transport/button-loopstart.png b/data/pixmaps/transport/button-loopstart.png new file mode 100644 index 0000000..bcbd6d7 Binary files /dev/null and b/data/pixmaps/transport/button-loopstart.png differ diff --git a/data/pixmaps/transport/button-metronome.png b/data/pixmaps/transport/button-metronome.png new file mode 100644 index 0000000..7df11b0 Binary files /dev/null and b/data/pixmaps/transport/button-metronome.png differ diff --git a/data/pixmaps/transport/button-metronome.xpm b/data/pixmaps/transport/button-metronome.xpm new file mode 100644 index 0000000..fab16e0 --- /dev/null +++ b/data/pixmaps/transport/button-metronome.xpm @@ -0,0 +1,52 @@ +/* XPM */ +static char *button-metronome[] = { +/* width height num_colors chars_per_pixel */ +" 20 20 25 1", +/* colors */ +". c None", +"# c #d7d7d7", +"a c #8e8e8e", +"b c #555555", +"c c #2b2b2b", +"d c #101010", +"e c #020202", +"f c #a4a4a4", +"g c #373737", +"h c #000000", +"i c #cecece", +"j c #383838", +"k c #a6a6a6", +"l c #212121", +"m c #757575", +"n c #b3b3b3", +"o c #dcdcdc", +"p c #b2b2b2", +"q c #4a4a4a", +"r c #151515", +"s c #9f9f9f", +"t c #838383", +"u c #888888", +"v c #313131", +"w c #060606", +/* pixels */ +"....................", +"....................", +"........hhhh........", +".......qt..tq.......", +"...hh..h....h.......", +"...hh.sv....vs......", +"....htqt....tq......", +".....hh......h......", +".....qh......h......", +".....sht.....vs.....", +".....qqh.....tq.....", +".....h.ht.....h.....", +".....h.fh.....h.....", +"....sv..ht....vs....", +"....qt..fhh...tq....", +"....h....hh....h....", +"...sh..........hs...", +"...hhhhhhhhhhhhhh...", +"....................", +"...................." +}; diff --git a/data/pixmaps/transport/button-panic.png b/data/pixmaps/transport/button-panic.png new file mode 100644 index 0000000..0a1fa2a Binary files /dev/null and b/data/pixmaps/transport/button-panic.png differ diff --git a/data/pixmaps/transport/button-panic.xpm b/data/pixmaps/transport/button-panic.xpm new file mode 100644 index 0000000..2fc49ae --- /dev/null +++ b/data/pixmaps/transport/button-panic.xpm @@ -0,0 +1,46 @@ +/* XPM */ +static char * button_panic_xpm[] = { +"40 40 3 1", +" c None", +". c #000000", +"x c #808080", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ...... ", +" ...... ", +" ...... ", +" x....x ", +" x....x ", +" x....x ", +" .... ", +" .... ", +" x..x ", +" x..x ", +" x..x ", +" xx ", +" ", +" .... ", +" .... ", +" .... ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/transport/button-pause.xpm b/data/pixmaps/transport/button-pause.xpm new file mode 100644 index 0000000..6d295f5 --- /dev/null +++ b/data/pixmaps/transport/button-pause.xpm @@ -0,0 +1,150 @@ +/* XPM */ +static char *pause[] = { +/* width height num_colors chars_per_pixel */ +" 18 20 123 2", +/* colors */ +".. c #000000", +".# c #0000f8", +".a c #000400", +".b c #080800", +".c c #080808", +".d c #080c08", +".e c #101010", +".f c #101410", +".g c #181818", +".h c #181c18", +".i c #202020", +".j c #202420", +".k c #282828", +".l c #282c28", +".m c #303028", +".n c #303030", +".o c #303430", +".p c #383838", +".q c #404040", +".r c #404440", +".s c #484848", +".t c #484c48", +".u c #505050", +".v c #505450", +".w c #585c58", +".x c #606060", +".y c #606460", +".z c #686868", +".A c #686c68", +".B c #707070", +".C c #707470", +".D c #787870", +".E c #787878", +".F c #787c78", +".G c #808078", +".H c #808080", +".I c #808480", +".J c #888888", +".K c #888c88", +".L c #909088", +".M c #909090", +".N c #909490", +".O c #989898", +".P c #989c98", +".Q c #98b8c8", +".R c #a0a098", +".S c #a0a0a0", +".T c #a0a4a0", +".U c #a0b8c8", +".V c #a0bcc8", +".W c #a8a8a8", +".X c #a8aca8", +".Y c #a8bcc8", +".Z c #a8c0c8", +".0 c #a8c4c8", +".1 c #b0b0b0", +".2 c #b0b4b0", +".3 c #b0c0c8", +".4 c #b0c4c8", +".5 c #b0c8d0", +".6 c #b8b8b8", +".7 c #b8bcb8", +".8 c #b8c4c8", +".9 c #b8c8c8", +"#. c #b8c8d0", +"## c #c0c0c0", +"#a c #c0c4c0", +"#b c #c0c8c8", +"#c c #c0c8d0", +"#d c #c0ccc8", +"#e c #c0ccd0", +"#f c #c8c8c8", +"#g c #c8ccc8", +"#h c #c8ccd0", +"#i c #c8d0d0", +"#j c None", +"#k c #d0d4d0", +"#l c #e00000", +"#m c #e0aca8", +"#n c #e0b0b0", +"#o c #e0b4b0", +"#p c #e0b8b8", +"#q c #e80000", +"#r c #e87070", +"#s c #e87470", +"#t c #e87878", +"#u c #e87c78", +"#v c #e88080", +"#w c #e88480", +"#x c #e88888", +"#y c #e8a098", +"#z c #e8a0a0", +"#A c #e8a4a0", +"#B c #e8a8a8", +"#C c #e8ece8", +"#D c #f00000", +"#E c #f04040", +"#F c #f04440", +"#G c #f04848", +"#H c #f04c48", +"#I c #f05450", +"#J c #f05c58", +"#K c #f06060", +"#L c #f06868", +"#M c #f06c68", +"#N c #f07878", +"#O c #f07c78", +"#P c #f80000", +"#Q c #f80400", +"#R c #f80808", +"#S c #f80c08", +"#T c #f81010", +"#U c #f81c18", +"#V c #f82020", +"#W c #f82420", +"#X c #f82828", +"#Y c #f82c28", +"#Z c #f83030", +"#0 c #f83430", +"#1 c #f83c38", +"#2 c #f84040", +"#3 c #f84440", +"#4 c #f84c48", +/* pixels */ +"#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j", +"#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j", +"#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j", +"#j#j#j#j#f#######j#j#######g#j#j#j#j", +"#j#j#j#j.K.c.c.j#j#g.c.c.c.W#j#j#j#j", +"#j#j#j#j.J.....h#j#g.......W#j#j#j#j", +"#j#j#j#j.J.....h#j#g.......W#j#j#j#j", +"#j#j#j#j.J.....h#j#g.......W#j#j#j#j", +"#j#j#j#j.J.....h#j#g.......W#j#j#j#j", +"#j#j#j#j.J.....h#j#g.......W#j#j#j#j", +"#j#j#j#j.J.....h#j#g.......W#j#j#j#j", +"#j#j#j#j.J.....h#j#g.......W#j#j#j#j", +"#j#j#j#j.J.....h#j#g.......W#j#j#j#j", +"#j#j#j#j.J.....h#j#g.......W#j#j#j#j", +"#j#j#j#j.J.....h#j#g.......W#j#j#j#j", +"#j#j#j#j.K.a.a.i#j#g.a.a.a.W#j#j#j#j", +"#j#j#j#j#f.7.7###j#j.7.7.7#g#j#j#j#j", +"#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j", +"#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j", +"#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j" +}; diff --git a/data/pixmaps/transport/button-play.xpm b/data/pixmaps/transport/button-play.xpm new file mode 100644 index 0000000..11f005c --- /dev/null +++ b/data/pixmaps/transport/button-play.xpm @@ -0,0 +1,150 @@ +/* XPM */ +static char *play[] = { +/* width height num_colors chars_per_pixel */ +" 20 20 123 2", +/* colors */ +".. c #000000", +".# c #0000f8", +".a c #000400", +".b c #080800", +".c c #080808", +".d c #080c08", +".e c #101010", +".f c #101410", +".g c #181818", +".h c #181c18", +".i c #202020", +".j c #202420", +".k c #282828", +".l c #282c28", +".m c #303028", +".n c #303030", +".o c #303430", +".p c #383838", +".q c #404040", +".r c #404440", +".s c #484848", +".t c #484c48", +".u c #505050", +".v c #505450", +".w c #585c58", +".x c #606060", +".y c #606460", +".z c #686868", +".A c #686c68", +".B c #707070", +".C c #707470", +".D c #787870", +".E c #787878", +".F c #787c78", +".G c #808078", +".H c #808080", +".I c #808480", +".J c #888888", +".K c #888c88", +".L c #909088", +".M c #909090", +".N c #909490", +".O c #989898", +".P c #989c98", +".Q c #98b8c8", +".R c #a0a098", +".S c #a0a0a0", +".T c #a0a4a0", +".U c #a0b8c8", +".V c #a0bcc8", +".W c #a8a8a8", +".X c #a8aca8", +".Y c #a8bcc8", +".Z c #a8c0c8", +".0 c #a8c4c8", +".1 c #b0b0b0", +".2 c #b0b4b0", +".3 c #b0c0c8", +".4 c #b0c4c8", +".5 c #b0c8d0", +".6 c #b8b8b8", +".7 c #b8bcb8", +".8 c #b8c4c8", +".9 c #b8c8c8", +"#. c #b8c8d0", +"## c #c0c0c0", +"#a c #c0c4c0", +"#b c #c0c8c8", +"#c c #c0c8d0", +"#d c #c0ccc8", +"#e c #c0ccd0", +"#f c #c8c8c8", +"#g c #c8ccc8", +"#h c #c8ccd0", +"#i c #c8d0d0", +"#j c None", +"#k c #d0d4d0", +"#l c #e00000", +"#m c #e0aca8", +"#n c #e0b0b0", +"#o c #e0b4b0", +"#p c #e0b8b8", +"#q c #e80000", +"#r c #e87070", +"#s c #e87470", +"#t c #e87878", +"#u c #e87c78", +"#v c #e88080", +"#w c #e88480", +"#x c #e88888", +"#y c #e8a098", +"#z c #e8a0a0", +"#A c #e8a4a0", +"#B c #e8a8a8", +"#C c #e8ece8", +"#D c #f00000", +"#E c #f04040", +"#F c #f04440", +"#G c #f04848", +"#H c #f04c48", +"#I c #f05450", +"#J c #f05c58", +"#K c #f06060", +"#L c #f06868", +"#M c #f06c68", +"#N c #f07878", +"#O c #f07c78", +"#P c #f80000", +"#Q c #f80400", +"#R c #f80808", +"#S c #f80c08", +"#T c #f81010", +"#U c #f81c18", +"#V c #f82020", +"#W c #f82420", +"#X c #f82828", +"#Y c #f82c28", +"#Z c #f83030", +"#0 c #f83430", +"#1 c #f83c38", +"#2 c #f84040", +"#3 c #f84440", +"#4 c #f84c48", +/* pixels */ +"#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j", +"#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j", +"#j#j#j#j#j.B###j#j#j#j#j#j#j#j#j#j#j#j#j", +"#j#j#j#j#j.h.g.K#g#j#j#j#j#j#j#j#j#j#j#j", +"#j#j#j#j#j.h.....r.6#j#j#j#j#j#j#j#j#j#j", +"#j#j#j#j#j.h.......e.F#g#j#j#j#j#j#j#j#j", +"#j#j#j#j#j.h...........o.1#j#j#j#j#j#j#j", +"#j#j#j#j#j.h.............c.A#f#j#j#j#j#j", +"#j#j#j#j#j.h.................k.S#g#j#j#j", +"#j#j#j#j#j.h...................a.w#a#j#j", +"#j#j#j#j#j.h.....................u###j#j", +"#j#j#j#j#j.h.................h.N#g#j#j#j", +"#j#j#j#j#j.h.............a.w#a#j#j#j#j#j", +"#j#j#j#j#j.h...........k.T#j#j#j#j#j#j#j", +"#j#j#j#j#j.h.......d.A#f#j#j#j#j#j#j#j#j", +"#j#j#j#j#j.h.....p.X#j#j#j#j#j#j#j#j#j#j", +"#j#j#j#j#j.h.e.G#g#j#j#j#j#j#j#j#j#j#j#j", +"#j#j#j#j#j.x.6#j#j#j#j#j#j#j#j#j#j#j#j#j", +"#j#j#j#j#j#g#j#j#j#j#j#j#j#j#j#j#j#j#j#j", +"#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j" +}; diff --git a/data/pixmaps/transport/button-playpause.png b/data/pixmaps/transport/button-playpause.png new file mode 100644 index 0000000..752fa38 Binary files /dev/null and b/data/pixmaps/transport/button-playpause.png differ diff --git a/data/pixmaps/transport/button-playpause.xpm b/data/pixmaps/transport/button-playpause.xpm new file mode 100644 index 0000000..ee8a65a --- /dev/null +++ b/data/pixmaps/transport/button-playpause.xpm @@ -0,0 +1,58 @@ +/* XPM */ +static char * button_playpause_xpm[] = { +"36 20 35 1", +" c None", +". c #707070", +"+ c #C0C0C0", +"@ c #181C18", +"# c #181818", +"$ c #888C88", +"% c #C8CCC8", +"& c #C8C8C8", +"* c #000000", +"= c #404440", +"- c #B8B8B8", +"; c #080808", +"> c #202420", +", c #A8A8A8", +"' c #101010", +") c #787C78", +"! c #888888", +"~ c #303430", +"{ c #B0B0B0", +"] c #686C68", +"^ c #282828", +"/ c #A0A0A0", +"( c #000400", +"_ c #585C58", +": c #C0C4C0", +"< c #505050", +"[ c #909490", +"} c #A0A4A0", +"| c #080C08", +"1 c #383838", +"2 c #A8ACA8", +"3 c #202020", +"4 c #808078", +"5 c #B8BCB8", +"6 c #606060", +" ", +" ", +" .+ ", +" @#$% &+++ +++% ", +" @**=- $;;> %;;;, ", +" @***')% !**@ %***, ", +" @*****~{ !**@ %***, ", +" @******;]& !**@ %***, ", +" @********^/% !**@ %***, ", +" @*********(_:!**@ %***, ", +" @**********<+!**@ %***, ", +" @********@[% !**@ %***, ", +" @******(_: !**@ %***, ", +" @*****^} !**@ %***, ", +" @***|]& !**@ %***, ", +" @**12 $((3 %(((, ", +" @'4% &55+ 555% ", +" 6- ", +" % ", +" "}; diff --git a/data/pixmaps/transport/button-record.png b/data/pixmaps/transport/button-record.png new file mode 100644 index 0000000..6173931 Binary files /dev/null and b/data/pixmaps/transport/button-record.png differ diff --git a/data/pixmaps/transport/button-record.xpm b/data/pixmaps/transport/button-record.xpm new file mode 100644 index 0000000..c099e71 --- /dev/null +++ b/data/pixmaps/transport/button-record.xpm @@ -0,0 +1,58 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"17 18 34 1", +" c #df2b2c", +". c #de3535", +"X c #dc3e3f", +"o c #e40101", +"O c #e30c0c", +"+ c #e11a1a", +"@ c #e02121", +"# c #dc4344", +"$ c #db4748", +"% c #db4848", +"& c #da5455", +"* c #d95959", +"= c #d76d6e", +"- c #d86262", +"; c #d66f70", +": c #d67273", +"> c #d57e7f", +", c #d38a8b", +"< c #d29091", +"1 c #d19b9c", +"2 c #d09fa0", +"3 c #cfa6a7", +"4 c #cfadae", +"5 c None", +"6 c None", +"7 c None", +"8 c None", +"9 c None", +"0 c None", +"q c None", +"w c None", +"e c None", +"r c None", +"t c None", +/* pixels */ +"99997wre57er07999", +"999906-X@ #:50899", +"9890&oooooooO>089", +"880#oooooooooo;q8", +"70*oooooooooooo,0", +"q4ooooooooooooo+9", +"r-oooooooooooooo<", +"w#oooooooooooooo=", +"5@oooooooooooooo$", +"7@oooooooooooooo&", +"t#oooooooooooooo:", +"r:oooooooooooooo2", +"05Ooooooooooooo.9", +"70>oooooooooooO30", +"99q:oooooooooO108", +"998q,+oooooo 6089", +"999709,=$&:100899" +"99997wre57er07999", +}; diff --git a/data/pixmaps/transport/button-rewind-end.png b/data/pixmaps/transport/button-rewind-end.png new file mode 100644 index 0000000..7331829 Binary files /dev/null and b/data/pixmaps/transport/button-rewind-end.png differ diff --git a/data/pixmaps/transport/button-rewind-end.xpm b/data/pixmaps/transport/button-rewind-end.xpm new file mode 100644 index 0000000..99dfc49 --- /dev/null +++ b/data/pixmaps/transport/button-rewind-end.xpm @@ -0,0 +1,102 @@ +/* XPM */ +static char *start[] = { +/* width height num_colors chars_per_pixel */ +" 14 21 74 2", +/* colors */ +".. c #000000", +".# c #000400", +".a c #080800", +".b c #080808", +".c c #080c08", +".d c #101010", +".e c #101410", +".f c #181818", +".g c #202020", +".h c #202420", +".i c #282828", +".j c #282c28", +".k c #303028", +".l c #303030", +".m c #303430", +".n c #383838", +".o c #404040", +".p c #404440", +".q c #484848", +".r c #484c48", +".s c #505050", +".t c #505450", +".u c #606060", +".v c #606460", +".w c #686868", +".x c #686c68", +".y c #687880", +".z c #707070", +".A c #707470", +".B c #787870", +".C c #787878", +".D c #787c78", +".E c #808080", +".F c #808480", +".G c #8098a0", +".H c #888888", +".I c #888c88", +".J c #909088", +".K c #909090", +".L c #909490", +".M c #989898", +".N c #989c98", +".O c #98b8c8", +".P c #a0a098", +".Q c #a0a0a0", +".R c #a0a4a0", +".S c #a0b8c8", +".T c #a0bcc8", +".U c #a8a8a8", +".V c #a8aca8", +".W c #a8bcc8", +".X c #a8c0c8", +".Y c #a8c4c8", +".Z c #b0b0b0", +".0 c #b0b4b0", +".1 c #b0c0c8", +".2 c #b0c4c8", +".3 c #b0c8d0", +".4 c #b8bcb8", +".5 c #b8c4c8", +".6 c #b8c8c8", +".7 c #b8c8d0", +".8 c #c0c0c0", +".9 c #c0c4c0", +"#. c #c0c8c8", +"## c #c0c8d0", +"#a c #c0ccd0", +"#b c #c8c8c8", +"#c c #c8ccc8", +"#d c #c8ccd0", +"#e c #c8d0d0", +"#f c None", +"#g c #d0d4d0", +"#h c #e8ece8", +/* pixels */ +"#f#f#f#f#f#f#f#f#f#f#f#f#f#f", +"#f#f#c#c#f#f#f#f#f#f#f#f#f#f", +"#f#f.E.l#f#f#f#f#f#c.N.0#f#f", +"#f#f.E.j#f#f#f#f#f.L.c.U#f#f", +"#f#f.E.j#f#f#f#f.J.b...U#f#f", +"#f#f.E.j#f#f#f.H.b.....U#f#f", +"#f#f.E.j#f#c.F.#.......U#f#f", +"#f#f.E.j#c.D.#.........U#f#f", +"#f#f.E.j.A.............U#f#f", +"#f#f.E.a...............U#f#f", +"#f#f.E.#...............U#f#f", +"#f#f.E.j.w.............U#f#f", +"#f#f.E.j#c.z...........U#f#f", +"#f#f.E.j#f#c.B.#.......U#f#f", +"#f#f.E.j#f#f#c.C.#.....U#f#f", +"#f#f.E.j#f#f#f#c.E.b...U#f#f", +"#f#f.E.j#f#f#f#f#c.H.b.U#f#f", +"#f#f.E.j#f#f#f#f#f#c.K.Z#f#f", +"#f#f.8.Z#f#f#f#f#f#f#f#c#f#f", +"#f#f#f#f#f#f#f#f#f#f#f#f#f#f", +"#f#f#f#f#f#f#f#f#f#f#f#f#f#f" +}; diff --git a/data/pixmaps/transport/button-rewind.png b/data/pixmaps/transport/button-rewind.png new file mode 100644 index 0000000..4080772 Binary files /dev/null and b/data/pixmaps/transport/button-rewind.png differ diff --git a/data/pixmaps/transport/button-rewind.xpm b/data/pixmaps/transport/button-rewind.xpm new file mode 100644 index 0000000..41526f9 --- /dev/null +++ b/data/pixmaps/transport/button-rewind.xpm @@ -0,0 +1,99 @@ +/* XPM */ +static char *rwd[] = { +/* width height num_colors chars_per_pixel */ +" 14 18 74 2", +/* colors */ +".. c #000000", +".# c #000400", +".a c #080800", +".b c #080808", +".c c #080c08", +".d c #101010", +".e c #101410", +".f c #181818", +".g c #202020", +".h c #202420", +".i c #282828", +".j c #282c28", +".k c #303028", +".l c #303030", +".m c #303430", +".n c #383838", +".o c #404040", +".p c #404440", +".q c #484848", +".r c #484c48", +".s c #505050", +".t c #505450", +".u c #606060", +".v c #606460", +".w c #686868", +".x c #686c68", +".y c #687880", +".z c #707070", +".A c #707470", +".B c #787870", +".C c #787878", +".D c #787c78", +".E c #808080", +".F c #808480", +".G c #8098a0", +".H c #888888", +".I c #888c88", +".J c #909088", +".K c #909090", +".L c #909490", +".M c #989898", +".N c #989c98", +".O c #98b8c8", +".P c #a0a098", +".Q c #a0a0a0", +".R c #a0a4a0", +".S c #a0b8c8", +".T c #a0bcc8", +".U c #a8a8a8", +".V c #a8aca8", +".W c #a8bcc8", +".X c #a8c0c8", +".Y c #a8c4c8", +".Z c #b0b0b0", +".0 c #b0b4b0", +".1 c #b0c0c8", +".2 c #b0c4c8", +".3 c #b0c8d0", +".4 c #b8bcb8", +".5 c #b8c4c8", +".6 c #b8c8c8", +".7 c #b8c8d0", +".8 c #c0c0c0", +".9 c #c0c4c0", +"#. c #c0c8c8", +"## c #c0c8d0", +"#a c #c0ccd0", +"#b c #c8c8c8", +"#c c #c8ccc8", +"#d c #c8ccd0", +"#e c #c8d0d0", +"#f c None", +"#g c #d0d4d0", +"#h c #e8ece8", +/* pixels */ +"#f#f#f#f#f#f#c#f#f#f#f#c#f#f", +"#f#f#f#f#f#b.E#f#f#f#c.D#f#f", +"#f#f#f#f#c.u.t#f#f#f.A.o#f#f", +"#f#f#f#f.L.#.t#f#f.R.a.o#f#f", +"#f#f#f.4.e...t#f.9.g...o#f#f", +"#f#f#c.o.....t#c.s.....o#f#f", +"#f#c.A.......t.F.......o#f#f", +"#f.R.b.......n.c.......o#f#f", +".9.h...................o#f#f", +".K.....................o#f#f", +"#c.o.........#.........o#f#f", +"#f.4.f.......q.g.......o#f#f", +"#f#f.M.......t.R.b.....o#f#f", +"#f#f#f.u.....t#f.A.....o#f#f", +"#f#f#f#b.k...t#f#c.o...o#f#f", +"#f#f#f#f.Z.c.t#f#f.4.e.o#f#f", +"#f#f#f#f#f.F.t#f#f#f.M.p#f#f", +"#f#f#f#f#f#c.P#f#f#f#c.N#f#f" +}; diff --git a/data/pixmaps/transport/button-solo-2.xpm b/data/pixmaps/transport/button-solo-2.xpm new file mode 100644 index 0000000..c2483cf --- /dev/null +++ b/data/pixmaps/transport/button-solo-2.xpm @@ -0,0 +1,31 @@ +/* XPM */ +static char *button-solo-2[] = { +/* width height num_colors chars_per_pixel */ +" 20 20 4 1", +/* colors */ +". c #000000", +"k c #585c58", +"y c #c0c4c0", +"B c None", +/* pixels */ +"BBBBBBBBBBBBBBBBBBBB", +"BBBBBBBBBBBBBBBBBBBB", +"BBBByk..........kBBB", +"BBBk.............BBB", +"BBk..............BBB", +"BB...............BBB", +"BB....BBBBBBBBBBBBBB", +"BB....BBBBBBBBBBBBBB", +"BB............kyBBBB", +"BBk.............kBBB", +"BBBk.............kBB", +"BBBByk............BB", +"BBBBBBBBBBBBBB....BB", +"BBBBBBBBBBBBBB....BB", +"BB................BB", +"BB...............kBB", +"BB..............kBBB", +"BBk...........kyBBBB", +"BBBBBBBBBBBBBBBBBBBB", +"BBBBBBBBBBBBBBBBBBBB" +}; diff --git a/data/pixmaps/transport/button-solo.png b/data/pixmaps/transport/button-solo.png new file mode 100644 index 0000000..b2aaf49 Binary files /dev/null and b/data/pixmaps/transport/button-solo.png differ diff --git a/data/pixmaps/transport/button-solo.xpm b/data/pixmaps/transport/button-solo.xpm new file mode 100644 index 0000000..38ce9d3 --- /dev/null +++ b/data/pixmaps/transport/button-solo.xpm @@ -0,0 +1,45 @@ +/* XPM */ +static char * button_solo_xpm[] = { +"40 40 2 1", +" c None", +". c #000000", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" .. ", +" .......... ", +" ............ ", +" .............. ", +" ..... ..... ", +" ...... ..... ", +" ...... ", +" ......... ", +" ............ ", +" ............. ", +" ............ ", +" ......... ", +" ...... ", +" ..... ..... ", +" ..... ..... ", +" ...... ...... ", +" .............. ", +" ............ ", +" .......... ", +" .. ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/data/pixmaps/transport/button-stop.png b/data/pixmaps/transport/button-stop.png new file mode 100644 index 0000000..147dbe1 Binary files /dev/null and b/data/pixmaps/transport/button-stop.png differ diff --git a/data/pixmaps/transport/button-stop.xpm b/data/pixmaps/transport/button-stop.xpm new file mode 100644 index 0000000..1074949 --- /dev/null +++ b/data/pixmaps/transport/button-stop.xpm @@ -0,0 +1,148 @@ +/* XPM */ +static char *stop[] = { +/* width height num_colors chars_per_pixel */ +" 18 18 123 2", +/* colors */ +".. c #000000", +".# c #0000f8", +".a c #000400", +".b c #080800", +".c c #080808", +".d c #080c08", +".e c #101010", +".f c #101410", +".g c #181818", +".h c #181c18", +".i c #202020", +".j c #202420", +".k c #282828", +".l c #282c28", +".m c #303028", +".n c #303030", +".o c #303430", +".p c #383838", +".q c #404040", +".r c #404440", +".s c #484848", +".t c #484c48", +".u c #505050", +".v c #505450", +".w c #585c58", +".x c #606060", +".y c #606460", +".z c #686868", +".A c #686c68", +".B c #707070", +".C c #707470", +".D c #787870", +".E c #787878", +".F c #787c78", +".G c #808078", +".H c #808080", +".I c #808480", +".J c #888888", +".K c #888c88", +".L c #909088", +".M c #909090", +".N c #909490", +".O c #989898", +".P c #989c98", +".Q c #98b8c8", +".R c #a0a098", +".S c #a0a0a0", +".T c #a0a4a0", +".U c #a0b8c8", +".V c #a0bcc8", +".W c #a8a8a8", +".X c #a8aca8", +".Y c #a8bcc8", +".Z c #a8c0c8", +".0 c #a8c4c8", +".1 c #b0b0b0", +".2 c #b0b4b0", +".3 c #b0c0c8", +".4 c #b0c4c8", +".5 c #b0c8d0", +".6 c #b8b8b8", +".7 c #b8bcb8", +".8 c #b8c4c8", +".9 c #b8c8c8", +"#. c #b8c8d0", +"## c #c0c0c0", +"#a c #c0c4c0", +"#b c #c0c8c8", +"#c c #c0c8d0", +"#d c #c0ccc8", +"#e c #c0ccd0", +"#f c #c8c8c8", +"#g c #c8ccc8", +"#h c #c8ccd0", +"#i c #c8d0d0", +"#j c None", +"#k c #d0d4d0", +"#l c #e00000", +"#m c #e0aca8", +"#n c #e0b0b0", +"#o c #e0b4b0", +"#p c #e0b8b8", +"#q c #e80000", +"#r c #e87070", +"#s c #e87470", +"#t c #e87878", +"#u c #e87c78", +"#v c #e88080", +"#w c #e88480", +"#x c #e88888", +"#y c #e8a098", +"#z c #e8a0a0", +"#A c #e8a4a0", +"#B c #e8a8a8", +"#C c #e8ece8", +"#D c #f00000", +"#E c #f04040", +"#F c #f04440", +"#G c #f04848", +"#H c #f04c48", +"#I c #f05450", +"#J c #f05c58", +"#K c #f06060", +"#L c #f06868", +"#M c #f06c68", +"#N c #f07878", +"#O c #f07c78", +"#P c #f80000", +"#Q c #f80400", +"#R c #f80808", +"#S c #f80c08", +"#T c #f81010", +"#U c #f81c18", +"#V c #f82020", +"#W c #f82420", +"#X c #f82828", +"#Y c #f82c28", +"#Z c #f83030", +"#0 c #f83430", +"#1 c #f83c38", +"#2 c #f84040", +"#3 c #f84440", +"#4 c #f84c48", +/* pixels */ +"#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j", +"#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j", +"#j#j#j#j#f###################g#j#j#j", +"#j#j#j#j.K.c.c.c.c.c.c.c.c.c.1#j#j#j", +"#j#j#j#j.J...................1#j#j#j", +"#j#j#j#j.J...................1#j#j#j", +"#j#j#j#j.J...................1#j#j#j", +"#j#j#j#j.J...................1#j#j#j", +"#j#j#j#j.J...................1#j#j#j", +"#j#j#j#j.J...................1#j#j#j", +"#j#j#j#j.J...................1#j#j#j", +"#j#j#j#j.J...................1#j#j#j", +"#j#j#j#j.J...................1#j#j#j", +"#j#j#j#j.J...................1#j#j#j", +"#j#j#j#j.K.a.a.a.a.a.a.a.a.a.1#j#j#j", +"#j#j#j#j#f.7.7.7.7.7.7.7.7.7#g#j#j#j", +"#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j", +"#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j#j" +}; diff --git a/data/pixmaps/transport/button-to-end.xpm b/data/pixmaps/transport/button-to-end.xpm new file mode 100644 index 0000000..e8cf1c0 --- /dev/null +++ b/data/pixmaps/transport/button-to-end.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char *magick[] = { +/* columns rows colors chars-per-pixel */ +"11 11 4 1", +" c None", +"X c black", +"O c gray25", +"o c gray50", +/* pixels */ +" ", +" X OO ", +" XX OO ", +" XX OO ", +"ooooXX OO ", +"XXXXXXX OO ", +"ooooXX OO ", +" XX OO ", +" XX OO ", +" X OO ", +" ", +}; diff --git a/data/pixmaps/transport/led--.xpm b/data/pixmaps/transport/led--.xpm new file mode 100644 index 0000000..492fc22 --- /dev/null +++ b/data/pixmaps/transport/led--.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char *led[]={ +"20 34 4 1", +". c #000000", +"# c #404c80", +"a c #808fc0", +"b c #c0d8ff", +"....................", +"....................", +"....................", +"....................", +"....................", +"....................", +"....................", +"....................", +"....................", +"....................", +"....................", +"....................", +"....................", +"....................", +"....................", +"....................", +"......##aaaaa#......", +".....bbbbbbbbbb.....", +"......#aaaaa##......", +"....................", +"....................", +"....................", +"....................", +"....................", +"....................", +"....................", +"....................", +"....................", +"....................", +"....................", +"....................", +"....................", +"....................", +"...................."}; diff --git a/data/pixmaps/transport/led-0.xpm b/data/pixmaps/transport/led-0.xpm new file mode 100644 index 0000000..69a6758 --- /dev/null +++ b/data/pixmaps/transport/led-0.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char *led[]={ +"20 34 4 1", +". c #000000", +"# c #404c80", +"b c #808fc0", +"a c #c0d8ff", +"....................", +"....................", +".....#aaaaaaaaaaaab#", +".....baaaaaaaaaab#..", +"....#.#...........b.", +"...#a#...........#ab", +"...#aab..........#ab", +"...#aab.........#aab", +"...baa#.........baa#", +"...baa#.........baa#", +"...baa#.........baa#", +"..#aab.........#aab.", +"..#aab.........#aab.", +"..#aab.........#aab.", +"..baa#.........baa#.", +"..ba#..........#ba#.", +"..b#............#b#.", +"....................", +".#b#............#b..", +".#ab#..........#ab..", +".#aab.........#aab..", +".baa#.........baa#..", +".baa#.........baa#..", +".baa#.........baa#..", +"#aab.........#aab...", +"#aab.........#aab...", +"#aab.........#aab...", +"baa#.........baa#...", +"ba#..........baa#...", +"ba#...........#a#...", +".b...........#.#....", +"..#baaaaaaaaaab.....", +"#baaaaaaaaaaaab#....", +"...................."}; diff --git a/data/pixmaps/transport/led-1.xpm b/data/pixmaps/transport/led-1.xpm new file mode 100644 index 0000000..7e0cc46 --- /dev/null +++ b/data/pixmaps/transport/led-1.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char *led[]={ +"20 34 4 1", +". c #000000", +"a c #404c80", +"# c #808fc0", +"b c #c0d8ff", +"....................", +"....................", +"....................", +"....................", +"..................#.", +".................ab#", +".................ab#", +"................abb#", +"................#bba", +"................#bba", +"................#bba", +"...............abb#.", +"...............abb#.", +"...............abb#.", +"...............#bba.", +"...............a#ba.", +"................a#a.", +"....................", +"................a#..", +"...............ab#..", +"..............abb#..", +"..............#bba..", +"..............#bba..", +"..............#bba..", +".............abb#...", +".............abb#...", +".............abb#...", +".............#bba...", +".............#bba...", +"..............aba...", +"...............a....", +"....................", +"....................", +"...................."}; diff --git a/data/pixmaps/transport/led-2.xpm b/data/pixmaps/transport/led-2.xpm new file mode 100644 index 0000000..6f9f2b5 --- /dev/null +++ b/data/pixmaps/transport/led-2.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char *led[]={ +"20 34 4 1", +". c #000000", +"# c #404c80", +"b c #808fc0", +"a c #c0d8ff", +"....................", +"....................", +".....#aaaaaaaaaaaab#", +".....baaaaaaaaaab#..", +"......#...........b.", +".................#ab", +".................#ab", +"................#aab", +"................baa#", +"................baa#", +"................baa#", +"...............#aab.", +"...............#aab.", +"...............#aab.", +"...............baa#.", +"...............#ba#.", +"......##bbbbb#..#b#.", +".....aaaaaaaaaa.....", +".#b#..#bbbbb##......", +".#ab#...............", +".#aab...............", +".baa#...............", +".baa#...............", +".baa#...............", +"#aab................", +"#aab................", +"#aab................", +"baa#................", +"ba#.................", +"ba#.................", +".b...........#......", +"..#baaaaaaaaaab.....", +"#baaaaaaaaaaaab#....", +"...................."}; diff --git a/data/pixmaps/transport/led-3.xpm b/data/pixmaps/transport/led-3.xpm new file mode 100644 index 0000000..e3fa3d9 --- /dev/null +++ b/data/pixmaps/transport/led-3.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char *led[]={ +"20 34 4 1", +". c #000000", +"# c #404c80", +"b c #808fc0", +"a c #c0d8ff", +"....................", +"....................", +".....#aaaaaaaaaaaab#", +".....baaaaaaaaaab#..", +"......#...........b.", +".................#ab", +".................#ab", +"................#aab", +"................baa#", +"................baa#", +"................baa#", +"...............#aab.", +"...............#aab.", +"...............#aab.", +"...............baa#.", +"...............#ba#.", +"......##bbbbb#..#b#.", +".....aaaaaaaaaa.....", +"......#bbbbb##..#b..", +"...............#ab..", +"..............#aab..", +"..............baa#..", +"..............baa#..", +"..............baa#..", +".............#aab...", +".............#aab...", +".............#aab...", +".............baa#...", +".............baa#...", +"..............#a#...", +".............#.#....", +"..#baaaaaaaaaab.....", +"#baaaaaaaaaaaab#....", +"...................."}; diff --git a/data/pixmaps/transport/led-4.xpm b/data/pixmaps/transport/led-4.xpm new file mode 100644 index 0000000..aa01582 --- /dev/null +++ b/data/pixmaps/transport/led-4.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char *led[]={ +"20 34 4 1", +". c #000000", +"# c #404c80", +"a c #808fc0", +"b c #c0d8ff", +"....................", +"....................", +"....................", +"....................", +"....#.............a.", +"...#b#...........#ba", +"...#bba..........#ba", +"...#bba.........#bba", +"...abb#.........abb#", +"...abb#.........abb#", +"...abb#.........abb#", +"..#bba.........#bba.", +"..#bba.........#bba.", +"..#bba.........#bba.", +"..abb#.........abb#.", +"..ab#..........#ab#.", +"..a#..##aaaaa#..#a#.", +".....bbbbbbbbbb.....", +"......#aaaaa##..#a..", +"...............#ba..", +"..............#bba..", +"..............abb#..", +"..............abb#..", +"..............abb#..", +".............#bba...", +".............#bba...", +".............#bba...", +".............abb#...", +".............abb#...", +"..............#b#...", +"...............#....", +"....................", +"....................", +"...................."}; diff --git a/data/pixmaps/transport/led-5.xpm b/data/pixmaps/transport/led-5.xpm new file mode 100644 index 0000000..8a3c49c --- /dev/null +++ b/data/pixmaps/transport/led-5.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char *led[]={ +"20 34 4 1", +". c #000000", +"# c #404c80", +"b c #808fc0", +"a c #c0d8ff", +"....................", +"....................", +".....#aaaaaaaaaaaab#", +".....baaaaaaaaaab#..", +"....#.#.............", +"...#a#..............", +"...#aab.............", +"...#aab.............", +"...baa#.............", +"...baa#.............", +"...baa#.............", +"..#aab..............", +"..#aab..............", +"..#aab..............", +"..baa#..............", +"..ba#...............", +"..b#..##bbbbb#......", +".....aaaaaaaaaa.....", +"......#bbbbb##..#b..", +"...............#ab..", +"..............#aab..", +"..............baa#..", +"..............baa#..", +"..............baa#..", +".............#aab...", +".............#aab...", +".............#aab...", +".............baa#...", +".............baa#...", +"..............#a#...", +".............#.#....", +"..#baaaaaaaaaab.....", +"#baaaaaaaaaaaab#....", +"...................."}; diff --git a/data/pixmaps/transport/led-6.xpm b/data/pixmaps/transport/led-6.xpm new file mode 100644 index 0000000..b8d8580 --- /dev/null +++ b/data/pixmaps/transport/led-6.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char *led[]={ +"20 34 4 1", +". c #000000", +"# c #404c80", +"b c #808fc0", +"a c #c0d8ff", +"....................", +"....................", +".....#aaaaaaaaaaaab#", +".....baaaaaaaaaab#..", +"....#.#.............", +"...#a#..............", +"...#aab.............", +"...#aab.............", +"...baa#.............", +"...baa#.............", +"...baa#.............", +"..#aab..............", +"..#aab..............", +"..#aab..............", +"..baa#..............", +"..ba#...............", +"..b#..##bbbbb#......", +".....aaaaaaaaaa.....", +".#b#..#bbbbb##..#b..", +".#ab#..........#ab..", +".#aab.........#aab..", +".baa#.........baa#..", +".baa#.........baa#..", +".baa#.........baa#..", +"#aab.........#aab...", +"#aab.........#aab...", +"#aab.........#aab...", +"baa#.........baa#...", +"ba#..........baa#...", +"ba#...........#a#...", +".b...........#.#....", +"..#baaaaaaaaaab.....", +"#baaaaaaaaaaaab#....", +"...................."}; diff --git a/data/pixmaps/transport/led-7.xpm b/data/pixmaps/transport/led-7.xpm new file mode 100644 index 0000000..c75f9ab --- /dev/null +++ b/data/pixmaps/transport/led-7.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char *led[]={ +"20 34 4 1", +". c #000000", +"# c #404c80", +"b c #808fc0", +"a c #c0d8ff", +"....................", +"....................", +".....#aaaaaaaaaaaab#", +".....baaaaaaaaaab#..", +"......#...........b.", +".................#ab", +".................#ab", +"................#aab", +"................baa#", +"................baa#", +"................baa#", +"...............#aab.", +"...............#aab.", +"...............#aab.", +"...............baa#.", +"...............#ba#.", +"................#b#.", +"....................", +"................#b..", +"...............#ab..", +"..............#aab..", +"..............baa#..", +"..............baa#..", +"..............baa#..", +".............#aab...", +".............#aab...", +".............#aab...", +".............baa#...", +".............baa#...", +"..............#a#...", +"...............#....", +"....................", +"....................", +"...................."}; diff --git a/data/pixmaps/transport/led-8.xpm b/data/pixmaps/transport/led-8.xpm new file mode 100644 index 0000000..a8c7d92 --- /dev/null +++ b/data/pixmaps/transport/led-8.xpm @@ -0,0 +1,50 @@ +/* XPM */ +static char *0[] = { +/* width height num_colors chars_per_pixel */ +" 20 34 4 1", +/* colors */ +"# c #c0d8ff", +" c #000000", +"a c #404c80", +"b c #808fc0", +/* pixels */ +" ", +" ", +" a############ba", +" b##########ba ", +" a a b ", +" a#a a#b", +" a##b a#b", +" a##b a##b", +" b##a b##a", +" b##a b##a", +" b##a b##a", +" a##b a##b ", +" a##b a##b ", +" a##b a##b ", +" b##a b##a ", +" b#a ab#a ", +" ba aabbbbba aba ", +" ########## ", +" aba abbbbbaa ab ", +" a#ba a#b ", +" a##b a##b ", +" b##a b##a ", +" b##a b##a ", +" b##a b##a ", +"a##b a##b ", +"a##b a##b ", +"a##b a##b ", +"b##a b##a ", +"b#a b##a ", +"b#a a#a ", +" b a a ", +" ab##########b ", +"ab############ba ", +" " +}; + +--------------040202080106060504000906-- + + + diff --git a/data/pixmaps/transport/led-9.xpm b/data/pixmaps/transport/led-9.xpm new file mode 100644 index 0000000..551cd76 --- /dev/null +++ b/data/pixmaps/transport/led-9.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char *led[]={ +"20 34 4 1", +". c #000000", +"# c #404c80", +"b c #808fc0", +"a c #c0d8ff", +"....................", +"....................", +".....#aaaaaaaaaaaab#", +".....baaaaaaaaaab#..", +"....#.#...........b.", +"...#a#...........#ab", +"...#aab..........#ab", +"...#aab.........#aab", +"...baa#.........baa#", +"...baa#.........baa#", +"...baa#.........baa#", +"..#aab.........#aab.", +"..#aab.........#aab.", +"..#aab.........#aab.", +"..baa#.........baa#.", +"..ba#..........#ba#.", +"..b#..##bbbbb#..#b#.", +".....aaaaaaaaaa.....", +"......#bbbbb##..#b..", +"...............#ab..", +"..............#aab..", +"..............baa#..", +"..............baa#..", +"..............baa#..", +".............#aab...", +".............#aab...", +".............#aab...", +".............baa#...", +".............baa#...", +"..............#a#...", +"...............#....", +"....................", +"....................", +"...................."}; diff --git a/data/pixmaps/transport/led-colon.xpm b/data/pixmaps/transport/led-colon.xpm new file mode 100644 index 0000000..f6f2607 --- /dev/null +++ b/data/pixmaps/transport/led-colon.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char *led[]={ +"5 34 4 1", +". c #000000", +"# c #404c80", +"b c #808fc0", +"a c #c0d8ff", +".....", +".....", +".....", +".....", +".....", +".....", +".....", +".....", +".....", +".....", +".....", +".....", +".#aab", +".baa#", +".....", +".....", +".....", +".....", +".....", +".....", +".....", +"#aab.", +"baa#.", +".....", +".....", +".....", +".....", +".....", +".....", +".....", +".....", +".....", +".....", +"....."}; diff --git a/data/presets/README b/data/presets/README new file mode 100644 index 0000000..dcb1645 --- /dev/null +++ b/data/presets/README @@ -0,0 +1,26 @@ + +This directory contains the source for the instrument definition presets. + +I am maintaining it in plain text "conf file" format for ease of +editing. If you make changes to the file, you must generate a new +presets.xml by running + + ./regenerate-presets + +The default presets-editable.conf contains U.S. English definitions. + +To translate it, copy it to presets-editable-.conf (for example +presets-editable-fr.conf or presets-editable-zh_CN.conf), edit it +appropriately, and run ./regenerate-presets to generate your new +translated XML file. Note that _only_ the "name" strings should be +translated -- you _must_ leave the clef names untouched, or they will +fail to work. The displayed clef names themselves are translated +separately as part of the program's .po file. + +Once you've generated a translation as presets-.xml in this +directory, it should then be installed by the standard install process +and picked up automatically by Rosegarden. + +Please send your translated .conf file to us at the rosegarden-devel +mailing list. + diff --git a/data/presets/presets-editable.conf b/data/presets/presets-editable.conf new file mode 100644 index 0000000..b8fe523 --- /dev/null +++ b/data/presets/presets-editable.conf @@ -0,0 +1,2754 @@ +# Rosegarden parameters describing the ranges and preferred notation +# defaults for a variety of real world instruments +# +# Instruments will be sorted by category in the GUI: +# +# Category [...] +# Instrument [...] +# Player Ability [...] +# +# category = a logical grouping for the instruments that follow it, remaining +# in effect until the next category = tag is encountered. +# +# name = the name of the instrument +# +# category = Flutes +# name = Piccolo +# ... +# name = Flute +# +# category = Double reeds +# name = Oboe +# ... +# name = English Horn +# +# transposition = the sounding transposition expressed in semitone steps +# of -48 to 48 +# +# NOTE: it is not necessary to put a + on positive values +# clef = french violin +# treble +# soprano +# mezzosoprano * NOT IMPLEMENTED +# alto +# tenor +# baritone (C) * NOT IMPLEMENTED +# baritone (F) * NOT IMPLEMENTED +# bass +# subbass * NOT IMPLEMENTED +# crotale (treble clef quindicesima) +# xylophone (treble clef ottava) +# guitar (treble clef ottava bassa) +# modern celesta (bass clef quindicesima) +# old celesta (bass clef ottava) +# contrabass (bass clef ottava bassa) +# two-bar (unpitched percussion) +# +# A lowest/A highest = The lowest/highest notes for an Amateur player +# +# P lowest/P highest = The lowest/highest notes for a Professional player +# +# Determining for the ranges can be both playing ability of the performer or +# difference between so called professional and amateur instrument versions. +# +# NOTES: If there is no difference for amateur/professional, use +# the same pitches for both. If no range limitation is desired +# for some reason, use a low of 0 and a high of 127, rather than +# letter pitches. Otherwise use letter + sharp + octave such as +# G5 F#3. (All pitches ultimately get converted to numbers, so +# these explict 0/127 are effectively pre-converted.) +# +# Most chromatic alterations should be spelled with sharps +# +# C4 is one-lined c +# +# -----------------[strings]---------------- +category = Bowed strings + +name = "Violin" +clef = treble +transposition = 0 +A lowest = G3 +A highest = E6 +P lowest = G3 +P highest = G7 + +name = "Baroque violin" +clef = treble +transposition = 0 +A lowest = G3 +A highest = E6 +P lowest = G3 +P highest = G7 + +name = "Viola" +clef = alto +transposition = 0 +A lowest = C3 +A highest = G5 +P lowest = C3 +P highest = A6 + +name = "Baroque viola" +clef = alto +transposition = 0 +A lowest = C3 +A highest = G5 +P lowest = C3 +P highest = A6 + +name = "Violoncello" +clef = bass +transposition = 0 +A lowest = C2 +A highest = G4 +P lowest = C2 +P highest = C5 + +name = "Baroque violoncello" +clef = bass +transposition = 0 +A lowest = C2 +A highest = G4 +P lowest = C2 +P highest = C5 + +name = "Contrabass" +clef = contrabass +transposition = 0 +A lowest = E2 +A highest = D4 +P lowest = B1 +P highest = G5 + +name = "Baroque contrabass" +clef = contrabass +transposition = 0 +A lowest = E2 +A highest = D4 +P lowest = E2 +P highest = G5 + +name = "Soprano viola da gamba" +clef = soprano +transposition = 0 +A lowest = D3 +A highest = D6 +P lowest = D3 +P highest = A6 + +name = "Alto viola da gamba" +clef = alto +transposition = 0 +A lowest = A2 +A highest = A5 +P lowest = A2 +P highest = E6 + +name = "Tenor viola da gamba" +clef = tenor +transposition = 0 +A lowest = G2 +A highest = G5 +P lowest = G2 +P highest = D6 + +name = "Viola da gamba" +clef = bass +transposition = 0 +A lowest = D2 +A highest = D5 +P lowest = D2 +P highest = A5 + +name = "Violone" +clef = contrabass +transposition = 0 +A lowest = E2 +A highest = D4 +P lowest = E2 +P highest = G5 + +# end category = Bowed strings +# +category = Plucked strings + +name = "Soprano guitar" +clef = treble +transposition = 0 +A lowest = E3 +A highest = B7 +P lowest = E3 +P highest = B7 + +name = "Alto guitar" +clef = guitar +transposition = 0 +A lowest = B2 +A highest = E6 +P lowest = B2 +P highest = E6 + +name = "Guitar (prim)" +clef = guitar +transposition = 0 +A lowest = E2 +A highest = B6 +P lowest = E2 +P highest = B6 + +name = "Contrabass guitar" +clef = contrabass +transposition = 0 +A lowest = E1 +A highest = B5 +P lowest = E1 +P highest = B5 + +name = "11-string alto guitar (treble)" +clef = treble +transposition = 0 +A lowest = Bb1 +A highest = D7 +P lowest = Bb1 +P highest = D7 + +name = "11-string alto guitar (bass)" +clef = bass +transposition = 0 +A lowest = Bb1 +A highest = D7 +P lowest = Bb1 +P highest = D7 + +name = "Steel string guitar" +clef = guitar +transposition = 0 +A lowest = E2 +A highest = B6 +P lowest = E2 +P highest = B6 + +name = "Pedal steel guitar" +clef = tab +transposition = 0 +A lowest = B1 +A highest = D#5 +P lowest = B1 +P highest = D#5 + +name = "12-string guitar" +clef = guitar +transposition = 0 +A lowest = E2 +A highest = B6 +P lowest = E2 +P highest = B6 + +name = "Electric guitar" +clef = guitar +transposition = 0 +A lowest = E2 +A highest = B6 +P lowest = E2 +P highest = B6 + +name = "Electric bass guitar (fretted)" +clef = contrabass +transposition = 0 +A lowest = E1 +A highest = B5 +P lowest = B0 +P highest = E6 + +name = "Electric bass guitar (fretless)" +clef = contrabass +transposition = 0 +A lowest = E1 +A highest = B5 +P lowest = B0 +P highest = E6 + +name = "Lute" +clef = guitar +transposition = 0 +A lowest = A1 +A highest = D7 +P lowest = A1 +P highest = D7 + +name = "Cittern" +clef = treble +transposition = 0 +A lowest = C3 +A highest = A#6 +P lowest = C3 +P highest = A#6 + +name = "Piccolo balalaika" +clef = xylophone +transposition = 0 +A lowest = B4 +A highest = G6 +P lowest = B4 +P highest = G6 + +name = "Prima balalaika" +clef = treble +transposition = 0 +A lowest = E4 +A highest = G5 +P lowest = E4 +P highest = G5 + +name = "Secunda balalaika" +clef = treble +transposition = 0 +A lowest = A3 +A highest = C5 +P lowest = A3 +P highest = C5 + +name = "Alto balalaika" +clef = treble +transposition = 0 +A lowest = E3 +A highest = G4 +P lowest = E3 +P highest = G4 + +name = "Bass balalaika" +clef = bass +transposition = 0 +A lowest = E2 +A highest = C4 +P lowest = E2 +P highest = C4 + +name = "Contrabass balalaika" +clef = contrabass +transposition = 0 +A lowest = E1 +A highest = C3 +P lowest = E1 +P highest = C3 + +name = "Mandolin" +clef = treble +transposition = 0 +A lowest = G3 +A highest = C#6 +P lowest = G3 +P highest = C#6 + +name = "Mandola" +clef = guitar +transposition = 0 +A lowest = G2 +A highest = B5 +P lowest = G2 +P highest = B5 + +name = "Ukulele" +clef = treble +transposition = 0 +A lowest = C4 +A highest = A6 +P lowest = C4 +P highest = A6 + +name = "Banjo (5-string)" +clef = guitar +transposition = 0 +A lowest = C2 +A highest = D6 +P lowest = C2 +P highest = D6 + +name = "Tenor banjo" +clef = guitar +transposition = 0 +A lowest = C2 +A highest = B5 +P lowest = C2 +P highest = B5 + +name = "Harp (treble)" +clef = treble +transposition = 0 +A lowest = B0 +A highest = G#7 +P lowest = B0 +P highest = G#7 + +name = "Harp (bass)" +clef = bass +transposition = 0 +A lowest = B0 +A highest = G#7 +P lowest = B0 +P highest = G#7 + +name = "Koto" +clef = treble +transposition = 0 +A lowest = D3 +A highest = A5 +P lowest = D3 +P highest = A5 + +# end category = Plucked strings + +# -----------------[woodwinds]---------------- +category = Flutes + +name = "Piccolo" +clef = xylophone +transposition = 0 +A lowest = D5 +A highest = A7 +P lowest = D5 +P highest = C8 + +name = "Eb flute" +clef = treble +transposition = +3 +A lowest = C4 +A highest = A6 +P lowest = C4 +P highest = D7 + +name = "Flute" +clef = treble +transposition = 0 +A lowest = C4 +A highest = A6 +P lowest = B3 +P highest = D7 + +name = "Alto flute" +clef = treble +transposition = -5 +A lowest = C4 +A highest = A6 +P lowest = C4 +P highest = C7 + +name = "Bass flute" +clef = guitar +transposition = 0 +A lowest = C3 +A highest = F5 +P lowest = C3 +P highest = A5 + +name = "Contra-alto flute" +clef = treble +transposition = -17 +A lowest = C4 +A highest = A6 +P lowest = D4 +P highest = C7 + +name = "Contrabass flute" +clef = bass +transposition = 0 +A lowest = C2 +A highest = F4 +P lowest = C2 +P highest = A4 + +name = "Transverse flute (D foot)" +clef = treble +transposition = 0 +A lowest = D4 +A highest = F6 +P lowest = D4 +P highest = A6 + +name = "Transverse flute (C foot)" +clef = treble +transposition = 0 +A lowest = D4 +A highest = F6 +P lowest = C4 +P highest = A6 + +name = "Transverse flute (B foot)" +clef = treble +transposition = 0 +A lowest = D4 +A highest = F6 +P lowest = B3 +P highest = A6 + +name = "Alto transverse flute" +clef = treble +transposition = 0 +A lowest = G3 +A highest = E5 +P lowest = G3 +P highest = G#5 + +name = "Garklein recorder" +clef = crotale +transposition = 0 +A lowest = C6 +A highest = A7 +P lowest = C6 +P highest = C8 + +name = "Sopranino recorder" +clef = xylophone +transposition = 0 +A lowest = F5 +A highest = E7 +P lowest = F5 +P highest = G7 + +name = "Soprano recorder" +clef = xylophone +transposition = 0 +A lowest = C5 +A highest = A6 +P lowest = C5 +P highest = D7 + +name = "Alto recorder" +clef = treble +transposition = 0 +A lowest = F4 +A highest = E6 +P lowest = B3 +P highest = G6 + +name = "Tenor recorder" +clef = treble +transposition = 0 +A lowest = C4 +A highest = A5 +P lowest = C4 +P highest = D6 + +name = "Bass recorder" +clef = old celesta +transposition = 0 +A lowest = F3 +A highest = D5 +P lowest = F3 +P highest = F5 + +name = "Greatbass recorder" +clef = old celesta +transposition = 0 +A lowest = C3 +A highest = A4 +P lowest = A3 +P highest = D7 + +name = "Contrabass recorder" +clef = bass +transposition = 0 +A lowest = F2 +A highest = D4 +P lowest = F2 +P highest = F5 + +name = "G soprano ocarina" +clef = xylphone +transposition = 0 +A lowest = G5 +A highest = A6 +P lowest = G5 +P highest = B6 + +name = "F soprano ocarina" +clef = xylophone +transposition = 0 +A lowest = F5 +A highest = G6 +P lowest = F5 +P highest = A6 + +name = "C soprano ocarina" +clef = xylophone +transposition = 0 +A lowest = C5 +A highest = D6 +P lowest = C5 +P highest = E6 + +name = "Bb soprano ocarina" +clef = xylophone +transposition = 0 +A lowest = Bb4 +A highest = C6 +P lowest = Bb4 +P highest = D6 + +name = "G alto ocarina" +clef = treble +transposition = 0 +A lowest = G4 +A highest = A5 +P lowest = G4 +P highest = B5 + +name = "F alto ocarina" +clef = treble +transposition = 0 +A lowest = F4 +A highest = G5 +P lowest = F4 +P highest = A5 + +name = "C alto ocarina" +clef = treble +transposition = 0 +A lowest = C4 +A highest = D5 +P lowest = C4 +P highest = E5 + +name = "Bb alto ocarina" +clef = treble +transposition = 0 +A lowest = Bb3 +A highest = C5 +P lowest = Bb3 +P highest = D5 + +name = "C bass ocarina" +clef = bass +transposition = 0 +A lowest = C3 +A highest = D4 +P lowest = C3 +P highest = E4 + +name = "Slide whistle" +clef = xylophone +transposition = 0 +A lowest = A4 +A highest = C7 +P lowest = A4 +P highest = C7 + +name = "Pan flute" +clef = treble +transposition = 0 +A lowest = G3 +A highest = G6 +P lowest = G3 +P highest = G6 + +name = "Shakuhachi" +clef = treble +transposition = 0 +A lowest = D4 +A highest = D6 +P lowest = D4 +P highest = D6 + +# end category = Flutes +# +category = Double reeds + +name = "Piccolo oboe in F" +clef = treble +transposition = +5 +A lowest = Bb3 +A highest = D6 +P lowest = Bb3 +P highest = G#6 + +name = "Piccolo oboe in Eb" +clef = treble +transposition = +3 +A lowest = Bb3 +A highest = D6 +P lowest = Bb3 +P highest = G#6 + +name = "Oboe" +clef = treble +transposition = 0 +A lowest = Bb3 +A highest = D#6 +P lowest = Bb3 +P highest = A6 + +name = "Oboe d'amore" +clef = treble +transposition = -3 +A lowest = B3 +A highest = D#6 +P lowest = B3 +P highest = F#6 + +name = "English horn" +clef = treble +transposition = -7 +A lowest = B3 +A highest = E6 +P lowest = B3 +P highest = F#6 + +name = "Baritone oboe" +clef = guitar +transposition = 0 +A lowest = B2 +A highest = E5 +P lowest = B2 +P highest = F#5 + +name = "Heckelphone" +clef = guitar +transposition = 0 +A lowest = A2 +A highest = D#5 +P lowest = A2 +P highest = F#5 + +name = "Baroque oboe" +clef = treble +transposition = 0 +A lowest = C4 +A highest = B5 +P lowest = C4 +P highest = D6 + +name = "Oboe da caccia" +clef = treble +transposition = -7 +A lowest = C4 +A highest = D6 +P lowest = C4 +P highest = E6 + +name = "Shawm" +clef = treble +transposition = 0 +A lowest = C4 +A highest = E5 +P lowest = C4 +P highest = G5 + +name = "Sopranino shawm" +clef = treble +transposition = 0 +A lowest = F4 +A highest = A5 +P lowest = F4 +P highest = D6 + +name = "Descant pommer" +clef = treble +transposition = 0 +A lowest = C4 +A highest = B6 +P lowest = C4 +P highest = D6 + +name = "Alto pommer" +clef = treble +transposition = 0 +A lowest = F3 +A highest = D5 +P lowest = F3 +P highest = F5 + +name = "Soprano crumhorn" +clef = treble +transposition = 0 +A lowest = C4 +A highest = D5 +P lowest = C4 +P highest = F5 + +name = "Alto crumhorn" +clef = treble +transposition = 0 +A lowest = F3 +A highest = G4 +P lowest = F3 +P highest = Bb4 + +name = "Tenor crumhorn" +clef = guitar +transposition = 0 +A lowest = C3 +A highest = D4 +P lowest = C3 +P highest = F4 + +name = "Bass crumhorn" +clef = bass +transposition = 0 +A lowest = F2 +A highest = G3 +P lowest = F2 +P highest = Bb3 + +name = "Greatbass crumhorn" +clef = bass +transposition = 0 +A lowest = C2 +A highest = D3 +P lowest = C2 +P highest = F3 + +name = "Soprano cornamuse" +clef = treble +transposition = 0 +A lowest = C4 +A highest = D5 +P lowest = C4 +P highest = F5 + +name = "Alto cornamuse" +clef = treble +transposition = 0 +A lowest = F3 +A highest = G4 +P lowest = F3 +P highest = Bb4 + +name = "Tenor cornamuse" +clef = guitar +transposition = 0 +A lowest = C3 +A highest = D4 +P lowest = C3 +P highest = F4 + +name = "Bass cornamuse" +clef = bass +transposition = 0 +A lowest = F2 +A highest = G3 +P lowest = F2 +P highest = Bb3 + +name = "Sopranino rauschpfeife" +clef = treble +transposition = 0 +A lowest = F4 +A highest = A5 +P lowest = F4 +P highest = C6 + +name = "Soprano rauschpfeife" +clef = treble +transposition = 0 +A lowest = C4 +A highest = E5 +P lowest = C4 +P highest = G5 + +name = "Bassoon" +clef = bass +transposition = 0 +A lowest = Bb1 +A highest = A4 +P lowest = Bb1 +P highest = E5 + +name = "Contrabassoon" +clef = contrabass +transposition = 0 +A lowest = Bb0 +A highest = A3 +P lowest = A0 +P highest = C4 + +name = "Dulcian" +clef = bass +transposition = 0 +A lowest = E2 +A highest = D4 +P lowest = E2 +P highest = F4 + +name = "Rackett" +clef = bass +transposition = 0 +A lowest = Bb1 +A highest = D4 +P lowest = Bb1 +P highest = F4 + +name = "Sopranino sarrusophone" +clef = treble +transposition = +3 +A lowest = Bb3 +A highest = C6 +P lowest = Bb3 +P highest = Eb6 + +name = "Soprano sarrusophone" +clef = treble +transposition = -2 +A lowest = Bb3 +A highest = F6 +P lowest = Bb3 +P highest = Bb6 + +name = "Alto sarrusophone" +clef = treble +transposition = -9 +A lowest = Bb3 +A highest = F6 +P lowest = Bb3 +P highest = Bb6 + +name = "Tenor sarrusophone" +clef = treble +transposition = -14 +A lowest = Bb3 +A highest = F6 +P lowest = Bb3 +P highest = Bb6 + +name = "Baritone sarrusophone" +clef = treble +transposition = -21 +A lowest = Bb3 +A highest = F6 +P lowest = A3 +P highest = Bb6 + +name = "Bass sarrusophone" +clef = treble +transposition = -26 +A lowest = Bb3 +A highest = F6 +P lowest = Bb3 +P highest = Bb6 + +name = "Contrabass sarrusophone" +clef = treble +transposition = -33 +A lowest = Bb3 +A highest = D6 +P lowest = Bb3 +P highest = F6 + +name = "Bagpipe" +clef = treble +transposition = 0 +A lowest = C4 +A highest = G5 +P lowest = C4 +P highest = G5 + +# end category = Double reeds +# +category = Single reeds + +name = "Soprano clarinet" +clef = treble +transposition = +7 +A lowest = E3 +A highest = A5 +P lowest = E3 +P highest = A5 + +name = "Eb clarinet" +clef = treble +transposition = +3 +A lowest = E3 +A highest = G6 +P lowest = E3 +P highest = C7 + +name = "D clarinet" +clef = treble +transposition = +2 +A lowest = E3 +A highest = G6 +P lowest = E3 +P highest = C7 + +name = "C clarinet" +clef = treble +transposition = 0 +A lowest = E3 +A highest = G6 +P lowest = E3 +P highest = C7 + +name = "Bb clarinet" +clef = treble +transposition = -2 +A lowest = E3 +A highest = G6 +P lowest = E3 +P highest = C7 + +name = "A clarinet" +clef = treble +transposition = -3 +A lowest = E3 +A highest = G6 +P lowest = E3 +P highest = C7 + +name = "Alto clarinet" +clef = treble +transposition = -9 +A lowest = E3 +A highest = F6 +P lowest = E3 +P highest = A6 + +name = "Bassett horn" +clef = treble +transposition = -7 +A lowest = C3 +A highest = G6 +P lowest = C3 +P highest = A6 + +name = "Bass clarinet" +clef = treble +transposition = -14 +A lowest = Eb3 +A highest = F6 +P lowest = Eb3 +P highest = A6 + +name = "Contra-alto clarinet" +clef = treble +transposition = -21 +A lowest = E3 +A highest = G6 +P lowest = E3 +P highest = C7 + +name = "Contrabass clarinet" +clef = treble +transposition = -26 +A lowest = E3 +A highest = G6 +P lowest = E3 +P highest = C7 + +name = "Sopranino chalumeau" +clef = treble +transposition = 0 +A lowest = F4 +A highest = G5 +P lowest = F4 +P highest = Bb5 + +name = "Soprano chalumeau" +clef = treble +transposition = 0 +A lowest = C4 +A highest = D5 +P lowest = C4 +P highest = F5 + +name = "Alto chalumeau" +clef = guitar +transposition = 0 +A lowest = F3 +A highest = G4 +P lowest = F3 +P highest = Bb4 + +name = "Tenor chalumeau" +clef = guitar +transposition = 0 +A lowest = C3 +A highest = D4 +P lowest = C3 +P highest = F4 + +name = "Sopranino saxophone" +clef = treble +transposition = +3 +A lowest = Bb3 +A highest = C6 +P lowest = Bb3 +P highest = Eb6 + +name = "Soprano saxophone" +clef = treble +transposition = -2 +A lowest = Bb3 +A highest = G6 +P lowest = Bb3 +P highest = C7 + +name = "Alto saxophone" +clef = treble +transposition = -9 +A lowest = Bb3 +A highest = G6 +P lowest = Bb3 +P highest = C7 + +name = "Tenor saxophone" +clef = treble +transposition = -14 +A lowest = Bb3 +A highest = G6 +P lowest = Bb3 +P highest = C7 + +name = "Baritone saxophone" +clef = treble +transposition = -21 +A lowest = Bb3 +A highest = G6 +P lowest = A3 +P highest = C7 + +name = "Bass saxophone" +clef = treble +transposition = -26 +A lowest = Bb3 +A highest = G6 +P lowest = Bb3 +P highest = C7 + +name = "Contrabass saxophone" +clef = treble +transposition = -33 +A lowest = Bb3 +A highest = D6 +P lowest = Bb3 +P highest = F6 + +#end category = Single reeds +# +category = Wind electrophones + +name = "Wind synthesizer" +clef = treble +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + + +# -----------------[brass]---------------- +category = Brass + +name = "Piccolo trumpet in Bb" +clef = treble +transposition = +10 +A lowest = Db2 +A highest = E5 +P lowest = Db2 +P highest = G5 + +name = "Piccolo trumpet in A" +clef = treble +transposition = +9 +A lowest = Db2 +A highest = E5 +P lowest = Db2 +P highest = G5 + +name = "Trumpet in Eb" +clef = treble +transposition = +3 +A lowest = F#3 +A highest = A5 +P lowest = F#3 +P highest = C6 + +name = "Trumpet in D" +clef = treble +transposition = +2 +A lowest = F#3 +A highest = A5 +P lowest = F#3 +P highest = C6 + +name = "Trumpet in C" +clef = treble +transposition = 0 +A lowest = F#3 +A highest = A5 +P lowest = F#3 +P highest = C6 + +name = "Trumpet in Bb" +clef = treble +transposition = -2 +A lowest = F#3 +A highest = A5 +P lowest = F#3 +P highest = C6 + +name = "Bass trumpet in Eb" +clef = treble +transposition = -9 +A lowest = F#3 +A highest = A5 +P lowest = F#3 +P highest = C6 + +name = "Bass trumpet in Bb" +clef = treble +transposition = -14 +A lowest = F#3 +A highest = A5 +P lowest = F#3 +P highest = C6 + +name = "Baroque trumpet in F" +clef = treble +transposition = +5 +A lowest = C4 +A highest = A5 +P lowest = C4 +P highest = E6 + +name = "Baroque trumpet in Eb" +clef = treble +transposition = +3 +A lowest = C4 +A highest = A5 +P lowest = C4 +P highest = E6 + +name = "Baroque trumpet in D" +clef = treble +transposition = +2 +A lowest = C4 +A highest = A5 +P lowest = C4 +P highest = E6 + +name = "Baroque trumpet in C" +clef = treble +transposition = 0 +A lowest = C4 +A highest = A5 +P lowest = C4 +P highest = E6 + +name = "Baroque trumpet in Bb" +clef = treble +transposition = -2 +A lowest = C4 +A highest = A5 +P lowest = C4 +P highest = E6 + +name = "Cornet in Eb" +clef = treble +transposition = +3 +A lowest = F#3 +A highest = A5 +P lowest = F#3 +P highest = C6 + +name = "Cornet in Bb" +clef = treble +transposition = -2 +A lowest = F#3 +A highest = A5 +P lowest = F#3 +P highest = C6 + +name = "Flugelhorn" +clef = treble +transposition = -2 +A lowest = F#3 +A highest = A5 +P lowest = F#3 +P highest = C6 + +name = "Cornettino" +clef = treble +transposition = 0 +A lowest = C4 +A highest = B5 +P lowest = C4 +P highest = D6 + +name = "Alto cornetto" +clef = treble +transposition = 0 +A lowest = A3 +A highest = B5 +P lowest = A3 +P highest = D6 + +name = "Tenor cornetto" +clef = tenor +transposition = 0 +A lowest = C3 +A highest = B4 +P lowest = C3 +P highest = E5 + +name = "Serpent" +clef = bass +transposition = 0 +A lowest = C2 +A highest = F4 +P lowest = C2 +P highest = A4 + +name = "Alto ophicleide in F" +clef = treble +transposition = 0 +A lowest = E3 +A highest = A5 +P lowest = E3 +P highest = C6 + +name = "Alto ophicleide in Eb" +clef = treble +transposition = 0 +A lowest = Eb3 +A highest = G5 +P lowest = Eb3 +P highest = Bb5 + +name = "Bass ophicleide in C" +clef = bass +transposition = 0 +A lowest = B1 +A highest = Eb4 +P lowest = B1 +P highest = G4 + +name = "Bass ophicleide in Bb" +clef = bass +transposition = 0 +A lowest = A1 +A highest = D4 +P lowest = A1 +P highest = F#4 + +name = "Contrabass ophicleide in Eb" +clef = bass +transposition = 0 +A lowest = D1 +A highest = G3 +P lowest = D1 +P highest = Bb3 + +name = "French horn" +clef = treble +transposition = -7 +A lowest = F#2 +A highest = Bb5 +P lowest = D2 +P highest = C6 + +name = "French horn in C alto" +clef = treble +transposition = 0 +A lowest = Bb2 +A highest = G5 +P lowest = F#2 +P highest = C6 + +name = "French horn in Bb alto" +clef = treble +transposition = -2 +A lowest = A#2 +A highest = G5 +P lowest = F#2 +P highest = C6 + +name = "French horn in A" +clef = treble +transposition = -3 +A lowest = A#2 +A highest = G5 +P lowest = F#2 +P highest = C6 + +name = "French horn in Ab" +clef = treble +transposition = -4 +A lowest = A#2 +A highest = G5 +P lowest = F#2 +P highest = C6 + +name = "French horn in G" +clef = treble +transposition = -5 +A lowest = A#2 +A highest = G5 +P lowest = F#2 +P highest = C6 + +name = "French horn in E" +clef = treble +transposition = -8 +A lowest = A#2 +A highest = G5 +P lowest = F#2 +P highest = C6 + +name = "French horn in Eb" +clef = treble +transposition = -9 +A lowest = A#2 +A highest = G5 +P lowest = F#2 +P highest = C6 + +name = "French horn in D" +clef = treble +transposition = -10 +A lowest = A#2 +A highest = G5 +P lowest = F#2 +P highest = C6 + +name = "French horn in C basso" +clef = treble +transposition = -12 +A lowest = A#2 +A highest = G5 +P lowest = F#2 +P highest = C6 + +name = "French horn in Bb basso" +clef = treble +transposition = -14 +A lowest = A#2 +A highest = G5 +P lowest = F#2 +P highest = C6 + +name = "Alto horn in F" +clef = treble +transposition = -7 +A lowest = F#3 +A highest = A5 +P lowest = F#3 +P highest = C6 + +name = "Alto horn in Eb" +clef = treble +transposition = -9 +A lowest = F#3 +A highest = A5 +P lowest = F#3 +P highest = C6 + +name = "Baritone horn" +clef = bass +transposition = 0 +A lowest = E2 +A highest = G4 +P lowest = E2 +P highest = Bb4 + +name = "Mellophone in F" +clef = treble +transposition = -7 +A lowest = F#3 +A highest = A5 +P lowest = F#3 +P highest = C6 + +name = "Mellophone in Eb" +clef = treble +transposition = -9 +A lowest = F#3 +A highest = A5 +P lowest = F#3 +P highest = C6 + +name = "Mellophonium in F" +clef = treble +transposition = -7 +A lowest = F#3 +A highest = A5 +P lowest = F#3 +P highest = C6 + +name = "Mellophonium in Eb" +clef = treble +transposition = -9 +A lowest = F#3 +A highest = A5 +P lowest = F#3 +P highest = C6 + +name = "Wagner tuba in Bb" +clef = treble +transposition = -2 +A lowest = F#2 +A highest = F5 +P lowest = F#2 +P highest = A5 + +name = "Wagner tuba in F" +clef = treble +transposition = -7 +A lowest = F#2 +A highest = A5 +P lowest = F#2 +P highest = C6 + +name = "Soprano trombone" +clef = treble +transposition = 0 +A lowest = E3 +A highest = F5 +P lowest = E3 +P highest = A5 + +name = "Alto trombone" +clef = alto +transposition = 0 +A lowest = A2 +A highest = D5 +P lowest = A2 +P highest = F5 + +name = "Tenor trombone" +clef = bass +transposition = 0 +A lowest = E2 +A highest = Bb4 +P lowest = E2 +P highest = D5 + +name = "Bass trombone" +clef = bass +transposition = 0 +A lowest = C2 +A highest = Bb4 +P lowest = C2 +P highest = D5 + +name = "Contrabass trombone" +clef = bass +transposition = 0 +A lowest = E1 +A highest = G3 +P lowest = E1 +P highest = Bb3 + +name = "Euphonium" +clef = bass +transposition = 0 +A lowest = E2 +A highest = Bb4 +P lowest = E2 +P highest = D5 + +name = "F tuba" +clef = bass +transposition = 0 +A lowest = D1 +A highest = E4 +P lowest = C1 +P highest = A4 + +name = "C tuba" +clef = bass +transposition = 0 +A lowest = D1 +A highest = C4 +P lowest = C1 +P highest = F4 + +name = "Bb tuba" +clef = bass +transposition = 0 +A lowest = E1 +A highest = Bb3 +P lowest = Bb0 +P highest = Eb4 + + +# -----------------[pitched percussion]---------------- +category = Pitched Percussion + +name = "Timpani" +clef = bass +transposition = 0 +A lowest = D2 +A highest = C4 +P lowest = D2 +P highest = C4 + +name = "Roto-toms (treble)" +clef = treble +transposition = 0 +A lowest = G3 +A highest = E5 +P lowest = G3 +P highest = E5 + +name = "Roto-toms (bass)" +clef = bass +transposition = 0 +A lowest = E2 +A highest = B3 +P lowest = E2 +P highest = B3 + +name = "Glockenspiel" +clef = crotale +transposition = 0 +A lowest = G5 +A highest = C8 +P lowest = G5 +P highest = C8 + +name = "Orff soprano glockenspiel" +clef = crotale +transposition = 0 +A lowest = C6 +A highest = A7 +P lowest = C6 +P highest = A7 + +name = "Orff alto glockenspiel" +clef = xylophone +transposition = 0 +A lowest = C5 +A highest = A6 +P lowest = C5 +P highest = A6 + +name = "Crotales" +clef = crotale +transposition = 0 +A lowest = C6 +A highest = C8 +P lowest = C6 +P highest = C8 + +name = "Tubaphone" +clef = crotale +transposition = 0 +A lowest = C6 +A highest = C8 +P lowest = C6 +P highest = C8 + +name = "Almglocken (treble)" +clef = crotale +transposition = 0 +A lowest = C4 +A highest = A7 +P lowest = C4 +P highest = A7 + +name = "Almglocken (bass)" +clef = modern celesta +transposition = 0 +A lowest = C4 +A highest = A7 +P lowest = C4 +P highest = A7 + +name = "Vibraphone" +clef = treble +transposition = 0 +A lowest = F3 +A highest = F6 +P lowest = C3 +P highest = C7 + +name = "Orff soprano metallophone" +clef = xylophone +transposition = 0 +A lowest = C5 +A highest = A6 +P lowest = C5 +P highest = A6 + +name = "Orff alto metallophone" +clef = treble +transposition = 0 +A lowest = C4 +A highest = A5 +P lowest = C4 +P highest = A5 + +name = "Orff bass metallophone" +clef = guitar +transposition = 0 +A lowest = C3 +A highest = A4 +P lowest = C3 +P highest = A4 + +name = "Tubular chimes" +clef = treble +transposition = 0 +A lowest = C4 +A highest = G5 +P lowest = C4 +P highest = G5 + +name = "Bass steel drums" +clef = bass +transposition = 0 +A lowest = C2 +A highest = F3 +P lowest = C2 +P highest = F3 + +name = "Cello steel drums" +clef = tenor +transposition = 0 +A lowest = B2 +A highest = G4 +P lowest = B2 +P highest = G4 + +name = "Tenor steel drums" +clef = alto +transposition = 0 +A lowest = E3 +A highest = A4 +P lowest = E3 +P highest = A4 + +name = "Guitar steel drums" +clef = treble +transposition = 0 +A lowest = F#3 +A highest = A5 +P lowest = F#3 +P highest = A5 + +name = "Alto steel drums" +clef = treble +transposition = 0 +A lowest = G#3 +A highest = C#6 +P lowest = G#3 +P highest = C#6 + +name = "Soprano steel drums" +clef = treble +transposition = 0 +A lowest = C4 +A highest = E6 +P lowest = C4 +P highest = E6 + +name = "Hand bells (treble)" +clef = treble +transposition = 0 +A lowest = C2 +A highest = C7 +P lowest = C2 +P highest = C7 + +name = "Hand bells (bass)" +clef = bass +transposition = 0 +A lowest = C2 +A highest = C7 +P lowest = C2 +P highest = C7 + +name = "Tuned gongs" +clef = bass +transposition = 0 +A lowest = A2 +A highest = A3 +P lowest = A2 +P highest = A3 + +name = "Flexatone" +clef = xylophone +transposition = 0 +A lowest = E5 +A highest = A6 +P lowest = E5 +P highest = A6 + +name = "Musical saw" +clef = treble +transposition = 0 +A lowest = E4 +A highest = E7 +P lowest = E4 +P highest = E7 + +name = "Musical glasses" +clef = xylophone +transposition = 0 +A lowest = C5 +A highest = G6 +P lowest = C5 +P highest = G6 + +name = "Glass harmonica" +clef = treble +transposition = 0 +A lowest = F3 +A highest = F6 +P lowest = F3 +P highest = F6 + +name = "Xylophone" +clef = xylophone +transposition = 0 +A lowest = F4 +A highest = C8 +P lowest = F4 +P highest = C8 + +name = "Orff soprano xylophone" +clef = xylophone +transposition = 0 +A lowest = C5 +A highest = A6 +P lowest = C5 +P highest = A6 + +name = "Orff alto xylophone" +clef = treble +transposition = 0 +A lowest = C4 +A highest = A5 +P lowest = C4 +P highest = A5 + +name = "Orff bass xylophone" +clef = guitar +transposition = 0 +A lowest = C3 +A highest = A4 +P lowest = C3 +P highest = A4 + +name = "Marimba (treble)" +clef = treble +transposition = 0 +A lowest = A2 +A highest = C7 +P lowest = A2 +P highest = C7 + +name = "Marimba (bass)" +clef = bass +transposition = 0 +A lowest = A2 +A highest = C7 +P lowest = A2 +P highest = C7 + +name = "Dulcimer (treble)" +clef = treble +transposition = 0 +A lowest = C3 +A highest = D6 +P lowest = G2 +P highest = E6 + +name = "Dulcimer (bass)" +clef = bass +transposition = 0 +A lowest = C3 +A highest = D6 +P lowest = G2 +P highest = E6 + +name = "Mallet synthesizer (treble)" +clef = treble +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Mallet synthesizer (bass)" +clef = bass +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + + + +# -----------------[unpitched percussion]---------------- +category = Unpitched Percussion + +name = "Snare drum" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Piccolo snare drum" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Military drum" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Tom-toms" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Chinese tom-toms" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Bongos" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Congas" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Timbales" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Bass drum" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Tambourine" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Frame drum" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Tablas" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Cuca" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Finger cymbals" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Cymbals" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Hi-hat cymbals" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Suspended cymbal" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Ride cymbal" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Sizzle cymbal" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Crash cymbal" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Splash cymbal" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Chinese cymbal" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Triangle" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Cowbells" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Tam-tam" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Bells" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Sleighbells" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Bell plate" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Bowl gongs" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Tubo" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Metal castanets" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Automobile brake drums" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Iron pipes" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Chaines" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Anvil" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Woodblocks" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Temple blocks" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Claves" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Castanets" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Guiro" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Maracas" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Cabasa" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Quijada" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Vibra slap" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Slit drum" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Whip" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Ratchet" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Thundersheet" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Sandpaper blocks" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Wooden wind chimes" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Bamboo wind chimes" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Metal wind chimes" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Glass wind chimes" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Shell wind chimes" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Stones" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Finger snap" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Hand clap" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Slap" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Stamp" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Drum set" +clef = box +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Percussion synthesizer" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +# -----------------[keyboards]---------------- +category = Keyboards + +name = "Piano (treble)" +clef = treble +transposition = 0 +A lowest = A0 +A highest = C8 +P lowest = A0 +P highest = C8 + +name = "Piano (bass)" +clef = bass +transposition = 0 +A lowest = A0 +A highest = C8 +P lowest = A0 +P highest = C8 + +name = "Clavichord (treble)" +clef = treble +transposition = 0 +A lowest = F1 +A highest = F6 +P lowest = F1 +P highest = F6 + +name = "Clavichord (bass)" +clef = bass +transposition = 0 +A lowest = F1 +A highest = F6 +P lowest = F1 +P highest = F6 + +name = "Harpsichord (treble)" +clef = treble +transposition = 0 +A lowest = F1 +A highest = F6 +P lowest = F1 +P highest = F6 + +name = "Harpsichord (bass)" +clef = bass +transposition = 0 +A lowest = F1 +A highest = F6 +P lowest = F1 +P highest = F6 + +name = "Celesta (treble)" +clef = crotale +transposition = 0 +A lowest = C4 +A highest = C8 +P lowest = C4 +P highest = C8 + +name = "Celesta (bass)" +clef = modern celesta +transposition = 0 +A lowest = C4 +A highest = C8 +P lowest = C4 +P highest = C8 + +name = "Electric piano (treble)" +clef = treble +transposition = 0 +A lowest = A0 +A highest = C8 +P lowest = A0 +P highest = C8 + +name = "Electric piano (bass)" +clef = bass +transposition = 0 +A lowest = A0 +A highest = C8 +P lowest = A0 +P highest = C8 + +name = "Toy piano" +clef = treble +transposition = 0 +A lowest = C4 +A highest = G5 +P lowest = C4 +P highest = G5 + +name = "Keyboard synthesizer (treble)" +clef = treble +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Keyboard synthesizer (bass)" +clef = bass +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Organ (manual) (treble)" +clef = treble +transposition = 0 +A lowest = C2 +A highest = C7 +P lowest = C2 +P highest = C7 + +name = "Organ (manual) (bass)" +clef = bass +transposition = 0 +A lowest = C2 +A highest = C7 +P lowest = C2 +P highest = C7 + +name = "Organ (pedal)" +clef = bass +transposition = 0 +A lowest = C2 +A highest = G4 +P lowest = C2 +P highest = G4 + +name = "Electronic organ (manual) (treble)" +clef = treble +transposition = 0 +A lowest = C2 +A highest = C7 +P lowest = C2 +P highest = C7 + +name = "Electronic organ (manual) (bass)" +clef = bass +transposition = 0 +A lowest = C2 +A highest = C7 +P lowest = C2 +P highest = C7 + +name = "Electronic organ (pedal)" +clef = bass +transposition = 0 +A lowest = C2 +A highest = G4 +P lowest = C2 +P highest = G4 + +name = "Harmonium (treble)" +clef = treble +transposition = 0 +A lowest = F1 +A highest = F6 +P lowest = F1 +P highest = F6 + +name = "Harmonium (bass)" +clef = bass +transposition = 0 +A lowest = F1 +A highest = F6 +P lowest = F1 +P highest = F6 + +#end category Keyboards +# +category = Free reeds + +name = "Accordion (treble)" +clef = treble +transposition = 0 +A lowest = F3 +A highest = A6 +P lowest = F3 +P highest = A6 + +name = "Accordion (bass)" +clef = bass +transposition = 0 +A lowest = C2 +A highest = A4 +P lowest = C2 +P highest = A4 + +name = "Bandoneon (treble)" +clef = treble +transposition = 0 +A lowest = A3 +A highest = A6 +P lowest = A3 +P highest = A6 + +name = "Bandoneon (bass)" +clef = bass +transposition = 0 +A lowest = C2 +A highest = A4 +P lowest = C2 +P highest = A4 + +name = "Harmonica" +clef = treble +transposition = 0 +A lowest = E1 +A highest = G7 +P lowest = E1 +P highest = G7 + +name = "Melodica" +clef = treble +transposition = 0 +A lowest = F3 +A highest = C6 +P lowest = F3 +P highest = C6 + +# end category Free reeds +# +# -----------------[voices]---------------- +category = Voices +name = "Soprano" +clef = treble +transposition = 0 +A lowest = C4 +A highest = A5 +P lowest = C4 +P highest = C6 + +name = "Mezzosoprano" +clef = treble +transposition = 0 +A lowest = A3 +A highest = F5 +P lowest = A3 +P highest = A5 + +name = "Alto" +clef = treble +transposition = 0 +A lowest = G3 +A highest = D5 +P lowest = G3 +P highest = F5 + +name = "Tenor" +clef = guitar +transposition = 0 +A lowest = C3 +A highest = A4 +P lowest = C3 +P highest = C5 + +name = "Baritone" +clef = bass +transposition = 0 +A lowest = A2 +A highest = F4 +P lowest = A2 +P highest = A4 + +name = "Bass" +clef = bass +transposition = 0 +A lowest = F2 +A highest = D4 +P lowest = F2 +P highest = F4 + +name = "Boy soprano" +clef = treble +transposition = 0 +A lowest = C4 +A highest = F5 +P lowest = C4 +P highest = A5 + +# -----------------[miscellaneous]---------------- +category = Miscellaneous + +name = "Kazoo (treble)" +clef = treble +transposition = 0 +A lowest = G3 +A highest = A5 +P lowest = G3 +P highest = C6 + +name = "Kazoo (bass)" +clef = bass +transposition = 0 +A lowest = F2 +A highest = A4 +P lowest = F2 +P highest = C5 + +name = "Police whistle" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Bird whistle" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Duck call" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Mouth siren" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Siren" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Auto horn" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Klaxon horn" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Lion's roar" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Wind machine" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 + +name = "Pistol shot" +clef = two-bar +transposition = 0 +A lowest = 0 +A highest = 127 +P lowest = 0 +P highest = 127 diff --git a/data/presets/presets.xml b/data/presets/presets.xml new file mode 100644 index 0000000..a7f451c --- /dev/null +++ b/data/presets/presets.xml @@ -0,0 +1,2010 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/regenerate-presets b/data/presets/regenerate-presets new file mode 100755 index 0000000..ff33a00 --- /dev/null +++ b/data/presets/regenerate-presets @@ -0,0 +1,26 @@ +#!/bin/bash +# +# regenerate-presets +# +# Copyright (c) 2006 D. Michael McIntyre +# Released under the GPL +# +# REQUIRES: ../scripts/preset-xmlify ../scripts/dehumanize +# +# +# PURPOSE: to run the above scripts without a lot of bothersome typing +# +# +# + +rm -f presets*.xml + +for x in presets-editable*.conf; do + xmlfile=presets`echo $x | sed 's/^presets-editable\(.*\)\.conf$/\1/'`.xml + ../../scripts/preset-xmlify < "$x" > "$xmlfile" && \ + ../../scripts/dehumanize "$xmlfile" || \ + echo "Something went wrong. $xmlfile is probably mangled." + chmod -w "$xmlfile" + echo $xmlfile updated successfully +done + diff --git a/data/profile/rosegarden.profile.xml b/data/profile/rosegarden.profile.xml new file mode 100644 index 0000000..857ff61 --- /dev/null +++ b/data/profile/rosegarden.profile.xml @@ -0,0 +1,55 @@ + + + + + Rosegarden + Pedro Lopez-Cabanillas + + Play/Pause + Toggles between playing and pausing + + + Stop + Stops current playback/record session + + + Rewind + Rewind to the previous bar + + + Rewind to beginning + Rewind to the start of the composition + + + Fast Forward to end + Forward to the end of the composition + + + Fast Forward + Forward to the next bar + + + Recording Mode + Starts recording to the armed tracks + + + Next track + Selects the next track + + + Previous track + Selects the previous track + + + Toggle mute track + Toggle muted state for the currently selected track + + + Toggle arm track + Toggle armed state for the currently selected track + + + Quit + Exit Rosegarden + + diff --git a/data/styles/Classical.xml b/data/styles/Classical.xml new file mode 100644 index 0000000..c7957c3 --- /dev/null +++ b/data/styles/Classical.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + diff --git a/data/styles/Cross.xml b/data/styles/Cross.xml new file mode 100644 index 0000000..7f449b8 --- /dev/null +++ b/data/styles/Cross.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/data/styles/Mensural.xml b/data/styles/Mensural.xml new file mode 100644 index 0000000..bd48510 --- /dev/null +++ b/data/styles/Mensural.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/styles/Triangle.xml b/data/styles/Triangle.xml new file mode 100644 index 0000000..7877bdc --- /dev/null +++ b/data/styles/Triangle.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/docs/CMakeLists.txt b/docs/CMakeLists.txt new file mode 100644 index 0000000..9d1ac8b --- /dev/null +++ b/docs/CMakeLists.txt @@ -0,0 +1,4 @@ + +ADD_DOCS(rosegarden en es ja sv) + +INSTALL(FILES en/tips DESTINATION ${KDE3DATADIR}/rosegarden) diff --git a/docs/en/headers-and-unicode-lyrics.png b/docs/en/headers-and-unicode-lyrics.png new file mode 100644 index 0000000..a315eca Binary files /dev/null and b/docs/en/headers-and-unicode-lyrics.png differ diff --git a/docs/en/index.docbook b/docs/en/index.docbook new file mode 100644 index 0000000..064dd2b --- /dev/null +++ b/docs/en/index.docbook @@ -0,0 +1,6885 @@ + +Rosegarden"> + MIDI"> + + +]> + + + + + + + + + + + + + + + + + The Rosegarden Handbook + + + Chris + Cannam + + + Richard + Bown + + + Guillaume + Laurent + D. Michael + McIntyre + Pedro + Lopez-Cabanillas + Heikki + Junes + + + + + + 2002-2008 + Chris Cannam, Richard Bown, Guillaume Laurent, D. Michael + McIntyre, Pedro Lopez-Cabanillas, Heikki Junes + + + 2008-05-05 + 1.7.0 + + + + + + + + + + &rosegarden; + + + + + Rosegarden is an audio and &MIDI; sequencer and musical notation + editor. This Handbook describes how to use it. + + + + + + Rosegarden + sequencer + MIDI + audio + music + notation + score + KDE + + + + + + + + Introduction + + + About Rosegarden + + Rosegarden is a &MIDI; and audio + sequencer and musical notation editor. Rosegarden allows you to + record, arrange, and compose music, in the shape of traditional + score or &MIDI; data, or of audio files either imported or + recorded from a microphone, guitar or whatever audio source you + care to specify. You can use Rosegarden to write, edit, and + organise music to create a composition, which you can then + synthesise, add effects to, and mix down for burning to CD or + distribution on the web. Rosegarden also contains well-rounded + notation editing support for high quality printed output. + + + + Rosegarden is designed to look and + act in a manner familiar to experienced users coming to Linux + from other platforms, whilst also being accessible and friendly + to users new to music software generally. + + + + About this Handbook + + This handbook summarises the capabilities of &rosegarden; and + provides a reference for some of the concepts involved. It's + designed to make sense either read in order or used as a reference + to the concepts and functions available in Rosegarden. If you + would like to read a tutorial as well, you + can find one here. + + If there's something else that you + don't understand or require further help with, please visit + the + Rosegarden website for Frequently Asked Questions and + mailing list instructions. + + + + + About Menus and Shortcuts This handbook + usually refers to the functions you can use in Rosegarden by + describing where they live on the menus. For example, the + function to add a single new track to the main track editor is + + Tracks + Add Track + . + + In many cases, this is not the only way to reach a + particular function. In this case the same function is also + available through the keyboard shortcut Ctrl+T, and it also + appears as an icon on one of the main window's toolbars. Both + the keyboard shortcut and the icon can quickly be learned, + because they are shown on the menu in Rosegarden alongside the + name of the function. You should bear in mind that although we + always give the full menu location in this documentation for + reference purposes, it's not necessarily the best or most usual + way to use a function, and you should keep an eye on the + keyboard shortcuts or toolbar icons as well. + + + + + Optional Features This Handbook assumes + that your Rosegarden installation supports all the features of + which it is capable. Some of Rosegarden's features, including + some very major ones, are actually optional when building a + Rosegarden installation, depending on which other libraries and + supporting code is available. For example, the whole audio + subsystem is only compiled in if JACK libraries are available; + synth plugin support depends on a number of other modules; + etc. These dependencies are documented in the + Rosegarden README and configuration documentation. If you find + that this Handbook refers to features not visible in the version + of Rosegarden you're using, consult your configuration + documentation or distributor. + + + + + + + + + + + Rosegarden Files and Documents + + &rosegarden; stores each composition in its own document, using + its own internal format. When you save a document it is stored + on disc as a file with the .rg extension. + Many users have complained about our opaque binary file + format. It is, in fact, nothing more than gzipped XML. + &rosegarden; can also + handle a number of other standard file formats. + + + + New compositions + + When &rosegarden; starts up, it does so with a new document, + containing an "empty" composition ready to start editing. + To put something in that composition, you must either record + something, or create some blank lengths of music (referred + to as "segments") that you can then fill in using the + various editing facilities. + + See Recording for details of how to record music, and see the Track Editor section for a + description of how to create, edit, and manage segments of + music. + + + + + Using MIDI files + + To import and export MIDI files, use the + + File + Import + Import MIDI File + + and + + File + Export + Export MIDI File + + functions. + + + Although &rosegarden; can load and save file formats such as + MIDI, it does not store MIDI data internally. You should + generally prefer to save files in &rosegarden;'s own format, + as &rosegarden; stores quite a lot of information that will + be lost when exporting to MIDI. This also applies if you merely + import a file, and then immediately export it back out. &rosegarden; + translates the raw MIDI to its internal format, and then translates that format + back into MIDI. Some details of the file structure can and do get + lost or rearranged in this translation, but the resulting performances + should be functionally identical. + + + When a MIDI file is loaded, &rosegarden; splits out the + music into one track per MIDI track or channel in the file, + sets up the appropriate + instrument mappings, and attempts to calculate plausible + notation for the MIDI performance data. + + + + + Rosegarden Project files A Rosegarden + composition file (.rg) contains all of the the note information + for your composition, as well as other data such as MIDI + controller settings, plugin details, and the names of any audio + files referred to in your composition. The audio files + themselves are not stored in the Rosegarden composition file; + instead you are expected to keep track of their location on disk + yourself (see Audio + segments). When you need to transfer a project from one + computer to another, or to a friend or colleague, this can be + inconvenient. This is where Rosegarden Project files are + useful. A Project file contains your composition, all of the + audio files it uses, any further data files required for plugins + used in the composition, and any additional files you may want + to include, all in one big bundle. + Use + File + Export + Export Rosegarden Project file... to export the current composition and its associated data into a Rosegarden Project file, and + File + Import + Import Rosegarden Project file... to expand a Rosegarden Project file back into a composition and load it. + + Note that Rosegarden Project format is an interchange + format, not an archival format. Although Rosegarden composition + files are very carefully checked for compatibility from one + Rosegarden version to the next, no long-term guarantees are made for the + Project file format. + + + + Other file formats + Rosegarden can export to and import from a number of other file formats. Some of these are described here; see also Printing for information about LilyPond file export. + + + Csound + + You can export score files for the Csound synthesis system using + + File + Export + Export Csound score file... + . Together with a suitable orchestra file (not supplied), this can be used to play the composition through Csound. Note that not all data in the Rosegarden composition necessarily can or will be saved in the Csound format. + + + + Mup + + You can use + File + Export + Export Mup file... + + to save the contents of the current composition into a new Mup file. This can then be processed by the Mup music publication system, although it is likely that the file may need some tweaking to get really good quality output. Note that not all data in the Rosegarden composition necessarily can or will be saved in the Mup format. + + + + MusicXML + + The + File + Export + Export MusicXML file... + + function saves the contents of the current composition into a new MusicXML file. This can then be used with any music software that supports the MusicXML format. Note that MusicXML support is experimental and has not been well tested. Not all data in the Rosegarden composition necessarily can or will be saved in the MusicXML format. + + + + Hydrogen + + Rosegarden can import h2song files created by the Hydrogen drum machine. These are imported into a skeletal MIDI-style structure with one track per pattern. The audio samples they use are not imported. Use + File + Import + Import Hydrogen file... + to import a Hydrogen file. + + + + Rosegarden 2.1 + + Use the + + File + Import + Import Rosegarden 2.1 file... + function to create a new composition from the contents of an existing X11 Rosegarden v2.1 (.rose) file. + + + + + + + + + Merging files As well as loading or + importing files, you can also merge them into the current + document, loading or importing the data from the file, as necessary, + and adding it to the existing composition. + + + To merge a file, just use the relevant option on the + + File + Merge + + submenu, instead of using the Open or + Import option. + + + + + Printing + + You can print out a composition in the form of a musical + score, using the + + File + Print + + function or the + + File + Print with LilyPond + + function. + + + + Producing a score from performance data is a hard task, and + in most cases it's unreasonable to expect a default printout + based on MIDI data to be very readable. You should use the + notation editor to tidy + up the score before printing. (See also Notation from performance + data.) + + + &rosegarden; is capable of producing very readable scores. Even + so, it is designed to be a screen editor and not primarily a + typesetter. If you want to produce true print-quality scores you + should consider using LilyPond in conjunction + with &rosegarden;. LilyPond is music typesetting software that + reads a specialised text file format and produces high-quality + typeset output. &rosegarden; is capable of writing LilyPond files + using the + + File + Export + Export LilyPond + + function, and it + features special exportable + directives and track + parameters that provide access to LilyPond features for + which there is currently no parallel within &rosegarden;'s own + native interface. + + + LilyPond may be conveniently used with the + + File + Preview with LilyPond + + function, which exports the file into a temporary file and processes + it directly with LilyPond for preview with a PDF viewer. + If you are happy with the preview, you may print the score using the + printing capability of the PDF viewer, or use the + + File + Print with LilyPond + + function. + + + + When Export, Preview, or Printing is done with LilyPond, + there is available also a collection of + LilyPond options. + + + + + LilyPond options + If one of the LilyPond export functions is invoked, there will + appear a dialog in which options specific to LilyPond export may be + altered. + + + + + LilyPond version + + LilyPond version installed into the system should be automatically + detected in the dialog, but it is possible to export to any other + LilyPond version since 2.6. Historically, LilyPond's syntax has + changed somewhat over time, but since LilyPond version 2.6 changes + have have been less radical and more maintainable. + + + + Paper size and Landscape + + Paper size can be A3, A4, A5, A6, Legal, US Letter, and Tabloid. + All paper sizes may also be used in Landscape mode. + + + + Font size + + Font size affects the size of the notes. If you want to fit more + staffs into the paper, you should decrease the font size. + + + + Export content + + Export content concerns tracks that have segments in them, which + are the tracks that are not empty. + It is possible to export All tracks, Non-muted tracks, the current + Selected track, or Selected segments. If LilyPond export is + launched from the Notation view, Selected segments include + the same selection which was used in opening the Notation view. + + + + Merge tracks that have the same name + + It is possible to Merge tracks that have the same name. + This options allows for example to make a piano score with + several independent voices. You may give first three tracks + name "Right" and three next tracks "Left" and then merge + them in LilyPond export. (This provides an easier way to manage + overlapping segments with the price that the top and bottom + parts will have different names on the page. If you wish both + of them to be named, eg. "Piano," then you will have to keep all + of the segments on the same pair of staffs. Consult Piano + by Example for a hands-on demonstration of this.) + + Adjust + Fine Positioning + Push Right/Left + . + + + + Export tempo marks + + Tempo marks are not exported by default. If tempo changes + rarely, you may want to export all tempo marks, but if + tempo changes too often, you may export only the first mark. + + + + Export lyrics + + Lyrics is exported if this + option is checked. Text is entered in Unicode, which + makes it possible to enter lyrics in all languages. Multiple + lines of lyrics per staff is also possible, see the section + on Editing lyrics. + + + + Export beamings + + Beams defined in + &rosegarden; can be exported, or the default + beam grouping of LilyPond can be used. Future versions + of &rosegarden; may support nested note grouping. + + + + + Lyrics alignment + + Lyrics is aligned Left by default. Sometimes Center or + Right alignment provides results and more pleasant output. + + + + Ragged bottom + + The staffs normally cover the whole page from top to bottom. + When there are only a few staffs, this option places the + extra vertical space at the bottom of the page instead. + + + Enable "point-and-click" debugging + + If you export the LilyPond source with the + + File + Export + Export LilyPond + + function, you may open the LilyPond source by clicking + notes in the PDF output. Consult LilyPond documentation for more + information. + + + + Export \midi block + + LilyPond is also capable of producing MIDI output. Check this + option if you wish the LilyPond source to use this option. + Note however that MIDI output which you obtain via &rosegarden; + sequencer, via + + File + Export + Export MIDI file + , + and via LilyPond's MIDI output may differ considerably. + + + Headers + + Headers can be edited both in LilyPond export dialog and through the + + Composition + Edit Document Properties + function.Some of the headers will appear + only in LilyPond output. + The position of the Printable headers match roughly with + the positions of the headers in the printed output. + Below is shown an example with all headers and lyrics + entered with Unicode text. + + + + + + + + LilyPond's output showing all headers and Unicode lyrics. + + + + + + + + + + + + + The Track Editor + + Overview + + &rosegarden;'s main layout is similar to many + other popular sequencers. It is based on a track + structure — the main window shows a track editor with + a list of tracks and their associated instruments down the + left hand side. You can manipulate and move blocks of + music data (referred to as “segments”) on the + track editor as well as opening the segments themselves in + specialised editors (notation, matrix, percussion matrix, and event list). + + + + + + + + + + &rosegarden;'s Track Editor showing two segments of music data + + + + + + + Tracks govern what sort of segment you can create in a particular + place. If you create a segment on an audio track, it will be an audio + segment, no matter where that segment subsequently moves. If you + create a segment on a &MIDI; track, it will always be a &MIDI; + segment. You can set + track parameters to pre-select various segment properties at the track + level, and to exercise fine control over &MIDI; recording. + + + Tracks can be assigned to a range of &MIDI;, plugin synth, or + audio instruments. In the picture above we see three segments + in the track editor on tracks assigned to General MIDI + instruments. + + + + + + + + + + &rosegarden;'s Track buttons showing track labels + + + + + + + The button area to the left of the segment canvas shows you + the track number, mute and record status, and the label of the + track. You can mute or unmute a track by clicking on the blue + LED-style button, and select a particular track as a record + target by clicking on the red one. To change the track label, + double-click on it. + + + + + + + + + + &rosegarden;'s Track buttons showing instrument assignments + + + + + + + Track labels are only shown if the + + Settings + Show Track Labels + + menu option is enabled. + Otherwise, as in this picture, the instrument assignments for + the tracks are shown instead. + + + + Tracks and instruments + + Each track must have an instrument assigned to it, in order to + be heard. By default the first 16 tracks are assigned to the + 16 instruments of the first available MIDI device, and the + next 16 tracks are assigned to audio. + + To change the instrument assignment for a track, + right-click on the track label: a pop-up menu will appear from + which you can select among all the available instruments. + + + + + + + + + + &rosegarden;'s Instrument menu + + + + + + + An instrument can be understood as a single channel on a + &MIDI; device, or as a mono or stereo audio output or an audio + synth plugin. Tracks containing note data should be assigned + to &MIDI; or synth plugin instruments, and those containing + audio to audio instruments. You can assign more than one + track to the same instrument, in which case the multiple + tracks will produce sounds in the same way (&MIDI; tracks playing + panned to the left with a flute, or audio tracks playing with the same + volume levels, through the same stack of + plugins.) + + + You can change various properties of the instrument + associated with a track using the Instrument + Parameter Box. This is where, for example, you would + set a MIDI instrument to use a particular patch and so + produce a particular sound (piano, strings etc). + + + See the + Studio section + for more about instruments. + + + + + Creating segments + + + To create an empty segment, in order to begin composing + something new, you need to use the pencil tool (which is normally the + default active tool when you first start &rosegarden;). Click on + the pencil on the toolbar, and then click at the point where + you want the segment to start (at the correct height for the + track you want the segment to be on, and at a distance + across the editor window corresponding to the correct time) + and drag rightwards until the segment is the right number of + bars long. + + + You can also create segments using the Select tool, by clicking + and dragging either with the middle mouse button, or with the + left button and Ctrl held down. + + + If you want to draw a segment longer than the visible + portion of the canvas, the canvas will scroll automatically once you + reach its edge. If you keep dragging past the end of the entire + composition, you can keep dragging, and will push the end marker right along + with you. (This is a welcome contrast to earlier versions of + &rosegarden;.) + + + + Usually each new segment starts on a barline and extends bar + by bar, but this snap-to-grid effect can be prevented by + holding down Shift while clicking and dragging. + + + New segments are created in a yellow colour, with a treble clef by + default. You may wish to jump ahead and have a look at track parameters to explore + other possibilities. + + + If you wish to draw a segment that begins in the middle of an + existing segment, hold Ctrl and Alt when clicking. The track will + automatically expand to accommodate this new segment. This is especially + useful for some situations involving music notation. + + + + Once you have created a segment, you can then begin editing + using the matrix, percussion matrix or notation editors. To use one + of these editors, either double-click on the segment, or + else click with the right mouse button and choose the editor + you want from the context menu. + + + + If you are intending to record from a MIDI device or audio + input, you don't need to create a new segment to record into + first -- each separate recording always goes into a new + segment, created automatically during recording. + + + + + Audio segments + + An audio segment contains recorded or sampled audio data, + instead of editable note-event data. Rosegarden allows you to + record, play, arrange and split audio segments, but does not + contain audio waveform editing facilities. + + To create an audio segment, you can record from an audio source onto a + track assigned to an audio instrument, or you can work with + existing WAV files. To do this, you need to use the audio + manager dialog (reached via FileManage Audio Files). + + + + + + + + + The audio file manager + + + + + + You can drag-and-drop audio files from the KDE file + browser or your KDE desktop into the audio file manager, or you + can open them using its File menu. Then you can either + drag-and-drop them onto Rosegarden's track canvas, or use the + audio file manager's ActionInsert into Selected + Audio Track menu function, provided the current + selected track in the main window is assigned to an audio + instrument. Newly-recorded audio segments also appear in the + audio file manager dialog. + + Details of the audio files associated with a particular + composition are saved with that composition, but the audio files + themselves are not. You should ensure your document has a + sensible audio file search path (via CompositionEdit Document + Properties...Audio) + so as to keep your audio files accessible together. You can also export + your project to a &rosegarden; project package file (.rgp) via + File + ExportExport Rosegarden Project File + to collect any scattered audio files + together in one place. + + The audio manager dialog also shows the sample-rate and + other information for each audio file, and marks with an + asterisk any audio file whose sample rate does not match that of + the current JACK audio session that Rosegarden is using. + Rosegarden will resample these files at playback time using a + very low quality zero order hold resampler. You are advised to + resample them separately using a separate dedicated audio editor + instead. + + + + + + Manipulating segments + + The main window contains a selection of "tools" for editing + segments. These are available from the main toolbar: first + select the tool you want from the toolbar, and then click + and drag on the segments on the main canvas. + + + + The Select tool + + The select tool + + + + + is actually a + multipurpose tool: it can be used to select, move, copy, + resize and create segments. + + The most obvious use is + selection: select a single segment by clicking on it with + the select tool, or select several by clicking with Shift + held down, or by clicking in an empty area of the window and + dragging out an area. + + + To move segments with the select tool, simply click and + drag on the segment. To create copies, click and drag with + Ctrl held down. To resize a segment, click and drag on the + right-hand edge of the segment. To create new segments, click + and drag on an empty area either with the middle mouse button + or with the left mouse button and Ctrl held down. + + + The select tool doesn't replace the other tools completely, + though — sometimes you need to be more precise about + which operation you intend, particularly when working on small + segments. + + + + + + Move and Resize tools + To move a segment to a different start time or track, + use the move tool + + + + + and click and drag on the segment you want + to move. If you hold down the Ctrl key while dragging, the + segment will be copied instead of moved. + + To resize a segment, use the resize tool + + + + + and click and drag on the right-hand end of the segment. + Resizing a segment has the effect of extending or + shortening it, by subtracting some of its contents or adding + silence at the start or end. If you hold down the Ctrl + key, the segment will be rescaled (stretched + or squashed) instead of extended or shortened. + + For both move and resize you can hold Shift for fine + positioning, to avoid snapping to a particular grid position. + + + + + + Stretching and squashing segments + Resizing a segment normally makes it shorter or longer + by subtracting content or adding some extra space. However, + by holding the Ctrl key while resizing, you can instead + stretch or squash the contents of the segment. You can also do this by selecting the segment and then using Segments + Stretch or Squash.... + + For segments that contain MIDI events, this re-spaces the + events so that they are spread across the new segment's + duration, playing back faster or slower than before but in + the same relative proportions. + + + For audio segments, this time-stretches the audio, altering + its played speed without altering its pitch (as would happen + if the audio was simply played back faster or slower). + Time-stretching usually adds some audible artifacts as well, + so the quality of your results may vary. + + + &rosegarden; does not alter the original audio file when + time-stretching an audio segment, and if you rescale the same + segment repeatedly it will always work from the original + file instead of accumulating timestretching artifacts with + each rescale. You can rescale both mono and stereo audio. + + + (For reference, &rosegarden; uses a frequency-domain + time-stretcher based on a phase vocoder with phase-locking + at percussive transients. This usually produces good + results with stable harmonic sounds such as pads and basses + as well as purely percussive sounds such as drum loops, but + is less effective for composite material or music with soft + or breathy note onsets.) + + + + + Split tool + + You can use the split tool + + + + + + to split a single segment + into two separate segments. To split your segment, select the + split tool and click on the segment you wish to split. + + + By default segments are split on the closest barline to the + cursor, but this can be prevented by holding down Shift + while splitting the segment. + + + + + + Other Split functions + The Segments menu contains a number of other Split functions. + + + Split on Silence + + Segments + Split + Split on Silence + + splits the selected segments on silences. + This function works slightly differently depending + on whether the selected segments contain audio or + MIDI data. For audio segments, it offers you a + dialog in which you can choose a threshold below + which the segment is considered "silent"; it then + splits the segment whenever its amplitude falls + below this threshold. For MIDI segments, it simply + splits the segment everywhere that a full bar of + silence occurs. + + + + + Split by Pitch + + + Segments + Split + Split by Pitch... + + splits the currently selected segments into higher and + lower parts. + + This function invokes a dialog allowing you to + choose a pitch as a "split point", and then splits + the selected segments in half with all the notes on + or above that split point in the "higher" segment + and all the notes below it in the "lower". + + + + If the music in the segment consists of two separate + parts (e.g. left and right hand piano parts) that + are not always completely on either side of a single + split point, you may with to select the "ranging + split-point" option. If this is selected, + Rosegarden will attempt to track the two parts as + they move up and down, usually doing a slightly + better job of separating out notes that were + intended to lie in the two separate parts. + + + + The resulting segments are both created on the same + track, with one overlapping the other. + + + + + +Split by Recording Source + Segments + Split + Split by Recording Source... + splits the currently selected segments according to the MIDI channel and device their events were recorded from.If you have recorded events from more than one MIDI channel or device into the a single segment, you can use this function to split them into separate segments afterwards. Select the channel or device whose events you want to split out, and the segment will be split into two segments, one containing events from the selected channel or device and the other containing the remaining events. The two segments are both created on the same track, with one overlapping the other.See also Recording and Track recording filters for more details on how to select the source MIDI channel or device for a recording. + + + + Split at TimeThe + Segments + Split + Split at Time... + function simply splits the currently selected segments into two parts at the time you specify. + + + + + + + + Tempo and Time Signature + + + Tempo in Rosegarden + + &rosegarden; considers a composition to be accompanied by a + single stream of "tempo changes" and "time signature + changes", which you can edit to adjust the tempo and the + number and structure of beats in each bar. + + A tempo change + can be to a constant fixed tempo, or it can be "ramped" + — changing smoothly to a different target tempo at a + given future time. Each tempo change takes effect until the + following one is reached, so any two consecutive tempo changes + together describe a region that will be played at a constant + or smoothly ramping tempo. + + + + Tempo and time signature are related, because &rosegarden; + displays tempo in beats per minute, and the duration of a + beat depends on the time signature. &rosegarden; only + permits a single time signature to be in effect in any given + bar (that is, you can't have different time signatures in + different tracks). Each new time signature causes a new bar + to start, so you can place two time signatures closer + together than the natural bar duration in order to obtain a + partial bar. + + + + + Tempo rulers + + The &rosegarden; track editor, matrix editor and notation editor each contain + a tempo ruler, which can be optionally displayed at the top + of the editing area. + + + + + + + + + &rosegarden;'s tempo ruler (and the bar and beat ruler beneath it) + + + + + + The tempo ruler shows changes to tempo and time + signature throughout the composition, and can be used for + editing tempo. + + To increase or decrease the tempo within the range of a + single tempo change, click and drag the horizontal line (or + sloped line, for ramped tempos) representing that tempo + upwards or downwards. + + To insert a new tempo change, right-click on the ruler + for a menu and select Insert Tempo + Change. This will insert a new tempo change + with the same tempo as the prior one, which you can then drag + to increase or decrease. + + You can also click and drag the starting point of a + tempo change left or right to move that tempo change to a + different time, and you can click and drag the ending point of + a tempo change up or down to make the tempo ramp gradually + towards an ending tempo value. + + Double-click on the tempo ruler to open the tempo and + time signature editor. + + + + + Tempo and time signature editor + + + + + + + + + &rosegarden;'s tempo and time signature editor + + + + + + The tempo and time signature editor window lists all of the tempo and time signature changes in the composition. You can edit an individual tempo or time signature change by double-clicking on it. + + + + + Changing Tempo + + You can edit an existing tempo change, or add a new one, by using the tempo ruler, by double-clicking on the tempo display in the Transport window, by using the + Composition + Add Tempo Change... + menu function, or by double-clicking on an existing tempo in the tempo and time signature editor. Each of these will bring you to some variation of the tempo editing dialog: + + + + + + + + &rosegarden;'s tempo dialog + + + + + To set a new tempo, either dial it into the numeric tempo spinbox at the top, or else click repeatedly on the Tap button at approximately the speed you want and let &rosegarden; work out the tempo for you. + + By default, a new tempo is "fixed"; that is, the tempo remains constant from the tempo change until the next tempo change is reached. Alternatively, you can tell &rosegarden; to make the tempo ramp smoothly to a particular value, or to the following tempo value, by the point at which the next tempo change is reached. See also Tempo for more details on tempo handling. + + + + Time signature + + To change the time signature, use + Composition + Add Time Signature Change... + or double-click on the existing time signature in the Transport window or tempo and time signature editor. + + + + + + + &rosegarden;'s time signature dialog + + + + + + + Setting tempo from an existing segment + &rosegarden; provides two ways to set tempo from a segment that you have recorded or imported: + + + Audio Segment Duration + Use the + Composition + Set Tempo to Audio Segment Duration function when you have imported or recorded an audio segment that you know is exactly one bar long, and you want to ensure that the tempo for surrounding note events is set appropriately.This function uses the duration of the selected segment (which must be an audio segment of a single bar) to work out a single matching tempo setting. It does not analyse the content of the audio segment in any way; it simply looks at how long it is. + + + + Beat Segment + + Composition + Set Tempos from Beat Segment analyses a segment of MIDI events that are assumed to be at beat positions for the current time signature, and sets a series of tempo changes according to the time elapsed between consecutive beats. + You can use this to set an overall tempo map for a composition by "tapping" tempo in a recorded segment. For example, you can record from a MIDI keyboard and tap a series of single notes at approximate beat positions, speeding up and slowing down gradually; then select the recorded segment and use this function to set a tempo map that speeds up and slows down to match your tapping. + + + + + + + + + Markers, ranges, and loops + + Markers + + Markers are moments in time that have labels. You can + create any number of markers in your &rosegarden; composition, + to define particular points that you wish to remember the + locations of. Marker positions and labels will be saved in + your &rosegarden; file. + + Markers are shown in the main ruler at the top of each + of &rosegarden;'s editor windows. + + + + + + + + + A marker and a loop range + + + + + To add + a new marker, double-click on the marker area (top half) of + the ruler to open the marker editor. Make sure &rosegarden;'s + playback pointer (see The + Transport) is in the location you want to add the + marker at, and then click the Add button to add a new marker + at the playback position. You can then double-click on the + marker's entry in the marker editor window to edit its name or + adjust its location. + + Click on the text of a marker in the marker ruler to + move the playback pointer directly to that marker. + + You can set a loop range + between two marker positions, by clicking in the area between + the markers in the marker ruler with the Shift key + pressed. + + + + Quick Marker + + The quick marker is a special moment in time that can be defined + on the fly with a single key (by default Ctrl-1) from the main window + (track editor). Once defined it appears as a red line in the loop ruler + (it does not appear among other markers, since it does not have a label). + At any time when in the track editor you can jump to the quick marker + position with a single key (by default simply 1). + + + + + + + Quick Marker at the start of the third bar + + + + + + A typical use of the quick marker is when you want to record the same bars + on different instruments: after setting the quick marker at the first bar of + the working interval, it is easy to jump to the quick marker each time you need + to record a new part. + + Note that the quick marker position is not saved in your &rosegarden; file. + + + + Ranges and loops + + &rosegarden; allows you to highlight a period of time in the + main ruler, which will be used as a "range" for editing + operations and which will be looped during playback. + + + To set the current range, click and drag with the Shift + key pressed on the subdivided area of the main ruler at the + top of the editing window. The range that you drag will be + highlighted in white as you drag it, and will snap to the + nearest beat boundary at both ends. Any subsequent playback + will then be constrained to looping this range. + + + You can also set a range between two markers by shift-clicking between the + marker positions in the marker ruler, or set a range using the + Transport window. + The Transport contains small buttons to set the start and end + of the current range to the current playback pointer position. + Either of these methods allows you to set more precise end + points for your range than you can with click-drag. + + To clear a range and restore normal playback, click on + the subdivided area of the main ruler with the Shift key + pressed, or toggle the loop button on the Transport. + + Note that playback looping when a range is defined is + not the same thing as the repeating + segment function available in the segment parameters + (which seamlessly repeats individual segments rather than + causing the transport to jump). + + + Range editing + + You can carry out edits + on the current range in order to cut and paste sections + of music that include the relevant parts of all + segments, tempos and time signatures within the range. + + + Set a range and then use the Edit Cut + Range or + Copy + Range menu functions to cut or + copy the range to the clipboard. + + You can paste a range using the standard + Edit + Paste menu function + to overlay its contents onto the rest of the composition at + the current playback pointer position, or you can use + Edit + Paste Range to + insert the range from the clipboard into the composition at + the current playback pointer position. + + + + + Inserting a range + + You can also insert an empty range at the current + playback position using the Edit Insert + Range menu function. You can + specify how much space you want to insert, and then all of + the segment content, tempos and time signatures following + the playback position will be pushed along in time by that + duration to leave an empty space. + + + + + + + + Triggered segments + + A triggered segment is a segment that does not appear on + the main canvas and is not positioned at a particular time or + on any particular instrument, but is instead triggered during + playback by one or more notes in other segments. These + triggering notes serve as a shorthand for the full triggered + segment, in the same way as written ornaments such as trills + in notation serve as shorthand for the notes that make up the + trill. One use of triggered segments is in fact for + playing ornaments. + + Rosegarden can optionally stretch or squash each triggered + segment to match the duration of the note that triggers it, and + can raise or lower the pitch and velocity of the segment likewise + to match. A triggered segment is played on the same instrument as + its triggering event. + + + + + + + + + &rosegarden;'s Trigger Segment dialog, as reached from the matrix editor + + + + + + Triggered segments are managed through a window available + via the SegmentsManage Triggered + Segments option in the main segment + canvas. To make a new triggered segment, copy a segment or part + of a segment to Rosegarden's clipboard, then use the + Edit Paste as New + Triggered Segment menu option in this + manager window. You can then set a particular note to play this + triggered segment instead of the original note, using the + Adjust + Trigger Segment... + function in the matrix or NoteOrnaments Trigger + Ornament... function in the notation + editor. + + When triggering a segment, you will be offered a choice for + how it is played in terms of timing, because the triggered segment + (or ornament) may have a different underlying duration from your + triggering note. The options for playback timing are: + + + + + As stored + + Play the triggered segment with a start time + coinciding with that of the note, and at the original speed. + Keep playing the triggered segment until it ends, even if it + is longer than the triggering note. + + + + + + Truncate if longer than note + + Play the triggered segment with a start time + coinciding with that of the note, and at the original speed. + If the triggered segment is longer than the triggering note, + truncate it so that it ends at the end time of the note. + + + + + + End at same time as note + + Play the triggered segment with its end time + coinciding with the end of the note, and at the original + speed. This means the start of the triggered segment may be + chopped off if it is longer than the triggering note. + + + + + + Stretch or squash segment to note duration + + Speed up or slow down the triggered segment so that it + fits exactly into the duration of the triggering note. This + is the default. + + + + + + + A triggered segment may contain silence at the start or end, + and this will be "played" (and stretched or squashed if + appropriate) as well as the notes and other events in the segment. + + It is not currently possible to make a triggered segment + start playing before the start time of its triggering note. You + also can't trigger a segment from within another triggered + segment, and you can't trigger audio segments. + + To edit the contents of a triggered segment, either + double-click on it in the Manage Triggered Segments window, or + double-click on any note that triggers it. Apart from editing the + notes in the segment, you can also change the duration of the + segment itself from the Edit menu of the resulting event list + view. Remember that editing a triggered segment will affect all + the notes that trigger it, not just the one that you + double-clicked to get to the editing window. + + + + + + The Transport + + When you play a composition, + &rosegarden; sweeps a playback pointer across + the tracks from left to right playing the contents of the + segments as it crosses them. The pointer's position on the + screen is tracked and controlled by a window called the + Transport. + + + Overview + + + + + + + + &rosegarden;'s Transport window + + + + + + + If the Transport isn't visible, you can activate it with Settings + Show Transport . + + + The Transport shows the time reached by the playback + pointer, in seconds by default. + + You can switch it to show + musical time (bar and beat counts), musical time with a flashing + visual metronome, or audio sample frame times, using the topmost + of the small buttons + + + + on the left of the transport window. + + The + button immediately below that + + + + toggles the display so as to show + time remaining to the end of the composition instead of from the + start. + + + The main controls on the transport start the sequencer playing + and pause it, fast forward the pointer position, rewind it, stop + it or jump to beginning or end of composition. + + + + The transport display also shows the tempo and time signature in + effect at the current playback position. Double-click on either + of these to insert a new tempo or time signature change. See + Tempo and Time + Signature for more ways to adjust these elsewhere in Rosegarden. + + + + You can also double-click anywhere on the main time display on + the transport window, to enter a precise time that you want the + playback position to be set to. + + + Additional controls and a &MIDI; event display are hidden on + the bottom flap on the transport, which can be toggled on or off + using the arrow button next to it at the left. Also on this extra + portion there are buttons for recording, setting the loop start + and end (see Ranges and loops), + soloing individual tracks, turning on or off the metronome (see + Metronomes), and silencing + your MIDI devices (the panic button). + + + + Recording + + + + + + + + Track buttons in various states of recording readiness + + + + + + To record a new segment into a track, first make sure the + right tracks are armed for recording by selecting the red + (for audio tracks) or yellow (for MIDI tracks) LED-style + buttons on the track labels, and then use the Transport's record + control. This has the effect of both starting the transport, + thus playing the existing composition, and recording into the + appropriate track, or tracks. + + + You can record any number of &MIDI; and audio tracks at once so long + as your computer is powerful enough, and you have enough disk space. + Be careful not to accidentally leave tracks selected when you have + finished using them and are trying to record somewhere else. + + + Alternatively you can use punch-in record to separate the acts + of starting the transport and entering record mode. Punch-in + record is toggled with the Space bar. You can press + Space + while playing a composition to switch instantly between + playback and recording without stopping the transport, or you + can use Space to arm for recording when the transport is + stopped, so that a subsequent Play will in fact record as + well. (The latter is handy when synchronising to an external transport.) + + + If you record to MIDI tracks, you will record from the + MIDI devices that are selected for recording in the + MIDI device + manager, as filtered through the track level recording filter + and the global MIDI filters. + + + If you record to audio tracks, your recording to each track + will be from the input currently selected for that track's + instrument in the instrument + parameter box. This will either be an external audio + input or an audio submaster or master (for performing + mixdowns). If it's an external input, it will by default + record from your soundcard's first available physical record + in. You may wish to use a JACK connection tool to + connect some other JACK audio application to the input + instead. See also Audio Routing. + + + + Synchronising to external transports + + JACK Transport + + Rosegarden supports the JACK transport mechanism for + synchronising its transport with other JACK applications on + the same computer. To activate it, go to + + Settings + Configure Rosegarden... + + and check the Use JACK transport box. + + When the JACK transport is in use, all of the applications + that are subscribed to it share a common transport control, and + you can start, stop, and move the transport from any one of + them. + + Many Linux audio applications that use the JACK audio + server also support JACK transport: consult their + documentation for details of whether and how. + + + MIDI Time Code + + Rosegarden supports MIDI Time Code (MTC) synchronisation in + master and slave modes. This is particularly useful for + synchronising the Rosegarden transport with a hardware + MTC-capable device, or with software running on other + computers connected via MIDI. + + To make Rosegarden the MTC Master, so that it will + control any MTC slave device or application connected to it, + go to + + Settings + Configure Rosegarden... + + and in the MIDI page's MIDI Sync tab, select "MTC + Master" from the MIDI Time Code menu. To make Rosegarden an + MTC Slave so that Rosegarden's transport will automatically + be synchronised with incoming MTC events, select "MTC + Slave". + + + + + + Infrared Remote Controls + + Rosegarden supports infrared remote controls for + almost all transport functions. In order to use it, + you need either the internal LIRC client, which is + an optional feature at Rosegarden's compile time, + or the KDE IRKick application (KDE LIRC daemon) + that you can find in your Linux distribution's + repositories. In both cases, you need to install + and configure the LIRC server daemon. The exact + details depend on your remote control and receiver, + and you should refer to the + LIRC web site for more information. + + + + You can find more details online about the internal + LIRC client configuration file and IRKick basics, at + + Rosegarden's web site. + + + + + + The Studio + + + Devices, instruments and connections + + Rosegarden uses the term Studio to refer to everything it + knows about the sound systems attached to the computer. This + may include &MIDI; and audio hardware and other sound software, + and includes information about connections, configuration, + &MIDI; patches and so on. The Studio is built-in to every + composition you create with Rosegarden. + + Three pieces of terminology are essential here: + + + + + Device + + A device, as far as Rosegarden is + concerned, is simply something capable of producing + sounds. This may be a MIDI or audio device. MIDI + devices do not necessarily correspond directly to + physical MIDI ports: they are just things with names + that you can refer to, expected to work in particular + ways. Configuration information such as MIDI patch maps + can be attached to devices. + + + + + + Instrument + + Each device has a number of + instruments, each of which is assumed + to make a particular sound. These are the things that + you can assign tracks to in order to choose which + sound they play. By default, a device contains 16 + instruments, created for you at startup: if the device + is a MIDI device, then these will each be initialised + to one of the 16 MIDI channels. The instrument is + where you set all the properties of a particular + voice, such as program settings, reverb, volume etc. + + + + + + Connection + + While a MIDI device is simply a name and a + collection of configuration information, the + connection specifies which MIDI port it + is physically attached to. This can be configured in + the MIDI device + manager. (Audio and synth plugin devices do not + have connections in the same way.) + + + + + + + For example, imagine a setup consisting of a PC with two + physical MIDI ports, one of which has an external synth + attached to it. Here you would normally configure Rosegarden + so as to have one MIDI device, corresponding to the synth. + You could then configure this device with the correct name and + patch map, and then specify a connection for it that + corresponded to the relevant MIDI port on your soundcard. + Each of the 16 default instruments on the device could then be + configured with a suitable program, and you would then assign + tracks to those. + + + In practice, Rosegarden will by default create a device for + each of the available connections on startup. So in the + example above, two MIDI devices will be created by default + even though you only need one. You would generally then + rename and apply patch maps to the first, and delete or + simply not use the second. Remember that there is no way + for Rosegarden to know what synths you actually have plugged + in to the MIDI ports on your computer: for this reason, the + devices created at startup are just intended to be a default + set, and it's up to you to ensure that the devices you + configure match those you are really using. + + + Once configured, the studio setup is stored with every + Rosegarden-format file you save. + + + + + Managing MIDI devices + + + + + + + + + The MIDI device manager + + + + + + + The MIDI device manager dialog shows you the MIDI devices + that you currently have available to you, and where they are + connected. To reach this dialog, use + Studio + Manage MIDI Devices + . + + + + As described in the Devices, Instruments and + Connections section, by default Rosegarden tries to + provide a plausible set of devices for you at startup, and + to make sensible connections for those devices. But the + default configuration might not always be suitable, and so + this dialog allows you to rename devices and modify their + connections and play/record direction. + + + + Each of the Play devices listed here provides a target for + MIDI tracks to talk to: if you add a new Play device, you + will then have 16 new instruments on this device which you + can assign tracks to. If you then assign a connection for + that device, the tracks assigned to it will play to the + appropriate channel (depending on the instrument) of any + MIDI synth attached to that connection. + + + The Record devices listed here represent possible + sources for recording MIDI. You can make one or more of them + current (so that Rosegarden will listen to them when + recording) using the checkboxes on each line, as shown in this + dialog. + + + + + Managing banks and programs for MIDI devices + + + + + + + + + The MIDI bank and program editor + + + + + + + Remember that each MIDI device contains a number of + instruments, and that you can assign tracks to those + instruments. In MIDI terms, each instrument corresponds to + a single channel on your MIDI synth. You can choose which + of the available voices (sounds) on your synth each + instrument uses, but in order to do this, you need to let + Rosegarden know the names for all of the available voices. + + + + This dialog allows you to attach banks of programs (names for + voices) to your MIDI devices, thus permitting each + instrument on a device to be set to use one of those voices + in the Instrument + Parameter Box. + + + + The usual way to set up the program names for a device is + simply to import them from one of the supplied device + (".rgd") files. To do this, select a device in the list on + the left of the dialog, then click the Import button below + the list and choose the .rgd file corresponding to your + synth. + + + + If there is no current .rgd file available for your synth, + then you can use this dialog to create a new bank. To do this + you will have to find the program map in your synth's MIDI + Implementation Chart and enter all the names by hand: you can + then Export them to a .rgd file to share with other Rosegarden + users. Contact the rosegarden-user mailing list if you have + made a new .rgd file and would like to share it. (This is how + all of the existing .rgd files have come to be included with + Rosegarden: other users have contributed them.) + + + + Percussion Key Mappings + + + Many MIDI synthesizers have at least one percussion program, + in which each "pitch" plays a different type of sound. + Rosegarden contains a dedicated percussion matrix editor to + view and edit notes against a scale consisting of the + correct names for the pitches, instead of against the + conventional piano keyboard pitch scale. + + + + The key mappings available for a particular MIDI device are + also defined in the Rosegarden device (".rgd") file. Each + MIDI program that is defined as a percussion program can + have a key mapping associated with it; if there is one, then + it will be used by default in any track that is assigned to + this program. Like program and bank definitions, key + mappings can be imported from and exported to .rgd files. + + + + + SoundFonts + + + If you happen to be using a soft-synth or soundcard synth + that uses SoundFont (.sf2) files, you can simply load the + correct program names directly from your .sf2 file into this + dialog. Just ask to Import as normal, and then choose the + .sf2 file that you are using instead of a .rgd file. + + + Note that the Studio only manages information about + existing MIDI devices for Rosegarden, it does not actually + handle tasks such as loading a SoundFont to your soundcard in + the first place. If you want to make sure a SoundFont is + loaded to your soundcard when Rosegarden starts up, you should + use the special "Load SoundFont to SoundBlaster card at + startup" option in the sequencer configuration in + + Settings + Configure Rosegarden... + . + + + + + Variations + + + Some MIDI devices (for example, those from Roland) + organise their program names using a scheme known as + "variations". For these devices, you generally want to + select a program by first selecting the basic program name + — such as a piano — and then selecting one + of a set of variations on that program — such as an + electric piano. This is in contrast to General MIDI-based + synths, which organise their programs into banks and + expect you to choose a bank first and then a program from + that bank. + + + + Rosegarden can support devices that use variations, but + you still have to enter the program names in a bank + format. Internally, devices that use variations still use + MIDI bank select controllers to choose between the + variations; you need to find out from your synth's + documentation whether your device uses the LSB or MSB bank + select to choose variations, and which bank number + corresponds to which variation. You can then enter the + banks as normal, and use the "Show Variation list based on + MSB/LSB" option on the bank dialog to tell Rosegarden to + show variations instead of banks when displaying that + device in an instrument parameter box. + + + + + Program mapping on &MIDI; import + + + When you import a &MIDI; file into a composition, &rosegarden; + uses the existing studio setup to determine how to map the + &MIDI; programs onto &rosegarden; instruments. The aim is to + ensure that every &MIDI; program gets mapped to an instrument + that really exists in your studio (and thus is actually + attached to your computer), so that all the &MIDI; tracks + can be heard. + + + + The &MIDI; program-change and bank-select events found in the + imported file are used when importing, but only as an aid to + help find the appropriate instrument for each &MIDI; track + from the set of instruments in your studio. So, for + example, if your studio is currently set up to contain only + GM instruments, and you import a &MIDI; file with GS program + changes onto it, &rosegarden; will remap the GS banks back + onto GM because they're all it knows that you have at the + time you import the file. It doesn't remember the original + GS program numbers. + + + + This means that you should always ensure that your studio is + correctly configured for the devices you actually have, + before you import the &MIDI; file. Otherwise the program data + in the &MIDI; file may be lost. + + + + + + + Audio Routing + + Any Rosegarden track assigned to an audio or synth plugin + instrument becomes part of Rosegarden's audio routing + architecture. There are 16 audio instruments and 16 synth + plugin instruments, and each of these has a set of adjustable + parameters including fader level, pan, effects and so on. + These are generally configurable in the Instrument + Parameter Box or audio mixer. Each audio + instrument also has an input connection, and both audio and + synth plugin instruments have an output connection. + + + An instrument's input connection defines where Rosegarden + will read audio data from when recording to this instrument. + The most usual setting would be to one of Rosegarden's external + audio inputs, the number of which is configurable in the audio mixer. These + correspond to JACK audio ports exposed by Rosegarden, to which + you can connect outputs from any other JACK audio application or + soundcard capture ports using an external JACK router + application such as QJackCtl. You can also + set an instrument's audio input to the output of one of + Rosegarden's built-in audio submasters or master output for + mixdowns. + + An instrument's output connection defines where the audio + goes when played. Instruments default to sending their audio to + Rosegarden's master output, which is another (stereo pair of) + external JACK port(s) that can then be connected up using the + same external JACK router. However, Rosegarden also supports up + to eight internal submaster busses, to which you can send + instrument outputs instead so as to group instruments into + related categories. You can control the number and routing of + these in the audio + mixer. + + + Rosegarden currently supports effects using a set of pre-fader + insert effects slots for each audio instrument. You cannot + yet assign effects to the submaster busses, and Rosegarden + does not yet support send effects, although you can obtain + similar results using an external JACK effects and mixing + architecture. + + Some further details of audio routing configuration, + mixing, and effects are discussed in the audio mixer, instrument + parameter box and audio plugins sections. + + + + MIDI Routing + &rosegarden; is able to instantly send incoming MIDI events to + some output device and MIDI channel. This feature is known as MIDI Thru. + MIDI Thru is enabled by default in &rosegarden;. You may want + to globally disable it using the menu option + Studio + MIDI Thru Routing, if you prefer + to use an external MIDI routing system. There is also a global filter by + MIDI event type, which you may use to ignore some event types and let other + types to be routed. It is explained in the section + MIDI filters. + MIDI Thru routing works quite differently when &rosegarden; is playing + or stopped than when it is recording. + + When &rosegarden; is playing or in stopped state, the MIDI + thru function routes events to the selected track instrument. The selected + track has its track name highlighted. + When &rosegarden; is recording, the MIDI events are routed + to the armed track instruments, based on the + recording filters. It doesn't + matter which track is selected. Only one instrument is selected for each event, + corresponding to the first track with a matching record filter. + + + + + + The Audio Mixer + + + + + + + + &rosegarden;'s Audio Mixer + + + + + + + Rosegarden's audio mixer window, reached through + + Studio Audio + Mixer, resembles a hardware audio + mixer and provides a way to see and change the state of a + number of audio instruments at once. It contains many of + the same controls as found in the audio and synth plugin + instrument + parameter boxes, most importantly a playback level + meter and fader control for each audio and synth plugin + instrument, as well as routing controls, pan, mono/stereo + and effects plugin slots. + + + The audio mixer window is also where you see and control the + master audio output level (at the far right of the picture + above), as well as the record level (to the left of the master + fader) and submaster output levels. + + + The audio mixer's Settings menu is particularly + relevant. Apart from controlling what will be shown in the + mixer window, this menu also contains the audio routing settings + for the number of stereo audio record inputs available and the + number of submasters. These are studio settings whose values + are saved with your Rosegarden format file. + + Note that if you are not actually using any submasters + (i.e. if there are no instruments configured to route their + output to a submaster) you may see a small performance + improvement if you set the number of submasters explicitly to + None, rather than keeping unused ones in the configuration. + + + + + The MIDI Mixer + + + + + + + + &rosegarden;'s MIDI Mixer + + + + + + Rosegarden's MIDI mixer window, reached through + + Studio MIDI + Mixer, provides a way to see and + edit the instrument + parameter values for a number of MIDI instruments at once. + + The window is organised using a tabbed pane. Along the + bottom, you will see one tab for each playback MIDI device in + your studio configuration. When you select a device tab, the + rest of the window will update to show the controls for the 16 + instruments of that device. + + + + The controls shown for each instrument are those set up in the + control + parameter manager, as well as volume (corresponding to the + MIDI volume control change, not to MIDI velocity or audio dB + levels) and an approximate output level indicator. + + + + + Audio Plugins + An audio plugin is a piece of software, separate from + Rosegarden, that Rosegarden can load and use in order to perform + a particular audio processing task. These can be broadly + divided into effects plugins and synth plugins. Effects plugins + take an audio input and manipulate it to produce a different + audio output; synth plugins take MIDI-like events as input and + turn them into audio output. Rosegarden uses the Linux standard + LADSPA plugin API for effects and the DSSI plugin API for + synths, permitting the use of large numbers of open-source + plugins made available by many developers. + + The use of plugins has a cost in CPU time, as audio + processing in real time usually takes a significant amount of + work even on a modern CPU. It also has a potential cost in + reliability: when Rosegarden is running a plugin, if the plugin + hangs or crashes, so does Rosegarden. Many plugins are very + reliable, but it's inevitable that some will not be so well + tested. + + + Effects plugins An effects plugin is + something that you can use to modify an audio signal in a + controllable way. Examples include reverb, delay effects, + dynamic compression and so on. + + Every audio or synth-plugin instrument in Rosegarden has + five associated effects slots. By default these are empty, + but you can load plugins into them in order to chain up to + five effects onto the audio signal before it goes through + fader level and pan processing. + + To load a plugin to a slot, click its button on the + instrument + parameter box: + + + + + + + + + Plugin Slot Buttons + + + + + (These buttons are also optionally available in the audio mixer window.) + + Clicking a plugin button will + pop up the plugin dialog. This shows you + the available categories of effects in the first menu; select + one, and you can then choose your plugin in the second menu. + + + + + + + + + A &rosegarden; Plugin Dialog + + + + + + Below the plugin selection menus, the dialog gives you a + varying number of rotary controllers showing all the + modifiable parameters for the plugin you have selected. To + change a value, just click a rotary and drag up and down or + left and right. (Up or right to raise the value, down or left + to lower it.) You can also roll the mouse wheel to change the + value, or click with the middle mouse button to reset it to + its initial default. + + It is also possible to copy one plugin with its current + configuration into another slot, so as to use the same plugin + settings with more than one instrument, or to base one plugin + configuration on another. Just click the Copy button when you + have the plugin set up the way you want it, and then open + another plugin slot's plugin dialog and click Paste. + + Finally, you can use the Bypass toggle to remove a + plugin temporarily from processing while retaining its + configuration. + + + + Synth plugins + + Synth plugins can be used in place of hardware or standalone + soft-synth MIDI devices, to generate sounds from your note + event segments. + + Using a synth plugin gives you somewhat better control + and repeatability than using an external MIDI device, because + Rosegarden will be able to load the correct plugins for you + and use the correct settings the next time you load your same + file. Plugins may also offer better timing resolution than + external MIDI devices, and synth plugin instruments have the + advantage of being routable like audio instruments, which also + means you can add effects plugins on top of them. + + + To make use of a synth plugin, first assign a track to a + synth plugin instrument, and then load a synth plugin by + clicking on the topmost button in the instrument + parameter box: + + + + + + + + + Synth Plugin Buttons + + + + + + This will bring up the same plugin dialog as shown above + for effects plugins, but with a list of synth plugins instead + of effects. Once again, you will be shown the particular set + of rotary parameters for the synth you have selected. Synth + plugins may also have "programs", selectable from a menu -- + this menu will only appear if you have chosen a synth that supports + them. When you have selected and configured a synth plugin + for an instrument, any MIDI data on tracks assigned to that + instrument should play through that synth, as should + incoming MIDI data during recording or monitoring. + + + + + Plugin native editor windows + + Most plugins can be controlled completely using the + rotary controllers in Rosegarden's plugin dialog. However, a + few plugins (generally synths) also have their own editor + windows which can be switched on or off from Rosegarden and + which may provide more complete or more organised + controls. + + When you select a plugin that has its own editor window, + the button at the lower left of the plugin dialog labelled + "Editor" will become active: + + + + + + + + + A Plugin Editor Button + + + + + + (For synth plugins, there is a similar button in the + instrument parameter box.) Clicking this button should show + the plugin's own editor window. Any changes you make in this + editor window should also be reflected in Rosegarden's own + plugin dialog, if visible, and of course should be saved in + your Rosegarden file as normal. + + + + + Metronomes + + Rosegarden has two built-in metronomes, one for use during + recording and one that can be switched on during normal + playback. They work by sending notes to a MIDI instrument, + and both metronomes use the same instrument, pitch and + velocity information. + + + + + + + + + + &rosegarden;'s metronome configuration dialog + + + + + + To configure the metronomes, use + + Studio + Manage Metronome + + to bring up the metronome dialog. + Here you can select a MIDI instrument for the metronome and + choose the metronome's resolution (whether it should tick + once per beat, once per subdivision of a beat, or only once + per bar), pitch, and velocities. Properties such as the + actual voice the MIDI synth uses for the metronome tick + depend on the instrument selected, just as the voice used + for a MIDI track depends on the instrument that track is + assigned to. You can configure the instrument by assigning + a track to it on the main window and selecting the correct + program from the instrument parameter box. + + + + The record and play metronomes can be switched on or off + from the Transport window, using the metronome button. This + button controls the record metronome when recording is armed + or in progress, and the play metronome at other times. By + default, the record metronome is switched on and the play + metronome switched off. + + + + Rosegarden also has a "visual metronome": the transport window + can be told to flash brightly to mark each beat. See the Transport section for more + details. + + + + MIDI filters + + + + + + + + The MIDI filter dialog + + + + + + + Using this dialog you can decide which MIDI events Rosegarden + will ignore or accept, either when forwarding events using + MIDI THRU or when simply recording them. Use the check boxes + on this dialog to tell Rosegarden which types of MIDI events + you don't want to forward or record. + + + + + + + External MIDI control surfaces + + Rosegarden's audio and MIDI mixer windows and main canvas can + also be controlled to some degree by an external MIDI device. + To set this up, you will need to use an ALSA MIDI connection + manager such as qjackctl to connect your MIDI controller + device to Rosegarden's "external controller" input and output + MIDI ports. + + + Rosegarden accepts MIDI control change messages to adjust the + mixer track corresponding to the incoming MIDI channel on each + controller event, and also sends out MIDI messages when + something is changed in a mixer track in order to support + controllers with powered faders or knobs. + + Rosegarden accepts MIDI controller number 81 to change the + currently active window. Send controller 81 with data value 0-9 + to select the main window, 10-19 to select the audio mixer + window or 20-29 to select the MIDI mixer window. + Rosegarden accepts MIDI controller number 82 to change the + currently selected track in the main window. The stepping of + this controller depends on the number of tracks in the window -- + the ratio of controller data value to track number will be + calculated so as to use the full MIDI controller data range, + provided there are no more than 128 tracks in the window. + + + + + + Special Parameters + + + The Track Parameter Box + + + + + + + + &rosegarden;'s track parameter box + + + + + + The track parameter box can be found at the left side of the + &rosegarden; main window. It displays the parameters for the + currently selected track. (If you can't see it, try using + Settings + Show Special Parameters + .) + + + It allows you to assign instruments to tracks, control what + incoming &MIDI; data from which sources will be recorded to + particular tracks, control staff attributes (currently only for LilyPond + export,) make selections that govern how &MIDI; segments + will be created for each track that is assigned to a non-audio + instrument, and apply these selections to existing segments (as when + converting a trumpet part from an imported &MIDI; file to be + represented as notation playable by a real human on a real instrument, + for example.) + + This box is divided into three sections: + + Playback parameters + + These provide an alternative mechanism to the menu-based + system of instrument assignment. + + + + Track recording filters + + These provide you a way to control what events are recorded to this track. If you leave the default values ("all") for both parameters, every received event will be stored in the track. This setting is safe and convenient if you are recording only one MIDI track. Otherwise, you should adjust one or both parameters to select only the desired events for the track. + + + + Device + + You can record from only one of the available devices marked for recording in the device manager, or from all of them simultaneously. + + + + Channel + + You can record from all channels, or limit recording to only one of the 16 available MIDI channels. In this case, only MIDI channel messages matching the channel number will be recorded, and system messages not having a channel (as system exclusive events) will be discarded. + + + + + Both parameters are cummulative: you can filter only a device, only a channel, or both a device and a channel simultaneously. It is not mandatory to ensure mutually exclusive selections for all the armed tracks, but if you don't do so you will find duplicated events at several recorded tracks. + + + The recording filters are also used to route MIDI events to the assigned track instrument when you are recording. + + + + Staff export options + + These provide you with a means of exporting notation to render + at either normal, small, or tiny size (eg. for printing certain + parts at cue size,) and allow you to export a variety of nested + brackets. + + + You are responsible for creating a series of bracket start and + end markers that will yield a functional result, and if you make + a mistake with these, it is likely that your file will not + export or preview correctly in LilyPond. + + For a detailed, hands-on demonstration of brackets in action, + please see + this + online tutorial. + + + + Create segments with + + These provide you with a means of controlling many of + the segment + parameters for segments that don't yet + exist. They are aimed especially at notation users, + and they facilitate operations that require you to use + more than one segment on a track (as when using + repeats, or alternative + endings), by allowing you to create a series of new + segments that all have the same properties by default. + + + + + + Preset + + + The Load button + launches a dialog that allows you to pick + a pre-defined collection of parameters + that provide guidelines for how you should + write parts for real-world instruments, and + optionally convert any existing segments on this + track to take on these new parameters. + + + + + + + + + + + You first pick a Category, then an Instrument, + and finally choose whether you wish to write a + part for an amateur or a professional player. + This database was compiled by + Magnus Johansson, who deserves all the special + mention we can muster for his outstanding effort + on this. The Scope controls + allow you to choose whether these parameters + will only affect segments that don't yet exist + (which you will subsequently record, or draw + with the pencil) or should convert any existing + segments to take these parameters as well. (For + a demonstration of the latter case in action, + please see + + this online tutorial.) + Clicking the OK + button injects the appropriate parameters into + the remaining widgets in this part of the track + parameters box, where you can tweak them if you + desire.No facility is provided + at this time for assembling your own database of + presets, or customizing the existing ones in a + permanent way. + + Once you have loaded a preset, the name of + your chosen preset will be used as the label + for any segments you subsequently draw or + record on this track, even if you change some + or all of the associated parameters away from + the values you just loaded. + + + + + + Clef + + This lets you choose the clef for any + segments you subsequently draw or record on + this track. Clefs are events, not properties. + Your segments will be created with an initial + clef event of the appropriate type (which you + may subsequently alter or delete, should you + have some occasion to do so.) + + + The clefs available include a variety of named + clefs representing standard clefs with various + octave offsets. + + + + + + + Transpose + + + This causes segments on this track to be + created so that their note events sound at a + given transposition. Useful, especially, for + writing parts for transposing instruments. + + + + + + Colour + + + This causes segments on this track to be + created using a given colour. + + + + + + Range + + + The Low: and + High: buttons, + launch a dialog that allows you to pick a + pitch using a staff. The lowest and highest pitches + you select will then appear right on these + buttons. + + + These represent the lowest and highest + playable notes, respectively, on the instrument for which you + are writing notation. In some cases, these + limits will be hard and fast, like the low B + on a Transverse Flute (B foot). In others, + they may only serve as guidelines to help you + make good choices for instruments with which + you are not intimately familiar. + + + If you enter, record, or import data that has + pitches exceeding the values specified, the + note heads will appear in red by default. You + can turn this behavior off with + SettingsConfigure + RosegardenNotationShow + notes outside playable range in + red + + + + + + + + + + + + The Segment Parameter Box + + + + + + + + + &rosegarden;'s segment parameter box + + + + + + + The segment parameter box can be found at the left side of the Rosegarden main window. (If you can't see it, try using + Settings + Show Special Parameters + .) + It allows you to modify some aspects of the + selected segments.If a single segment is currently selected, its + parameters will be shown in the segment parameter box and can be + edited there. If several segments are selected, the parameter box + will only show the current values where they are the same for all + of the selected segments -- but you can still edit them, and your + changes will apply to the whole selection. + + + + Label + + Shows the label of the selected segment (or segments, if + they all have the same label). Click the "Edit" button to edit + the label. + + + + + Repeat + + Switches repeat on or off for the selected segments. A + repeating segment will repeat until the start of the following + segment on the same track, or until the end of the composition + if there is no following segment. + + The repeated parts of a repeating segment are shown on + the main canvas in a fainter colour than the original segment. + You can turn them into real editable copies of the original + segment either by using + + Segments + Turn Repeats into Copies + , or simply by double-clicking on the + individual repeating blocks. + + + + + Quantize + + + Shows the quantization setting for the selected + segments. You can change this to quickly quantize + the start times of all their notes. For more + advanced quantization, use + Segments + Quantize... + . See Quantization for more + details. + + + + + + Transpose + + Shows the transposition (in semitones) currently applied + to the selected segments. This transposition is applied when + the segment is played, and is not shown in the notes displayed + in the matrix, notation or event list editors. You can use + this to quickly change the pitch of part or all of a + composition, and it is commonly used with segments containing + notation written for transposing instruments, such as the + clarinet. + + + + + Delay + + Shows the delay currently in effect on the selected + segments. You can set a delay here in order to cause an entire + segment to play later than written. This delay is applied when + the segment is played, and is not shown in the notes displayed + in the matrix, notation or event list editors. + + + You can set a delay either in musical time (by + choosing a note duration from the delay dropdown), + in which time the exact delay will depend on the + tempo, or in real time (by choosing a time in + milliseconds from the dropdown). + + + + + + Colour + + Shows the colour being used for the display of the + selected segments. You can choose another colour from the + dropdown, or choose the "Add New Colour" option if you want a + colour not in the dropdown. + + + You can also manage and rename colours using + + Composition + Edit Document Properties... + + (then choose the Colour page on the document properties + dialog). The modified colour palette will be saved + with the composition in the Rosegarden file. + + + + + + + &rosegarden;'s colour manager + + + + + + + + + + + + + The Instrument Parameter Box + + The instrument parameter box can be found at the left side of + the Rosegarden main window, near the Segment Parameter + Box. (If you can't see it, try using + Settings + Show Special + Parameters .) + + It shows you + which instrument is assigned to the current selected track, + and contains all of the editable controls for that instrument. + Remember that because any number of tracks can be assigned to + the same instrument, the settings in this box may affect more + than one track at a time. + + The layout and contents of the instrument + parameter box depend on the type of instrument: MIDI, audio, + or synth plugin. + + + + MIDI Instrument Parameters + + + + + + + + &rosegarden;'s instrument parameter box for a MIDI instrument + + + + + When you select a track assigned to a MIDI instrument, + the instrument parameter box shows MIDI parameters. + + At the top, this box + shows the name of the instrument and the connection that its + device is using. + + Below that, you can see and edit the MIDI + channel number and the bank + and program settings that should be sent to the + instrument at the start of playback (including a "percussion" + toggle that controls whether only percussion programs should + be offered in these settings). + + Finally this box shows you the controllers available + for this device (those for a General MIDI device are shown + above). Any settings you make here will be sent to this + instrument's channel at the start of playback. + + + + Audio Instrument Parameters + + + + + + + + &rosegarden;'s instrument parameter box for an audio instrument + + + + + + When you select an audio track, the instrument parameter + box shows audio parameters. + + + The box has two main faders, one with a blue surround for + playback level and the other with a red surround for the + record level when recording to this instrument. Between + them is a playback level meter. + + The two menus at the top of the box are used to select + the input and output audio routing for this + instrument. Below them you can select whether the instrument + is mono or stereo, and the pan setting for position in the + stereo field. (Audio instruments are always ultimately + stereo, because the pan setting is always applied. But if you + set the instrument to mono, it will reduce any audio data and + effect outputs to mono before applying pan.) + + The column of five buttons at lower left are the effects + slots. Click on them to select and activate plugin effects + for this audio instrument, and to control them using the plugin editor dialog. These are insert effects, + applied in order from top to bottom before the fader and pan. + + + + + Synth Plugin Instrument Parameters + + + + + + + + &rosegarden;'s instrument parameter box for a synth plugin instrument + + + + + When you select a track assigned to a synth plugin + instrument, the instrument parameter box shows synth + parameters. You will notice that although a synth plugin + track uses segments with MIDI data in them, in terms of + control and routing it behaves more like an audio track. + + The most important control here is the button at top + left (saying Xsynth in the above picture) which shows the name + of the synth plugin in use for this instrument. Click this to + select a particular synth and control it in the standard + Rosegarden plugin editor dialog. Once + you've selected a plugin, you may also be able to click the + Editor button below it in order to open a dedicated GUI editor + for the particular plugin (if the plugin has one). + + The remaining controls here are the same as for audio + instruments: the playback fader, playback level, output + routing, mono/stereo and pan settings and effects slots are + all exactly the same. + + + + + + + Quantization + + "Quantization" is the process of repositioning notes and other + events so that they start or finish on exact beat divisions. It + is traditionally used to make an approximate performance into a + precise but rather mechanical-sounding one -- either because + precision is the desired effect, or for reasons such as making + the notes clearer in notation. + + + + For general quantization, use + + Segments + Quantize + + in the main window or + + Adjust + Quantize + + in matrix or notation editors. This shows you a dialog in which + you can select the precise quantization parameters you need, and + then it applies these to all of the selected segments or notes. + (You can also quickly reach this dialog by pressing the "=" + key.) + + + + + + + + + + &rosegarden;'s quantize dialog + + + + + + + The quantize dialog offers a selection of quantizers, each with + its own set of parameters. The quantizers available are: + + + + + Grid quantizer + + The grid quantizer moves the start times of notes so + that they start at the nearest point on some grid (defined + by various parameters of the quantizer). Thus notes that + initially vary slightly in start time will be aligned by the + quantizer, making for a more precise and mechanical + performance. + + + + + + Legato quantizer + + The legato quantizer carries out a simple grid + quantization, and also adjusts the note durations so as to + remove any gaps between notes by extending each note so as + to (at least) continue until the start of the following one. + You can also obtain this legato effect without the + accompanying grid quantization using the + + Adjust + Quantize + Legato + function in the Matrix editor. + + + + + + Heuristic notation quantizer + + The notation quantizer attempts to adjust note start + times and durations so as to produce readable notation. See + Notation from performance + data for a description of this quantizer and its + uses. + + + + + + The grid quantizer has the following adjustable parameters: + + + + Base grid unit + + This is the size of the grid used for quantization. + + + + + + Swing + + This is a percentage figure which adjusts the degree + by which alternate beats are quantized "late". + If set to + None (the default), quantization will be to an even grid + spaced according to the base grid unit. + If set to 100%, + every second grid line will be placed two-thirds of the distance + between the previous and next ones, instead of only half. + This will result in notes being quantized to the first and + third triplets of a swing beat. + + Other settings will produce proportionately varying degrees of + swinginess. You can also set this parameter to negative + figures (for alternate beats to start early) or to figures + greater than 100%. + + + + + Iterative amount + + The default behaviour of the grid quantizer is to move + each note exactly onto its nearest grid line. But if you + set the iterative amount to something less than 100% (the + "Full quantize" default), each note will only be moved that + percentage of the distance toward its nearest grid line, + resulting in a nearly-but-not-quite quantized effect. + This quantizer may be applied repeatedly so as to try + out gradually increasing degrees of quantization, hence the + name "iterative". Use + + Adjust + Quantize + Repeat Last Quantize + in the Matrix editor to do so. + + + + + + Quantize durations as well as start times + + If this option is enabled, the quantizer will quantize + the notes' end times to the same grid as their start times. + + + + + + The quantize dialog also has an optional Advanced section + containing further options for + notation quantization. + + + + Another simple way to apply a grid quantizer is to do it in the + main window, using the Quantize menu + on the Segment + Parameter Box. If you select some segments and change + the value shown in the menu, the segments will immediately be + grid-quantized to the resolution shown in the menu. + + + + Finally, there is also a quantize control in the matrix + view. + + + + + The Matrix editor + + The &rosegarden; matrix editor enables you to view and edit + music in a simple, logical format: each note represented as a + block in a grid, at a height corresponding to the pitch. + + + + + + + + + &rosegarden;'s matrix editor + + + + Each matrix editor window shows a single segment. To edit a + segment, just right-click on it in the main canvas and select + the matrix editor from the menu. Alternatively, you can + configure Rosegarden to make the matrix editor the default + editor available when you double-click on a segment. + + + + The Grid and Quantize controls + + The matrix view contains Grid and Quantize menus in its main + toolbar. + + The Grid menu controls the size of the visible grid in the + background of the matrix view, as well as the time resolution + used when entering and moving notes. After you set it to a + particular time value, the normal note insertion and drag + operations will then snap automatically to grid points spaced at + that time width. You can override the snap-to-grid effect + temporarily by holding down Shift during editing, or you can + disable it by setting the Grid menu to None. + + The Quantize menu works rather differently. Rather than + controlling the behaviour of other editing tools, it actually + performs an action. When you change the value in this menu, the + selected notes -- or the whole segment if nothing is selected + -- will immediately be quantized using a grid quantizer of the + chosen resolution. + + The Quantize menu also shows you continuously what + resolution the current segment or selection is quantized to. + For example, if you select a set of notes that start on + consecutive quarter-note beats, the Quantize menu will update + itself to show 1/4, as this is the coarsest resolution + consistent with the existing quantization of the current + selection. + + + + + Inserting notes + + The simplest way to enter a note in the matrix view is to + use the mouse. To do this, select the pencil tool on the + toolbar, and then click and drag on the matrix editor. The + note will be entered at the time and pitch corresponding to + the point you click at, and will have a duration + corresponding to the distance you drag before releasing the + mouse button. + + You can also draw notes using the Select tool (the + arrow), by clicking and dragging either with the middle mouse + button, or with the left mouse button and Ctrl pressed. + + By default, the time and duration are snapped to a + particular grid unit, according to the Grid setting on the + View menu or the toolbar. You can prevent this effect by + holding down Shift while clicking and dragging. + + + + Typing notes with the PC keyboard + + + Duration + + The durations of notes entered from the keyboard are + controlled by the Grid setting on the View menu or + toolbar. You can set this using the number keys: + + + 5 – Whole bar + 1 – Beat + 2 – Half note (minim) + 4 – Quarter note (crotchet) + 8 – Eighth note (quaver) + 6 – Sixteenth note (semiquaver) + 3 – Thirty-second note (demisemiquaver) + 0 – Sixty-fourth note (hemidemisemiquaver) + + + + + + Pitch + + Once the correct duration is selected in the Grid + menu, you can insert a note at the current position of the + insert cursor by pressing + one of the pitch keys: + + + A – Do (the tonic of the current key in the current clef) + S – Re + D – Mi + F – Fa + J – So + K – La + L – Ti + + + Holding Shift while pressing a key + will sharpen the note (except for Mi and Ti, which don't + have sharpened versions) and holding Shift + and Ctrl together will flatten it (except + for Fa and Do). + + To enter notes an octave higher, use the corresponding + keys on the next row up: Q, + W, E, R, + U, I, and + O. Likewise to enter notes an octave + lower, use Z, X, + C, V, B, + N and M. + + + + + Other remarks + + All of the insertion commands are also available on a + submenu of the Tools menu. It's unlikely you'd ever want to + navigate the menus just to insert a single note, but the + menus show the keyboard shortcuts and so provide a useful + reference in case you forget which key is which. + + The keyboard shortcuts are currently designed for use + with a QWERTY-layout keyboard. There is not yet any way to + remap the keys for another layout, short of reassigning each + key individually using + Settings + Configure Shortcuts... + . + + + + + + + Entering notes using a MIDI keyboard + + + You can enter notes into the matrix editor one at a time + using a MIDI keyboard or other MIDI control device. The + matrix editor uses the pitches you play on the keyboard, + but the durations you have selected in the Grid setting of + the editor itself. This is known as "step recording". + + + + To start entering notes from a MIDI keyboard, first make + sure the keyboard is configured as a MIDI + record device. Then make sure you have the right Grid + setting in the View menu or toolbar, as this controls the + note duration. Then press the step recording button on the matrix editor's toolbar, + or select Step Recording from the Tools menu. From that + point on all notes pressed on the MIDI keyboard will be + inserted at the current insertion time in that window, + until step recording is switched off again or activated in + a different window or the window is closed. + + + + You can change the Grid setting while step recording is in + progress, in order to insert notes of different durations. + + + + + + Selecting notes To select notes in the + matrix editor, switch to the Select (arrow) tool and then + outline a rectangular area containing the notes you want to + select. The selected events will then be highlighted in blue. + If you instead click on a single event, just that event will + be selected. + + If you hold Shift while dragging + out a rectangle or clicking on a note, the new selection will + be added to any existing selection instead of replacing it. + + + + To clear a selection, click in an empty space on the matrix + editor, or hit the Escape key. + + You can also select all of the notes of a given pitch, + by shift-clicking on a key in the piano keyboard down the left + side of the matrix editor. You can also shift-click and drag + to select a range of pitches. This selection is added to any + existing selection you have, so if you want a clean new + selection, clear the old one first. + + + + Filtering the selection + The + Edit + Filter Selection + function offers you the ability to filter a range of events in + any of several categories out of your selection. You can use this to refine the selection, if you want some action to apply to only certain events in it. + + + + + + + + + The event filter dialog + + + + + + All ranges may be either inclusive or exclusive. + + + An inclusive range will remove events on either side of it + from the selection. You can use this, for example, to + filter everything below middle C and above the A above + middle C out of your selection. + + + An exclusive range will remove the events within the range + itself, leaving everything on either side of it selected. + Using the same search points as in the previous example, + you would use an exclusive range to remove everything + between middle C and the A above middle C from your + selection, while leaving everything above and below that + range selected. + + + Once your selection has been filtered, you can manipulate + it by any conventional means. + + + + + + Moving and copying notes + + You can move notes in both time and pitch on the matrix + editor by either clicking and dragging them with the Move + tool, or selecting them and then dragging them with the + Select tool. + + + To copy notes, select them and then use the standard copy + and paste functions. After the paste the pasted notes will + be selected instead, and you can then drag them wherever you + need them. You may also copy notes by selecting them with + the Select tool, then keeping Ctrl pressed click-and-drag + the selected notes in a new position. + + + + + + + The Percussion Matrix editor + + The Percussion Matrix editor is identical to the Matrix editor, except that it shows + pitch names on the vertical scale instead of a piano keyboard, and + it does not show the duration for each note. This is intended for + use with percussion programs on MIDI instruments, in which each + note pitch plays a different percussion sound. + + + + + + + + + &rosegarden;'s percussion matrix editor + + + + The pitch names are only shown if the segment being edited is + playing through a percussion instrument that has an associated + key mapping to define the names; otherwise the standard matrix + view piano keyboard will appear instead. See Percussion Key Mappings for + more information about key mappings. + + + + The Notation editor + + + + + Introduction + + + + The &rosegarden; notation editor enables you to view and edit + one or more staffs in traditional score notation. + + + + + + + + + + &rosegarden;'s notation editor + + + + + + &rosegarden; aims to present scores with the best possible + layout compatible with its primary focus as a sequencer + application. This means that although the editor supports + chords, overlapping and nested beamed groups, triplets and + arbitrary tuplets, grace notes, dynamics, accents, text and so + on, it does not provide as much fine control over layout + (especially in contrapuntal music) as a dedicated score + editing program might. &rosegarden; does not aim to produce + typeset-quality score, although it can export LilyPond files, + which may form a good basis for typesetting. + + + + + + + + Single and multiple staffs + + + There are three ways to open a notation editor from the + &rosegarden; main window. (They all require that you + have some existing segments in the main window first, + so if you're starting a new composition, you should + create your segments before you start thinking about + how to edit them.) + + + + + Double-clicking on segments + + + The most obvious way is just to double-click on + a segment in the main canvas. This opens the segment + in whatever you have configured as + the default editor (notation, matrix, or event list), + and by default this is the notation editor. So + double-clicking a single segment will open it as a + single staff in a Notation editor window. + + You can also open a multi-staff editor this way: + holding down the Shift key, select (with a single + mouse click) each of the segments on the main view + that you want to open, but double-click on the last + one. All of the selected segments will then be opened + together in a single notation window. + + + + + + The Open in Default Editor menu function (the Return key) + + + The Return key is a shortcut for the Open in + Default Editor menu function, which does much the same + thing as double-clicking: opens all of the currently + selected segments together in a notation editor, or in + whichever other editor you have configured as your + default. + + + + + The Open in Notation Editor menu functions + + + Alternatively, you can use the main window's + Open in + Notation Editor menu function, either on + the Segments menu or on the right-button popup menu on + a segment in the canvas. Select the segments you want + to edit (by shift-clicking as above, or by using the + Select All Segments function) and + then select Open in + Notation Editor. + + + + + + + + + If you have more than one staff (i.e. segment) visible in the notation + editor, only one of them can be "current" at once. The + current staff can be distinguished because it has the insert + cursor on it (see Rulers and + Cursors), and this is the staff on which any editing + operations that use the insert cursor will take place. The + topmost staff is the current one by default, but you can + switch to a different staff by ctrl-clicking on it, or by using the + ToolsLocal + CursorCursor Up Staff and + Cursor Down Staff menu functions. + + + + + + + + Linear and page layouts + + + The usual way the notation editor displays staffs is known + as Linear layout: one staff on top of another, with each + staff as a single, horizontally scrollable long line. Some + of the functions of the editor (such as the Rulers) are only available in + Linear layout. + + + + However, you can also display staffs in two different + page-based layouts: Continuous Page and Multiple Page. + + In Continuous Page layout, the music is arranged in one + infinitely-tall page of the same width as the window. Each + staff breaks at the end of a line, starting a new line below + the remaining staffs. + + In Multiple Page layout, the music is divided up into + real pages much as it will be when printed. The size of each + page is calculated so that approximately the same amount of + music will fit on each line as it will when actually printed + (according to the point size specified for the printing + resolution in the configuration dialog). The printed version + is unlikely to be exactly the same, as it depends on the + precise paper size and margins in use when printing, but it + should be fairly close if you happen to be using A4 + paper. + + + + + + + + + &rosegarden;'s notation editor in Multiple Page layout + + + + + Most, but not all, of the display and editing functions + work in the page layout modes as well as in linear layout. + + + + To switch between these layout modes, use the Linear Layout, Continuous Page Layout and Multiple Page Layout menu functions. + + + + + + + Rulers and cursors + + + The &rosegarden; Notation editor window includes two graduated rulers, + each associated with its own cursor. The rulers are the horizontal strips + divided up with tickmarks at top and bottom of the main + notation canvas, and the cursors are the coloured vertical + lines shown initially at the start of the top staff in the + editor. In addition to these main two, there are the chord + name ruler, the tempo ruler, + and the raw note ruler. + + + Note that the rulers are only shown in Linear layout mode, and several of them + are not displayed by default. + + + + + + + + + + + The notation editor's two cursors + + + + + + + The purple cursor is the insert cursor. It shows the point + at which operations such as insert and paste will take + place. You can reposition the insert cursor by clicking or + dragging on the top ruler, or by clicking with the Select + tool on an empty part of the staff (avoiding any events), or + by clicking anywhere with Ctrl held down. + + + You can also use the left and right arrow keys to move + the insert cursor one event at a time. If you hold Ctrl while + pressing the arrow keys, the cursor will move a whole bar at a + time; if you hold Shift, the cursor will select the events as it + passes over them. + + + + The blue cursor is the playback pointer. Just like the + similar cursors in the main window and the matrix views, + this shows the location of the current playback or record + position, and it sweeps across the notation while the transport is + rolling. It can be repositioned using the bottom ruler. + + + The raw note ruler + The raw note ruler is particularly + useful when editing quantized + notation where the display duration on the page + differs from the duration of the actual performance. + Enabled via + + Settings + Rulers + Show Raw Note Ruler + , it draws a small bar above + each note, similar to the way notes appear in the matrix. In this + example screenshot, you can see how interpreted, quantized notes + appear on this ruler. The tenuto notes have full performance + durations, while the staccato notes are considerably shorter, and + the accented notes have a higher velocity (more red colour) than + their neighbors. + + + Raw note ruler marks only notes in the selected segment in the track. + The colour of the selected segment is used in the background of + the raw note ruler between the start and end time of the segment. + + + + + + + + + The raw note ruler, + showing notation whose performance duration value differs + from what appears on the staff + + + + + + + The chord name ruler + The chord name ruler analyzes the tonality of the piece, and + attempts to display which chords are sounding. This is for + informational purposes only, and you can neither print nor edit the + contents of this ruler. + + + + + The tempo ruler The tempo ruler displays + the global tempo, and provides a vehicle for entering, + editing, and manipulating it. It works the same way as the + tempo rulers in the main window and the matrix editor. See + Tempo Rulers for more + information. + + + + + + + + + + Tools and selections + + Most of the menu and toolbar editing functions in the + &rosegarden; Notation editor fall into one of three + categories: tools, functions that + operate on selections, and drag + operations. + + + + + Tools + + + The basic tools are the selection tool, the erase + tool, and those for inserting notes, rests, text and so + on, which are usually accessed from the toolbar buttons. + + + + + + + + + The insert, erase, text, and guitar chord tools + + + + + + + Choosing a tool changes the default behaviour of the + mouse buttons on the main notation canvas, at least + until another tool is chosen instead. For example, + choosing the selection tool allows you to make + selections and so to use the selection-based functions + (below); choosing an insertion tool (such as one of the + notes) switches the GUI's behaviour so as to insert + notes by clicking on the canvas; choosing the erase tool + allows you to remove events by clicking on them. + + + You can also change the current tool using the Tools menu. + + + + + + Functions that operate on selections + + + The majority of the remaining menu functions require a + selection to be made on the canvas before they can be + used. Some of them (such as Cut + or the Note Style + functions) will operate on any selected events; others + (Stem Directions function) + will refuse to work unless the selection contains + some notes. + + + To select some events on the canvas, switch to the + Select (arrow) tool and then outline a rectangular area + containing the events you want to select. The selected + events will then be highlighted in blue. If you click + on a single event, just that event will be selected + You can also double-click on a single event to open an + editing dialog for that event, but that's got nothing to + do with selections. ). + If you hold + Shift while dragging + out a rectangle, its contents will be added to any + existing selection instead of replacing it. + + + To select a whole bar, double-click with the Select tool + on some empty space within that bar; to select the whole + staff, click three times. The Edit menu carries + functions for selecting extended areas based on the + location of the insert cursor, and you can also select + events around the insert cursor by holding Shift and + pressing the left or right arrow keys. + + + It is not possible to select events from more than + one staff at once. + + After selecting some events, you can filter your selection further using the + Edit + Filter Selection + function. For more details, refer to the corresponding function in the matrix editor. + + + + + + Drag operations + + + You can also do a certain amount of editing just by + dragging things around. Switch to the Select (arrow) + tool, and then you can change the pitch of notes by + just click-and-dragging their heads up or down, and + change the times of notes and other events by dragging + them left or right. (You can't drag rests or time + signatures, but you can drag everything else. If you + have more than one event selected, the whole selection + will be dragged at once.) + + + Dragging is usually a less accurate way of editing + things than using the menu or toolbar functions, but + it can be easier. + + + + + + + Transposing + + + + + + + + + Transposing by interval + + + + + + In Notation view menu there are two functions which can be + used to transpose notes by an arbitrary interval, namely + + Adjust + Transpose + Transpose by Semitones + + function which asks just the number of semitones to be + transposed, and + + Adjust + Transpose + Transpose by Interval + + function which shows a neat dialog that can be used to + transpose notes. In the latter, the dialog shows an example + notes before and after transposing and expresses the + interval in written form. The interval may be changed either + by dragging the notes shown by the dialog or by changing + separately the base note, its octavation and accidentals. + + + In Segment view, Notation view, and Track view there is also + + Segment(s) + Transpose by Interval + + function which makes a transpose to entire segment. In this + dialog you may also choose whether only the notes are + transposed or the keys of the segment are transposed also. + + + + + + + + Inserting notes and rests + + To insert a note, select one of the note tools by clicking + on a particular duration of note on the toolbar, and then click + on the staff at the point where you want to add the note. + + + + + + + + The duration, rests, and accidentals toolbars + + + + + + You can also select one of the accidentals on the toolbar + to insert sharpened or flattened notes. If no accidental is + selected, the note inserted will follow the key signature. + Alternatively, you can select the "Follow previous accidental" + icon (shown as a note with an arrow pointing back from where the + accidental would appear) to make the note follow whatever + accidental was last used at the same height on the staff. + + If you add a note at the same time as an existing note of + different duration, the editor will generally assume that you + want to create chords and will split the existing or new note + accordingly so as to create one or more chords with ties. If + you really do want to chord two different durations, you can + select the tied noteheads and use the Collapse Equal-Pitch Notes + function to merge them together. Alternatively, the default + behaviour can be changed in the &rosegarden; configuration dialog + so as not to do the split at all. + + If you add a note exactly over an existing note of + different duration (i.e. at the same pitch), the duration of the + existing note will be changed to that of the new one. + + If you add a rest at the same time as an existing note, + the note will be silenced for the duration of the rest, + shortening or possibly removing it altogether. + + + Typing notes and rests with the PC keyboard + + + Duration + + First, ensure a notation tool is selected to indicate + the duration of note (or rest) you wish to insert. You can + select the various note types using the number keys: + + + 5 – Breve + 1 – Whole note (semibreve) + 2 – Half note (minim) + 4 – Quarter note (crotchet) + 8 – Eighth note (quaver) + 6 – Sixteenth note (semiquaver) + 3 – Thirty-second note (demisemiquaver) + 0 – Sixty-fourth note (hemidemisemiquaver) + + + You can switch to a triplet version of the note + duration by pressing the G key. Pressing it + again will switch back to the normal duration. The status + bar at the bottom of the window will notify you of when a + triplet duration is active. + + + + Pitch + + Once a notation tool is selected, you can insert a + note at the current position of the insert cursor by pressing one of + the pitch keys: + + + A – Do (the tonic of the current key in the current clef) + S – Re + D – Mi + F – Fa + J – So + K – La + L – Ti + + + Press the "." key to togggle between dotted and + undotted durations. + + Holding Shift while pressing a key + will sharpen the note (except for Mi and Ti, which don't + have sharpened versions) and holding Shift + and Ctrl together will flatten it (except + for Fa and Do). + + To enter notes an octave higher, use the corresponding + keys on the next row up: Q, + W, E, R, + U, I, and + O. Likewise to enter notes an octave + lower, use Z, X, + C, V, B, + N and M. + + + + + Rests + + To insert a rest instead of a note, press + P. Alternatively, you can use the + T and Y keys to switch the + current tool to a rest tool and back to a note tool again. + + + + + Chords + + The default behaviour of the notation editor is to + move the insert cursor forward after inserting a note, so as + to be ready to insert another note after it in a melody; + this can be changed using the H key, which + switches to chord mode so that subsequent insertions occur + at the same time as the last one. Pressing + H again switches back to the melody + insertion behaviour. + + + + + Changing note durations + + You can use the keyboard to change the durations of + notes that you've already entered. Make sure the notes you + want to change are selected, and then press + Ctrl plus the number key for the note you + want. You can also add or remove dots, by pressing + Ctrl plus "." — use this repeatedly to + select between one dot, two dots and no dots. + + If you also hold Alt as well as + Ctrl, you will change the durations of the + notes as displayed in the notation editor without changing + their performed durations. This can be very useful for + tidying up a score: see also notation from performance + data. + + + + + Other remarks + + All of the insertion commands are also available on a + submenu of the Tools menu. It's unlikely you'd ever want to + navigate the menus just to insert a single note, but the + menus show the keyboard shortcuts and so provide a useful + reference in case you forget which key is which. + + The keyboard shortcuts are currently designed for use + with a QWERTY-layout keyboard. There is not yet any way to + remap the keys for another layout, short of reassigning each + key individually using the "Configure Shortcuts..." option + on the Settings menu. + + Holding the Ctrl key while pressing a + number will select the corresponding dotted-note + tool. + + + + + + + Entering notes using a MIDI keyboard + + + You can enter notes into the notation editor one at a time + using a MIDI keyboard or other MIDI control device — a + process known as step recording. The notation editor uses + the pitches you play on the keyboard, but the durations you + have selected in the editor itself. + + + + To start entering notes from a MIDI keyboard, first make + sure the keyboard is configured as your default MIDI + record device. Then make sure a notation tool is selected + to set a duration. Then press the step recording button on the notation editor's + toolbar, or select Step Recording from the Tools menu. + From that point on all notes pressed on the MIDI keyboard + will be inserted at the current insertion time in that + notation window, until step recording is switched off + again or activated in a different window or the window is + closed. + + + + You can select another notation tool while step recording + is in progress, in order to insert notes of different + durations; and you can also switch into Chord mode to insert chords. + + + + + + + + + Clef and key + + + The first thing to know about the way &rosegarden; handles + these is that time-related changes (tempos and time + signatures) are treated entirely differently from clefs and + keys. In order to simplify managing playback and recording as + well as notation, &rosegarden; requires that when the tempo or + time signature changes, it does so in all staffs at once. You + can't have one staff in 2/4 and another in 6/8 simultaneously, + or one staff playing at 120 to the beat and another at 90. + This applies only to time: there is no such restriction on the + use of clef and key changes. See also Tempo in Rosegarden. + + To change the clef, key, tempo or time signature within a + notation editor window, position the insert cursor at the point where you + want the change to happen, and use one of the Edit menu's Add + Clef Change..., Add Key Change..., Add Tempo Change... and Add + Time Signature Change... functions. You will then see a dialog + box in which you can choose the particular clef, key, tempo or + time signature setting you want to apply, as follows. + + + Clef + + + + + + + + &rosegarden;'s clef dialog + + + + + + The dialog allows you to choose a clef, but also + to choose how you want the clef to be applied, in + cases where there are already some notes following + the point where the clef is to be inserted. You + must choose one of the following: + + + + + Maintain current pitches + + + Any notes following the clef will keep + their current performance pitches. + + + For example, inserting a + tenor clef in the middle of a previously + treble-clef section will cause the notes following + the clef to be moved an octave + higher up the staff, because they will still have + their treble-clef pitches. + + + + + + Transpose into appropriate octave + + + Any notes following the clef will + retain their pitch within the octave, but + may be moved into a different octave to + match the new clef, and therefore will play + at a new pitch. + + + For example, inserting a tenor clef in the + middle of a previously treble-clef section + will cause the notes following the clef to + move by one staff line only to adjust to the new + clef, but to play an octave lower than before. + + + + + + + + + + + Key + + + + + + + + &rosegarden;'s key signature dialog + + + + + The dialog allows you to choose a key signature, but also + to choose how you want the key signature to be applied. You + must choose among the following: + + + + + + Key signature + + + Used to dial up the actual key signature. The dialog will + attempt to analyze the tonality of the piece, and guess at + the key signature if no key is already in effect at that + point in the notation. + + + + + + Key transposition + + You must choose whether to transpose the key according + to segment transposition, or to use the key exactly as + specified. + + + For example, if you are inserting a key of Bb major into a + transposed Bb trumpet part that's sounding at a + transposition of -2, you use this option to tell + &rosegarden; whether the key of Bb you have entered should + be written as a Bb (concert Ab), or should be transposed + against the segment to result in the trumpet key of C major + (concert Bb). + + + + + + Scope + + + You must choose whether to apply this key signature to + the current segment only, or to all segments, on all + tracks, at this time. + + + If you elect to apply the change to all segments at + this time, the previous key transposition choice will + govern whether all segments receive the specified key, + or a key appropriately transposed segment by segment. + (This is a convenient way to deal with notation for + transposing instruments, because it frees you to think + of all keys in concert pitch, and allow &rosegarden; + to work out what key is used for what transposition.) + + + + + + Existing notes following key change + + + You must choose whether any existing notes following + this key change will maintain their current pitches, + maintain their current accidentals in the key, or + whether Rosegarden should make an attempt to transpose + the part into the new key. + + + + + + + + + + + + + Text, Lyrics, and LilyPond directives + + A staff can contain various sorts of text, in text + events. There are two basic classes of user-editable text event: single + text items used for point annotations etc., and lyrics, plus a third + type used especially for tweaking LilyPond export. User-editable + types can be created (and so associated with a particular + time in the staff) using the Text tool, which is available on + the + + + + + + button in the toolbar. Lyrics can + also be created this way, but are more easily created using + the lyric editor. + + To add a piece of text, select the Text tool and click + at the point where you want to add it. If you want the text + associated with a particular note or rest, it may be helpful to click + the T cursor directly on that note, so as to ensure proper placement + in time. A dialog box will appear, into which you can type the text + and choose its intended purpose. (Rosegarden prefers to store what + the text is for, rather than how it should look; this is so that in + future we may be able to configure how the various sorts of text are + presented for each individual user.) + + + + + + + + &rosegarden;'s text dialog + + + + + The available + purposes (or styles) are: + + + + + + Dynamic Used for + minor local indications such as the dynamic marks "p", "mf" + etc. Shown below the staff in small italic + type. + + Direction Used + when indicating significant changes in style or mood. Shown + above the staff in large roman type. + + + Local Direction + Used to indicate less significant changes in style or mood. + Shown below the staff in a smaller bold-italic roman + type. + + Tempo Used to + indicate significant changes in tempo. Shown above the + staff in large bold roman type. + + + Local Tempo Used + to indicate more minor or local changes in tempo. Shown + above the staff in a small bold roman type. + + + Chord Used + to indicate chord changes for guitarists, etc. Shown + above the staff in a small bold roman type. + + + Lyric Although + lyrics are usually created in the lyric editor, they can also + be entered word by word if necessary using this style. This + style is shown below the text in a small roman typet. + (Warning: if you enter lyrics this way and later + edit the staff's lyrics using the lyric editor, any lyrics + entered this way may be modified or moved if their + positioning is not compatible with that expected by the + lyric editor.) + + Annotation Used + for helpful text that is not strictly considered part of the + score. Shown below the staff, boxed-out in a yellow + sticky-label-style box. These may not be visible + initially, and can be turned on via + Settings + Show Annotations + + + LilyPond Directive Used + as the mechanism for exporting special tags that are + only understood by the LilyPond exporter. These + provide a means to extend &rosegarden;'s capabilities + beyond what it can do within its own native interface. + Shown above the staff, in a green box. These may not be visible + initially, and can be turned on via + Settings + Show LilyPond Directives + + + + For many of the styles, a new combo box will appear that allows + you to select from a variety of commonly-used texts appropriate for + that style, such as "Allegro" and "ritardando." Selecting one of + these texts saves typing, but in no way impedes your ability to type + your own text by hand, should you so desire. + + + You can also edit text after creating it, by clicking on + the existing text with the text tool. + + + Editing lyrics + + The Lyric editor, available from the + + View + Open Lyric Editor + + function, allows you to edit all of + the lyric events for a single staff at once, using a fairly + rudimentary textual editing system. To use it, just + activate the menu option, edit the lyric text in the + resulting dialog, and then hit OK. + + The lyrics you enter should follow a particular + format. Bar lines are vital to avoid the editor getting + confused, and are represented with a slash ("/"). Within + each bar the individual syllables are separated by spaces + (at least one space: the editor doesn't care about any extra + whitespace). Each syllable in turn will be attached to the + next subsequent note or chord within that bar (although at + the moment the editor can get quite confused by chords that + are not exact, i.e. that require smoothing or + quantizing). + + If you want a note to have no syllable attached to it, + you need to provide a dot (".") as the syllable for that + note. (This is why the default lyric text for a segment is + usually full of dots.) Remember to separate the dots with + spaces, so that they are clearly separate syllables. + + If you want more than one syllable on the same note, + with a space between them, use a tilde ("~") instead of the + space. It will be shown as a space on the score. + + If you want to split a syllable across two notes, with + a hyphen, you need to enter a space following the hyphen so + the editor knows to treat it as two syllables. (Hyphens get + no special treatment within syllables.) + + Syllables consisting only of numbers surrounded by + square brackets (like "[29]") will be ignored; this is the + format used for the automatically-generated bar numbers + shown in the editor. + + You should also be aware that the textual format of + lyrics is only used for editing: the lyrics are actually + stored as distinct text events (one per syllable). This + means that the text format may potentially change in the + future to accommodate more advanced editing capabilities, + although the event format should not change and so your + saved files should continue to be compatible. + + &rosegarden; supports also multiple lines of lyrics. + You may always attach one more verse into a single staff + by clicking Add Verse in the lyrics editor. All the verses + are entered with the same syntax. If you leave the last verse + without syllables, or make it empty, it is removed from + the list of verses next time you open the lyrics editor. + + + + + + Using special LilyPond directives + LilyPond directives are a special kind of text that you can + use to export .ly files that take advantage of + functionality not yet available directly through &rosegarden;'s + own native interface. + + Some of these are a bit fiddly with respect to how their + placement in time affects their function. It is not always + immediately apparent at a glance just where they are, or what notes + or barlines they will affect, so I have made placement suggestions + to help ease the process of getting them in the right spot. + + + These directives are: + + + + + Segnoused to export a + + + + + + + + + + Codaused to export a + + + + + + + + + + Alt1Placed anywhere in a + measure, designates that the measure(s) + that follow this one should be exported as the + first alternate ending (see file + lilypond-alternative-endings.rg for example) + + + + + Alt2Placed anywhere in a + measure, designates that the measure(s) + that follow this one should be exported as the + second alternate ending (see file + lilypond-alterantive-endings.rg for example) + + + + + || ->Placed anywhere in a + measure, designates that the next calculated barline will be + rendered as a double barline (see file + lilypond-directives.rg for example) + + + + + |. ->Placed anywhere in a + measure, designates that the next calculated barline will be + rendered as a terminating barline (see file + lilypond-directives.rg for example) + + + + + : ->Placed anywhere in a + measure, designates that the next calculated barline will be + rendered as a dashed barline (see file + lilypond-directives.rg for example) + + + + + Gliss.Placed by clicking + directly on a notehead, draws a glissando between + the target note and the note immediately following (see file + lilypond-directives.rg for example) + + + + + Arp.Placed by clicking + directly on a chord, draws a wavy line arpeggio + symbol immediately to the left of the affected chord (see file + lilypond-directives.rg for example) + + + + + Tiny ->.Placed anywhere, + designates that notation immediately following this + directive should be rendered at the "tiny" size (see file + lilypond-directives.rg for example) + + + + + Small ->.Placed anywhere, + designates that notation immediately following this + directive should be rendered at the "small" size (see file + lilypond-directives.rg for example) + + + + + Norm. ->.Placed anywhere, + designates that notation immediately following this + directive should be rendered at the normal size; + usually used to cancel a Tiny -> or Small ->. (see file + lilypond-directives.rg for example) + + + + + + + + + + Guitar Chords + + + Like text, it is possible to add guitar chord diagrams to a + notation track (or to edit previously added ones). This is + done by toggling the + Guitar Chord + button, and then clicking on the same area as for adding text. + This will open the Guitar Chord dialog. With it you can select + which guitar chord diagram you want to add from a chord + dictionary which comprises most of the common chord fingerings + by specifying a chord's root and its extension. For + convenience, the fingerings are sorted in three different + categories : + beginner + , + common + and + all + . These categories are actually based on the chord extension + (A7 is a beginner chord, while A13 isn't), not on the + fingering itself, so you can still see "advanced" chord + fingerings listed, even in beginner mode. + + + + + + + + + + + &rosegarden;'s chord selector dialog + + + + + + + + It is also possible to add your own fingerings if needed. To + do this, click on the 'New' button. This will pop up a chord + editor, where you can "draw" which fingering you want to add, + and specify its root, chord extension, and starting fret + number. + + + + + + + &rosegarden;'s chord editor dialog + + + + + + Note that while you can choose the extension from a list of + predefined values, you can also type whatever value you want. + However, in that case, the new fingering will only be + available in the 'all' list. Also, you can only delete and + edit your own chords. Those from the predefined dictionary + cannot be changed. If you spot a mistake in one of them, + please report it to the development team. + + + + + + + + Slurs and hairpins + + Slur and hairpin (crescendo/decrescendo) dynamic markings are stored as events, + just like notes or rests. To create one, select the area you + want it to cover (a series of notes or whatever), and then use + the Add Slur, + Add Crescendo or + Add Decrescendo options from + the Phrase menu. + + Placement of hairpins can be somewhat tricky, and this is + especially so with haripins that run in line with dynamic markings. + It is commonly the case that a hairpin that doesn't quite look right + in &rosegarden;'s own notation editor will nevertheless come out just + fine once exported to LilyPond. &rosegarden;'s slurs generally come + out best when all the stems are running in the same direction, and + occasionally need to be repositioned by hand to achieve + better placement. Slurs also tend to fare slightly better once + exported to LilyPond. + + + You remove a slur or hairpin in the same way as any + other event: either select it with the selection tool and then + hit Delete, or click on it with the erase tool active. + + + + + + + Note stems and slashes + + You can set the stem direction of any selected notes + (provided they are a sort that have stems) using the three + Stem Direction options on the Notes menu. The options allow + you to either fix the stems up or down, or revert to the stem + direction that &rosegarden; would otherwise have chosen. See + also Beams. + + The Note menu also contains options for adding slashes + across note stems, for example to indicate short repeated + notes or drum rolls. These are currently purely notational; + &rosegarden; will not take them into account when playing the + staff or generating &MIDI;. + + + + + + Beams + + Adding beams to notes is considered a grouping operation + in the &rosegarden; Notation editor, available on the Phrase + menu. Select the notes you want to beam, and use the + Beam Group menu option. To remove a beam, select the notes and use + the Unbeam menu option. + + It is possible to have more than one beamed group + happening at the same time — you just select and beam the + separate groups one at a time — but Rosegarden is usually not + yet clever enough to work out which notes should have stems up + and which should have stems down for simultaneous beamed + groups, so you will probably have to set the stem directions + of the notes in the groups explicitly as well as beaming them. + + &rosegarden; can attempt to guess a sensible beaming for a + piece of music, provided it's not too complicated. To invoke + this, select the notes you want to calculate the beaming for + (for example by triple-clicking to select a whole staff) and + then use the Auto-Beam option on the + Phrase menu. Auto-beaming + is also done automatically when loading a &MIDI; file, for + example, and the editor also does some automatic beaming as + you enter notes (this can be disabled by changing the + "Auto-Beam when appropriate" setting on the configuration + dialog or the insertion tool's right-button menu). + + + + + + + Triplets and other tuplets + + A triplet group consists of three notes or chords played + in the time of two. (More precisely, it consists of notes + with a total duration of three arbitrary units played in the + time of two of those units.) + + We use the word tuplet to describe the general + situation in which notes with a total duration of any given + number of units are played in the time of a different number + of those units: nine notes in the time of eight, or six in the + time of four, or a crotchet and a quaver in the time of a + single crotchet, or even two notes in the time of three. (At + present &rosegarden; does not support the last example — tuplet + groups must always be played with a shorter duration than + written.) + + The triplet and tuplet menu functions work by taking an + existing series of notes or rests and squashing them so they + play quicker, filling in the left-over space at the end of the + series with a final rest and drawing the whole as a tuplet + group. You can therefore create a new series of triplets by + entering the first two notes of the series (in their normal + form), making them into triplets, and then filling in the rest + left over by the triplet operation with the final note of the + triplet. Or you can apply the triplet operation before you + enter any notes, thus turning the original rest itself into + triplet form, and then insert the notes of the triplet on top + of it. Some examples may help: + + + + + + + + + + + + + &rosegarden;'s general tuplet dialog + + + + + + To specify a general tuplet group, we need to know what + the base note is (for example, if we play three crotchets in + the time of two then the base is a crotchet) and the ratio of + the number of base notes written to the number played. + + + + + + + + + + + Paste types + + + The meaning of cut and paste is less obvious for a music + editing program than it is for something like a word + processor in which the letters and words go in a simple + linear order. Accordingly, &rosegarden;'s Notation editor + offers several different types of Paste operation, as well + as separate Cut and Cut and + Close functions. + + + + + + + + + + &rosegarden;'s paste-type dialog + + + + + The types of Paste operation are: + + + + + Restricted + + Requires an existing gap (containing nothing but + rests) of enough duration to completely contain the + clipboard's contents. The contents are pasted into + the gap. If there is no gap long enough, the paste + is not carried out. + + + This is the default paste type. + + + + + + Simple + + Erases enough events to make a gap long enough to + paste into, and then pastes into that. The pasted + events therefore completely replace any existing ones + in the time covered by the paste. + + + + + + Open and Paste + + The opposite of Cut and + Close. Makes room for the paste by moving all of the + subsequent events further towards the end of the + composition. + + + + + + Note Overlay + + Carries out a paste in the way that it would + happen if you entered each of the notes in the clipboard + yourself using the notation editor: if there are other + notes overlapping with them, the new or existing notes + will be split into ties appropriately. + + + + + + Matrix Overlay + + Carries out a paste in the way that it would + happen if you entered each of the notes in the clipboard + yourself using the matrix editor: the notes presently + in the way of the paste will be ignored, allowing the new + notes to overlap arbitrarily with them. + + + + + + + All of these take effect at the current position of the + insert cursor on the current staff. To choose between the various + paste types, use the Paste... + menu option (with dots) on the Edit menu. + + + + + + Adjusting Notation + + + + Adjusting note and rest durations + + + Normalizing rests + + Sometimes as a result of editing or quantization + operations, a piece of notation can end up with incorrect + rest durations for the current time signature. You can use + the AdjustRestsNormalize Rests function to + fix these. This examines each sequence of + consecutive rests found in the selection, and adjusts, + splits and merges rests as necessary to ensure that the + rests have theoretically correct durations and fall on the + correct boundaries. + + + For example, a 4/4 bar containing a crotchet + (quarter-note), then a minim (half-note) rest and a + crotchet rest will be rearranged to place the crotchet + rest first, as the minim rest should not cross the + central beat boundary of the bar. + + + + + Splitting very long notes The + Adjust + Notes Tie Notes at + Barlines is intended to deal + with notes that have excessively long durations, and + therefore overflow barlines or are too long to be + displayed as a single note. It takes any such notes and + splits them into shorter, tied notes. + + + + + Splitting overlapping notes + The + Adjust + Notes Split-and-Tie Overlapping Chords function can be used to turn "counterpoint" notes into a series of split-and-tied notes and chords. + + It can be applied to a selection that contains + overlapping notes. It will split overlapping notes at the + point where they overlap, and tie together the resulting + split notes, ensuring that the music takes the form of a + series of chords and/or single notes starting and ending in + neat blocks, with some notes possibly tied. + + + + + Rescaling note durations + The + Adjust + Rescale Halve + Durations and + Adjust + Rescale Double + Durations functions can be + used to perform the most simple rescaling functions. + + + For more elaborate rescalings, use the + Adjust + Rescale Stretch + or Squash... function with + which you scale the total lenth of the selection. + + + + + + + + Repositioning notation elements + + You may occasionally wish to to nudge the positioning of some + element of notation that Rosegarden's layout algorithm has not + placed in an optimal location. Use Ctrl-click and drag to move slurs, hairpins, + text events, and several other sorts of events. You may not reposition notes in + this fashion. + + + + + + + + + Interpreting Performance Cues in Notation + + + You can use the Interpret function + AdjustInterpret... + + to modify the velocities and timings of notes according to any + written or indicated dynamics found. The selection of + interpretations available is as follows: + + + + Apply text dynamics (p, mf, ff etc) + + Sets a velocity to each note + based on the last piece of text of "Dynamic" + type seen on the same staff (only texts of the + form pp, p, mp, mf, f, ff, fff, etc., are matched; these are + the texts that are available by default when entering text events + of this style). + + + + + Apply hairpin dynamics + + Makes the notes gradually + increase or decrease in velocity during a + crescendo or decrescendo hairpin. + + + + + + Stress beats + + Makes notes that land on bar or + beat boundaries slightly louder (greater + velocity) than the surrounding notes. + + + + + + Articulate slurs, staccato, tenuto etc + + Shortens unslurred notes, + shortens staccato notes more, and gives notes + inside slurs and tenuto notes their full length. + + + + + + + + + + + + Notation from performance data + + + &rosegarden; is a multi-purpose program: it is a notation + editor, but it is primarily a sequencer and editor for + performed music. And in performance, of course, the times + and durations of notes are rarely as precise as they are on + a printed score. + + + + This means that it's often desirable for &rosegarden; to do + a lot of tidying of the basic note times and durations when + attempting to make meaningful notes to show in the notation + editor. This is a kind of quantization, but a kind that + requires a surprising amount of guesswork to do well. + &rosegarden; includes a quantizer designed to do a slightly + better job of this than the plain grid quantizer. + + + Applying + quantization strictly for notation is rather unimaginatively + referred to as notation quantization: it only + applies to the notes you see and edit in notation, and + doesn't affect the notes that play, or that you edit in + other views such as the matrix. This quantization is + automatically applied to music imported or recorded from + MIDI, although not all of its possible capabilities are + enabled by default. + + + + There are two ways to see which notes have been quantized + for notation. By default, each notation view contains a raw + note ruler (in the group of rulers above the score) showing + a rectangular block for each note. This block is positioned + so as to represent the time and duration of the note as + performed, but with the top and bottom edges of the + rectangle extended or shortened to represent the time after + notation quantization. If this is too much information for + you, you can alternatively choose (in the configuration + dialog) to show in a green colour all note heads in the + score that have had their timings altered by notation + quantization. + + + + + + + + + + + &rosegarden;'s notation quantize dialog + + + + + If the quantization &rosegarden; has used is not suitable, + either for the entire score or for a selection of notes, you + can choose to use a different level of quantization or none + at all. To apply a different quantization to some notes, + select the notes and use the Quantize... + menu function (tick the box labelled Quantize for + notation only). The quantization level or type used + by default can be changed in the configuration dialog. + + + + Configurable parameters for the heuristic notation quantizer + + + Parameters for quantization itself + + + + + Complexity + + The "complexity" of a notation quantizer is its + most fundamental parameter. A "complex" quantizer + will be more prepared to accept that complex-looking + music is in fact intended to be complex, whereas a + "simple" quantizer is more likely to assume that + complex-looking music results from an imprecise + performance of simple music. + + The default setting is intended to produce + reasonable results for a fairly wide range of music. + + + + + + Base grid unit + + The base grid unit (set to a note duration + value) specifies the absolute minimum unit of note + that will be permitted to remain in the score after + quantization. For example, if set to a semiquaver, + all notes will be placed on boundaries of a multiple + of a semiquaver, with durations also a multiple of a + semiquaver. + + The setting of the base grid unit is not quite + as significant for a notation quantizer as it is for a + plain grid quantizer, because all it does is impose an + absolute limit on the level of precision permitted by + the complexity parameter. Mostly, when you find a + case in which increasing the grid unit produces better + results, you've actually found a case in which the + quantizer simply didn't do as good a job as it should + have been able to with the smaller unit. + + + + + + Tuplet level + + The notation quantizer is capable of identifying + tuplets (triplets and other time-squashed groups), + within reasonable limits. This parameter controls how + ambitious it will attempt to be when looking for + tuplets, by setting a limit on how many notes per + tuplet group it will attempt to identify. If it is + set to None, the quantizer will not + attempt to identify tuplets at all. + + + + + + + + + + Parameters that control tidying up after quantization + + + + + Re-beam + + + Causes the notes to be re-beamed into groups + appropriately after quantization. This is usually + desirable. + + + + + + Add articulations (staccato, tenuto, + slurs) + + + Causes the quantizer to attempt to identify, based + on the durations of individual and consecutive + notes, which notes should be notated with staccato + marks (for notes that fall significantly short of + the following note, but not apparently short + enough to merit a rest), tenuto (for notes that + almost or just overlap the following note) and + slurs (for series of notes that meet or overlap). + + + + + + Tie notes at barlines etc + + Causes any notes that are still found after + quantization to overlap barlines or to have + durations not exactly expressible with single note + heads to be split into multiple notes appropriately, + and tied. This has the same effect as applying the + "Tie Notes at Barlines" function + in the notation view. + + + This parameter is not set by default because it + changes the number of note events, which is + undesirable when using &rosegarden; partly or + principally as a MIDI sequencer. + + + + + + Split-and-tie overlapping chords + + + Causes overlapping notes to be split and tied, so + as to make strict chords with individual noteheads + tied as necessary. This has the same effect as + applying the "Split-and-Tie + Overlapping Chords" function in the notation view. + + + This parameter is not set by default partly because + it changes the number of note events, which is + undesirable when using &rosegarden; partly or + principally as a MIDI sequencer. + + + + + + + + + + + Playing ornaments + + Rosegarden supports playback of ornaments using its triggered segments + mechanism. You can create triggered segments containing any of + the various types of trill or ornament you might want, and + associate them with the notes that want to play them. + + To create a new type of ornament, first write out the + notes "in longhand" that you want the ornament to play, and then + select the notes and use + NoteOrnamentsMake + Ornament.... This cuts the notes to + the clipboard, pastes them into a new triggered segment, and + replaces them with a single note of the same duration that + triggers this segment. + + To make a note play an existing ornament, select it and + use + NoteOrnamentsTrigger + Ornament.... + + + + + + + + + &rosegarden;'s Trigger Ornament dialog + + + + + + To edit the notes played in a triggered ornament, you can + double-click on the note that triggers it. This will + change all uses of that ornament, not just the one that you + double-clicked on. + + Note that while Rosegarden can shift triggered segments up + and down in pitch to match their triggering notes, it is not + clever enough to perform transposition into a different + key or scale position. + + See triggered + segments for more details about ornaments and other uses + of triggered segments. + + + + Note styles + + + &rosegarden; also allows you to change various aspects of the + way the various types of notes are drawn, such as the choice + of note heads, the number of tails, whether notes are filled + or unfilled and so on. + + + + A set of standard styles (Classical, Cross, Triangle and + Mensural) is provided, and you can change the style used for + individual notes by selecting them and then using the Note + Style menu options. Each note remembers which + style has been chosen for it, and this information is saved + as part of the composition. You can also change the default + style for new notes using the + Configure Rosegarden... option in the + Settings menu. + + + + It is also possible to create your own note styles by + describing them in XML files. (Even the + standard styles are defined this way: the only reason the + editor knows that a Classical semiquaver has a tilted oval + filled head, a stem, two flags, etc., is that the description + in Classical.xml says so.) See Customising Rosegarden + for more information. + + + + + Note fonts + + &rosegarden; is supplied with a single scalable notation + font, the Feta font developed by the LilyPond project. Feta + is an extremely high quality font that should be suitable + for nearly all classical work. + + + &rosegarden; also includes support as standard for a + number of other notation fonts. You will need to provide the + fonts themselves in TrueType (.ttf) or PostScript Type-1 + (.pfb, .pfa) format, and you will need the relevant + permissions to install them to the same place as &rosegarden; + was installed. To install a supported notation font, locate + the share directory for the &rosegarden; installation (usually + a subdirectory of the KDE desktop installation tree, such as + /opt/kde/share/apps/rosegarden). You will find that this + directory has a subdirectory called "fonts": copy the font + files into there, and restart &rosegarden;. If your font is + supported, it should now appear on the font menu in the + notation editor. + + Complete or partial support is currently provided for + the following fonts: Fughetta, by Blake Hodgetts; Petrucci, + the "original" Finale font; Maestro, the "new" Finale font; + Opus, the Sibelius font; Inkpen, the Sibelius jazz font; + Sonata from Adobe; Steinberg, from the Cubase sequencer; and + Xinfonia. (Most of the above font names are registered + trademarks of the respective companies.) THE ROSEGARDEN TEAM + MAKES NO REPRESENTATION AS TO THE LEGAL STATUS OF ANY USE OF + THESE FONTS WITH ROSEGARDEN. It is your responsibility to + ensure you are in compliance with the licence (if any) under + which a font was provided to you, before attempting to use it. + If you are not sure whether you have the right to use a font, + don't: apart from anything else, the standard Feta font is + better than most of these anyway. + + It is also possible to provide new mapping files so as + to use new fonts. For some fonts that have similar mappings + or metrics to fonts in the above list, this may be as simple + as editing the name of the font in the mapping file. See + Customising Rosegarden + for more information. + + + + + + + The Event List editor + + Introduction + + + + The &rosegarden; Event List editor shows the events in a + single segment in a raw form, and enables you to edit the + precise properties of those events individually. + + + + + + + + &rosegarden;'s event list editor + + + + + + + + + + + + + + Customising Rosegarden + + + Configuring custom notation fonts + + If you have a notation font installed on your system in a + scalable format (TrueType or Type-1) but it is not currently + supported by Rosegarden, you can create your own mapping XML + file to describe the font's character map and metrics in a way + Rosegarden can use. These files are installed in the + fonts/mappings subdirectory of the Rosegarden installation + directory, and a number of samples are included with the + distribution. + + You can also use these mapping files to define new + pixmap-based fonts, in which every shape in a particular size is + loaded from a separate pixmap file. The two standard notation + fonts supplied with Rosegarden are pixmap fonts defined in + exactly this way. + + + It is even possible to define a notation font as using one + or more scalable system fonts, augmented with pixmaps for + particular sizes or for characters not found in the scalable + fonts. This is because most of the mapping file format is the + same for scalable and pixmap fonts, and where there are + different elements for the different sorts of fonts, it is + usually possible to include both of them. Rosegarden will + usually use pixmaps where available and scalable fonts + otherwise. + + + You may also wish to edit the mapping files supplied with + Rosegarden if you find their measurements for alignment or + sizing are not to your liking. (If you believe that any of the + supplied files are actually wrong, please let us know.) + + + + Codes and Glyphs + + + + + + Notation font mapping XML format + + Here is a summary of the XML elements that may be used + in the font mapping file. + + + rosegarden-font-encoding + + This element must exist in every mapping file, and + should contain all the other elements. The only attribute + is "name", which contains the font's name as shown in the + font selection dropdown. Although the file format will + permit any name to be used here, Rosegarden will only pick + up the font corectly if the XML file has the same name as + the contents of this attribute (except that the XML file + should be named in lower-case and should end in ".xml"). + + + + + font-information + + This should normally be the first child element of + "rosegarden-font-encoding". It may have any of the + following attributes, all of which are optional: + + + + origin + + A textual description of the likely origin of + the mapped font (not the origin of the mapping + file). + + + + + copyright + + A textual description of the likely copyright + status of the mapped font (not the copyright status + of the mapping file). Note that because the mapping + file contains information such as origin and + copyright of the font itself, it is usually + advisable to make separate mapping files for + separate fonts where practical, even if the fonts + share other mapping data. + + + + + mapped-by + + The name of the creator of the mapping file + (i.e. you, presumably). + + + + + type + + The type of the font. This attribute should + contain one of the values "pixmap" or "scalable". + Fonts that are loaded into the windowing system and + are available to Rosegarden as standard system fonts + have type "scalable"; fonts that need to be loaded + from pixmap files corresponding to individual sizes + of pixmap (such as the feta and rg21 fonts included + with Rosegarden) have type "pixmap". + + This information is only intended for the user + reference; it isn't actually used by Rosegarden. It is + legitimate in practice for a font to be a mixture of the + two, but in general we will assume in this documentation + that a font is either scalable or pixmap. + + + + + smooth + + A boolean attribute indicating whether the + font is antialiased (smooth) or not. Should have + the value "true" or "false". If the font is smooth, + other display elements such as beams and slurs that + are not generated from the font will also be + antialiased. + + + + + autocrop + + Only relevant for scalable (system) fonts. + Rosegarden usually expects the metrics for a font to + contain the vertically smallest bounding boxes for + elements such as note heads and accents, rather than + including empty space above or below these elements + for alignment purposes. Most fonts do not do what + Rosegarden expects. Therefore for these fonts you + should set the autocrop attribute to "true"; then + Rosegarden will crop any unnecessary space from the + top and bottom of these elements when rendering + them. + + + + + + + + + + font-requirements + + This element is only relevant for scalable fonts. It is + used to specify that this font should only be offered if + certain system fonts are available, as well as to + associate IDs with those system fonts to refer to in the + font-symbol-map + element. This scheme is used to decide which notation + fonts should be offered to the user, and also allows you + to compose a Rosegarden notation font from more than one + system font if desired. + + The "font-requirements" element should contain a list + of "font-requirement" child elements. Each of these has two + attributes: "font-id", containing a numerical ID of your + choice for reference elsewhere in the file, and either a + "name" or a "names" attribute. If "name" is provided, it + will be used as the name of a single system font to be + associated with the font id; if "names" is provided, it will + be treated as a comma-separated list of system fonts and the + first one found will be associated with the font id. + + + + + font-sizes + + The "font-sizes" element specifies which notation font + sizes are available, and how the nominal font size relates + to the dimensions of non-font elements such as stems, staff + lines and beams. The "size" of a notation font is assumed + to be the distance in pixels between staff lines, or more + precisely, the height of a conventional note head that + completely fills the space between lines: the size therefore + does not include the thickness of either of the neighbouring + staff lines. + + + + + There are two possible child elements of "font-sizes": + "font-scale" and "font-size". Their use depends on the + type of font being described. + + + For pixmap (non-scalable) fonts, the "font-sizes" element + should contain a list of "font-size" elements, one for + each size of pixmaps available. The pixmaps themselves + must be installed in the + fonts/<font-name>/<font-size> subdirectory of + the Rosegarden installation directory, where + <font-name> is the name of the font (as specified in + the "rosegarden-font-encoding" element at the start of the + mapping file), or a lower-case version of the name, and + <font-size> is the pixel size of the font. A font + size will only be made available to the user if it has an + entry in the "font-sizes" list and the pixmap directory is + found. + + + + For scalable fonts, the "font-sizes" element should + contain one "font-scale" element that defines the + relationships between font and non-font elements in a + general way, and also defines the relationship between + Rosegarden's nominal font size and the size of the + corresponding system font. If this "font-scale" element + is found, then Rosegarden will assume the font is + available in any size. You can however still include one + or more "font-size" elements to define precise proportions + for any particular size for which the general proportions + do not quite work correctly, for example because of + rounding error. + + + + The attributes of "font-scale" and "font-size" are very + similar. The main difference is that all attributes of + "font-scale" are floating-point values relative to the + font size, where 1.0 is the base font size (i.e. the + distance between staff lines), whereas attributes of + "font-size" are integer pixel values. The attributes + available are as follows. (Those marked "optional" have + vaguely sensible defaults, so it's a good idea to try not + setting them first.) + + + + + + note-height + + This attribute is only available for the + "font-size" element, and it is mandatory in that + element. It defines the base size of font to which the + other attributes in this element apply, and a size that + will be offered to the user and used when looking up + pixmaps for this font. + + + + + font-height + + May be used in either "font-size" or "font-scale". + This is only relevant for scalable fonts, but is + mandatory for them if used in the "font-scale" element. + This defines the size of the system font used to draw a + given size of notation font. + + + + + beam-thickness + + Optional. Defines the thickness of a beam. + + + + + staff-line-thickness + + Optional. Defines the thickness of a staff line. + + + + + stem-thickness + + Optional. Defines the thickness of a note stem. + + + + + flag-spacing + + Optional. Defines the gap between note flags in + cases where multiple flags are drawn by drawing a single + flag several times. + + + + + border-x + + Optional. Specifies that the note head pixmaps + have a fixed area to left and right that should not be + considered part of the note head. This attribute gives + the thickness of that area. + + + + + border-y + + Optional. Specifies that the note head pixmaps + have a fixed area to top and bottom that should not be + considered part of the note head. This attribute gives + the thickness of that area. + + + + + + + + font-symbol-map + + This element lists the symbols available in this notation + font, and which pixmap files or system font code points + they should be drawn from. + + It should contain a list of "symbol" elements. These + have several possible attributes, the choice of which will + normally depend on whether the font is based on pixmaps or + system fonts: + + + + + name + + Mandatory. This attribute should contain the + name of the notation symbol. If the symbol exists in + the Unicode + 3.2 standard, the name should be that used to + identify the symbol in the standard. + + Most of the symbols Rosegarden expects to find + are in the standard; one exception is that many fonts + have a special version of the flag symbol that is + intended to be used when composing multiple flags from + individual single flags. Rosegarden refers to this as + "MUSICAL SYMBOL COMBINING FLAG-0", a name not used in + the Unicode standard (which has flags 1-5 only). + + For a definitive set of the symbol names + Rosegarden knows about, see the file + "gui/notecharname.cpp" in the Rosegarden source + distribution. Note however that it is possible to use + additional symbol names by introducing them in a notation + style. + + + + + + src + + The name of the pixmap file from which this + symbol should be loaded, without a directory or + extension. This is the usual way of describing a + symbol in a pixmap font. The file itself should be + installed to + fonts/<font-name>/<font-size>/<src>.xpm + under the Rosegarden installation directory. + + + + + + inversion-src + + The name of a pixmap file from which an inverted + version of this symbol may be loaded, without a + directory or extension. If this attribute is absent + and an inverted version of the symbol is required, it + will be generated simply by loading the normal version + and reflecting it in a central x-axis. + + + + + + code + + The code point at which this symbol may be found + in the relevant system font, as a decimal integer. + This is a way of describing a symbol in a scalable + font. This attribute will only be referred to if no + pixmap file is supplied, or if the pixmap file fails + to load. + + + + + + inversion-code + + The code point at which an inverted version of + this symbol may be found in the relevant system font. + If this attribute is absent and an inverted version of + the symbol is required, it will be generated simply by + loading the normal version and reflecting it in a + central x-axis. + + + + + + glyph + + The raw glyph index at which this symbol may be found + in the relevant system font, as a decimal integer. + This is a way of describing a symbol in a scalable + font. This attribute will only be referred to if no + pixmap file is supplied, or if the pixmap file fails + to load. + + + + + + inversion-glyph + + The raw glyph index at which an inverted version of + this symbol may be found in the relevant system font. + If this attribute is absent and an inverted version of + the symbol is required, it will be generated simply by + loading the normal version and reflecting it in a + central x-axis. + + + + + + font-id + + The id of the system font from which this symbol + should be loaded, as defined in the font-requirements + element. The default is 0. + + + + + + codebase + + This (decimal integer) attribute may be of use + if many of the symbols in a scalable font cover a + short range of code points starting at a relatively + high code page. If supplied, the codebase value will + be added to each of the subsequent code and + inversion-code values when looking up a symbol. + + + + + + + + Although none of these attributes is mandatory except for + the name, a symbol obviously needs to supply at least one + of "src", "inversion-src", "code", "inversion-code", + "glyph", or "inversion-glyph" to stand any chance of being + rendered at all. It is of course perfectly legitimate to + supply several or all of these attributes. + + + + + + font-hotspots +   + + + + + + + + + Creating new notation styles + + + Rosegarden's notation editor has the ability to display and + edit notes in various standard styles: classical, diamond + heads and so on. These styles are all defined in XML style + definition files installed along with the application, and + it's possible to create a new one by writing a simple XML + file. Rosegarden simply looks at the set of installed files + to determine which styles to offer the user. You can refer to + the default set of files in the styles subdirectory of the + Rosegarden installation directory for examples. + + + + The file format is not yet especially comprehensive; at the + moment it has been designed to be powerful enough to describe + the standard styles that come with Rosegarden, but not much + more. If you should try to create new styles this way, we'd + be very interested in your feedback on the Rosegarden + mailing-lists. + + + + Notation style XML format + + + Here is a summary of the XML elements that may be used in + a style definition file. + + + + rosegarden-note-style + + This element must exist in every style file, and + should contain all the other elements. It has one optional + attribute, "base-style", which may be used to name a style + from which this style takes the default values for any + parameters not specified elsewhere in the present file. + It's often good practice to define a style in terms of the + minimal difference from a given base style: see the supplied + Cross.xml for a particularly simple example. + + + Note that the "rosegarden-note-style" element does not + give the name of the style being defined, which is instead + currently drawn from the name of the file. At some point in + the future we may add internationalizable style name + attributes to this element. + + + + global, note + + Within the "rosegarden-note-style" element, there may + be one "global" element and any number of "note" elements. + We describe these together, as they have almost identical + sets of attributes. The "global" element simply provides + default values for those parameters not specified for a + particular note type in any following "note" element. + + + The attributes for these elements are as follows. All + of these are optional except as described: + + + + + type + + Only relevant to the "note" element, and + mandatory for that element. This attribute specifies + which sort of note is being styled. Legal values are + textual American or British note names (from "64th", + "sixth-fourth note", "hemidemisemiquaver" etc to + "double whole note"). + + + + + + shape + + Defines a note head shape for this style. Any + string is a legal value, but the only values + implemented so far are "angled oval", "level oval", + "breve", "cross", "triangle up", "triangle down", + "diamond" and "rectangle". The value "number" is also + recognised but not yet implemented. + + + + + + charname + + Defines a note font character name to be used as + the note head for this style. An element may supply a + "shape" or "charname" attribute, but not both. The + name should be one of those defined in the current + notation font's symbol + map (in a "name" attribute). + + + + + + filled + + Specifies whether this note should have a filled + head (where applicable, i.e. where the shape attribute + supplies a shape that is available both filled and + unfilled). Must be "true" or "false". + + + + + + stem + + Specifies whether this note should have a stem. + Must be "true" or "false". + + + + + + flags + + Defines how many flags or beams this note should + have. The valid range is 0 to 4. + + + + + + slashes + + Defines how many slashes this note should have + across its stem. + + + + + + hfixpoint + + Specifies in which x position the stem fixes to + the note head. Acceptable values are "normal" (the + right side when the stem points up, the left when it + points down), "central", and "reversed" (left side + when the stem points up, right when it points down). + + + + + + vfixpoint + + Specifies in which y position the stem fixes to + the note head. Acceptable values are "near" (the stem + fixes to the top when pointing up, the bottom when + pointing down), "middle", or "far". + + + + + + + + + + + + + + + + + + + + + + Credits and License + + + Rosegarden + + + + + + + Rosegarden is Copyright 2000-2008 Guillaume Laurent, + Chris Cannam and Richard Bown. The moral rights of + Guillaume Laurent, Chris Cannam and Richard Bown to be + identified as the authors of this work have been asserted. + + + + + + + + Parts of Rosegarden are derived from X11 Rosegarden 2.1, + which is Copyright 1994 – 2001 Chris Cannam, Andrew Green, + Richard Bown and Guillaume Laurent. + + + + + + + + For musical notation display Rosegarden uses pixmaps + derived from the Feta font, part of the LilyPond software, + which is Copyright 1997 – 2001 Jan Nieuwenhuizen and + Han-Wen Nienhuys. + + + + + + + + Other major contributors include Randall Farmer, Ron + Kuris, Hans Kieserman, Michael McIntyre, and Pedro + Lopez-Cabanillas. + + + + + + + + The Rosegarden splash-screen image is Copyright 2006 Carolyn H. McIntyre, + used by permission. + + + + + + + + + Documentation copyright 2002-2006 Chris Cannam, Richard Bown, Guillaume Laurent + + + + + + This program is licensed under the terms of the + GNU General Public License. + + + + + + + Rosegarden Revision History + + + + 1.7.0 – May 2008: notation track headers, nested brackets in + LilyPond export, grace notes finally functional, quick playback + position marker, ties can be flipped, variable-height tracks allow + access to all previously overlapping segments, take track + transpose into account while recording, convert existing segments + when loading an instrument preset, etc., bug fixes galore + + + 1.6.0 – November 2007: fretboards, diatonic transpose, multiple lines of lyrics, marker ruler improvements, overlapping notes visibility, LilyPond export enhancements and new dialog, better infrared remote control support, better configuration dialog, fixes + + + 1.5.1 – March 2007: bug fixes + + + 1.5 – February 2007: audio timestretching and input format conversion, matrix usability improvements, tempo tapping, context help, some features, code reorganisation and new build system (again) + + + 1.4 – September 2006: LilyPond export vastly improved, + exportable LilyPond directives, cut/copy/paste by ranges that + include tempo and time data, tempo entry and manipulation vastly + improved, multi-track MIDI recording, MIDI recording filters, + track paramter box, create segments using preset parameters from + a database of over 300 real-world instruments, texts like + "Allegro" offered as a parallel alternative to typing, LilyPond + preview, assorted smaller features, many bug fixes + + + 1.2.4 – July 2006: bug fixes + + + 1.2.3 – February 2006: new segment canvas, percussion matrix, multi-track audio recording, project packager, external MIDI controllers, MTC sync, proper ALSA MIDI ports, new icons, new build system + + + 1.0 – February 2005: many fixes, DSSI effects, latency compensation + + + 0.9.9 – July 2004: plugin synths, triggered segments, notation improvements + + + 0.9.8 – May 2004: better audio subsystem + + + 0.9.7 – February 2004: + + + 0.9.6 – December 2003: bug fixes + + + 0.9.5 – November 2003: a great lot of stuff + + + 0.9.1 – May 2003: step recording, Mup export, many many bug fixes + + + 0.9 – April 2003: many notation improvements, improved bank editor, audio enhancements and refinements, translations + + + 0.8.5 – December 2002: bank editor, MIDI filters, panic button + + + 0.8 – October 2002: printing, LADSPA plugins, improved Matrix View + + + 0.2.0 – August 2002: WAV file support, sweep selections, contrapuntal staves + + + 0.1.6 – June 2002: configuration dialog, LilyPond support, quantize dialog + + + 0.1.5 – May 2002: KDE 3, ALSA support, JACK audio support + + + 0.1.4 – March 2002: more undo, segment editing, audio playback + + + 0.1.3 – January 2002: piano-roll/matrix view, &MIDI; recording + + + 0.1.2 – November 2001: notation undo, transport dialog, position pointer + + + 0.1.1 – October 2001: scalable notation + + + 0.1 – June 2001: first public release of Rosegarden-4 + + + + + + &documentation.index; + diff --git a/docs/en/rg-audiofilemanager.png b/docs/en/rg-audiofilemanager.png new file mode 100644 index 0000000..cec91d3 Binary files /dev/null and b/docs/en/rg-audiofilemanager.png differ diff --git a/docs/en/rg-audiomixer.png b/docs/en/rg-audiomixer.png new file mode 100644 index 0000000..2fdb115 Binary files /dev/null and b/docs/en/rg-audiomixer.png differ diff --git a/docs/en/rg-bankeditor.png b/docs/en/rg-bankeditor.png new file mode 100644 index 0000000..aee8d0b Binary files /dev/null and b/docs/en/rg-bankeditor.png differ diff --git a/docs/en/rg-button-bar-time.png b/docs/en/rg-button-bar-time.png new file mode 100644 index 0000000..d79a2c5 Binary files /dev/null and b/docs/en/rg-button-bar-time.png differ diff --git a/docs/en/rg-button-from-end.png b/docs/en/rg-button-from-end.png new file mode 100644 index 0000000..6846b0a Binary files /dev/null and b/docs/en/rg-button-from-end.png differ diff --git a/docs/en/rg-clefdialog.png b/docs/en/rg-clefdialog.png new file mode 100644 index 0000000..d5667cf Binary files /dev/null and b/docs/en/rg-clefdialog.png differ diff --git a/docs/en/rg-coda.png b/docs/en/rg-coda.png new file mode 100644 index 0000000..39ca7c8 Binary files /dev/null and b/docs/en/rg-coda.png differ diff --git a/docs/en/rg-colours.png b/docs/en/rg-colours.png new file mode 100644 index 0000000..7800a12 Binary files /dev/null and b/docs/en/rg-colours.png differ diff --git a/docs/en/rg-cursors.png b/docs/en/rg-cursors.png new file mode 100644 index 0000000..7d72bed Binary files /dev/null and b/docs/en/rg-cursors.png differ diff --git a/docs/en/rg-devicemanager.png b/docs/en/rg-devicemanager.png new file mode 100644 index 0000000..9453c9a Binary files /dev/null and b/docs/en/rg-devicemanager.png differ diff --git a/docs/en/rg-eraser.png b/docs/en/rg-eraser.png new file mode 100644 index 0000000..2242903 Binary files /dev/null and b/docs/en/rg-eraser.png differ diff --git a/docs/en/rg-eventfilter.png b/docs/en/rg-eventfilter.png new file mode 100644 index 0000000..d275a30 Binary files /dev/null and b/docs/en/rg-eventfilter.png differ diff --git a/docs/en/rg-eventlisteditor.png b/docs/en/rg-eventlisteditor.png new file mode 100644 index 0000000..a5e9e75 Binary files /dev/null and b/docs/en/rg-eventlisteditor.png differ diff --git a/docs/en/rg-gridquantizer.png b/docs/en/rg-gridquantizer.png new file mode 100644 index 0000000..65f2a11 Binary files /dev/null and b/docs/en/rg-gridquantizer.png differ diff --git a/docs/en/rg-guitarchorddialog.png b/docs/en/rg-guitarchorddialog.png new file mode 100644 index 0000000..48725d3 Binary files /dev/null and b/docs/en/rg-guitarchorddialog.png differ diff --git a/docs/en/rg-guitarchordeditordialog.png b/docs/en/rg-guitarchordeditordialog.png new file mode 100644 index 0000000..cda7ca6 Binary files /dev/null and b/docs/en/rg-guitarchordeditordialog.png differ diff --git a/docs/en/rg-ipb-audio.png b/docs/en/rg-ipb-audio.png new file mode 100644 index 0000000..82d4bbc Binary files /dev/null and b/docs/en/rg-ipb-audio.png differ diff --git a/docs/en/rg-ipb-midi.png b/docs/en/rg-ipb-midi.png new file mode 100644 index 0000000..f99f9d5 Binary files /dev/null and b/docs/en/rg-ipb-midi.png differ diff --git a/docs/en/rg-ipb-synth.png b/docs/en/rg-ipb-synth.png new file mode 100644 index 0000000..2ca4d57 Binary files /dev/null and b/docs/en/rg-ipb-synth.png differ diff --git a/docs/en/rg-keysigdialog.png b/docs/en/rg-keysigdialog.png new file mode 100644 index 0000000..f2147d4 Binary files /dev/null and b/docs/en/rg-keysigdialog.png differ diff --git a/docs/en/rg-loadpreset.png b/docs/en/rg-loadpreset.png new file mode 100644 index 0000000..5d4b9fb Binary files /dev/null and b/docs/en/rg-loadpreset.png differ diff --git a/docs/en/rg-mainwindow.png b/docs/en/rg-mainwindow.png new file mode 100644 index 0000000..21b3802 Binary files /dev/null and b/docs/en/rg-mainwindow.png differ diff --git a/docs/en/rg-markerloop.png b/docs/en/rg-markerloop.png new file mode 100644 index 0000000..27bec8c Binary files /dev/null and b/docs/en/rg-markerloop.png differ diff --git a/docs/en/rg-matrixview.png b/docs/en/rg-matrixview.png new file mode 100644 index 0000000..ebf8035 Binary files /dev/null and b/docs/en/rg-matrixview.png differ diff --git a/docs/en/rg-metronome.png b/docs/en/rg-metronome.png new file mode 100644 index 0000000..487b12e Binary files /dev/null and b/docs/en/rg-metronome.png differ diff --git a/docs/en/rg-midifilter.png b/docs/en/rg-midifilter.png new file mode 100644 index 0000000..3b7ae06 Binary files /dev/null and b/docs/en/rg-midifilter.png differ diff --git a/docs/en/rg-midimixer.png b/docs/en/rg-midimixer.png new file mode 100644 index 0000000..f90a14e Binary files /dev/null and b/docs/en/rg-midimixer.png differ diff --git a/docs/en/rg-move.png b/docs/en/rg-move.png new file mode 100644 index 0000000..703dd40 Binary files /dev/null and b/docs/en/rg-move.png differ diff --git a/docs/en/rg-notation-toolbars.png b/docs/en/rg-notation-toolbars.png new file mode 100644 index 0000000..2c55841 Binary files /dev/null and b/docs/en/rg-notation-toolbars.png differ diff --git a/docs/en/rg-notationquantizer.png b/docs/en/rg-notationquantizer.png new file mode 100644 index 0000000..21d470d Binary files /dev/null and b/docs/en/rg-notationquantizer.png differ diff --git a/docs/en/rg-notationtools.png b/docs/en/rg-notationtools.png new file mode 100644 index 0000000..f3c6e6d Binary files /dev/null and b/docs/en/rg-notationtools.png differ diff --git a/docs/en/rg-notationview-multipage.png b/docs/en/rg-notationview-multipage.png new file mode 100644 index 0000000..7b4e3ec Binary files /dev/null and b/docs/en/rg-notationview-multipage.png differ diff --git a/docs/en/rg-notationview.png b/docs/en/rg-notationview.png new file mode 100644 index 0000000..df5eb52 Binary files /dev/null and b/docs/en/rg-notationview.png differ diff --git a/docs/en/rg-pastedialog.png b/docs/en/rg-pastedialog.png new file mode 100644 index 0000000..c7421d8 Binary files /dev/null and b/docs/en/rg-pastedialog.png differ diff --git a/docs/en/rg-pencil.png b/docs/en/rg-pencil.png new file mode 100644 index 0000000..f2eaf5d Binary files /dev/null and b/docs/en/rg-pencil.png differ diff --git a/docs/en/rg-percussionmatrix.png b/docs/en/rg-percussionmatrix.png new file mode 100644 index 0000000..339dc66 Binary files /dev/null and b/docs/en/rg-percussionmatrix.png differ diff --git a/docs/en/rg-plugin-dialog.png b/docs/en/rg-plugin-dialog.png new file mode 100644 index 0000000..e74adb5 Binary files /dev/null and b/docs/en/rg-plugin-dialog.png differ diff --git a/docs/en/rg-pluginbuttons.png b/docs/en/rg-pluginbuttons.png new file mode 100644 index 0000000..cf06768 Binary files /dev/null and b/docs/en/rg-pluginbuttons.png differ diff --git a/docs/en/rg-plugineditorbutton.png b/docs/en/rg-plugineditorbutton.png new file mode 100644 index 0000000..6c209cb Binary files /dev/null and b/docs/en/rg-plugineditorbutton.png differ diff --git a/docs/en/rg-quickmarker.png b/docs/en/rg-quickmarker.png new file mode 100755 index 0000000..e2153d2 Binary files /dev/null and b/docs/en/rg-quickmarker.png differ diff --git a/docs/en/rg-rawnoteruler.png b/docs/en/rg-rawnoteruler.png new file mode 100644 index 0000000..1430bec Binary files /dev/null and b/docs/en/rg-rawnoteruler.png differ diff --git a/docs/en/rg-resize.png b/docs/en/rg-resize.png new file mode 100644 index 0000000..4dcd991 Binary files /dev/null and b/docs/en/rg-resize.png differ diff --git a/docs/en/rg-segmentparameterbox.png b/docs/en/rg-segmentparameterbox.png new file mode 100644 index 0000000..68eac36 Binary files /dev/null and b/docs/en/rg-segmentparameterbox.png differ diff --git a/docs/en/rg-segno.png b/docs/en/rg-segno.png new file mode 100644 index 0000000..5c9bdbc Binary files /dev/null and b/docs/en/rg-segno.png differ diff --git a/docs/en/rg-select.png b/docs/en/rg-select.png new file mode 100644 index 0000000..4a81612 Binary files /dev/null and b/docs/en/rg-select.png differ diff --git a/docs/en/rg-split.png b/docs/en/rg-split.png new file mode 100644 index 0000000..86f8034 Binary files /dev/null and b/docs/en/rg-split.png differ diff --git a/docs/en/rg-synthpluginbuttons.png b/docs/en/rg-synthpluginbuttons.png new file mode 100644 index 0000000..ac791fe Binary files /dev/null and b/docs/en/rg-synthpluginbuttons.png differ diff --git a/docs/en/rg-tempodialog.png b/docs/en/rg-tempodialog.png new file mode 100644 index 0000000..65924c4 Binary files /dev/null and b/docs/en/rg-tempodialog.png differ diff --git a/docs/en/rg-temporuler.png b/docs/en/rg-temporuler.png new file mode 100644 index 0000000..572736b Binary files /dev/null and b/docs/en/rg-temporuler.png differ diff --git a/docs/en/rg-text-cursor.png b/docs/en/rg-text-cursor.png new file mode 100644 index 0000000..5fc332a Binary files /dev/null and b/docs/en/rg-text-cursor.png differ diff --git a/docs/en/rg-textdialog.png b/docs/en/rg-textdialog.png new file mode 100644 index 0000000..51e3bf5 Binary files /dev/null and b/docs/en/rg-textdialog.png differ diff --git a/docs/en/rg-timesigdialog.png b/docs/en/rg-timesigdialog.png new file mode 100644 index 0000000..a06c805 Binary files /dev/null and b/docs/en/rg-timesigdialog.png differ diff --git a/docs/en/rg-trackbutton-instrumentmenu.png b/docs/en/rg-trackbutton-instrumentmenu.png new file mode 100644 index 0000000..5fcb077 Binary files /dev/null and b/docs/en/rg-trackbutton-instrumentmenu.png differ diff --git a/docs/en/rg-trackbutton-instruments.png b/docs/en/rg-trackbutton-instruments.png new file mode 100644 index 0000000..024f067 Binary files /dev/null and b/docs/en/rg-trackbutton-instruments.png differ diff --git a/docs/en/rg-trackbutton-labels.png b/docs/en/rg-trackbutton-labels.png new file mode 100644 index 0000000..019eadd Binary files /dev/null and b/docs/en/rg-trackbutton-labels.png differ diff --git a/docs/en/rg-trackbuttons.png b/docs/en/rg-trackbuttons.png new file mode 100644 index 0000000..86f4bb3 Binary files /dev/null and b/docs/en/rg-trackbuttons.png differ diff --git a/docs/en/rg-trackeditor.png b/docs/en/rg-trackeditor.png new file mode 100644 index 0000000..b690316 Binary files /dev/null and b/docs/en/rg-trackeditor.png differ diff --git a/docs/en/rg-trackparameterbox.png b/docs/en/rg-trackparameterbox.png new file mode 100644 index 0000000..293b903 Binary files /dev/null and b/docs/en/rg-trackparameterbox.png differ diff --git a/docs/en/rg-transport.png b/docs/en/rg-transport.png new file mode 100644 index 0000000..44faa64 Binary files /dev/null and b/docs/en/rg-transport.png differ diff --git a/docs/en/rg-triggersegment.png b/docs/en/rg-triggersegment.png new file mode 100644 index 0000000..ba5137a Binary files /dev/null and b/docs/en/rg-triggersegment.png differ diff --git a/docs/en/rg-tupletdialog.png b/docs/en/rg-tupletdialog.png new file mode 100644 index 0000000..9872d86 Binary files /dev/null and b/docs/en/rg-tupletdialog.png differ diff --git a/docs/en/rg-useornament.png b/docs/en/rg-useornament.png new file mode 100644 index 0000000..58d4001 Binary files /dev/null and b/docs/en/rg-useornament.png differ diff --git a/docs/en/tips b/docs/en/tips new file mode 100644 index 0000000..99074a8 --- /dev/null +++ b/docs/en/tips @@ -0,0 +1,316 @@ + + +

    To configure a track to play using a particular instrument:

    +  * click on the track label and hold a moment
    +  * select an output device
    +  * select one of that device's available instruments (#1 - #16)
    +  * adjust that instrument's output channel, program, bank, and +controllers via the instrument parameters box + +
    + + +

    ...that Rosegarden has an autosave feature?

    +You can select your autosave interval from Settings->Configure +Rosegarden.

    +When something goes awry, such as a power outage or a Rosegarden crash +(unfortunately, it happens...) simply load the file you were working on, and you'll be given the +option to load the autosaved version, or the unmodified original.

    + +
    + + +

    +...that you can save the current document as your default studio by using +Composition -> Studio -> Save Current Document as Default Studio?

    + +
    + + +

    ...that your default studio is a complete Rosegarden composition that gets +loaded every time you create a new document or import a MIDI file?

    + +
    + + +

    ...that your default studio can contain instrument assignments, document properties, LilyPond headers, +and many other things?

    The default studio is a complete Rosegarden composition, so it can contain anything that you may wish to have available in each +new document you create.

    + +
    + + +

    ...that Rosegarden will detect and create a default connection for ALSA soft +synth applications that are started after Rosegarden is already running?

    + +
    + + +

    ...that you can make your default studio override that in every Rosegarden composition you load?

    If your studio setup does not change very often, and you would prefer for +the settings in your default studio to take precedence over whatever +studio is saved with any files you happen to load, you can make your studio the default for everything using Settings -> Configure Rosegarden -> +MIDI -> Always use default studio when loading files.

    + +
    + + +

    If you have accidentally recorded a segment so short that it does not +appear on the canvas, which you can only hear during subsequent recording +sessions, you can gain access to it by using Composition -> Change +Composition Start and End and then setting the composition to start at a negative number.

    + +
    + + +

    ...that if you place a note at the wrong pitch using the notation or matrix editor, you can move it one semitone at a time with the up and down arrow keys on your keyboard?

    + +
    + + +

    ...that you can toggle stem directions in the notation editor by selecting +one or more notes and using Ctrl-PageUp and Ctrl-PageDown?

    + +
    + + +

    ...that you can change the accidental used for a note in the notation editor (without changing the pitch of the note) by selecting +it and using the up and down arrow keys with both Ctrl and Shift pressed?

    + +
    + + +

    ...that you can hold down the Shift key while repositioning segments on the +segment canvas in order to avoid the "snap-to" effect and exert finer control?

    + +
    + + +

    ...that you can use the arrow tool to draw, move, and resize segments and events as well as to select them?

    Drag a segment or event block to move it, drag the right edge of a block to resize it, and drag with the middle mouse button pressed to draw a new segment or event.

    (Of course, the dedicated draw, move and resize tools are still quicker for repeated operations.)

    + +
    + + +

    ...that you can hold down the Shift key while repositioning segments on the +segment canvas in order to avoid the "snap-to" effect and exert finer control?

    + +
    + + +

    ...that you can hold down the Shift key while repositioning or resizing events in the +matrix view in order to avoid the "snap-to" effect and exert finer control?

    + +
    + + +

    ...that you can edit multiple segments on multiple tracks simultaneously in +the notation editor? Simply select the segments, then use Edit -> Open in Notation Editor.

    + +
    + + +

    ...that Rosegarden can export files for use by LilyPond, the high-quality score typesetting system?

    +From the File menu, navigate to Export -> Export LilyPond File

    + +
    + + +

    ...that Rosegarden can print via LilyPond, the high-quality score typesetting system?

    +From the File menu, navigate to Preview with LilyPond. The file +will be exported, rendered, and a preview will appear in KPDF, or one of +several other PDF viewers, where it can then be printed as well.

    + +
    + + +

    ...that if you use the quantizer from within the notation view, you can tell it to quantize only the timing used for notation -- making it possible to have good looking notation and a human MIDI performance?

    + +
    + + +

    ...that you can change segment labels using the controls on the Segment Parameters box +in the main window?

    + +
    + + +

    ...that the number of tracks in new documents is based on the contents of +your autoload.rg file? +

    +Whether you prefer to start with three tracks or 43, create a document that +contains the desired number of tracks, plus any other studio or document properties settings +you wish to configure, and use Composition -> Studio -> Save Current Document as Default +Studio to make this your new default.

    + +
    + + +

    ...that you can change the name of a track by double clicking on the label? (The +label must be visible for this to work.)

    + +
    + + +

    ...that you can configure what happens when you double-click on a segment?

    Go to Settings -> Configure Rosegarden and choose your preferred editing window under the Behaviour tab.

    + +
    + + +

    ...that Rosegarden is being developed as a community effort with +contributions from around the world?

    +The four most active developers live in London (England), Cannes, Barcelona, +and... Christiansburg? (Christiansburg is a town of about 50,000 in +southwestern Virginia, USA.)

    +We have had contributors from elsewhere in the US, UK, Spain, Mexico, Argentina, Germany, +Sweden, Russia, Japan, Finland, and Italy, just to name a few...

    + +
    + + +

    ...that Rosegarden is available in Spanish, French, German, Russian, Welsh, Swedish, Italian and Estonian +translations? (Just to name a few.)

    +If you're interested in translating Rosegarden to another language, drop us a +line at rosegarden-devel@lists.sourceforge.net.

    + +
    + + +

    ...that you can change the total number of bars in the composition via +Composition -> Change Composition Start and End?

    + +
    + + +

    ...that you can see the difference between performance and display duration +of duration-quantized notes in the notation editor?

    +Use Settings -> Show Raw Note Ruler to turn on this handy +feature.

    +Note that this feature does not work in page layout view.

    + +
    + + +

    ...that you can add tempo and time-signature changes by double-clicking on the values displayed in the transport window or tempo rulers?

    + +
    + + +

    ...that the transport window can display musical time, sample frame count, and a visual metronome as well as real time?

    Just click on the small button at the extreme top left of the window.

    + +
    + + +

    ...that you can select all notes of a particular pitch in the matrix view, by shift-clicking on that pitch on the piano keyboard at the left?

    If you shift-click-drag, you can select whole ranges too.

    + +
    + + +

    ...that you can set a loop in the main window by clicking-and-dragging on the time ruler with Shift pressed?

    (If the ruler isn't visible, use Settings -> Show Rulers.)

    + +
    + + +

    ...that if you're editing a section in the matrix or notation view, you can +set that section to loop while you edit it?

    Select it and use Tools -> +Local Cursor -> Set Loop to Selection, then hit Play.



    +This feature does not work quite as well for compositions that include sampled +audio. + +
    + + +

    ...if you have more than one note or controller event at the same time, you +can use the [ and ] keys to flip the stack of events around on the controller +and velocity rulers in order to bring the item you wish to adjust into +focus.

    + +
    + + +

    ...that the notation view shows you notes using their display duration, while the +matrix allows you to edit their performance duration?

    +Be careful with tied notes in the matrix. It is not apparent that they are +tied, and if you split up a pair of tied notes, subsequent notation views will +be confused and unhappy. This is an old bug that has been on our TODO list +for years. Sorry about that, folks. Patches welcome. +

    + +
    + + +

    If you're working with a human performance and you need to insert some new +notes, these new notes will sound for their entire written duration. To blend +these new notes into a human performance, select them, then use Adjust -> Interpret... +from the notation view to interpret any marks and massage their performance +durations to something less mechanical.

    + +
    + + +

    ...that Rosegarden can export certain things to LilyPond that it cannot yet +display within its own native interface?

    These new directives can be inserted +via the T text insert tool in the notation view.

    +Load the example files +lilypond-alternative-endings.rg and lilypond-directives.rg for a +demonstration of how to use the new exportable directives.

    +Use File -> Preview with +LilyPond to see what they look like on the exported page.

    +Be sure to turn on +Settings -> Show LilyPond Directives and Show Annotations within +the notation view.

    + +
    + + +

    ...that Rosegarden has track parameters allowing you to Create segments with: certain +properties by default?

    You can pre-select the clef, transposition, colour, and specify +the highest and lowest playable notes (notes outside this range display in +red by default). Then draw a segment with the pencil, or record one, and any +new segments created on this track will take these properties as segment +parameters.

    +These parameters do not apply to audio tracks.

    + +
    + + +

    ...that Rosegarden has a database of preset parameters describing more than 300 +musical instruments from the real world, grouped into several convenient +categories?

    Each preset contains a clef, transposition, and playable range +suggestions for both amateur and professional players.

    Click the +Load button in the new track parameters box to get started! (If you +do not see a Load button, be sure your parameter panel is set for +tabbed mode, rather than stacked mode.)

    (Special thanks to Magnus +Johansson for assembling this extraordinary database.)

    + +
    + + +

    ...that when exporting to Lilypond, you can merge tracks that have the same name onto a single staff?

    For example, if there are three voices in a single part, write each +voice as an independent segment/staff, each on a separate track. Give all +three tracks the same name, and select [x] Merge tracks that have the same +name from the options dialog that appears when you export to, or preview +with LilyPond.

    +The tracks must have a non-default name for this to work.

    + +
    + + +

    ...that you can use the mouse wheel to scroll up and down, scroll left and right, and zoom in and out?

    Just roll the wheel to scroll up or down. Hold Alt as well to scroll left or right, or hold Ctrl to zoom in and out.

    + +
    + + +

    ...that you can time-stretch an audio segment -- stretching or squashing a +sample to a different duration without changing its pitch -- just by +dragging its right edge with the Ctrl key pressed?

    + +
    + + +

    ...that you can add audio to your Rosegarden composition just by dragging an audio file from your file manager and dropping it on the Rosegarden segment canvas? (Make sure you drop it on an audio track!)

    You can also drop audio files from Rosegarden's audio file manager window onto the segment canvas, and from other programs onto the audio file manager.

    + +
    + + +

    ...that you can set the tempo to match the duration of an audio segment if you know it's an exact number of bars or beats long?

    Just select the audio segment and use Composition -> Tempo and Time Signature -> Set Tempo to Audio Segment Duration.

    + +
    diff --git a/docs/en/transpose-by-interval.png b/docs/en/transpose-by-interval.png new file mode 100644 index 0000000..1eb5c5d Binary files /dev/null and b/docs/en/transpose-by-interval.png differ diff --git a/docs/es/index.docbook b/docs/es/index.docbook new file mode 100644 index 0000000..3b15e0d --- /dev/null +++ b/docs/es/index.docbook @@ -0,0 +1,6416 @@ + +Rosegarden"> + MIDI"> + + +]> + + + + + + + + + + + + + + + + + El Manual de Rosegarden + + Chris Cannam + Richard Bown + Guillaume Laurent + Marcos Guglielmetti
    marcospcmusica@yahoo.com.ar +
    + traducci n +
    +
    + + + 2002-2004 + Chris Cannam, Richard Bown, Guillaume Laurent + + + 2004-08-04 + 0.9.9 + + + + + + + + + + &rosegarden; + + + Rosegarden es un secuenciador de audio y &MIDI; y un editor de notación musical. Este manual describe como usarlo. + + + + Rosegarden + secuenciador + MIDI + audio + música + notación + partitura + KDE + + +
    + + + + + introducción + + + Sobre Rosegarden + Rosegardenes un secuenciador de audio y &MIDI; y un editor de notación musical. Rosegarden le permite grabar, armar y componer música en la forma tradicional de partituras o como datos &MIDI;, o archivos de audio tanto importados como grabados de un micrófono, guitarra o cualquier fuente de audio que usted desee. Puede usar Rosegarden para escribir, editar y organizar música para crear una composición, a la cual puede sintetizarla, agregarle efectos, y mezclar para quemar un CD o distribuir en la web. Rosegarden también provee soporte para edición de notación profesional para impresiones de alta calidad. + + Rosegardenestá diseñado para parecer y actuar de manera similar para usuarios experimentados que llegan a Linux de otras plataformas, siendo generalmente accesible y amistoso para nuevos usuarios de software para música. + + + Sobre este Manual + Este manual resume la capacidades de &rosegarden; y provee una referencia para alguno de los conceptos involucrados. Está diseñado para tener sentido tanto leyéndolo en orden o siendo usado como referencia de los conceptos y funciones disponibles en Rosegarden. Si quiere leer un tutorial también, you puede encontrar uno aquí. + + Si llegara a existir algo que no entienda o requiera de ayuda, por favor visite el website de Rosegarden para la lista de Preguntas Frecuentes (FAQ) e instrucciones sobre la lista de correo. + + + + Sobre los Menúes y Atajos Este manual usualmente se refiere a las funciones que puede usar en Rosegarden describiendo donde se encuentran en los menúes. Por ejemplo, la función para agregar una pista nueva al editor principal de pistas es Tracks Add Track . + + En muchos casos, ésta no es la única forma forma de llegar a una función particular. Ebn el caso en particular, ésta misma función se encuentra disponible a través del atajo de teclado Ctrl+T, y también aparece como un ícono en una de las barras de herramientas de la ventana princiapl. Tanto el atajo de teclado como el ícono pueden ser fácilmente aprendidos, puesto que son mostrados en el menú de Rosegarden junto con el nombre de la función. Debe tener presente que , por motivos de referencia en ésta documentación, aunque siempre damos la localización dentro del menú de forma completa, no es necesariamente la mejor o mas usual forma para usar una función, por lo que debe prestar atención a los atajos de teclados e íconos de las barras de herramientas. + + + + Características especiales Éste manual asume que su instalación de Rosegarden soporta todas las características de las que es capaz. Algunas de ellas, incluyendo ciertas muy importantes, son actualmente opcionales al momento de realizar la instalación de Rosegarden, dependiendo en qué otras librerías y códigos de soporte se encuentran disponibles. Por ejemplo, el subsistema completo de audio es compilado sólo si las librerías de JACK se encuentran disponibles; plugins de soporte para sintetizadores dependen de un número de otros módulos; etc. Éstas dependencias están documentadas en el README de Rosegarden y en la documentacíon de configuración. Si encuentra que éste manual se refiere a características no visibles en la versión de Rosegarden que está utilizando, consulte la documentación de configuración o a su distribuidor. + + + + + + + + + + Archivos y Documentos de Rosegarden + &rosegarden; guarda cada configuración en su propio documento, usando su propio formato interno. Cuando guarda un documento, el mismo es guardado en el disco como un archivo con la extensión .rg . &rosegarden; también puede manejar otros formatos estándar. + + + Nuevas composiciones + &rosegarden; inicia con un documento nuevo, conteniendo una composición "vacía" lista para empezar a ser editada. Para colocar algo en su composición, es posible tanto grabar algo o crear algunos segmentos en blanco de música (referidos como "segmentos") que puede llenar usando varias de las facilidades de edición. + Mire Grabación para obtener detalles de cómo grabar música, y mire la sección Editor de Pistas para una descripción de como crear, editar y manejar segmentos de música. + + + + Usando archivos MIDI + Para importar y exportar archivos MIDI, utilice el menú Archivo Importar Importar archivo MIDI y Archivo Exportar Exportar archivo MIDI . + Aunque &rosegarden; puede cargar y guardar archivos en formatos como el MIDI, no guarda datos MIDI internamente. Generalmente debería preferir guardar los archivos en el formato propio de &rosegarden;, ya que &rosegarden; guarda un montón mas de información que sería perdida si se exportara a MIDI. + Cuando un archivo MIDI es cargado, &rosegarden; particiona la música en una pista por pista MIDI o canal en el archivo, setea los mapeos de instrumentos apropiados, e inetnta calcular notación plausible para los datos MIDI de performance. + + + + Mezclando archivos De la misma manera en que es posible cargar o importar archivos, también es posible mezclarlos en el documento actual, agregando los segmentos del archivo a los que se se encuentran ya ahí. + + Para mezclar un archivo, utilice la opción del submenú Archivo Merge en vez de usar la opción Abrir o Importar. + + + + Imprimiendo + Es posible imprimir una composición en el formato de partitura, usando la función Archivo Imprimir . + + Producir una partitura de los datos de la performance es una tarea difícil. Es recomendable usar el editor de notación para emprolijar la partitura antes de imprimir. (Ver también Notación desde datos de performance.) + + &rosegarden; es capaz de producir partituras muy legibles. De todas formas, está diseñado para ser un editor de pantalla y no primariamente un editor de partes. Si quiere producir partituras con verdadera calidad de impresión, se debe considerar el uso de Lilypond junto con &rosegarden;. Lilypond es un software para crear partituras que lee un archivo de texto especializado y produce impresiones de alta calidad. &rosegarden; es capaz de escribir archivos de Lilypond usando la función Archivo Exportar Exportar a Lilypond . + + + + + El editor de Pistas + + Características + La presentación principal de &rosegarden; es similar a la de muchos otros secuenciadores populares. Está basado en una estructura de pistas — la ventana principalmuestra un editor de pistas con una lista de las mismas y sus instrumentos asociados en la izquierda. Es posible manipular y mover bloques de datos (referidos como “segmentos”) en el editor de pistas como así también abrir los segmentos en un editores especializados (notación, matríz, and lista de eventos). + + + + + + + + + El editor de pistas de &rosegarden; mostrando dos segmentos de datos de música. + + + + + + Las pistas pueden ser asignadas a un rango de instrumentos &MIDI;, sintetizadores por plugins o instrumentos de audio. En la figura de arriba se puede ver tres segmentos en el editor de pistas asignados a instrumentos General MIDI. + + + + + + + + + Los botones de pista de &rosegarden; mostrando susetiquetas correspondientes. + + + + + + El área de botones a la izqueirda del canvas de segmentos muestra el número de pista, los estátus de silenciamiento y grabación y la etiqueta de la pista. Puede silenciar o desilenciar una pista cliqueando en el botón con forma de LED azul, y seleccionar una pista en particular para grabacíon cliqueando en el rojo. Para cambiar la etiqueta de la pista, haga doble click en ella. + + + + + + + + + Los botones de pista de &rosegarden; mostrando la asignación de instrumentos. + + + + + + Las etiquetas de pistas son sólo mostradas si la opción del menú Configuraciones Mostrar las Etiquetas de Pistas está activado. De otra forma, como se ve en la figura, se muestra la asignación de instrumentos para cada pista. + + + + Pistas e Instrumentos + Cada pista debe tener un instrumento asignado a ella, para que pueda ser escuchada. Por defecto, las primeras 16 pistas son asignadas a los 16 instrumentos del primer dispositivo MIDI disponible, y las siguientes 16 asignadas a audio. + + Para cambiar la asignación de instrumentos para cada pista, cliquee con el botón derecho en la etiqueta de la pista Un menú emergente aparecerá, en el cuál es posible seleccionar entre todos los instrumentos disponibles. + + + + + + + + + Mneú de instrumentos de &rosegarden; + + + + + + Un instrumento puede ser interpretado como un solo canál en un dispositivo &MIDI;, o como una entrada de audio mono ó estéreo o un plugin de sintetizador. Las pistas que contienen datos de notas deben ser asignados a un instrumento &MIDI; o a uno de un plugin de sintetizador, y aquellas que contengan audio, a un instrumento de audio. Es posible asignar más de una pista para el mismo instrumento, en cuyo caso las múltiples pistas van a usar los mismos sonidos. + Es posible cambiar varias de las propiedades de los instrumentos asociados con una pista usando la caja de Parámetros de Instrumentos. Desde aquí se puede, por ejemplo, setear un instrumento MIDI para utilizar un patch en particular y de ésa manera producir un sonido en particular (piano, cuerdas, etc.). + Vea la sección Estudio para mas información acerca de instrumentos. + + + + + Creando segmentos + Para crear un segmento vacío, de forma de empezar a componer algo nuevo, es necesario utilizar la herramienta lapiz. Cliquee en el lápiz de la barra de herramientas y luego cliquee en el punto donde quiere que empiece su segmento (a la altura correcta para la pista en la que desea que el segmento se encuentre, y a una distancia através de la ventana del editor correspondiente al tiempo que desea) y arrastre hacia la derecha hasta que el segmento tenga el número correcto de barras de longitud. + + Usualmente cada nuevo segmento empieza en una línea de barra y se extiende barra por barra, pero este efecto de ajustar-a-la-grilla puede ser prevenido presionando la tecla Shift mientras se cliquea y arrastra. + + Una vez creado el segmento, puede empezar a editarlo utilizando los ediores dematríz o de notación. Para usar uno de éstos editores, haga doble click en el segmento, o cliquee con el botón derecho y elija el editor que quiere del menú de contexto. + + Si pretende grabar de un dispositivo MIDI o una entrada de audio, no necesita crear un nuevo segmento para grabar en él. Cada granación por separado siempre va en un segmento nuevo, creado automáticamente durante la grabación. + + + + Segmentos de audio + Un segmento de audio contiene o datos de una grabación o de audio sampleado, en vez de datos de eventos-de-nota editables. Rosegarden permite grabar, reproducir, acomodar y dividir segmentos de audio, pero no contiene facilidades de edición de señal de audio. + Para crear un segmento de audio, puede grabar desde una fuente de audio en una pista asignada a un instrumento de audio, o puede trabajar con archivos WAV existentes. Para lograr esto, se utiliza el diálogo de administración de audio (que se puede encontrar en SegmentosManejar Segmentos de Audio). + + + + + + + + El administrador de archivos de audio + + + + + + Es posible arrastrar y soltar archivos de audio desde el explorador de archivos de KDE o desde su escritorio KDE dentro del administrador de archivos de audio, o puede abrirlos usando el menú Archivo. Entonces es posible arrastar y soltarlos en el canvas de pistas de Rosegarden, o usar la función del administrador de archivos de audioAcciónInsertar en la Pista de Audio seleccionada, siempre que la pista seleccionada en la ventana principal esté asignada a un instrumento de audio. Segmentos de audio recién grabados también aparecen en el diálogo del administrador de archivos de audio. + + Detalles de los archivos de audio utilizados con una composición en particular son guardados junto con ésa composición, pero no lo son los archivos de audio propiamente dichos. Debe asegurarse que su documento tenga el path de búsqueda de archivos de audio correcto (vía ComposiciónEditar Propiedades del Documento...Audio) de manera de mantener sus archivos de audio accesibles al mismo tiempo. + + El administrador de audio también muestra la tasa de sampleo y otros detalles para cada archivo de audio, y marca con un asterisco cualquier archivo de audio cuya tasa de sampleo no coincide con la sesión de JACK utilizada en el momento por Rosegarden. Rosegarden resampleará éstos archivos al momento de reproducción usando un resampleador lineal rápido (pero de muy baja calidad). Se recomienda resamplear los archivos utilizando un editor de audio dedicado de manera separada. + + + + + Manipulando segmentos + La ventana principal contiene una selección de "herramientas" para editar segmentos. éstas se esncuentran disponibles desde la barra de herramientas principal: primero seleccione la herramienta que desea de la barra, y luego cliquee y arrastre sobre los segmentos del canvas principal. + + + La herramienta de selección + La "herramienta de selección" (la herramienta flecha) es realmente una multipropósito, puede ser usada para seleccionar, mover, copiar y redimensionar segmentos. + + El uso mas obvio es selección: seleccione un solo segmento cliqueando sobre él con la herramienta de selección, o seleccione varios de ellos manteniendo presionada la tecla Shift, o cliqueando en un área vacía de la ventana y arrastrando un área que cubra dichos segmentos. + + Para mover segmentos con la herramienta de selección, simplemente cliquee y arrastre sobre el segmento. Para crear copias, cliquee y arrastre mientras presiona la tecla Ctrl. Para redimensionar un segmento, cliquee y arrastre en el borde derecho del segmento; y para crear nuevos segmentos, cliquee y arrastre en un área vacía con el botón del medio del ratón. + + La herramienta de selección no reemplaza a las demás herramientas completamente;— a veces se necesita ser mas preciso sobre la operación que se pretende, particularmente cuando se trata de segmentos pequeños. + + + + + Herramientas para Mover y Redimensionar + Para mover un segmento a un punto distinto de comienzo o pista, use la herramienta Mover y cliquee y arrastre el segmento que desea mover. Si mantiene presionada la tecla Ctrl mientras arrastra, el segmento será copiado en vez de movido. + + Para redimensionar un segmento, utilice la herramienta Redimensionar; y cliquee y arrastre en el lado derecho del segmento. + + Para mover y redimensionar de manera mas precisa (posicionamiento fino) se debe mantener presionada la tecla Shift, de ésta manera se evita que el segmento se ajuste a una posición particular de la grilla. + + + + + Herramienta de División + La herramienta de división permite dividir un segmento en dos separados. Para dividir un segmento, seleccione la herramienta de división y cliquee en el segmento que desea dividir. + Por defecto, los segmentos son divididos en la línea de barras mas cercana al cursor, pero ésto puede ser evitado presionando la tecla Shift mientras se separa el segmento. + + + + + Tiempo de medida y compás + + Tempo + + + + + + + + Diálogo de tempo de &rosegarden; + + + + + + + + Tiempo de medida y compás + + + + + + + + El diálogo de tiempo de medida y compás de &rosegarden; + + + + + + + + + + El Transporte + Cuando se reproduce una composición, &rosegarden; muestra un puntero de reproducción através de las pistas de izquierda a derecha, reproduciendo el contenido de los segmentos que atraviesa. La posición del puntero en pantalla es seguida y controlada por una ventana llamada el Transporte. + + Características + + + + + + + + Ventana de Transporte de &rosegarden; + + + + + + Si el Transporte no se encuentra visible, puede activarlo con Configuración Mostrar Transporte . + + El Transporte muestra el tiempo a el cuál ha llegado el puntero de reproducción, mostrado en segundos por defecto. Puede cambiarlo para mostrar tiempo musical (conteo de barras y beats), tiempo musical con un metrónomo visual relampageante, o frames de muestreo de audio, usando el botón que se encuentra mas arriba entre los botones pequeños en la ventana de transporte izquierda. El botón inmediatamente inferior cambia el display de manera de mostrar el tiempo faltante para el final de la composición en vez de mostrar el tiempo transcurrido desde el comienzo. + + Los controles principales del transporte comienzan la ejecución del secuenciador y lo pausan, adelantan el puntero de posición, lo rebobinan, lo paran o permiten saltar hasta el principio o el final de la composición. + + Controles adicionales y un display de eventos &MIDI; se encuentran escondidos en el fondo extensible del transporte, el cuál puede ser mostrado o escondido mediante el botón con forma de flecha en el borde inferior izquierdo del transporte. En ésta porción extra del transporte se puede encontrar también botones para grabación, setear loops, solos de pistas determinadas, encender o apagar el metrónomo, y silenciar dispositivos MIDI (botón de pánico). + + + + Grabando + Para grabar un nuevo segmento en una pista, primero asegúrese que la pista correcta haya sido seleccionada para grabar seleccionando el botón estilo LED rojo en la etiqueta de la pista, y luego use el control de grabación del Tranporte. Esto hace que se inicien tanto el transporte (por lo que se reproduce la composición existente) como la grabación en la pista apropiada. Por el momento solo una pista por vez puede estar activa para grabar. + Alternativamente se puede utilizar la grabación de pinchado para separar los actos de comenzar el transporte y entrar en modo de grabación. Las grabaciones por pinchado pueden ser activadas y desactivadas con la barra espaciadora. Puede presionarla mientras se reproduce una composición para cambiar instantáneamente entre reproducción y grabación sin tener que parar el transporte, o puede utilizarla para armar para grabación cuando el transporte se encuentra detenido, de manera que la reproducción subsecuente sea de hecho una grabación. (Esto último es práctico cuando se utiliza un transporte externo.) + Si la pista a grabar está asignada a un instrumento MIDI, la grabación va a llevarse a cabo para todos los intrumentos en Administrador de dispositivos MIDI. + Si la pista a grabar está asignada a un instrumento de audio, la grabación será desde la entrada seleccionada en ese momento en la caja de parámetros de instrumentos. Éste puede ser una entrada de audio externa o un master o submaster de audio (para realizar mezclas). Si se tratara de una entrada externa, será por defecto grabada de la primer entrada física de sonido disponible de la placa de audio. Quizás prefiera usar una herramienta de conección para JACK para conectar alguna otra aplicación JACK a la entrada de audio. + + + + Transportes externos + Rosegarden soporta el mecanismo de tranporte JACK para sincronizar su transporte con otras aplicaciones JACK. Para activarlo, vaya a Configuraciones Configurar Rosegarden... y en la página del Secuenciador, tab Sincronización, seleccione "Sincronizar" del menú de modo de transporte JACK. + + Cuando el transporte JACK se encuentra en uso, todas las aplicaciones subscriptas a él comparten un control de transporte común, y es posible empezar, parar y mover el transporte para cualquiera de ellas. + + Muchas aplicaciones de audio para Linux soportan el transporte JACK: consulte la documentación de las aplicaciones para mas detalles. + + + + + El Estudio + + + Dispositivos, instrumentos y conecciones + + Rosegarden utiliza el término Estudio para referirse a todo lo que conoce sobre los sistemas de sonido de su computadora. Esto puede incluir hardware &MIDI; y de audio, y otros softwares de audio, e incluye información sobre conecciones, configuraciones, parches &MIDI; y demás. El Estudio está dentro de cada composición que cree con Rosegarden. + + Tres piezas de terminología son esenciales aquí: + + + Dispositivo + + Un dispositivo, a consideración de Rosegarden, es sencillamente algo que es capaz de producir sonidos. Ésto puede ser un dispositivo de audio o MIDI. Los dispositivos MIDI no corresponden necesariamente a un puerto MIDI físico: son sólo cosas con nombres a los que es posible referirse, y de los que se espera que funcionen de cierta manera. Información de configuración como mapas de parches MIDI pueden ser adozadas a los dispositivos. + + + + + Instrumento + + Cada dispositivo tiene un número de instrumentos, para los que se asume que cada uno de los cuales tienen un sonido particular. éstas son las cosas a las que se les puede asignar pistas con el fin de elegir que sonido ejecutar. Por defecto, un dispositivo contiene 16 instrumentos, creados parra usted al inicio. Si el dispositivo fuera MIDI, entonces éstos seran inicializados a uno de los 16 canales MIDI. El instrumento es donde se configuran todas las propiedades de una voz en particular, como seteos de programa, reverberación, volumen, etc. + + + + + Conexión + + Mientras que un dispositivo MIDI es simplemente un nombre y una colección de información de configuración, la conexión especifica qué puerto MIDI está físicamente vinculado. Esto puede ser configurado en Composición - Estudio - Gestionar Dispositivos MIDI. (El Audio y los dispositivos de plugins sintéticos no tienen el mismo tipo de conexiones.) + + + + + + Por ejemplo, imagina una configuración consistente en una PC con dos puertos MIDI físicos, uno de los cuales tiene un sintetizador externo conectado a éste. Aquí normalmente configurarías Rosegarden para que tuviera un dispositivo MIDI, correspondiente al sintetizador. Podrías luego configurar este dispositivo con el nombre y datos de Banco, Programa y Controladores correspondiente, y luego especificar una conexión para éste que corresponda al puerto pertinente en tu placa de sonido. Cada uno de los 16 instrumentos predeterminados en el dispositivo pueden luego ser configurados con un programa satisfactorio, y luego les asignarías pistas. + + En la práctica, Rosegarden creará de forma predeterminada un dispositivo por cada una de las conexiones disponibles durante el inicio. Entonces, en el ejemplo anterior, serán creados dos dispositivos MIDI de manera predeterminada incluso si necesitaras sólo uno. Generalmente renombrarías y aplicarías Datos de Banco, Programa y Controladores al primer dispositivo, y borrarías o simplemente no usarías el segundo. Recuerda que no hay un modo actualmente en que Rosegarden pueda saber qué sintetizadores conectaste a los puertos MIDI de tu computadora: por ésta razón, los dispositivos creados durante el inicio intentan ser solamente un set predeterminado, y depende de tí asegurarte de que los dispositivos configurados tengan que ver con los que realmente estás usando. + + Una vez configurada, la configuración del Estudio es guardada con cada archivo de formato Rosegarden que grabes posteriormente. + + + + + Gestionando dispositivos MIDI + + + + + + + + + Gestionar Dispositivos MIDI + + + + + + El diálogo Gestionar Dispositivos MIDI te muestra los dispositivos MIDI disponibles para tí en este momento y dónde están conectados. Para llegar a éste diálogo, usa Composición Estudio Gestionar Dispositivos MIDI . + + Como se describe en la sección Dispositivos, Instrumentos y Conexiones, Rosegarden, de forma predeterminada, trata de proveer un plausible set de dispositivos para tí en el inicio, y de hacer conexiones razonables para esos dispositivos. Pero la configuración predeterminada puede no ser siempre satisfactoria y, por eso mismo, éste diálogo te permite renombrar los dispositivos y modificar sus conexiones y dirección de reproducción y grabación. + + Cada uno de los dispositivos de Reproducción listados aquí provee un destino o target para que las pistas MIDI le puedan hablar: si agregas un nuevo dispositivo de Reproducción, tendrás 16 nuevos instrumentos en este dispositivo al cual le puedes asignar pistas. Si luego asignas una conexión para ese dispositivo, las pistas asignadas a él reproducirán el canal apropiado (dependiendo del instrumento) de cualquier sintetizador MIDI conectado a esa conexión. + + Los dispositivos de grabación listados aquí representan posibles fuentes para grabar MIDI. Puedes converir en actual uno o más de ellos (entonces Rosegarden los escuchará cuando graba) usando las casillas de chequeo en cada línea, como se muestra en éste diálogo + + + + + Administrando bancos y programas para dispositivos MIDI + + + + + + + + + El Editor de bancos y programas MIDI + + + + + + Recuerda que cada dispositivo MIDI contienen un número de instrumentos, y que puedes asignar pistas para elegir instrumentos. En términos MIDI, cada instrumento corresponde a un sólo canal en tu sintetizador MIDI. Puedes elegir cuál de las voces disponibles (sonidos) en tu sintetizador usa cada instrumento, pero para hacer ésto, debes dejar que Rosegarden sepa los nombres para todas las voces disponibles. + + Éste diálogo te permite adjuntar bancos de programas (nombres de voces) a tus dispositivos MIDI, de ese modo permite a cada instrumento en un dispositivo dado ser configurado para usar una de esas voces en la ventana Parámetros de Instrumento. + + El modo usual para configurar nombres de programas para un dispositivo consiste simplemente en importarlo desde alguno de los archivos de dispositivo dados (".rgd"). Para hacer ésto, selecciona un dispositivo en la lista en la izquierda del diálogo, luego haz click en el botón Importar debajo de la lista, y elige el archivo .rgd correspondiente a tu sintetizador. + + Si no hay un archivo .rgd actualmente para tu sintetizador, puedes usar éste diálogo para crear un nuevo banco. Para hacer ésto deberás encontrar el mapa de programa en tu Esquema de Implementación MIDI de tu Sintetizador e ingresar todos los nombres a mano: puedes luego exportarlo a un archivo .rgd para compartir con otros usuarios de Rosegarden. + + + SoundFonts(fuentes de sonido) + + Si sucede que estás usando un sintetizador por software o un sintetizador de placa de sonido que usa archivos SoundFont (.sf2), puedes simplemente cargar los nombres de programa correctos directamente desde tu archivo .sf2 dentro de éste diálogo. Sólo elige Importar normalmente, y luego elige el archivo .sf2 que estás usando, en lugar de un archivo .rgd. + + Nota que el Estudio sólo maneja información acerca de los dispositivos MIDI existentes paraq Rosegarden, actualmente no maneja tareas como por ejemplo cargar un SoundFont en tu placa de sonido en un primer momento. Si quieres asegurarte que un SoundFont fue cargado en tu placa de sonido cuando Rosegarden inicia, deberías usar la opción especial "Cargar Fuente de Sonidos en la tarjeta SoundBlaster al inicio" + + + + Variaciones + + Algunos dispositivos MIDI (por ejemplo, esos de Roland) organizan sus nombres de programa usando un esquema conocido como "variaciones". Para esos dispositivos, generalmente querrás seleccionar un programa primeramente seleccionado el nombre de programa básico —, como por ejemplo un piano — y luego selecciona uno del set de variaciones en ese programa — como por ejemplo, piano eléctrico. Ésto contrasta con los sintetizadores basados en General MIDI, que organizan sus programas dentro de bancos y esperan que tú elijas un banco en primer lugar, y luego un programa para ese banco. + + Rosegarden puede soportar dispositivos que usan variaciones, pero todavía tiene que ingresar los nombres de programas en un formato de banco. Internamente, los dispositivos que usan variaciones aún usan selección de controladores por banco MIDI para elegir entre las variaciones; debes encontrar en la documentación de tu sintetizador si tu dispositivo usa selección de banco LSB o MSB para elegir variaciones, y qué número de banco corresponde a qué variación. Puedes luego ingresar los bancos normalmente, y usar "Mostrar lista de Variaciones basada en MSB/LSB" + + + + Mapeo de programas en &MIDI; importar + Cuando importas un archivo &MIDI; dentro de una composición, &rosegarden; usa la configuración estudio existente para determinar cómo mapear los programas &MIDI; dentro de los instrumentos de &rosegarden;. Lo que se pretende es asegurarse de que cada programa &MIDI; quede mapeado a un instrumento que realmente exista en tu estudio (y que esté conectado tu PC), así todas las pistas &MIDI; pueden ser escuchadas. Los cambios de programas &MIDI; y los eventos de selección de bancos encontrados en el archivo importado son usados mientras se importa, pero como un ayuda para ayudar a encontrar el instrumento apropiado para cada pista &MIDI; desde el set de instrumentos en tu estudio. Así, por ejemplo, si tu estudio está actualmente configurado para contener solamente instrumentos GM, y tú importas un archivo &MIDI; con cambios de programa GS dentro de éste, &rosegarden; remapeará los bancos GS de vuelta dentro de GM porque son todos los que conoce que tú tienes al momento de importar el archivo. Rosegarden no recuerda los números de programas GS originales. Ésto significa que tú deberías siempre asegurarte que tu estudio esté correctamente configurado para los dispositivos que posees actualmente, antes de importar el archivo &MIDI;. De otra manera, los datos de programas en el archivo &MIDI; se perderán. + + + + + Direccionamiento de Audio + Cualquier pista de Rosegarden asignada a un instrumento de audio o synth plugin se convierte en parte de la arquitectura de direccionamiento de audio de Rosegarden. Hay 16 instrumentos de audio y 16 instrumentos synth plugin, y cada uno de ellos tiene un set de parámetros ajustables incluyendo nivel del fader (volumen), paneo, efectos, etc. Éstos son configurables generalmente en el diálogo de Parámetros de Segmento o en Mezclador de audio. Cada instrumento de audio también tiene una conexión de entrada, y ambos instrumentos audio y synth plugin tienen una conexión de salida. + + Una conexión de entrada de un instrumento define de dónde Rosegarden leerá datos de audio mientras graba en este instrumento. La configuración más usual sería desde una de las conexiones de entrada externas de Rosegarden, cuyo número es configurable en el Mezclador de Audio. Ésto corresponde a los puertos de audio JACK expuestos por Rosegarden, en los cuales puedes conectar salidas desde cualquier otra aplicación de audio JACK o puertos de captura de placa de sonido usando una aplicación de direccionamiento externo como QJackCtl. Puedes también configurar una entrada de un instrumento de audio hacia la salida de una de las salidas de submasters o master incorporadas en rosegarden para realizar mezclas. + Una conexión de salida de instrumento define dónde va el audio cuando se reproduce. De forma predeterminada los instrumentos envían su audio hacia la salida de master de Rosegarden, que es otro par de puertos externos de JACK que pueden ser conectados usando el mismdo direccionador externo de JACK (qjackctl). De todos modos, Rosegarden también soporta hasta ocho buses de submaster internos, hacia los cuales puedes enviar salidas de instrumentos para agruparlos en categorías específicas. Puedes controlar el número de direccionamiento de éstos en el Mezclador de Audio. + Actualmente Rosegarden soporta efectos usando un set de slots insert pre-fader para cada instrumento de audio. No puedes aún asignar efectos a los busses de submaster, y Rosegrden no soporta aún enviar efectos, aunque puedes obtener resultados similares usando la arquitectura de efectos externos y mezcla de JACK. + Algunos detalles más acerca de la configuración del direccionamiento de audio, mezcla y efectos son discutidos en las secciones Mezclador de Audio, Parámetros de Instrumento y Plugins de Audio. + + + + El Mezclador de Audio + + + + + + + + El Mezclador de Audio de &rosegarden; + + + + + + La ventana de Mezclador de Audio de Rosegarden, a la cual se llega mediante Composición Estudio MEzclador de Audio, se parece a un mezclador de audio físico (por hardware) y provee un modo de ver y cambiar el estado de un número de instrumentos de audio de una vez. Contiene muchos de los mismos controles tal como se encuentran en audio y synth plugin Parámetros de Instrumento, siendo los más importantes un display de volumen de reproducción y una perilla de volumen (fader) para cada instrumento de audio y synth plugin, como también controles de direccionamiento, paneo, mono/stereo y slots de plugins de efectos. + La ventana de mezclador de audio es también el lugar en el cual ves y controlas el nivel de volumen de audio de salida del master (bien sobre la derecha en la imagen de arriba), tanto como el nivel de grabación (a la izquierda del fader del master) y los niveles de salida del submaster. + El menu de Preferencias del mezclador de audio es particularmente relevante. Además de controlar lo que será mostrado en la ventana del mezclador, éste menú también contiene la configuración del Direccionamiento de Audio para el número de entradas de grabación stereo disponibles y el número de sobmasters. Estas son configuraciones de Estudio que son grabadas con tu archivo de formato Rosegarden. + + Nota que si actualmente no estás usando ningún submaster (por ejemplo si no hay instrumentos configurados para direccionar sus salidas hacia un submaster) puedes ver una pequeña mejora en la performance si configuras el número de submaster explícitamente a Ninguno, en lugar de mantener submasters en desuso en la configuración. + + + + El Mezclador MIDI + + + + + + + + El Mezclador MIDI de &rosegarden; + + + + + AL ventana de Mezclador MIDI de Rosegarden, que se alcanza desde Composición Estudio Mezclador MIDI, provee una forma de ver y editar los Valores de parámetros de instrumento para un número de instumentos MIDI de una sola vez. + + La ventana está organizada usando un panel de solapas. A lo largo de la parte iferior verás una solapa para cada dispositivo de reproducción MIDI en tu configuración de estudio. Cuando seleccionas una solapa de dispositivo, el resto de la ventana se actualizará para mostrar los controles para los 16 instrumentos de ese dispositivo. + + Los controles mostrados para cada instrumento son esos que han sido configurados en el administrador de control de parámetros, así como el volumen (correspondiente al controlador de cambio de volumen MIDI, no a la velocidad o MIDI velocity o niveles en dB de audio) y un indicador de nivel aproximado de salida. + + + + Plugins de Audio + Un plugin (o extensión) de audio es una pieza de software, separada de Rosegarden, que Rosegarden puede cargar y usar con el objetivo de cumplir una tarea particular de procesamiento de audio. Éstas pueden ser ampliamente divididas en plugins de efectos y synth plugins (extensiones de sintetizador). Los plugins de efectos toman una entrada de audio y la manipulan para producir una salida de audio diferente; los synth plugins toman eventos del tipo MIDI como entrada y los convierten salida de audio. Rosegarden usa el API standard para Linux LADSPA para efectos y el API plugin DSSI para los sintetizadores, permitiendo el uso de una gran candidad de plugins de código abierto, que están disponibles gracias al trabajo de muchos desarrolladores. + El uso de plugins tiene un costo en términos de tiempo de CPU, porque el procesamiento de audio en tiempo real usualmente toma una significante cantidad de trabajo incluso en un moderno CPU. + + Extensiones de Efectos (plugins de efectos) Un plugin de efectos es algo que podés usar para modificar una señal de audio de un modo controlable. Los ejemplos incluyen reverb, delay, comprensión dinámica y así. + Cada instrumento de audio o synth-plugin en Rosegarden tiene cinco slots de efectos asociados. De forma predeterminada están vacíos, pero puedes cargar plugins dentro de ellos para encadenar hasta cinco efectos dentro de la señal de audio antes de que ésta vaya al procesamiento de nivel de fader (volumen) y paneo. + + Para cargar un plugin en un slot (o casilla), cliquea su botón en Parámetros de Instrumento: + + + + + + + + Botones de Slots de Plugins + + + + + (Estos botones están disponibles de forma opcional en la ventana del mezclador de audio.) + Haciendo clic en un botón de un plugin desplegarás el diálogo del mismo. Esto te muestra las categorías de efectos disponibles en el primer menú; selecciona uno, y luego puedes seleccionar tu plugin en el segundo menú. + + + + + + + + Un diálogo de Plugin de &rosegarden; + + + + + + Debajo de los menús, el diálogo te da un número variante de controladores rotatorios mostrando todos los parámetros modificables para el plugin que has seleccionado. Para cambiar el valor, sólo cliquea en una perilla y arrastra el mouse hacia arriba, abajo, izquierda o derecha. (Arriba o a la derecha para elevar el valor, abajo o a la izquierda para bajarlo). Tabién puedes girar la rueda del mouse para cambiar ese valor, o hacer clic con el botón del medio del mouse para resetearla a si valor inicial. + + También es posible copiar un plugin con su configuración actual dentro de otro slot, para usar las mismas configuraciones de plugins con más de un instrumento, o basar una configuración de plugin en otra. Sólo cliquea en el botón Copy cuando tengas el plugins configurado del modo en tú lo quieres tener, y luego abre otro diálogo de slot de plugin y cliquea en Pegar. + + Finalmente, puedes checkear la casilla Desviación para que el plugin deje de procesar temporariamente, y a la vez retiene su configuración. + + + Extensiones de Síntesis o Synth Plugins + Las extensiones de síntesis o Synth Plugins pueden utilizarse en lugar de dispositivos MIDI basados en hardware o software para generar sonidos desde tus segmentos de eventos de notas. + + Usar una extensión de síntesis (synth plugin) le da un mejor control que usar un dispositivo MIDI externo, debido a que Rosegarden cargara las extensiones correspondientes y usara las configuraciones correctas la próxima vez que utilice el mismo archivo. Las extensiones también pueden ofrecer una mejor resolución temporal que un dispositivo MIDI externo; y los instrumentos sintetizados tienen la ventaja de ser ruteables como instrumentos de audio, lo que significa que usted puede agregar efectos por arriba de ellos + + Para utilizar una extensión de síntesis (synth plugin), primero asigne una pista a un instrumento y luego cargue una extensión de síntesis (synth plugin) cliqueando en el botón de mas arriba en el cuadro de dialogo parámetros de instrumento: + + + + + + + + + Botones de Extensiones de Síntesis + + + + + + Esto abrirá la misma caja de dialogo que la mostrada anteriormente para los efectos, pero con una lista de sintetizadores. Una vez mas vera el conjunto particular de parámetros rotativos para el sintetizador seleccionado. Los sintetizadores también pueden tener "programs", seleccionables desde un menú --este menú solo aparecerá si ha elegido un sintetizador que los soporta. Cuando seleccione y configure una extensión para un instrumento, cualquier dato MIDI o pistas asignadas a ese instrumento deberían reproducirse a través de ese sintetizador y debería recibir datos MIDI durante el monitoreo o grabación. + + + + Ventanas del editor nativo de extensiones + + La mayoría de las extensiones pueden ser controladas completamente usando los controles rotativos en el cuadro de dialogo de extensión de Rosegarden. Sin embargo, algunas de ellas (generalmente sintetizadores) también tienen su propia ventana de edición que puede ser activada o no desde Rosegarden y que puede proveer controles mas completos u organizados. + + Cuando se selecciona una extensión que tiene su propia ventana de edición, el botón en la esquina inferior izquierda del cuadro de dialogo llamada "Editor" se activara: + + + + + + + + + Un botón de edición de la extensión + + + + + + (para los sintetizadores, existe un botón similar en el cuadro de dialogo parámetros de instrumento.) Al cliquear este botón aparece la ventana de edición del sintetizador. Cualquier cambio que haga en esta ventana de edición también debería verse reflejado en el cuadro de dialogo de la extensión de Rosegarden, si esta visible, y por supuesto debería guardarse normalmente en su archivo de Rosegarden. + + + + + Metrónomos + Rosegarden tiene dos metrónomos incorporados, uno para usar durante la grabación y otro que puede encenderse durante la reproducción normal. Trabajan enviando notas a un instrumento MIDI y ambos metrónomos usan la misma información de instrumento, tono y velocidad. + + + + + + + + + Configuración del metrónomo de &rosegarden;' + + + + + Para configurar los metrónomos, use Composition Studio Manage Metronome para abrir el cuadro de dialogo metrónomo. Aquí puede elegir un instrumento MIDI para el metrónomo y elegir la resolución del mismo (si es un tick por beat, uno por subdivisión de beat o solo uno por barra), el tono y la velocidad. Propiedades como la voz actual utilizada por el sintetizador MIDI para el tick del metrónomo dependen del instrumento elegido, así como la voz utilizada por una pista MIDI depende del instrumento asignado a esa pista. Puede configurar el instrumento asignándole una pista en la ventana principal y eligiendo el programa correcto en los parámetros del instrumento. + + Los metrónomos de grabación y reproducción pueden ser activados desde la ventana Transporte, usando el botón metrónomo. Este botón controla el metrónomo de grabación cuando hay una grabación armada o en progreso y el metrónomo de reproducción en los demás casos. Por omisión el metrónomo de grabación esta activado, no así el de reproducción. + + Rosegarden también tiene un "visual metronome": la ventana Transporte puede parpadear para marcar cada beat. Vea la sección Transporte para mas detalles. + + + + Filtros MIDI + + + + + + + + El cuadro de dialogo Filtro MIDI + + + + + + Usando este cuadro de dialogo puede decidir que eventos MIDI ignorara o aceptara Rosegarden, ya sea al reenviar eventos a través de MIDI THRU o simplemente al grabarlos. Utilice las casillas de verificación para decirle a Rosegarden que tipo de eventos MIDI no quiere reenviar o grabar. + + + + + + + + Parámetros de Segmento e Instrumento + + + El Cuadro de Dialogo Parámetro de Segmento + + + + + + + + + el cuadro de dialogo parámetro de segmento de &rosegarden; + + + + + + El cuadro de dialogo Parámetro de Segmento se ubica a la izquierda de la ventana principal de Rosegarden. (Si no puede verla, intente usar Settings Show Segment and Instrument Parameters .) Esto permite modificar algunos aspectos de los segmentos elegidos.Si se selecciona un único segmento, sus parámetros serán mostrados en el cuadro de dialogo y pueden ser editados allí mismo. Si se eligen múltiples segmentos, el cuadro de dialogo solo mostrara los valores actuales que son iguales para todos los segmentos - pero todavía puede editarlos y sus cambios se aplicaran a toda la selección. + + Etiqueta + + Muestra la etiqueta del segmento elegido (o segmentos, si todos tienen la misma etiqueta). Cliquee el botón "..." para editarla. + + + + + Repetir + + Activa o desactiva la repetición de los segmentos elegidos. Un segmento se repetirá hasta el comienzo del segmento siguiente de la misma pista, o hasta el final de la composición si no es seguido por ningún otro segmento. + + Las partes repetidas de un segmento repetido se muestran en el cuadro principal en un color mas tenue que el segmento original. Puede transformarlo en copias reales editables del segmento original ya sea usando Segments Turn Repeats into Copies , o simplemente haciendo doble click en los bloques individuales repetidos. + + + + + Cuantificar + + Muestra la configuración de cuantificación para los segmentos elegidos. Puede cambiar esto para cuantificar rápidamente los comienzos de todas las notas. Para una cuantificación mas avanzada, utilice Segments Quantize... . Vea Cuantificación para mas detalles. + + + + + Transponer + + Muestra la transposición (en semitonos) actualmente aplicada a los segmentos elegidos. Esta transposición es aplicada cuando el segmento es reproducido y no se muestra en las notas de los editores de matriz, notación o eventos. Puede utilizar esto para cambiar rápidamente el tono de una parte o toda la composición. + + + + + Retardo + + Muestra el retardo actualmente en efecto en los segmentos seleccionados. Puede fijar un retardo aquí para provocar que un segmento completo se reproduzca mas tarde que lo previsto. Este retardo es aplicado en la reproducción del segmento y no se muestra en las notas de los editores de matriz, notación o eventos. + Puede fijar un retardo ya sea en tiempo musical (eligiendo la duración de una nota en el menú desplegable), en cuyo caso el retardo exacto dependerá del tempo; o en tiempo real (eligiendo una duración en milisegundos en el menú desplegable). + + + + + Color + + Muestra el color utilizado para mostrar los segmentos seleccionados. Puede elegir otro color en el menú desplegable, o elegir la opción "Add New Colour" si desea un color que no esta en el menú. + También puede administrar y renombrar colores usando Composition Edit Document Properties... (luego elija la página Color en el cuadro de dialogo propiedades de documento). La paleta de colores modificada se guardara con la composición en el archivo de Rosegarden. + + + + + Administrador de color de &rosegarden;' + + + + + + + + + + + + + El Cuadro de Dialogo Parámetro de Instrumento + El cuadro de dialogo Parámetro de Instrumento se encuentra en la esquina inferior izquierda de la ventana principal de Rosegarden, debajo de Cuadro de dialogo Parámetro de Segmento. (Si no puede verla, pruebe usando Settings Show Segment and Instrument Parameters .) + + Le muestra que instrumento esta asignado a la pista actual y contiene todos los controles editables para ese instrumento. Recuerde que debido a que se puede asignar cualquier cantidad de pistas al mismo instrumento, la configuración de este cuadro de dialogo puede afectar a mas de una pista a la vez. + + La disposición y los contenidos del cuadro de dialogo parámetro de instrumento depende del tipo de instrumento: MIDI, audio o sintetizador. + + + Parámetros de Instrumento MIDI + + + + + + + + cuadro de dialogo parámetro de instrumento de &rosegarden; para un instrumento MIDI + + + + + Cuando selecciona una pista asignada a un instrumento MIDI, el cuadro de dialogo parámetro de instrumento muestra los parámetros MIDI + En la parte superior, este cuadro de dialogo muestra el nombre del instrumento y la conexión que esta utilizando el dispositivo. + Debajo, puede ver y editar el numero de canal MIDI y la configuración bank and program que deben ser enviadas al instrumento al comienzo de la reproducción (incluyendo un "percussion" toggle que controla cuando se deben ofrecer solo programas de percusión en estas configuraciones). + + Finalmente este cuadro de dialogo le muestra los controladores disponibles para este dispositivo (aquellos para un dispositivo General MIDI son mostrados arriba). Cualquier ajuste que haga aquí sera enviado al canal del instrumento al comienzo de la reproducción. + + + + Parámetros de Instrumento de Audio + + + + + + + + cuadro de dialogo parámetro de instrumento de &rosegarden;' para un instrumento de audio + + + + + Cuando selecciona una pista de audio, el cuadro de dialogo parámetro de instrumento muestra los parámetros de audio. + El cuadro de dialogo tiene dos atenuadores, uno con contorno azul para el nivel de reproducción y otro con contorno rojo para el nivel de grabación de este instrumento. Entre ellos hay un medidor de nivel de reproducción. + Los dos menús en la parte superior se usan para seleccionar el ruteo de entrada y salida de audio para este instrumento. Debajo de ellos puede seleccionar si el instrumento es mono o estéreo y el ajuste panorámico de la posición en el campo estéreo. (Los instrumentos de audio son siempre estéreo, debido a que el ajuste panorámico siempre se aplica. Pero si cambia el instrumento a mono, reducirá cualquier salida de datos o efectos a mono antes de aplicar la panorámica.) + La columna de cinco botones abajo a la izquierda son las ranuras de efectos. Haga click en ellas para seleccionar y activar efectos para este instrumento y para controlarlos usando el editor de extensiones. Estos son efectos de inserción, aplicados en orden de abajo hacia arriba después del atenuador y la panorámica. + + + + Parámetros de Sintetizador + + + + + + + + el cuadro de dialogo parámetro de instrumento de &rosegarden; para un sintetizador + + + + + Cuando selecciona una pista asignada a un sintetizador, el cuadro de dialogo parámetro de instrumento muestra sus parámetros. Notara que si bien una pista de sintetizador usa segmentos con datos MIDI, en términos de control y ruteo se comporta como una pista de audio. + El control mas importante aquí es el botón arriba a la izquierda (el que dice Xsynth en la figura de arriba) que muestra el nombre del sintetizador en uso por este instrumento. Haga click allí para elegir un sintetizador en particular y controlarlo en el editor de extensiones estándar de Rosegarden. Una vez que eligió la extensión, debería poder cliquear el botón Editor para abrir un editor para esa extensión (si tiene uno). + Los controles restantes son iguales a los de los instrumentos de audio: el atenuador, el nivel de reproducción, el ruteo de salida, los ajustes mono/estereo y panorámicos así como las ranuras de efectos son exactamente iguales. + + + + + + + Cuantificación + "Quantization" es el proceso de reposicionar notas y otros eventos de manera que comiencen o terminen en divisiones rítmicas exactas. Se utiliza tradicionalmente para transformar una ejecución aproximada en una precisa pero de sonido mecánico - ya sea porque se busca precisión o para hacer las notas mas claras en la notación. + + Para cuantificación general, utilice Segments Quantize en la ventana principal o Adjust Quantize en los editores de matriz o notación. Esto le muestra un cuadro de dialogo en donde puede elegir los parámetros precisos de cuantificación que necesita, que luego se aplican a todos los segmentos o notas. (También puede abrir rápidamente este cuadro de dialogo presionando la tecla "=".) + + + + + + + + + Cuadro de diálogo de cuantificación de &rosegarden; + + + + + + El cuadro de dialogo de cuantificación ofrece una selección de cuantificadores, cada uno con su propio conjunto de parámetros. Los cuantificadores disponibles son: + + + + Cuantizador de Grilla + + El cuantizador de grilla mueve los tiempos de inicio de las notas haciendo que èstos inicien en el punto más cercano de la grilla (definido por varios parámetros del cuantizador). Aquellas notas que inicialmente varían en el inicio, serán alineadas por el cuantizador, logrando un resultado más preciso y mecánico + + + + + Cuantizador de ligados + + EL cuantizador de ligados funciona como una simple cuantización por grilla, pero además ajusta la duración de las notas y remueve los silencios o cortes entre ellas extendiendo cada nota hasta el comienzo de la siguiente. También puede obtener este efecto de ligado sin usar la cuantización de grilla usando la función Adjust Quantize Legato en el editor de matriz + + + + + Cuantizador de notación heurística + + El cuantizador de notación heurística intenta ajustar los tiempos de inicio y duración de las notas para producir una notación leíble. Ver Notación desde datos de ejecución para una descripción de este cuantizador y sus usos. + + + + + + El cuanizador de grilla tiene los siguientes parámetros: + + + + Unidad base de grilla + + Esta es la medida de la grilla usada para la cuantización. + + + + + Ritmo + + Este es un porcentaje de la figura la cual ajusta el grado de cuantización de los tiempos "late". + Si se setea en Ninguno (por defecto), la cuantización será siempre espaciada en la grilla de acuerdo a la unidad base de grilla + Si se setea al 100%, cada segunda línea en la grilla será ubicada a dos tercios de la distancia entre la previa y las siguientes, en vez de sólo la mitad. Esto dará por resultado que las notas serán cuantizadas a la primera y tercera figura de un tresillo + Otros seteos producirán variaciones proporcionales de grado de ritmo. También es posible setear este parámetro a figuras negativas (para que algunos tiempos comiencen antes) o para figuras mayores que 100%. + + + + + Suma iterativa + + El comportamiento por defecto de el cuantizador de grilla es mover cada nota exactamente sobre la línea de la grilla más cercana. Pero si se configura la suma iterativa a algo menos que el 100% (el "Cuantización completa" por defecto), cad nota será corrida el porcentage propicio de la distancia a su línea más cercana, resultando un cercano-pero-no-del todo efecto de cuantización + Este cuantizador debe ser aplicado repetidamente para ir probando gradualmente incrementos en el grado de cuantización, de allí en nombre "iterativo". Usando Adjust Quantize Repeat Last Quantize en el editor de Matriz se logra el mismo resultado + + + + + Duración de cuantización además de tiempos de inicio + + Si esta opción está habilitada, el cuantizador cuantizará las notas' tiempo de finalización a la misma grilla que los tiempos de inicio + + + + + El diálogo de cuantización tiene además una sección Avanzada conteniendo opciones adicionales para cuantización de notas. + + Otra simple manera de aplicar una cuantización de grilla es hacerlo en la ventana principal, usando el Quantize menú en la Caja de Parámetros de Secciones. Si se seleccionan algunas secciones y se cambia el valor mostrado en el menú, la selección entera será automáticamente cualtizada a la resolución mostrada en el menú + + Finalmente, Hay también un control de cuantización en la vista de matriz. + + + + + El editor de matriz + El editor de matriz de &rosegarden; permite ver y editar música de una forma simple y lógica: cada nota es representada por un bloque en una grilla, a una altura correspondiente con el tono. + + + + + + + + El editor de matriz de &rosegarden; + + + cada ventana del editor de matriz muestra un sólo segmento o sección. Para editar alguna de ellas, simplemente se hace un clic derecho en el cuadro principal y se selecciona el editor de matriz desde el menú. De otra manera, se puede configurar Rosegarden para que el editor de matriz se abra por defecto al hacer doble clic sobre alguna sección. + + + Los controles de Grilla y Cuantización + La vista de matriz contiene los menúes de Grilla y Cuantización en su barra de herramientas principal. + El menú de Grilla controla el tamaño de la grilla visible en segundo plano de la vista de matriz, así como también la resolución del tiempo usada cuando se ingresan y se mueven notas. Luego que se setea a un tiempo particular, la inserción común de notas y las operaciones de copiado y pegado se acomodarán automáticamente a esos espacios de tiempo. Se puede obviar este efecto temporariamente manteniendo apretada la tecla Shift durante la edición, o se puede desabilitar poniendo el menú de Grilla en Ninguno. + El menú de Cuantización trabaja de manera diferente. En lugar de controlar el comportamiento de otras herramientas de edición, interpreta una acción. Cuando se cambia el valor en este menú, las notas seleccionadas -- o el segmento entero si niguna es seleccionada -- inmediatamente será cuantizada usando el cuantizador de grilla de la resolución elegida. + El menú de Cuantización también muestra continuamente a qué resolución está cuantizado el segmento actual. Por ejemplo, si se seleeciona un grupo de notas que empiezan en negras consecutivas, el menú de Cuantización se actualizará y mostrará 1/4, por ser la resolución más común resultante de la actual selección. + + + + Insertando notas + La manera más simple de insertar una nota en la vista de matriz es usando el mouse. Para hacerlo, primero se selecciona la herramienta lápiz en la barra de herramientas, y luego se cliquea y arrastra en el editor de matriz. La nota será ingresada al tiempo y la altura correspondiente a lo que se ha cliqueado, y la duración de la nota dependerá de la distancia que se arrastre antes de soltar el botón del mouse. + + Por defecto, el tiempo y la duración están relacionadas con una unidad particular de la unidad de grilla, de acuerdo a la configuración de Grilla en menú Ver o la barra de herramientas. Se puede prevenir este efecto manteniendo apretada la tecla Shift mientras se cliquea y arrastra + + + Tipeando notas con el teclado de la PC + + + Duración + + La duración de las notas ingresadas con el teclado están controladas por el seteo de Grilla en el menú Ver o la barra de herramientas. Se puede editar usando las teclas numéricas: + + + 5 – Compás entero + 1 – Un tiempo + 2 – 1/2 (Blanca) + 4 – 1/4 (Negra) + 8 – 1/8 (Corchea) + 6 – 1/16 (Semicorchea) + 3 – 1/32 (Fusa) + 0 – 1/64 (Semifusa) + + + + + + Tono / Altura + + Una vez que se ha seleccionado la duración en el menú Grilla, se procede a insertar la nota en la posición actual del cursor presionando una de las teclas de tono + + + A – Do (la tónica de la escala en la actual tonalidad) + S – Re + D – Mi + F – Fa + J – Sol + K – La + L – Si + + + manteniendo apretada la tecla Shift mientras se pulsa una tecla agregaremos un sostenido (#) a esa nota (salvo Mi y si que no lo tienen) y manteniendo apretada Shift y Ctrl juntas la alteraremos con un bemol (b) (excepto para Fa y Do). + + Para ingresar notas una octava más alta, se deben usar las teclas de la fila superior: Q, W, E, R, U, I, y O. Asimismo, para notas una octava más baja, usar Z, X, C, V, B, N y M. + + + + + Otras observaciones + + Todos los comandos de inserción están también disponibles en un submenú del menú Herramientas. Es improbable que para ingresar una nota se deba navegar por todo un menú, pero el menú muestra los atajos de teclado y provee una útil referencia en caso de que las combinaciones de teclas sean olvidadas. + + Los atajos de teclado están designados para ser usados con una disposición QWERTY. No hay aún una forma de mapear las teclas para otros diseños de teclado, lo que se puede hacer es reasignar tecla por tecla usando Settings Configurar atajos...... . + + + + + + + Ingresando notas a través de un teclado MIDI + + Se pueden ingresar notas una por vez en el editor de matriz usando un teclado MIDI o cualquier dispositivo de control MIDI. El editor matricial usa las notas que se ejecutan en el teclado, pero la duración de las mismas se seleccionan en el editor de Grilla. Esto es conocido como "grabación por pasos". + + Para ingresar las notas a través de un teclado MIDI, primero hay que confirmar que el teclado está configurado como el dispositivo MIDI predeterminado. Verificar que esté configurado correctamente el seteo de la Grilla en el menú Ver o la barra de herramientas, como los controles de duración de las notas. Entonces se presiona el botón de grabación por pasos en la barra de herramientas del editor de matriz, o se selecciona Grabación por pasos desde el menú Herramientas. A partir de allí, todas las notas presionadas en el teclado MIDI serán insertadas en la posición actual en la ventana, hasta que la grabación por pasos se termine, o se cambie de ventana, o se cierre la misma. + + Es posible cambiar la configuración de la Grilla mientras se está grabando, para poder ingresar notas de diferente duración. + + + + + Seleccionando notas Para seleccionar notas en el editor de matriz, cambiar a la herramienta de Selección (flecha) y dibujar un área rectangular abarcando las notas requeridas. Los elementos seleccionados se resaltarán en azul. Si se cliquea en un solo evento, sólo ese evento será seleccionado. Si se mantiene apretada la tecla Shift mientras se arrastra o se cliquea, la nueva selección será adicionada a una existente en lugar de reemplazarla. + + Para deseleccionar un área, cliquear en un espacio vacío del editor matricial, o pulsar la tecla Escape. + + También es posible seleccionar todas las notas de una determinada altura, presionando Shift + clic y arrastrando para seleccionar una rango de notas. Esta selección es agregada a una preexistente, por lo que si se necesita una selección limpia, hay que deseleccionar la previa antes. + + + + Moviendo y copiando notas + Se puede mover notas en altura y posición en el editor de matriz, cliqueando y arrastrando con la herramienta Mover, o seleccionando primero con la herramienta de selección y luego arrastrando. + Para copiar notas, seleccionarlas primero y luego usar las funciones habituales de copiar y pegar. Luego de pegadas, las notas pueden ser ubicadas allí donde se las necesitare. + + + + + + El Editor de Partituras + + + + + introducción + + El editor de partituras de Rosegarden permite ver y editar en la forma tradicional de partituras + + + + + + + + Editor de partituras Rosegarden + + + + + Rosegarden pretende presentar partituras con la mejor distribución posible compatible con la función de secuenciador. Esto significa que soporta acordes, superposiciones y grupos anidados, tresillos y arbtrarios, notas de adorno, dinámicas, acentos y demás, no provee mucho control fino sobre la disposición (especialmente en música con contrapuntos) como un programa específico de edición de partituras. Rosegarden no pretende ser un editor de partituras de calidad, pero permite exportar en formato lilypond, lo cual es una buena base para la publicación. + + + + + + Partituras simples y múltiples + + Hay tres maneras de abrir el editor de partituras desde la ventana principal de Rosegarden. (Todas ellas requieren que haya segmentos ya insertados en la ventana principal, por lo que si se está comenzando una nueva composición, deberían crearse segmentos antes de pensar en esitarlos. + + + Doble clic en los segmentos + + + La manera más obvia es hacer doble clic en un segmento en el tablero principal. Esta acción abre el segmento en el editor que se haya configurado por defecto (partituras, matriz o lista de eventos), y por omisión está configurado el editor de partituras. Así es que si se hace doble clic en un determinado segmento abrirá éste como un pentagrama solitario en el editor de partituras. + + Es posible además abrir el editor con varias líneas de pentagrama, manteniendo la tecla Shift, seleccionar los segmentos que se desean editar (con un solo clic del mouse) pero doble clic en el último. Todos los segmentos serán abiertos juntos en una ventana del editor + + + + + + La función de Abrir en el Editor por Defecto (La tecla Enter) + + + la tecla Enter es un atajo para la función Abrir en el Editor por Defecto, que hace lo mismo que un cliqueo doble: abre los segmentos actualmente seleccionados en el editor de partituras, o en el que se haya preseleccionado como editor por omisión. + + + + + Las funciones del menú Abrir en el Editor de Partituras + + + Alternativamente, se puede usar la función de Abrir en el Editor de Partituras en los menúes de los Segmentos o con el menú contextual (botón derecho del mouse) sobre un segmento en el tablero principal. Se seleccionan primero los segmentos a editar (cliqueando + Shift como se ha dicho anteriormente, o usando la función Seleccionar Todo) y lo seleccionado se abre en el Editor de Partituras. + + + + + + + + Si se tiene más de una línea de pentagrama (por ejemplo en un segmento) visible en el editor de partiturasm sólo una de ellas podrá ser la editable a la vez. La que lo sea será distinguible por tener el cursor de ingreso en ella (ver Reglas y Cursores) y ésta será el pentagrama en el cual tomarán lugar los eventos de edición. Por omisión, la línea superior es la actualmente editable, pero es seleccionable presionando Ctrl + cliqueando en la línea deseada o usando las funciones Mover el Cursor al Pentagrama Superior y Mover el Cursor al Pentagrama Inferior del menú de funciones. + + + + + + + Distribuciones lineales y de página + + La manera usual de presentación del editor de partituras es conocida como distribución Lineal: una línea de pentagrama sobre la otra, en las cuales, cada pentagrama es una línea horizontal. Algunas funciones del editor (como la Reglas)solamente están disponibles en la distribución Lineal. + + De todos modos, se puede mostrar las partituras en dos diferentes distribuciones: Página Continua y Páginas Múltiples. + + En la vista de Página Continua, la música es ubicada en una infinita página del ancho de la ventana. Cada pentagrama se corta al final de una línea, empezando una nueva línea debajo de los restantes pentagramas. + + En la distribución de Página Múltiple, la música es dividida en páginas reales, tantas como serán impresas. El tamaño de cada página es calculado aproximadamente al valor de la música que completará cada línea cuando sea impresa (de acuerdo al tamaño de puntos especificado en la resolución de la impresora en el cuadro de configuración). La versión impresa será no todo lo igual que se quisiera, pero bastante aproximada si se usa papel tamaño A4. + + + + + + + + + El editor de partituras Rosegarden en la vista de Página Múltiple + + + + La mayoría, pero no todas las funciones, funcionan igual de bien en las vistas de página tanto como en la lineal. + + Para cambiar entre estas vistas, se debe usar las funciones del menú, Vista Lineal, Vista de Página Continua y Vista de Múltiples Páginas + + + + + + Reglas y cursores + + El editor de partituras de Rosegarden incluye dos reglas y dos cursores. Las reglas están graduadas y ubicadas en las tiras horizontales, arriba y debajo del tablero principal, y los cursores son las líneas verticales de color que se muestran inicialmente al principio del pentagrama superior en el editor. + + El cursor púrpura es el cursor de inserción. Muestra el punto en el cual tomarán lugar las operaciones tales como copiar y pegar. Se puede ubicar el cursor de inserción cliqueando o arrastrando sobre la regla superior, o cliqueando con la herramienta de selección en una parte vacía del pentagrama (evitando los eventos), o cliqueando en cualquier lugar mientas se mantiene apretada la tecla Ctrl. + + También es posible usar las flechas derecha e izquierda para mover el cursor de ingreso un evento a la vez. Si se mantiene apretada la tecla Ctrl mientras se presionan las teclas de flechas, el cursor se moverá un compás a la vez; si se presiona Shift el cursor seleccionará los eventos mientras pasa sobre ellos. + + El cursor azul es el puntero de reproducción. Tal cual los homónimos en la ventana principal y en las vistas de matriz, muestra la posición actual de la reproducción o grabación en curso. Puede ser reposicionado usando la regla inferior. + + Nótese que las reglas son mostradas únicamente en el modo Distribución Lineal. + + + + + + + + + Herramientas y selecciones + La mayoría de las funciones y herramientas de edición del menú del Editor de Partituras de Rosegarden se ubican en tres categorías: herramientas, funciones que afectan selecciones, y operaciones de arrastre.. + + + + Herramientas + + Las herramientas básicas son la de selección, la de borrado y aquellas para insertar notas y silencios, a las cuales se acceden desde los botones de la barra de herramientas. Eligiendo una herramienta cambian los comportamientos por defecto de los botones del mouse en la ventana principal, hasta que otra herramienta es escogida. Por ejemplo, eligiendo la herrramienta de seleccionar, es posible hacer selecciones de eventos y usar las funciones basadas en ellas (abajo); eligiendo una herramienta de inserción (como la de las notas) cambia el comportamiento de la interfase gráfica insertando notas cliqueando en el tablero, eligiendo la herramienta de borrado, permite remover eventos cliqueando sobre ellos. + También se puede cambiar la herramienta usando el menú de Herramientas. + + + + + Funciones que operan en selecciones + + La mayor parte de las funciones que restan en el menú, requieren que previamente se realice una selección antes de aplicarlas. Alguna de ellas, (como las funciones Cortar o la Estilo de Nota ) operarán en todos los eventos seleccionados; y otras (como las funciones Notas de gracia o Direcciones de Plica ) no funcionarán hasta que la selección incluya algunas notas. + Para seleccionar eventos en la ventana principal, cambiar a la herramienta de Selección (flecha) y entonces dibujar un área rectangular conteniendo los eventos que se quieran seleccionar. Los eventos seleccionados se resaltarán en color azul. Si se hace clic en un sólo evento, sólo éste será seleccionado. De todas maneras, es posible hacer un doble clic en un evento en particular para abrir una ventana de diálogo para ese evento, pero nada que hacer con lo seleccionado. Si se mantiene presionada la tecla Shift mientras se arrastra el rectángulo, se agregará lo seleecionado a una selección previa, en lugar de reemplazar a aquella. + Para seleccionar un compás entero, hacer doble clic con la herramienta de Seleccionar en un espacio libre en ese compás, para seleccionar una línea de pentagrama entera, hacer tres clics. El menú Edición contiene funciones para seleccionar areas extensas según la ubicación del cursor de inserción, apretando la tecla Shift y presionado las flechas derecha o izquierda. + No es posible seleccionar eventos en más de un pentagrama a la vez. + + + + + Operaciones de arrastre + + Es posible realizar una cierta clase de edición, simplemente arrastrando elementos. Cambiar a la herramienta (flecha) de selección, y desde allí se puede cambiar la altura de las notas simplemente cliqueando sobre la cabeza de la nota y la ubicación de ellas arrastrando a izquierda y derecha. (No se pueden arrastrar silencios o tiempos, pero sí todo lo demás. Si se han seleccionado varios eventos, todos se mueven a la vez.) + El arrastre es usualmente una manera no tan exacta de editar eventos, tal como el uso del menú o las funciones del menú de Herramientas, pero es la más simple. + + + + + + + + + Insertando notas y silencios + + Para insertar una nota, seleccionar una de las herramientas de nota cliqueando en una duración particular en la barra de herramientas, y luego cliquear en el pentagrama en el punto en el que se quiera insertar. + + También se pueden seleccionar las alteraciones en el menú de herramientas, para insertar bemoles o sostenidos. Si no se seleccionan alteraciones, la nota seguirá la armadura de clave. Alternativamente, se puede seleccionar el ícono "Continuar la alteración previa" (se ve como una nota con una flecha señalando hacia atrás donde la alteración aparecerá) para hacer que la nota siga la última alteración que se haya producido en la partitura. + + Si se agrega una nota al mismo tiempo que una nota existente de diferente duración, el editor generalmente asume que se intenta crear una acorde y entonces se corre la nota para armar la representación del mismo con puntillo. Si realmente se quiere hacer una corde con dos duraciones diferentes, se debe seleccionar las notas con puntillos y usar la función de Juntar las Notas de Igual Altura para juntarlas. De otra manera se puede editar el comportamiento por defecto de esta función desde el diálogo de configuración de Rosegarden. + + Si se agrega una nota exactamente sobre una nota existente de diferente duración (por ejemplo con la misma altura), la duración de la nota existente será cambiada a la nueva. + + Si se agrega un silencio al mismo tiempo que una nota existente, la nota será silenciada por la duración del silencio, acortando o suprimiendo al mismo. + + + Tipeando notas y silencios con el teclado de la PC + + + Duración + + Primero, confirmar que la herramienta de notación está seleccionada para indicar la duración de las notas o silencios que se deseen insertar. Es posible insertar varios tipos de notas usando las teclas numéricas: + + + 5 – Breve + 1 – Nota entera (semibreve) + 2 – 1/2 (Blanca) + 4 – 1/4 (Negra) + 8 – 1/8 (Corchea) + 6 – 1/16 (Semicorchea) + 3 – 1/32 (Fusa) + 0 – 1/64 (Semifusa) + + + Se puede cambiar a nota atresillada presionando la tecla G. Presionando la misma tecla una vez más se vuelve a la duración normal. La barra de status en la parte inferior de la ventana notificará cuando la duración atresillada está activa. + + + + Tono / Altura + + Una vez que la herramienta de notación está seleccionada, se puede insertar una nota en la posición actual del cursor de inserción presionando una de las teclas de las teclas de altura: + + + A – Do (la tónica de la escala en la actual tonalidad) + S – Re + D – Mi + F – Fa + J – Sol + K – La + L – Si + + + Presione la tecla "." para cambiar entre duraciones con puntillos o sin ellos. + + manteniendo apretada la tecla Shift mientras se pulsa una tecla agregaremos un sostenido (#) a esa nota (salvo Mi y si que no lo tienen) y manteniendo apretada Shift y Ctrl juntas la alteraremos con un bemol (b) (excepto para Fa y Do). + + Para ingresar notas una octava más alta, se deben usar las teclas de la fila superior: Q, W, E, R, U, I, y O. Asimismo, para notas una octava más baja, usar Z, X, C, V, B, N y M. + + + + + Silencios + + Para insertar un silencio en vez de una nota, presionar P. Alternativamente, se puede usar la tecla T y la Y para cambiar la herrramienta actual a la de silencio y volver a la de nota nuevamente. + + + + + Acordes + + El comportamiento por defecto del editor de partituras es mover el cursor de inserción hacia adelante luego de insertar una nota, para quedar listo para el ingreso de la próxima nota en la melodía; esto puede ser cambiado presionando la tecla H, que cambia a modo de acorde, para poner las siguientes notas en el mismo tempo que la anterior para armar el acorde. Cambiando luego con H volvemos al comportamiento melodía. + + + + + Cambiando la duración de las notas + + Es posible usar el teclado para cambiar la duración de las notas que se han ingresado. Verificar que las notas se han seleccionado y luego presionar Ctrl más la tecla numérica de la nota que se desee. También se puede agregar o quitar puntillos presionando Ctrl más "." guión; usando repetidamente se puede selecconar entre puntillo, doble puntillo y sin él. + + Si se mantiene presionada la tecla Alt junto con la Ctrl se cambiará las duraciones de las notas en el menú de edición sin cambiar sus duraciones de interpretación. Esto puede ser muy útil para hacer más prolija una partitura: ver también partitura desde una interpretación. + + + + Otras observaciones + + Todos los comandos de inserción están también disponibles en un submenú del menú Herramientas. Es improbable que para ingresar una nota se deba navegar por todo un menú, pero el menú muestra los atajos de teclado y provee una útil referencia en caso de que las combinaciones de teclas sean olvidadas. + + Los atajos de teclado están diseñados para ser usados desde un teclado QWERTY. No hay forma aún de remapear todo el teclado y para otras distribuciones se debe asiganr cada tecal desde el menú "Configurar atajos..." en el menú de Opciones. + + Manteniendo la tecla Ctrl mientras se presiona un número se seleccionará la correspndiente herramienta de puntillos. + + + + + + + Ingresando notas a través de un teclado MIDI + + Es posible ingresar notas desde un teclado MIDI, en un proceso conocido como grabación por pasos. Las notas tendrán la altura de las notas pulsadas en el teclado pero la duración que figura en el editor + + Para ingresar las notas a través de un teclado MIDI, primero hay que confirmar que el teclado está configurado como el dispositivo MIDI predeterminado. Verificar asimismo que la herramienta de notación muestra la duración deseada. Entonces se presiona el botón de grabación por pasos en la barra de herramientas del editor de partituras, o se selecciona Grabación por pasos desde el menú Herramientas. A partir de allí, todas las notas presionadas en el teclado MIDI serán insertadas en la posición actual en la ventana, hasta que la grabación por pasos se termine, o se cambie de ventana, o se cierre la misma. + + Se puede seleccionar una herramienta de partituras diferente mientras la grabación por pasos está en proceso; y además se puede cambiar al modo Acorde para ingresar los mismos. + + + + + + + + Armadura de clave y tonalidad + + + La primera cuestión que hay que saber acerca de la manera en que Rosegarden maneja estas cuestiones, es que los cambios relativos al tiempo (tempo y duración de las notas) son tratados de manera completamente distinta de las alturas y tonalidades. En la senda de simplificar el manejo de la grabación y reproducción tanto como la escritura de la partitura, Rosegarden requiere que cuando el tiempo o el compás cambian, lo hagan en todos las líneas de pentagramas a la vez. No es posible tener una línea en 3/4 y otra en 4/4 a la vez, o un pentagrama con nerga de 120 y otro con 90. Esta restricción se aplica sólo a los tiempos: no a el uso de tonalidades o armaduras de clave. + + Para cambiar la tonalidad, clave, tiempo o compás en la ventana del editor de partituras, colocar el cursor de inserción en el lugar en que se quiera aplicar el cambio, y suar luego las funciones Agregar cambio de Tonalidad..., Agregar Cambio de Clave..., Agregar Cambio de Tempo..., Agregar Cambio de Compás... del Menú Edición. Entonces se verá una caja de diálogo en la que se podrán seleccionar los parámetros requeridos. + + + Armadura de clave + + + + + + + + Diálogo de armadura de clave Rosegarden + + + + + + El diálogo perimite elegir una tonalidad, pero también escoger como esa tonalidad será aplicada, en caso en que haya algunas notas luego de la armadura de clave. Se deberá elegir una de las siguientes: + + + Manteniendo las alturas iguales + + Todas las notas posteriores a la armadura mantienen su altura de ejecución + Por ejemplo insertando una armadura de clave de tenor en el medio de una sección en agudos, causará que las notas siguientes a la armadura serán movidas una octava hacia arriba, porque ellas aún tendrán sus alturas de agudos. + + + + + Transponer una octava + + Las notas que siguen a la armadura de clave, retendrán su afinación dentro de la octava, pero deben ser movidas a una octava diferente para confeccionar una nueva clave, y allí serán ejecutadas en la nueva afinación. + Por ejemplo insertando una clave de tenor en el medio de una sección de clave aguda causará que las notas se ajusten a la nueva tonalidad moviéndose una línea pero se ejecutarán una octava más baja que antes., + + + + + + + + + + Tonalidad + + + + + + + + Diálogo de tonalidad Rosegarden + + + + + + + + + + + + Texto y letras + + Un pentagrama puede contener varias clases eventos de textos. Hay dos clases básicas de un evento de texto: ítems simples usados como anotaciones de notas etc., y las letras. El esquema será creado (y asociado a un determinado tempo en el pentagrama) usando la Herramienta de Texto, la cual está disponible en el botón con la T en la barra de herramientas. Las letras pueden ser creadas también de esta manera, pero es más fácil usando el editor de letras. + + Para agregar un texto, seleccionar la herramienta de Texto y cliquear en el sitio en que se quiera insertar el mismo. Una caja de diálogo aparecerá, Allí se tipea el texto u se elige el propósito al que se destinará. (Rosegarden prefiere guardar el destino del texto, en vez de su aspecto; así en el futuro estará disponible para editar las diferentes clases de texto según la elección de cada usuario.) Los destinos (o estilos) disponibles son: + + + + DinámicoUsada para indicaciones menores como marcas "p", "mf" etc. Se muestran pequeñas y en bastardilla por defecto. + + DirecciónSe usan para indicar cambios significativos en el estilo. Se muestran en el pentagrama en tipo romano grande por default. + + Dirección localusado para representar cambios menores en el estilo. Por omisión, en el pentagrama se verán con una tipografía roman bastardilla y negrita más pequeña. + + TempoSe usa para identificar cambios en el tiempo. Se mostrará en el pentagrama en una fuente roman en negrita por defecto. + + Tempo LocalUsada para indicar cambios menores en el tiempo. Se verán en el pentagrama en una tipografía pequeña roman en negrita. + + LetrasNo obstante las letras son usualmente creadas en el editor de letras, pueden ser ingresadas palabra por palabra si fuese necesario usando este estilo. Este estilo es mostrado abajo en una tipografía romana pequeña. (Advertencia: Si las letras son ingresadas de esta manera y luego se edita en el editor de letras del editor de partituras, las letras ingresadas deben ser modificadas o movidas si su posición no es compatible con lo esperado por el editor. + + AnotaciónUsado para texto de ayuda que no es considerado estrictamente parte de la partitura. Se mostrará bajo el pentagrama, recuadrado en un estilo tipo papel de notas amarillo. + + + + Se puede además editar el texto luego de escribirlo, cliqueando en el texto con la herramienta Texto. + + + Editando letras + + El Editor de Letras, disponible desde el la opción Abrir Editor de Letras de el menú Ver, permite la edición de todos los eventos de letras de canciones de una sola vez para un pentagrama completo, usando un sistema básico de edición textual. Para usarlo, simplemente se deba activar la opción en el menú, editar el texto en el diálogo resultante y apretar "OK" + + Las letras que se ingresen, estarán en un formato particular. Las líneas de compás que son vitales para evitar que el editor se confunda, están representadas por una barra ("/"). Entre cada barra las sílabas están separadas por espacios (en realidad un espacio: el editor no tiene en cuenta los espacios adicionales). Cada sílaba será adjuntada a el siguiente acorde o nota en ese compás. (no obstante lo cual el editor puede llega a perderse cuando los acordes no se correspnden exactamente, por ejemplo en aquellos que requieren cuantización + + Si se requiere tener una nota que no tenga una sílaba adjuntada a ella, se coloac n punto (".") para esa nota. (He allí el porqué de que la letra por default para un segmento está llena de puntos.) Recuerdesé separa los puntos con espacios, para separar claramente las sílabas. + + Si se necesita más de una sílaba para la misma nota, con un espacio entre ellas, se debe usar un tilde ("~") en lugar de un espacio. Será mostrado como un espacio en el pentagrama. + + Si se necesita repartir na sílaba entre dos notas, con un guión, se debe ingresar un espacio siguiendo a el guión para que el editor sepa que se trata de dos sílabas. (El guión no toma tratamiento especial entre dos sílabas.) + + Las sílabas que consisten solamente en números seguidos por corchtes (como "[29]") serán ignoradas; este es el formato usado para generar automáticamente números de compás mostrados en el editor. + + Se debe prestar atención al formato de texto usado para editar las letras: éstas son guardadas como diferentes eventos de texto (uno por sílaba). Esto significa que el formato de texto puede variar en el futuro para incorporar capacidades de edición avanzadas, de todas maneras los formatos de eventos no deberían cambiar para mantener la compatibilidad entre archivos. + + + + + + + + + Borrones y ganchos + + Son marcas dinámicas guardadas como eventos, como las notas o los silencios. Para crear uno, seleccionar el área a cubrir (una serie de notas o lo que sea), y entonces se debe usar las opciones Agregar borrón, Agregar Crescendo o Agregar Decrescendo del menú Grupo. + + Se remueven exactamente igual que otro evento: primero se seleccionan con la herramienta de selección y luego se aprieta la tecla Suprimir o con la herramienta de borrado. + + + + + + + Fade Out y Cortes de notas + + Es posible setear la dirección de la plica de las notas seleccionadas (se proveen varias) usando las tres posibilidades del submenú Dirección de Plica en el manú Notas. Estas opciones le permitirán seleccionar plica hacia arriba o abajo o revertir las existentes que Rosegarden ha escogido. Ver tambiénPulsos. + + El menu Grupo también contiene optciones para agregar barras a través de las asas de las notas, por ejemplo, para indicar notas corta y repetidas o rolls de percusión. Éstas son actualmente puramente notación; &rosegarden; no las tomará en cuenta cuando reproduzca la partitura o genere &MIDI;. + + + + + + Unir Plicas + + Unir plicas en las notas está considerada una operación de agrupamiento en el Editor de Partitura de &rosegarden;, disponible en el menu Grupo. Selecciona las notas que quieres unir, y usa la opción Agrupar Plicas dentro del menú Grupo. Para remover la plica, selecciona las notas y usa la opción Desagrupar Plicas. + + Es posible tener más de un grupo con plicas al mismo tiempo — simplemente selecciona y une los grupos separados de a uno — pero Rosegarden usualmente no es lo suficientemente inteligente como para saber qué notas deben tener las plicas hacia arriba y cuáles deben estar hacia abajo para un grupo de plicas unidas simultáneamente, entonces probablememte deberás corregir las direcciones de las plicas de las notas en los grupos explícitamente, como así también deberás unirlas. + + &rosegarden; puede intentar adivinar una forma coherente de unir las piezas de música, no es tan complicado. Para invocar ésto, selecciona las notas para las cuales que quieres calcular la unión, (por ejemplo, por triple-clicleo para seleccionar todo el pentagrama) y luego usa la opción Auto-Unir en el Groupos menu. Esto es realizado incluso cuando se carga un archivo &MIDI;, por ejemplo, y el editor también hace algunas uniones automáticas mientras ingresas notas (ésto puede ser deshabilitado cambiando la configuración del diálogo "Auto-Unir cuando sea apropiado" o en la barra de herrramientas de inserción, con el menú que aparece presionando el botón derecho. + + + + + + + Tresillos y otros tríos + + Un grupo de tresillos consiste en tres notas o acordes repoducidos en el tiempo de dos. (Más precisamente, consiste en notas con una duración total de tres unidades arbitrarias reproducidas en el tiempo de dos de esas unidades.) + + Usamos la frase grupo irregular para describir la situación general en la cual las notas con una duración total de cualquier número de unidades son reproducidas en el tiempo de un diferente número de esas unidades: nueve notas en el tiempo de ocho, o seis en el tiempo de cuatro, o incluso dos notas en el tiempo de tres. (En el presente &rosegarden; no soporta el último ejemplo —, los grupo irregular deben siempre ser reproducidos con una duración más corta que la escrita.) + + Las funciones de los menus de tresillos y grupos irregulares funcionan tomando una serie de notas existentes o silencios, + + + + + + + + + + + + + Diálogo de tresillos de Rosegarden + + + + + + Para especificar un grupo irregular general, necesitamos saber cuál es la nota base (por ejemplo, si tocamos tres corcheas en el tiempo de dos, entonces la base es una corchea) y el radio del número de notas base escritas en el número interpretado. + + + + + + + + + + + Tipos de pegado + + El significado de cortar y pegar es menos obvio para un programa de edición de música de lo que lo es para algo como un procesador de textos en el cual las letras y las palabras van en un orden simple y lineal. De acuerdo con ésto, el Editor de Partituras de &rosegarden; ofrece diferentes y variados tipos de operaciones de Pegado, así como funciones separadas de Cortar, y Cortar y Cerrar. + + + + + + + + + Diálogo de tipos de pegado Rosegarden + + + Los tipos de operación de pegado son: + + + + + Restringido + + Requiere un vacío existente (conteniendo nada salvo los silencios) de una duración suficiente como para contener completamente los contenidos del portapapeles. Los contenidos son pegados dentro del vacío. Si no hay un espacio vacío lo suficientemente largo, la operación de pegado no se lleva a cabo. + Este es el tipo de pegado por defecto + + + + + Simple + + Borra suficientes eventos como para hacer un vacío lo suficientemente largo como para pegar algo dentro, y luego pega dentro de éste. Los eventos pegados remplazan cualquier nota existente en el tiempo cubierto por el pegado. + + + + + Abrir y Pegar + + Lo opuesto a Cortar y Cerrar. Hace lugar para el pegado moviendo todos los eventos subsecuentes un poco más lejos hacia el final de la composición. + + + + + Solapar la nota + + Lleva a cabo un pegado en la manera en que pasaría si ingresaras cada una de las notas en el portapapeles tú mismo usando el Editor de Partituras: si hay otras notas superponiéndose encima de ellas, las nuevas o existentes notas serán divididas con ligaduras de prolongación de una manera apropiada. + + + + + Solapar la matriz + + Lleva a cabo un pegado en la manera en que pasaría si ingresaras cada una de las notas en el portapapeles tú mismo usando el Editor de Matriz: las notas presentes en el camino del pegado serán ignoradas, permitiendo a las nuevas notas superponerse arbitrariamente con ellas. + + + + + + Todo ésto tiene efecto en la posición actual del cursor de inserción en el pentagrama actual. Para elegir entre los varios tipos de pegado, usa la opción de menú Pegar... (con puntos suspensivos) en el menú Editar. + + + + + Ajustando la partitura + + + + Ajustando las duraciones de silencios y notas + + + Normalizando silencios + + A veces como resultado de operaciones de editado o cuantización, una parte de la partitura puede terminar con duraciones de silencios incorrectas para la medida de compás actual. Puedes usar la funcion Normalizar Silencios para arreglar ésto. Ésta función examina cada secuencia consecutiva e silencios que se encuentran en la selección, y ajusta, divide y mezcla los silencios tanto como sea necesario como para asegurar que esos silencios tienen teóricamente duraciones correctas y caen en las barras correctas. + + Por ejemplo, una barra 4/4 que contiene una negra, luego un silencio de blanca y un silencio de negra será reacomodado de manera de poner el silencio de negra antes que el de blanca, dado que éste último no debe cruzar el límite central de pulso de la barra. + + + + + + + Interpretando colas de performance en la notación + + La función Interpretación puede ser usada para modificar las velocidades y tiempos de las notas de acuerdo a cualquier marca dinámica escrita o indicada que se encuentre. La selección de interpretaciones disponibles son: + + Aplicar las marcas dinámicas de texto (p, mf, ff, etc) + Setea la velocidad de cada nota basado en la última marca de texto de tipo "Dinámico"vista en el mismo staff (sólo se consideran textos de la forma pp, p, mp, f, ff, fff, etc). + + + + Dinámicas de crescendo/decrescendo + Hace que las notas aumenten o disminuyan su velocidad gradualmente durante una marca de este tipo. + + + + Acentuación de pulsos + Hace que las notas que descansan en la barra o en pulsos suenen un poco mas fuerte que las restantes (acentuación). + + + + Articular ligaduras de expresión, staccatos, tenutos, etc. + Acorta notas no ligadas, acorta mas las notas staccato, y le da a las notas dentro de ligaduras de expresión y tenutos su longitud completa + + + + + + + + + + + Notación desde datos de ejecución (performance) + + &rosegarden; es un programa multi propósito: es un editor de notación, pero es primariamente un secuenciador y editor para música ejecutada. Y en una ejecución, por supuesto, los tiempos y duraciones de las notas son raramente tan precisas como en una partitura impresa. + + Esto significa que es deseable que &rosegarden; haga un gran trabajo de ordenamiento de los tiempos y duraciones de las notas cuando se intenta lograr notas significativas para mostrar en el editor de notación. Ésto es una forma de cuantización, pero una forma que requiere una sorprendente cantidad de trabajo de suposición para funcionar bien. &rosegarden; incluye un cuantizador diseñado para hacer un trabajo un poco mejor que éste que el cuantizador de grilla común. + + Aplicar cuantización estrictamente para la notación es normalmente referido como cuantización de notación: sólo se aplica a las notas que uno ve y edita en notación, y no afecta a otras notas que se ven o editan desde otras vistas que no sea la matrix. Ésta cuantización es automáticamente aplicada a la música importada o grabada desde MIDI, aunque no todas las capacidades posibles son activadas por defecto. + + Existen dos maneras de ver que notas han sido cuantizadas para la notación. Por defecto, cada vista de notación contiene una Regla de Notas (en el grupo de reglas por sobre la parte) que muestra un block rectangular para cada nota. éste block está posicionado para representar el teimpo y la duración de a nota según haya sido ejecutada, pero con los bordes superior e inferior del rectángulo extendidos o reducidos para representar el tiempo después de la cuantización de notas. Si esto resulta demasiada información, puede, alternativamente, elegir (en el diálogo de configuración) mostrar en un color verde todas las cabezas de las notas de la parte cuyos tiempos han sido alterados por la cuantización de notación. + + + + + + + + + + El diálogo de cuantización de &rosegarden; + + + + Si la cuantizacíon que &rosegarden; ha realizado no es conveniente, tanto para la parte completa como para una selección de notas, puede usar un nivel de cuantización distinto o ninguno en absoluto. Para aplicar una cuantización diferente a algunas notas, seleccione las notas y utilice la función del menú Cuantizar... (marque la caja llamada Cuantizar para notación solamente). El nivel o tipo de cuantización usado por defecto puede ser cambiado en el diálogo de configuración. + + + Parámetros configurables para el cuantizador de notación heurístico + + + Parámetros para la cuantización misma + + + + + Complejidad + + la "complejidad" de un cuantizador de notación es el parámetro mas fundamental. Un cuantizador "complejo"va a estar mas preparado para aceptar que música-que-se-ve-compleja es de hecho música que se pretende compleja, mientras que es mas normal que un cuantizador "simple" asuma que música-que-se-ve-compleja resulta de una performance imprecisa de música simple. + El seteo por defecto tiene por cometido producir resultados razonables para un verdadero amplio rango de música. + + + + + Unidad base de grilla + + La unidad base de grilla (seteado al valor de duración de una nota) especifica la unidad absoluta mínima de una nota a la que se permite en la parte luego de una cuantización. Por ejemplo, si se setea el valor a una semicorchea, todas las notas serán colocadas en las vecindades de un múltiplo de una semicorchea, con duraciones también múltiplo de la misma. + El seteo de la unidad de base de grilla no es tan significante para un cuantizador de notación como lo es para un cuantizador de grilla plana, ya que todo lo que hace es imponer un límite absoluto en el nivel de presición permitido por el parámetro de complejidad. Mayormente, cuando se encuentra un caso en el cuál incrementando la unidad de grilla producen mejores resultados, ha encontrado realmente un caso en el que el cuantizador simplemente no hizo un tan buen trabajo como el que podría haber hecho con una unidad menor. + + + + + Nivel de trecillo + + El cuantizador de notación es capaz de identidficar trecillos (tripletos y otros tipos de particiones de tiempo), con límites razonables. Éste parámetro controla que tan ambiciosamente va a intentar ser al momento de buscar trecillos, seteando un límite en cuántas notas por grupo de trecillos va a intentar identificar. Si se encuentra seteado a Ninguno, el cuantizador no intentará identificar trecillos. + + + + + + + + + Parámetros que controlan el emparejamiento luego de la cuantización + + + + + Re-ligadura + + Hace que la notación sea re-ligada en grupos apropiados luego de la cuantización. Ésto es usualmente deseable. + + + + + Agregar articulaciones (staccatos, tenutos, ligaduras de expresión) + + Hace que el cuantizador intente identificar, basado en la duración de notas individuales y consecutivas, que notas deben ser escritas con marcas de staccato (para notas que son significantemente mas cortas que la nota siguiente, pero aparentemente no lo suficientemente cortas para merecer un silencio), tenuto (para notas que casi o justamente se sobreponen a la siguiente nota) y ligaduras de expresión (para series de notas que se sobreponen). + + + + + Ligación de notas en las barras, etc. + + Hace que las notas que luego de la cuantización todavía se encuentran presentes através de una barra o que no son exactamente expresables con la cabeza de una nota simple, sean divididas en múltiples notas apropiadamente, y ligadas. Ésto tiene el mismo efecto que aplicar la función "Ligar notas en las barras" en la vista de notación. + Éste parámetro no se encuentra activado por defecto debido a que cambia el número de eventos de notas, lo que es indeseable cuando se utiliza &rosegarden; principalmente o en parte como secuanciador MIDI. + + + + + Dividir y ligar acordes que se sobreponen + + Hace que los acordes que se sobreponen sean divididos y ligados, de manera de formar los acordes estrictos con notas individuales ligadas de la forma que sea necesaria. Ésto tiene el mismo efecto que aplicar la función "Dividir y ligar acordes superpuestos" en la vista de notación. + Éste parámetro no se encuentra activado por defecto debido a que cambia el número de eventos de notas, lo que es indeseable cuando se utiliza &rosegarden; principalmente o en parte como secuanciador MIDI. + + + + + + + + + + Estilos de notas + + &rosegarden; también permite cambiar varios aspectos de la manera en la que varios tipos de notas son dibujadas, como la cabeza de las notas, el número de colas, si las notas son o no rellenadas, etc. + + Se provee un set de estilos estándar (Clásico, Cruzado, Triángulo y Medible), y es posible cambiar el estilo usado para notas individuales seleccionandolas y utilizando las opciones del menú Estilo de notas. Cada nota recuerda que estilo ha sido elegido para ella, y esta información es guardada como parte de la composición. También es posible cambiar el estilo por defecto para notas nuevas usando la opción Configurar Rosegarden... el el menú Configuraciones. + + También es posible crear sus propios estilos de nota describiéndolos en archivos XML. Incluso los estilos estándar son definidos de ésta forma, la única razón por la cuál el editor sabe que una semicirchea de estilo Clásico tiene una cabez ovalada, rellena y aplastada, una plica, dos banderas, etc., es porque la descripción en Classical.xml dice eso. Vea Personalizando Rosegarden para mas información. + + + + Fuentes de notas + &rosegarden; se provee con una sola fuente escalable de notación, la fuente Feta desarrollada por el proyecto Lilypond. Feta es una fuente de extremadamente alta calidad que debería ser apropiada para casi todo el trabajo clásico. + + &rosegarden; también incluye soporte como estándar para un número de otras fuentes de notación. Necesitará proveer éstas fuentes en formato TrueType (.ttf) o PostScript tipo 1 (.pfb, .pfa), y necesitará los permisos relevantes para instalarlos en el mismo lugar en el que &rosegarden; fué instalado. Para instalar una fuente soportadalocalice el directorio compartido para la instalación de &rosegarden; (usualmente un subdirectorio del árbol de instalación de KDE, como por ejemplo /opt/kde/share/apps/rosegarden). Encontrará que éste directorio contiene un subdirectorio llamado "fonts":copie los archivos de fuentes ahí, y reinicie &rosegarden;. Si su fuente es soportada, debería aparecer ahora en el menú de fuentes en el editor de notación. + + Soporte parcial o completo es actualmente proveído para las siguientes fuentes: Fughetta, por Blake Hodgetts; Petrucci, la fuente "original" de Finale; Maestro, la "nueva" fuente de Finale; Opus, la fuente de Sibelius; Inkpen, la fuente de jazz Sibelius; Sonata de Adobe; Steinberg, del secuenciador Cubase; y Xinfonia. EL EQUIPO DE ROSEGARDEN NO HACE REPRESENTACIÓN DEL ESTÁTUS LEGAL DE ALGÚN USO DE ÉSTAS FUENTES CON ROSEGARDEN. Es su responsabilidad de asegurarse que está cumpliendo con la licencia (si existe alguna) bajo la cuál la fuente le fué provista, antes de usarla. Si no está seguro de si tiene o no el derecho de usar una fuente, no se aparte a otra cosa, la fuente Feta es mejor que la mayoría de éstas de todos modos. + + Es también posible proveer nuevos archivos de mapeos de manera de usar nuevas fuentes. Para algunas fuentes que poseen mapeos o métricas similares a la lista de mas arriba, ésto puede ser tan simple como editar el nombre de la fuente en el archivo de mapeo. Vea Personalizando Rosegarden para mas información. + + + + + + + El editor de Lista de Eventos + + introducción + + El editor de Lista de Eventos de &rosegarden; muestra los eventos en un segmento simple en una forma cruda, y le permite editar las propiedades precisas de esos eventos individualmente. + + + + + El editor de eventos de &rosegarden; + + + + + + + + + + + + + + + + + + Personalizando Rosegarden + + + Configurando fuentes de notación personales + + Si dispone de una fuente de notación en su sistema en un formato escalable (TrueType o Type-1) pero no es actualmente soportado por Rosegarden, puede crear su propio archivo de mapeo XML para describir el mapa de caracteres y métrica de la fuente de una forma que Rosegarden pueda usar. Éstos archivosson instalados en el subdirectorio fonts/mapping del directorio de instalación de Rosegarden, y un número de ejemplos son incluídos con la distribución. + + También puede usar estos archivos de mapeo para definir nuevas fuentes basadas en mapas de pixeles (pixmaps), donde cada forma en un tamaño particular es cargada de un mapa de pixeles diferente. Las dos fuentes estándar de notación proveídas con Rosegarden-4 son fuentes de mapa de pixeles definidas en exactamente ésta forma. + + Es incluso posible definir una fuente de notación usando una o mas fuentes escalables del sistema, aumentadas con mapas de pixeles para tamaños particulares o para caracteres que no se encuentran en fuentes escalables. Ésto es porquela mayoría del formato del archivo de mapeo es el mismo para fuentes escalables y de mapa de pixeles, y cuando hay diferentes elementos para los diferentes tipos de fuentes, es usualmente posible incluir ambos de ellos. Rosegarden va a usar usualmente mapas de pixeles donde se los disponga y fuentes escalables en caso contrario. + + Quizás quiera editar los archivos de mapeo provistos con Rosegarden si encuentra que sus dimensiones para alineación o tamaño no son de su preferencia (si cree que cualquiera de los archivos provistos están equivocados, por favor háganoslo saber). + + + Codas y Glipses + + + + + + Formato de mapeo XML de las fuentes de notación + + Aquí hay un sumario de los elementos XML que pueden ser usados en el archivo de mapeo de fuentes. + + + rosegarden-font-encoding + + Éste elemento debe existir en cada archivo de mapeo, y debe contener a el resto de los elementos. El único atributo es "name" (nombre), que contiene el nombre de la fuente que es mostrado el el menú desplegable de selección de fuentes. Aunque éste formato de archivo va a permitir que cualquier nombre se utilice aquí, Rosegarden solo usará la fuente correctamente si el archivo XML tiene el mismo nombre que los contenidos de éste atributo (excepto que el archivo XML sea nombrado en minúsculas y termine en ".xml"). + + + + font-information + + Éste debe normalmente ser el primer elemento hijo de "rosegarden-font-encoding". Puede tener alguno de los siguientes atributos, todos ellos opcionales: + + origin + + Una descripción textual del origen de la fuente mapeada (no del origen del archivo de mapeo). + + + + + copyright + + Una descripción textual del estátus del derecho de copia (copyright) de la fuente mapeada (no el estátus de copyright del archivo de mapeo). Note que debido a que el archivo de mapeo contenga información como el origen y copyright de la fuente misma, es usualmente recomendable hacer archivos de mapeo separados para fuentes separadas mientras sea práctico, incluso si las fuentes compartem otros datos de mapeo. + + + + + mapped-by + + El nombre del creador del archivo de mapeo (i.e. usted, presumiblemente). + + + + + type + + El tipo de la fuente. éste atributo debe contener uno de los valores "pixmap" o "scalable". Las fuentes que son cargadas en el sistema de ventanas están disponibles para Rosegarden como fuentes estándar del sistema del tipo "scalable", las fuentes que necesitan ser cargadas de archivos de mapa de pixeles correspondientes a tamaños individuales de mapa de pixeles (como las fuentes feta y rg21 incluídas en Rosegarden) son del tipo "pixmap". + + Ésta información pretende ser solo para referencia del usuario, realmente no es usada por Rosegarden. En la práctica, para una fuente es legítimo ser una mezcla de los dos, pero en general asumiremos en ésta documentación que una fuente es o escalable o de mapa de pixeles. + + + + + smooth + + Un atributo booleano que indica si la fuente utiliza antialiasing (suave o smooth) o no. Debe tener el valor "true" (verdadero) o "false" (falso). Si la fuente es suave (smooth), otros elementos como ligaduras que no son generados desde la fuente serán también suaves (antialiased). + + + + + autocrop + + Sólo importante para fuentes escalables (del sistema). Rosegarden normalmente espera que las medidas de una fuente contengan las mas pequeñas cajas contenedoras para elementos como cabezas de notas y acentos, mas que incluir espacio libre por sobre o debajo de éstos elementos para propósitos de alineación. La mayoría de las fuentes no hacen lo que Rosegarden espera. Por lo tanto, éstas fuentes deben setar el atrubuto autocrop a "true"; luego Rosegarden va a recortar cualquier espacio innecesario de la parte superior o inferior de éstos elementos cuando los renderiza. + + + + + + + + + + font-requirements + Éste elemento es solo importante para fuentes escalables. es usado para especificar que ésta fuente debe solo ser ofrecida si ciertos tipos de fuentes se encuentran disponibles, como también para asociar IDs con aquellas fuentes del sistema a las que referirse en el elemento font-symbol-map. Éste esquema es usado para decidir que fuentes de notación deben ser ofrecidas al usuario, y también permite crear una fuente de notación para Rosegarden desde mas de una fuente de sistema si así lo desea. + El elemento "font-requirements" debe contener una lista de elementos "font-requirement" hijos. Cada uno de ellos tiene dos atributos: "font-id", contiene un ID numéricode su preferencia para referirse en otro lugar del archivo, y también un atributo "nme" o "names". Si se utiliza "name", se interpretará como el nombre de una sola fuente del sistema asociada al id de la fuente; si se utiliza "names", será tratado como una lista separada por comasde fuentes del sistema, y la primera que se encuentre será asociada al id de fuente. + + + + font-sizes + + El elemento "font-sizes" especifica que tamaños de fuente de notación se encuentran disponibles, y como los tamaños de fuente nominales se relacionan con las dimensiones de elementos no-fuente como plicas, pentagramas y ligaduras. El atributo "size" (tamaño) de una fuente de notación se asume de ser la distancia en pixeles entre lineas del pentagrama, o mas precisamente, la altura de una cabeza de nota convencional que rellena completamente el espacio entre líneas: por lo tanto, el tamaño no incluye el grosor o la proximidad de las líneas del pentagrama. + + Existen dos posibles elementos hijos de "font-sizes": "font-scale" y "font-size". Su uso depende del tipo de fuente que se está describiendo. + + Para fuentes de mapa de pixeles (no escalables), el elemento "font-sizes" debe contener una lista de elementos "font-size", uno para cada tamaño de mapa de bits disponible. Los mapas de bits por sí mismos deben ser instalados en el subdirectorio fonts/<font-name>/<font-size> del directorio de instalación de Rosegarden, donde <font-name>es el nombre de la fuente (como fué especificado en el elemento "rosegarden-font-encoding" al comienzo del archivo de mapeo), o una versión en minúsculas del nombre, y <font-size> es el tamaño en pixeles de la fuente. Un tamaño específico será disponible al usuario solo si tiene una entrada en la lista "font-sizes" y el directorio de mapa de pixeles es encontrado. + + Para fuentes escalables, el elemento "font-sizes" debería contener un elemento "font-scale" que define la relación entre elementos de fuente y no-fuente en una forma general, y también define la relación entre el tamaño nominal de fuente de Rosegarden y el tamaño de la fuente de sistema correspondiente. Si el elemento "font-scale" no se encontrara, entonces Rosegarden asumirá que la fuente se encuentra disponible en cualquier tamaño. De todas maneras se puede incluir uno o mas elementos "font-size" para definir proporciones precisaspara cualquier tipo particular de tamaño para los cuales las proporciones generales no funcionan correctamente, por ejemplo debido a un error de redondeo. + + Los atributos de "font-scale" y "font-size" son muy similares. La diferencia principal es que todos los atributos de "font-scale" son valores de punto flotante relativos al tamaño de la fuente, donde 1.0 es el tamaño de la fuente base (i.e. la distancia entre líneas del pentagrama), mientras que los atributos de "font-size" son valores enteros de pixeles. Los atributos disponibles son los siguientes. Aquellos marcados como "optional" tienen resultados vagamente sensibles, por lo que es una buena idea tratar de no setearlos primero. + + + + + note-height + + Éste atributo se encuentra disponible solo para el elemento "font-size", y es obligatorio en ése elemento. Define el tamaño base de la fuente en el cuál los otros atributos se aplican, y un tamaño que será ofrecido al usuario y usado al momento de buscar mapas de pixeles para ésta fuente. + + + + + font-height + + Puede ser usado tanto en "font-size" como en "font-scale". Es sólo relevante para fuentes escalables, pero es obligatorio para ellos si es usado en el elemento "font-scale". Define el tamaño de la fuente de sistema usada para dibujar un tamaño dado de fuente de notación. + + + + + beam-thickness + + Opcional. Define el grosor de una ligadura. + + + + + staff-line-thickness + + Opcional. Define el grosor de una línea de pentagrama. + + + + + stem-thickness + + Opcional. Define la anchura de un note stem. + + + + + flag-spacing + + Opcional. Define el espacio entre note flags en los casos en donde se dibujan múltiples flags repitiendo uno muchas veces. + + + + + border-x + + Opcional. Especifica que los mapas de pixels de los note heads tienen un área fija a derecha e izquierda que no debe ser considerada parte del mismo. Este atributo fija la anchura de ese área. + + + + + border-y + + Opcional. Especifica que los mapas de pixels de los note heads tienen un área fija arriba y abajo que no debe ser considerada parte del mismo. Este atributo fija la anchura de ese área. + + + + + + + + mapa tipo de letra-simbolo + Este elemento lista los símbolos disponibles en este tipo de letra, y desde que archivos de mapa de pixeles o tipos de letra del sistema debe dibujarse. + + Debería contener una lista de elementos "símbolo". Estos tienen numerosos atributos posibles, la elección de los cuales dependerá de si la fuente esta basada en mapas de pixeles o tipos de letra del sistema. + + + + name + + Obligatorio. Este atributo debería contener el nombre del símbolo. Si el símbolo existe en el estándar Unicode 3.2, el nombre debería usarse para identificar el símbolo en el estándar. + + La mayoría de los símbolos que Rosegarden espera encontrar están en el estándar; una excepción es que muchas fuentes tienen una versión especial del símbolo flag, que se utiliza en los casos en donde se componen múltiples flags a partir de uno solo. Rosegarden se refiere a esto como "MUSICAL SYMBOL COMBINING FLAG-0", un nombre no utilizado en el estándar Unicode (que tiene los flags 1-5 solamente). + + Para una lista definitiva de los nombres de símbolo reconocidos por Rosegarden, vea el archivo "gui/notecharname.cpp" en su código fuente. Notar, sin embargo, que es posible usar nombres de símbolo adicionales introduciéndolos en estilo notación. + + + + + src + + El nombre del archivo de mapa de pixels desde donde se carga el símbolo, sin directorio o extensión. Esta es la forma usual de describir un símbolo en un tipo de letra pixmap. El archivo en si debe ser instalado en fonts/<font-name>/<font-size>/<src>.xpm dentro del directorio de instalación de Rosegarden. + + + + + inversion-src + + El nombre del archivo de mapa de pixels desde donde se carga la versión invertida del símbolo, sin directorio o extensión. Si este atributo esta ausente y se requiere una versión invertida del símbolo, sera generado cargando la versión normal y reflejándola en el eje x central. + + + + + code + + El punto del código en el cual se encuentra el símbolo en el tipo de letra del sistema, como un entero decimal. Esta es una manera de describir un símbolo en una fuente escalable. Este atributo solo sera referenciado si no se proporciona un archivo de mapa de pixels o si el mismo falla en el momento de la carga. + + + + + inversion-code + + El punto del código en donde se encuentra la versión invertida del símbolo en el tipo de letra del sistema. Si este atributo esta ausente y se requiere una versión invertida del símbolo, sera generado cargando la versión normal y reflejándola en el eje x central. + + + + + glyph + + El índice raw glyph en donde se encuentra el símbolo en el tipo de letra del sistema, como un entero decimal. Esta es una forma de describir un símbolo en un tipo de letra escalable. Este atributo sólo será referenciado si no se proporciona un archivo de mapa de pixels o si falla la carga del mismo. + + + + + inversion-glyph + + El índice raw glyph en el que se encuentra la versión invertida del símbolo, en el tipo de letra correspondiente. Si se omite este atributo y se necesita una versión invertida del símbolo, el mismo se generará cargando la versión normal y reflejándola en su eje x central. + + + + + font-id + + El identificador del tipo de letra del sistema desde el cual se cargara el símbolo, según lo definido en el elemento requisitos de tipo de letra. El valor por defecto es 0. + + + + + codebase + + Este atributo (entero decimal) debe ser útil si muchos de los símbolos en un tipo de letra escalable cubren un rango corto de puntos de código, comenzando en un código de página relativamente alto. Si es incluido, el valor codebase sera agregado a cada uno de los valores de los códigos (y códigos inversos) al buscar un símbolo. + + + + + + Si bien ninguno de estos atributos es obligatorio excepto el nombre, un símbolo obviamente necesita tener por lo menos algún "src", "inversion-src", "code", "inversion-code", "glyph", or "inversion-glyph" para tener alguna chance de ser interpretado. Por supuesto, es perfectamente legítimo suministrar muchos de estos atributos. + + + + + font-hotspots +   + + + + + + + + Creando nuevos estilos de notación + + El editor de notación de Rosegarden tiene la habilidad de mostrar y editar notas en varios estilos estándar: clásico, diamond heads, etc. Todos estos estilos están definidos mediante archivos XML instalados con la aplicación y es posible crear nuevos escribiendo un simple archivo XML. Rosegarden solo mira el conjunto de archivos instalado para determinar que estilos puede ofrecerle al usuario. Puede ver el conjunto de archivos por defecto en el subdirectorio estilos del directorio de instalación de Rosegarden para ver ejemplos. + + El formato de archivo no es especialmente comprehensivo aun, por el momento ha sido diseñado para ser lo suficientemente poderoso para describir los estilos estándar incluidos en Rosegarden, pero no mucho mas.Si usted intenta crear nuevos estilos de esta forma, estaremos muy interesados en recibir sus comentarios en la lista de correo de Rosegarden. + + + Estilo de notación en formato XML + + Este es un sumario de los elementos XML que pueden usarse en un archivo de definición de estilos. + + + rosegarden-note-style + + Este elemento debe existir en cada archivo de estilos y debe contener a todos los demás elementos. Tiene un atributo opcional, "base-style", el cual puede usarse para nombrar un estilo del cual el estilo actual toma valores por defecto para cualquier parámetro no especificado en el archivo. Habitualmente es una buena practica definir un estilo en términos de la diferencia mínima con un estilo base dado: vea el archivo Cross.xml proporcionado para un ejemplo particular simple. + + Notar que el elemento "rosegarden-note-style" no da el nombre del estilo definido, el cual es extraído del nombre del archivo. El el futuro podríamos agregar atributos para nombres de estilo internacionales a este elemento. + + + + global, note + + Con el elemento "rosegarden-note-style", puede haber un elemento "global" y cualquier cantidad de elementos "note". Los describimos juntos porque sus atributos son casi idénticos. El elemento "global" simplemente provee valores por defecto para aquellos parámetros no especificados para un tipo de nota en particular en cualquiera de los elementos "note" que lo siguen. + + Los atributos para estos elementos son los siguientes. Todos son opcionales, a menos que se indique lo contrario: + + + + + type + + Sólo es relevante al elemento "nota", y es obligatorio para ese elemento. Este atributo especifica que clase de nota esta siendo estilizada. Los valores legales son los nombres americanos o ingleses de las notas (desde "64th", "sixth-fourth note", "hemidemisemiquaver" etc, a "double whole note"). + + + + + shape + + Define la forma de un note head para este estilo. Cualquier cadena de caracteres es un valor legal, pero los únicos valores implementados son "angled oval", "level oval", "breve", "cross", "triangle up", "triangle down", "diamond" y "rectangle". El valor "number" también es reconocido pero no esta implementado aun. + + + + + charname + + Define un nombre de carácter para ser usado como note head para este estilo. Un elemento puede proporcionar un atributo "shape" o "charname", pero no ambos. El nombre debería ser uno de los definidos en el tipo de letra de la notación actual... ??? + + + + + filled + + Especifica cuando esta nota debería tener filled head (cuando es aplicable, por ejemplo cuando el atributo shape proporciona una forma disponible como filled o unfilled). Debe ser "true" o "false". + + + + + stem + + Especifica cuando esta nota debería tener un stem. Debe ser "true" o "false". + + + + + flags + + Define cuantos flags o beams debe tener esta nota. El rango válido es entre 0 y 4. + + + + + slashes + + Define cuantos slashes debe tener esta nota a través de su stem. + + + + + hfixpoint + + Especifica en que posición x se fija el stem al note head. Los valores aceptables son "normal" (el lado derecho cuando el stem apunta hacia arriba, el izquierdo cuando apunta hacia abajo), "central" y "reversed" (lado izquierdo cuando el stem apunta hacia arriba, derecho cuando apunta hacia abajo). + + + + + vfixpoint + + Especifica en que posición y se fija al stem al note head. Los valores aceptables son "near" (el stem se fija al tope cuando apunta hacia arriba, a la parte inferior cuando apunta hacia abajo), "middle", o "far". + + + + + + + + + + + + + + + + + + + + + Créditos y Licencia + + + Rosegarden + + + + + Rosegarden-4 es Copyright 2000-2004 Guillaume Laurent, Chris Cannam y Richard Bown. Los derechos morales de Guillaume Laurent, Chris Cannam y Richard Bown serán identificados ??? + + + + Partes de Rosegarden-4 son derivadas de Rosegarden 2.1, que es Copyright 1994 – 2001 Chris Cannam, Andrew Green, Richard Bown y Guillaume Laurent. + + + + Para reproducir notación musical, Rosegarden utiliza mapas de pixels derivados del tipo de letra Feta, parte del software Lilypond, que es Copyright 1997 – 2001 Jan Nieuwenhuizen y Han-Wen Nienhuys. + + + + Otros colaboradores importantes son Randall Farmer, Ron Kuris, Hans Kieserman y Michael McIntyre. + + + + La imagen de bienvenida de Rosegarden es de una postal del 1900 de Thornden Park en la Universidad de Syracuse, Syracuse, NY, usada con permiso del personal de la universidad. + + + + + + Documentación: copyright 2002-2004 Chris Cannam, Richard Bown, Guillaume Laurent + + + + Este programa esta licenciado bajo los términos de la GNU General Public License. + + + + + + Historial de revisiones de Rosegarden-4 + + + 0.9.9 – Julio 2004: mejoras en extensiones de síntesis, segmentos ??? y notación + 0.9.8 – Mayo 2004: mejor subsistema de audio + 0.9.7 – Febrero 2004: + 0.9.6 – Diciembre 2003: correcciones + 0.9.5 – Noviembre 2003: muchas mejoras + 0.9.1 – Mayo 2003: grabación por pasos, exportación Mup, numerosas correcciones + 0.9 – Abril 2003: numerosas mejoras en la notación, editor de bancos mejorado, mejoras de audio, traducciones + 0.8.5 – Diciembre 2002: editor de bancos, filtros MIDI, boton panic + 0.8 – Octubre 2002: impresión, extensiones LADSPA, vista de matriz mejorada + 0.2.0 – Agosto 2002: soporte para archivos WAV, selecciones de barrido, ??? + 0.1.6 – Junio 2002: cuadro de dialogo de configuración, soporte Lilypond, cuadro de dialogo Cuantificar + 0.1.5 – Mayo 2002: KDE 3, soporte ALSA, soporte para JACK + 0.1.4 – Marzo 2002: Deshacer mejorado, edición de segmentos, reproducción de audio + 0.1.3 – Enero 2002: vista piano-roll/matriz, grabación &MIDI; + 0.1.2 – Noviembre 2001: Deshacer notación, cuadro de dialogo transporte, puntero de posición + 0.1.1 – Octubre 2001: notación escalable + 0.1 – Junio 2001: primera versión de Rosegarden-4 + + + + + &documentation.index; +
    diff --git a/docs/ja/index.docbook b/docs/ja/index.docbook new file mode 100644 index 0000000..a1c09bf --- /dev/null +++ b/docs/ja/index.docbook @@ -0,0 +1,5376 @@ + +Rosegarden"> + MIDI"> + + +]> + + + + + + + + + + + + + Rosegarden ハンドブック + + + Richard + Bown + + + Chris + Cannam + + + Guillaume + Laurent + + + + + + 2002-2003 + Richard Bown, Chris Cannam, Guillaume Laurent + + + 2003-11-26 + 0.9.5 + + + + + + + + + + &rosegarden; + + + + + Rosegardenは音と &MIDI; シーケンサと楽譜エディタである。この + ハンドブックはどのようにこれを使うかを説明する。 + + + + + + Rosegarden + sequencer + MIDI + audio + music + notation + score + KDE + + + + + + + + 概要 + + + Rosegarden は&MIDI; と音シーケンサ + と楽譜エディタである。音楽の録音、編曲と作曲ができる。音楽は + 従来の楽譜か&MIDI; データ、あるいは指定した任意の音源かギターか + マイクからの入力で録音されたものか、一続きの音ファイルから + インポートされたもので表現される。 + sequencer and musical notation editor. It allows the user to + record, arrange and compose music. Music is represented either + by traditional score or &MIDI; data, or by sets of audio files + either imported or recorded from a microphone, guitar or + whatever audio source you care to specify. Music data can be + edited to create a composition, effects can be applied and the + resulting mix can be burnt to CD or turned into MP3/ogg format + suitable for distribution on the web. Professional notation + editing support also provides high quality printed output of the + composition. + + + + Rosegarden is designed to look and + act in a manner familiar to experienced users coming to Linux + from other platforms whilst also being accessible and friendly + to users new to music software generally. + + + + このハンドブックは参考資料と基本概念の簡単な概要と、&rosegarden; の + 使用法を含んでいる。これは + ここに + 置いてあるチュートリアル ではない。 もしも何か理解できないか、 + さらに助言が必要であれば、 + + Rosegarden webサイト にFAQ とメーリングリストがあるので + 見てほしい。 + + + + + + 変更記録 + + + + 0.9.5 – November 2003: a great many stuff + + + 0.9.1 – May 2003: step recording, Mup export, many many bug fixes + + + 0.9 – April 2003: many notation improvements, improved bank editor, audio enhancements and refinements, translations + + + 0.8.5 – December 2002: bank editor, MIDI filters, panic button + + + 0.8 – October 2002: printing, LADSPA plugins, improved Matrix View + + + 0.2.0 – August 2002: WAV file support, sweep selections, contrapuntal staves + + + 0.1.6 – June 2002: configuration dialog, Lilypond support, quantize dialog + + + 0.1.5 – May 2002: KDE 3, ALSA support, JACK audio support + + + 0.1.4 – March 2002: more undo, segment editing, audio playback + + + 0.1.3 – January 2002: piano-roll/matrix view, &MIDI; recording + + + 0.1.2 – November 2001: notation undo, transport dialog, position pointer + + + 0.1.1 – October 2001: scalable notation + + + 0.1 – June 2001: first public release of Rosegarden4 + + + + + + + + + + + + Rosegardenの使用法 + + + + + + + + ファイルとドキュメントの基礎 + + &rosegarden; は各々の楽曲情報を固有のドキュメントに、固有の内部 + 形式で格納する。ドキュメントをセーブするとき、ディスク上に、 + .rg 拡張子を付けたファイルとして格納される。&rosegarden; は、 + いくつかの、その他のファイル形式も扱うことができる。 + + + + 新しい楽曲情報 + + &rosegarden; の起動時には、編集を行なうための、"空白の"楽曲情報 + を含む新しいドキュメントが開かれる。その楽曲情報になんらかのもの + を配置するために、何らかを録音するか、色々な編集機能を使って埋める + ことができる、長さ0(空白)の音楽("セグメント"として参照される)を + 作成しなければならない。 + + 音楽の録音についての詳細の記述がある + 録音 と、どのように音楽のセグメントを作成、編集、編集するか + が記載されているトラックエディタ セクションを + 参照のこと。 + + + + + MIDIファイルの使用法 + + MIDIファイルをインポート/エクスポートするためには、 + ファイルメニューのインポートとエクスポートサブメニュー + 中にある + "MIDIファイルのインポート"と"MIDIファイルのエクスポート" + を使用する。 + + +     &rosegarden; がMIDIファイルのようなファイル形式をロード/セーブ + できるにもかかわらず、内部的にはMIDIデータを格納しない。 + 一般的には、&rosegarden; が、MIDIにエクスポートするときに + 失われる大量の情報を格納する &rosegarden; 固有の形式でセーブ + することを選択しなければならない。 + + + MIDIファイルがロードされると、&rosegarden;は音楽データを + MIDI1トラックごとに1つのトラックに分割するか、ファイルに送り + 込み、 + は適切な楽器のマッピングを + 行ない、 MIDIパフォーマンスデータのために + もっともな楽譜を計算することを試みる。 + + + + + ファイルのマージ + + ファイルをロード/インポートするだけではなく、現在のドキュメント + 中にそれらをマージすることも、すでにそこにあるファイル中にある + セグメントを追加することもできる。 + + + + ファイルをマージするために、オープン又はインポートオプションを + 使う代わりに、ファイルメニュー中のマージサブメニュー上の適切な + オプションを使う。 + + + + + 印刷 + + ファイルメニュー中の"印刷"機能を使うことで、 + 楽譜として楽曲情報を印刷することができる。 + + + + 楽譜を演奏データから作成することは大変な作業なので、 + ほとんどの場合、MIDIデータに基づく既定値の印刷結果がとても読み + やすいことを期待するのは無謀である。印刷する前に、楽譜を + 楽譜エディタ + を使って整形すべきである。 + (演奏データからの作譜 + も参照のこと。) + + + + 注意深く扱うことによって、 &rosegarden;はとても読みやすい楽譜を + 作成する能力がある。たとえそうでも、スクリーンエディタとして + デザインされたのであって、写植機ではない。本当に印刷品質の + 楽譜を作成したいのであれば、&rosegarden; と結合できる + Lilypond + を考慮すべきである。 Lilypond は楽譜の写植を行なうソフトウェアで、 + 特別なテキストファイル形式を読み込み、高品質の活字化された + 楽譜を生成する。 + &rosegarden; はファイルメニュー中のエクスポートサブメニュー上の + "Lilypondにエクスポート"を使うことでLilypondファイルを書き出す + ことができる。 + + + + + + + トラックエディタ + + 概要 + + &rosegarden; のメインレイアウトは、その他の一般的なシーケンサ + とよく似たコンセプトである。これは、— のトラック + コンセプトを基礎としていて、メインウィンドウはトラックの + 一覧を表示しているトラックエディタを表示し、そのトラックは、 + 左側の下の楽器に関連付けられている。 + (notation、 matrix、と event list)という特化した + エディタ中でセグメントそれ自身をオープンするのと同じように、 + トラックエディタ上で(“セグメント”として参照 + される)音楽データのブロックを移動したり操作することができる。 + + + + + + + + + + &rosegarden;'s Track Editor showing two segments of music data + + + + + + + トラックは、&MIDI;のレンジや、オーディオ楽器(audio instruments) + に割り当てることができる。上記の絵の中では、トラックエディタ上で + 2つのセグメント(黄色がかった緑のブロックの部分)が表示されていて、 + それは"IIWU Synth"という楽器に割り当てられている。 + + + + トラックと楽器 + + 各々のトラックは、音を鳴らすために、それに割り当てられている + 楽器を持たなければならない。1つの楽器をトラックに割り当てるために、 + トラックラベル上で左マウスボタンをクリックしホールドする。 + するとポップアップメニューが表示され、その中に有効な楽器の + 一覧が表示される。 + + + 楽器というものは、&MIDI;デバイス上の1つのチャネル、あるいは + 1つのオーディオ出力として理解することができる。トラックには + &MIDI; 楽器に割り当てられなければならない音符データを含み、 + それらは、音から音へのinstrumentを含んでいる。1つ以上のトラックに + 同じ楽器を割り当てることができ、その場合、複数のトラックは + 同じ音を使う。 + + + 楽器パラメータ + ボックス を使うことで、トラックに割り当てられた色々な + プロパティを変更することができる。ここは、たとえば、特定の + パッチを使って特定の音(ピアノ、ストリング、その他)を出すために + MIDI楽器を設定するところである。 + + + 楽器についての詳細がある + Studio セクションを + 参照のこと。 + + + + セグメントの作成 + + 何らかの作曲を開始するために、1つの空白のセグメントを作成するために、 + 鉛筆ツールを使う必要がある。ツールバーの鉛筆をクリックし、 + セグメントを開始したい場所でまたクリックし、 + (at the correct height for the + track you want the segment to be on, and at a distance + across the editor window corresponding to the correct time) + セグメントが正しい長さのバーになるまで右にドラッグする。 + + + + 既定値では、新しいセグメントはバーライン上で開始し、バー単位で + 拡張するが、これは、クリックとドラッグ中シフトキーを押すことに + よってグリッドに張り付く効果を抑止できる。 + + + + 一度セグメントを作成すると、 + マトリクス 又は notationエディタを使って編集を + 開始できる。それらのエディタを使うためには、セグメントをダブル + クリックするか、右マウスボタンをクリックし、コンテキストメニュー で使いたいエディタを選択する。 + + + + MIDIデバイスかオーディオ入力からの録音を考えているならば、 + 最初に新しいセグメントを作成する必要はない -- それぞれの分離 + された録音は、録音中に自動的に作成される常に新しいセグメント + 中に入る。 + + + + + セグメントの操作 + + メインウィンドウはセグメントを編集するための"ツール"の集まり + が用意されている。それらはメインツールバーで有効になっている。 + 最初にツールバーから使いたいツールを選択し、メインキャンバス上の + セグメント上にクリックとドラッグを行なう。 + + + + 選択ツール + + "選択ツール"(矢印ツール)は実際には他目的のツールである: + それは選択、移動、コピー、リサイズとセグメントの作成に + 使える。 + + + 最も明白な使用方法は"選択"である:これは、選択ツールで、 + セグメントを、 + セグメント上でクリックすることで1つを選択するか、 + シフトキーを押したままでクリックしていくつかを選択するか、 + ウィンドウの空白の領域中でクリックして領域外にドラッグする。 + + + + 選択ツールでセグメントを移動するためには、単にクリックし、 + セグメントをドラッグする。コピーを作成するためには、クリックし、 + セグメントの右端をドラッグする。新しいセグメントを作成するため + には、中マウスボタンで空白の領域をクリックしてドラッグする。 + + + + 選択ツールは、時々、—が + 特に小さなセグメント上で、意図している動作により明確にする必要がある + にもかかわらず、 + その他のツールを完全に置き換えるものではない。 + + + + + + 移動とリサイズツール + + セグメントを別の開始時間又はトラックに移動するためには、 + 移動ツールを使い、移動したい場所に、セグメント上でクリックし + ドラッグする。もしも、Ctrlキーを押したまま移動するならば、 + セグメントは移動でなはくてコピーされる。 + + + + セグメントのリサイズをしたいならば、リサイズツールを使い、 + セグメントの右端をクリックし、ドラッグする。 + + + 移動とリサイズの両方のために、特定のグリッド位置に張り付くのを + 防ぐため、シフトキーを押すことができる。 + + + + + + 分割ツール + + + + + + + + を、1つのセグメントを2つの分離されたセグメントにするために + 分割ツールを使うことができる。セグメントを分割するために、 + 分割ツールを選択し、分割したい点でクリックする。 + + + 既定値では、セグメントは、カーソルに関係した最も近いバーラインに + 分割されるが、これはセグメントを分割している間シフトキーを押すこと + で抑制できる。 + + + + + + セグメントパラメータボックス + + + + + + + + + &rosegarden;'s segment parameter box + + + + + + + セグメントパラメータボックスは、選択されたセグメントのいくつかの + 外見を変更することができる。もしも1つのセグメントが現在選択され + ているのならば、そのパラメータはセグメントパラメータボックス中 + で表示され、そこで編集できる。もしも複数のセグメントが選択されて + いるのならば、パラメータボックスは選択されたセグメントすべてで + 現在共通な値のみが表示されるが、それらは変更でき、それはすべての + 選択されたセグメントに反映される。 + + + + ラベル + + + 選択されたセグメント(もしも同じラベルを持っているならば、 + 複数のセグメント)のラベルを表示する。"..."ボタンをクリック + してラベルの編集ができる + + + + + 繰り返し + + + 選択されたセグメントの繰り返しのon/offを切り替える。繰り返しを + 指定されたセグメントは、同じトラック上の継続するセグメントの + 開始点まで繰り返すか、継続するセグメントがない場合、楽曲の + 最後まで繰り返す。 + + + + 繰り返しているセグメントの繰り返している部分は、オリジナルの + セグメントに比べて、メインキャンバス上で淡い色で表示される。 + セグメントメニュー上で"Turn Repeats into Copies"オプションを + 使うか、単に単一の繰り返しブロック上でダブルクリックを行なう + ことによって、オリジナルのセグメントを真に編集可能なコピーに + 変更することができる。 + + + + + + Quantize + + + 選択されたセグメントのquantizationを表示する。 + すべてのそれらの音符の開始時間を簡単にquantize + するために、これを変更することができる。 + より詳細なquantizationはセグメントメニュー上の + Quantize機能を使う。 Quantization + に詳細がある。 + + + + + + Transpose + + + 選択されたセグメントに現在適用されているtransposition(in semitones) + を表示する。このtranspositionはセグメントが演奏されるときに適用され、 + マトリクス、notationまたはイベントリストエディタ内で表示される音符 + では見えない。楽曲全部または一部分のピッチを簡単に変更するために、 + これを使うことができる。 + + + + + ディレイ + + + 選択されたセグメント上で現在効力のあるディレイを表示する。 + 演奏するために、後で書くより、セグメント全体にさせるために、 + ここでディレイを設定することができる。このディレイはセグメントが + 演奏されるときに適用されるが、マトリクス、notationまたはイベント + リストエディタ内で表示される音符では見えない。 + + + You can set a delay either in musical time (by + choosing a note duration from the delay dropdown), + in which time the exact delay will depend on the + tempo, or in real time (by choosing a time in + milliseconds from the dropdown). + + + + + + + + + 選択されたセグメントが表示されるときに使われる色を表示する。 + ドロップダウン機能を使うか、ドロップダウンで見付からない場合、 + "新しい色を追加"オプションを選択することでその他の色を選択できる。 + + + 編集メニュー上の"ドキュメントプロパティの編集" + (ドキュメントプロパティダイアログの色ページを選択) + を使うことによって色の管理と名前の変更もできる。 + 変更された色のパレットはRosegardenファイル中の楽曲 + データと共にセーブされる。 + + + + + + + &rosegarden;の色マネージャ + + + + + + + + + + + + + 楽器パラメータボックス + + + + + + + The Transport + + トラックエディタは、割り当てられた楽器にたいして配置される一連の + セグメントを表示する。楽曲を演奏するとき、&rosegarden; はそれが + クロスしているセグメントの内容を演奏するときに左から右へとトラック + 上でポインタを横切る。画面上でのポインタの位置は、Transportと + 呼ばれるダイアログによってtrackされ制御される。 + + + + + + + + + + &rosegarden;'s Transport dialog + + + + + + + もしもTransportが見えないならば設定メニューに行くことで + 有効にできる。 + ( 設定 + Transportの表示 ). + + + + Transportは最初のバー(秒単位)または、24-fpsSMPTE + 中の時間又は代わりにバーとビートからの絶対時間の + ポインタの現在位置を表示する。それは、希望するならば、 + 楽曲の最後からの時間も表示できる。それらの機能はメインの + transport表示の左にある小さなボタンによって制御できる。 + + + + transport上のメインコントロールはシーケンサの演奏を起動、一時停止、 + ポインタの位置の早送り、巻き戻し、停止または楽曲の最初/最後への + 移動を行なう。 + + + + 追加のコントロールと &MIDI; イベントはtransport上の下部にある + 矢印ボタンの左に隣接しているものでon/offすることができる。 + さらに、この特別な部分は録音、ループ、ソロとメトロノームの実行 + ボタンがある。 + + + + + + スタジオ + + + デバイス、楽器と接続 + + + Rosegardenは"スタジオ"という単語をコンピュータに繋がれる + サウンドシステムについて知っているモのすべてを参照するために + 使う。これは、&MIDI; とオーディオ用のハードウェアとその他の + サウンドソフトウェアを含んでもよく、さらに、接続状態の情報と + 構成(configuration)と&MIDI; パッチやその他を含んでもよい。 + + + + 用語の3つの部分はここで重要である: + + + + + デバイス + + + デバイスはRosegardenの範囲において + 関係するものは、単に音を生成する能力がある何かである。 + これはMIDIシンセサイザーやオーディオデバイスでもよい。 + MIDIデバイスは物理的なMIDIポートに直接対応する必要は + ない:それらは参照することができ、特定の手段で動作する + ことを期待する、名前を持つ何らかのものである。MIDIパッチ + マップのような構成情報は、デバイスに割り当てることができる。 + + + + + + 楽器 + + + 各々のデバイスはいくつかの楽器をもち、 + それらの各々は、特定の音を作るために仮定される。それらは + 音を演奏するために選択されたトラックに割り当てることができる + ものである。既定値ではデバイスは起動時に生成される16の + 楽器を持つ:もしも、デバイスがMIDIデバイスであれば、16の + MIDIチャネルのうちの1つに初期化される。楽器はたとえば、 + プログラムの設定、リバーブ(reverb)、ボイスなどのような + 特定のボイスのすべてのプロパティである。 + + + + + + 接続 + + + MIDIデバイスが単に名前で、構成情報の集合の間は + 接続はどのMIDIポートに物理的に割り当てられている + かを指定する。これは、MIDIデバイス管理ダイアログ中で構成 + することができる(オーディオデバイスは同じ方法では接続を + もたない)。 + + + + + + + + 例をあげると、セットアップが、2つの物理MIDIポートを持つPC + によって成り立っていて、その1つは外部のシンセサイザー + が接続されていることを想像する。ここでは1台のシンセサイザーに + 対応するMIDIデバイスを持つために、通常Resegardenを構成する。 + 次に、このデバイスについて、名前を修正し、マップをパッチする + ように構成することができ、次にサウンドカードの関連するMIDI + ポートにそれを結合するために接続を指定する。それぞれの16個の + デバイス上の既定値の楽器は適切なプログラムとともに構成でき、 + それらをトラックに割り当てられる。 + + + 実際の所、Rosegardenは既定値で、起動時に有効な接続をおのおのの + デバイスに対して作成するだろう。そのため、上記の例では、 + 2つのMIDIデバイスは1つのみが必要だったとしても既定値で2つの + デバイスが作成されるだろう。一般的に、最初のものに対して + 名前を変え、パッチマップを適用し、2つめのものに対しては、 + 削除するか未使用にする。コンピュータ上のMIDIポートに実際に + どのシンセサイザーが接続されているかをRosegardenが知るすべは + ないことを記憶しておくこと。この理由により、起動時に作成され + るデバイスは、既定値のセットになる予定であり、構成するデバイスが + 本当に使うものに一致しているかどうかはあなた次第である。 + + + + 一度構成されると、スタジオのセットアップはセーブするRosegarden + 形式のファイルに毎回保存される。 + + + + + &MIDI; インポート上のスタジオのマッピング + + 楽曲情報に &MIDI;ファイルをインポートするとき、&rosegarden; は + &rosegarden; の楽器上に &MIDI; プログラムをどのようにマップするかを + 決めるために、存在するスタジオのセットアップを使用する。 + 目的は、スタジオ中に実際に存在するマップされた1つの楽器を、 + すべての &MIDI; プログラムが得ることを確実にすることであり、 + (そして、そういう理由で、実際にコンピュータに割り当てられる) + そのため、すべての &MIDI;トラックは聞くことができる。 + + + + インポートされたファイル中に見付かった、&MIDI; プログラム + チェンジとバンクセレクトイベントはインポートのときに使用されるが、 + スタジオ中の1まとまりの楽器から各々の&MIDI;トラックのための + 適切な楽器を見つけるのを手助けする手段としてのみ使われる。そのため、 + 例をあげると、もしもスタジオが現在GM楽器(音源) + のみ含んでいるようにセットアップされていた場合で、 + GS プログラムチェンジをその上に含む&MIDI;ファイル + をインポートした場合、&rosegarden;はGSバンク + をGMにリマップする。なぜならば、ファイルを + インポートするときに知っているすべてだからである。オリジナルの + GS プログラムナンバーを憶えているわけではない。 + + + + このことは、&MIDI; ファイルをインポートする前に、 + 実際に持っているデバイス向けに正しくスタジオを + 構成することを確実にしなければならない、ということを意味する。 + それ以外では、&MIDI;ファイル中のプログラムデータは失われるだ + ろう。 + + + + + + MIDIデバイスの管理 + + + + + + + + + The MIDI device manager + + + + + + + MIDIデバイスマネージャダイアログは現在有効なMIDIデバイスと + どこに繋がっているかを表示する。このダイアログに到達する + ためには、スタジオメニューのMIDIデバイス管理機能を使う。 + + + + デバイス、楽器、と接続 + 中で説明されているように、既定値では Rosegardenは + 起動時に、もっともらしいデバイスのセットを提供しようとする。 + しかし、既定値の構成では、通常は最適ではないかもしれないので、 + このダイアログはデバイスの名前を変更し、それらの接続を変更 + し、再生/録音方向の接続を修正する。 + + + + 各々のここでリストされた再生デバイスは、通信(talk to)するため + のMIDIトラックのためのターゲットを提供する。もしも、新しい + 再生デバイスを追加するならば、トラックに割り当てることができる + このデバイス上の16の新しい楽器を持つことができるだろう。 + もしも、そのデバイスに対する接続を割り当てるならば、 + トラックはその接続に割り当てられた任意のMIDIシンセサイザー + の適切なチャネル(楽器によって依存する)で再生するために + 割り当てられる。 + + + + ここでリストされた録音デバイスは、MIDIを録音することが + 可能なソースを意味する。それらの1つはこのダイアログ中でその + 時点で有効状態になっている。 + + + + + + MIDIデバイスのバンクとプログラムの管理 + + + + + + + + + The MIDI bank and program editor + + + + + + + おのおののMIDIデバイスは複数の楽器を含み、それらの楽器を + トラックに割り当てることができることを憶えておくこと。 + MIDI用語中では、おのおのの楽器はMIDIシンセサイザー上の + 1つのチャネルに対応する。使用する各々の楽器のシンセサイザー + 上の有効なボイス(サウンド)のどれかを選択することができるが、 + この理由により、すべての有効なボイスの名前をRosegardenが + 知っているようにする必要がある。 + + + + このダイアログはプログラムのバンク(ボイスの名前)をMIDIデバイス + に接続することを可能にし、それゆえ、 + + 楽器パラメータボックス + 中のそれらのボイスの1つを使うために、デバイス上の各々の楽器は + セットされる。 + + + + デバイスのプログラム名をセットアップするための通常の方法は、 + 単に提供されるデバイスファイル(".rgd")の1つからそれらを + インポートすることである。これを行なうために、ダイアログの + 左のリスト中のデバイスを選択し、リストの下のインポートボタン + をクリックし、シンセサイザーに対応する.rgdファイルを選択する。 + + + + もしも、シンセサイザー用に何らの.rgdファイルが有効になっていない + のであれば、新しいバンクを作るためにこのダイアログを使うことが + できる。これを行なうために、シンセサイザーのMIDI実装チャート中の + プログラムマップを見つけ、すべての名前を手入力で入力する必要が + ある。次にそれを他のRosegardenユーザのために.rgdファイルに + エクスポートする。もしもそれを共有したいのであれば、 + rosegarden-userメーリングリストにコンタクトしてほしい(これは + どのようにして、Rosegardenと共に存在するすべての.rgdファイルが + 含まれているかの理由である)。 + + + + もしも、ソフトウェアシンセサイザーかSountFont(.sf2)ファイルを + 使うサウンドカードを使っているならば、このダイアログ中に + .sf2ファイルから正しいプログラム名を単純に直接ロードすることが + できる。通常と同じようにインポートをも止められたら、.rgdファイル + の代わりに.sf2ファイルを選択する。 + + + + Variations + + + いくつかのMIDIデバイス(たとえばローランドからのもの)は、 + "variations"として知られているスキームを使うプログラム名 + を体系化している。それらのデバイスのために、一般的に + 基本的なプログラム名—を最初に選択することによって + プログラムを選択したい。そして、電子ピアノのようなプログラム + —上の1セットのvariationsを選択する。これは、一般的な + MIDIベースのシンセサイザーと対象的であり、それはバンク中に + それらのプログラムを組織化し、バンクを最初に選択することを + 期待し、次にそのバンクからプログラムを選択する。 + + + + Rosegarden はvariationを使うデバイスをサポートできるが、 + バンクフォーマット中にプログラム名を入力しなければならない。 + 内部的に、variationを使うデバイスはvariationsとの間で + 選択するために、MIDIバンク選択コントローラを使う。 + variationを選択するために、デバイスがLSBかMSBのどちらかの + バンクセレクトを使うかを、シンセサイザーのドキュメントから + 見つけ出す必要があり、どのバンク番号がどのvariationに + 対応しているかを見つけ出す必要がある。次に、通常として、 + バンクを入力し、バンクダイアログ上の、 + "MSB/LSB上のVariationリストの表示"オプションを使い、 + Rosegardenに楽器パラメータボックス内でそのデバイスが表示される + ときにバンクの代わりにvariationが表示するように伝える。 + + + + + + + メトロノーム + + Rosegarden は内蔵の2ツのメトロノームを持っていて、その1つは + 録音中に使い、もう一つは通常の再生中にスイッチすることができる。 + それらはMIDI楽器にノートを送ることによって動作し、両方の + メトロノームは同じ楽器、ピッチとベロシティ情報を使う。 + + + + + + + + + + &rosegarden;'s metronome configuration dialog + + + + + メトロノームを構成するためには、スタジオメニュー上の + "メトロノームの管理"オプションを使いメトロノームダイアログを + 起動する。そののち、メトロノームのためのMIDI楽器とメトロノーム + の解像度(1つのビートあたりのティック、ビートの再分割、 + あるいはビートあたり1つ)を選択できる。MIDIシンセサイザーの + 実際のボイスのようなプロパティは選択された楽器に依存する + メトロノームのティックのために使われ、トラックに割り当てられた + 楽器に依存するMIDIトラックのために使われるボイスのようである。 + メインウィンドウ上でそれにをラックを割り当てることで楽器を + 構成することができ、楽器パラメータボックスから正しいプログラム + を選択することができる。 + + + + メトロノームの録音と再生はTransportウィンドウでメトロノーム + ボタンによってonまたはoffすることができる。このボタンは + 録音が供給されているか、実行中の時にメトロノームの録音を制御し、 + 録音メトロノームはonにされ、再生メトロノームはoffにされる。 + + + + + MIDIフィルタ + + + + + + + + The MIDI filter dialog + + + + + + + このダイアログを使うことで、どのMIDIイベントをRosegardenが + MIDI THRUを使ってイベントを送るか、それを単に録音するかで + 受け付けたり無視したりすることを決められる。このダイアログ上の + チェックボックスを使うことで、RosegardenにどのタイプのMIDI + イベントを送るか録音するかを希望しないことを伝える。 + + + + + + + + Quantization + + "Quantization" は音符の再ポジショニングのプロセスとその他の + イベントであり、 so that they start or finish on exact beat divisions. + It is traditionally used to make an approximate performance + into a precise but rather mechanical-sounding one, either + because precision is the desired effect or for a result such + as making the notes clearer in notation. + + + + The quickest way to quantize something is to do it in the main + window, using the Quantize menu on the Segment Parameter + Box. If you select some segments and change the value + shown in the menu, the segments will immediately be quantized + so that all their notes start at multiples of the note + duration in the menu. + + + + + + + + + + + &rosegarden;'s quantize dialog + + + + For more control, use the Quantize function on the Segments + menu of the main window, or on the Transforms menu of the + matrix or notation editors. This shows you a dialog in which + you can select the precise quantization parameters you need, + and then it applies these to all of the selected segments or + notes. + + + + + + + + + + マトリクスエディタ + + &rosegarden;のマトリクスエディタは、クリヤで論理的な形式で + 音楽を表示し、編集することを可能にする。それぞれの音符は + グリッド中のブロックとして表わされ、高さはピッチに関連する。 + + + + + + + + + &rosegarden;'s matrix editor + + + + それぞれのマトリクスエディタウィンドウは1つのセグメントを表示する。 + セグメントを編集するために、メインキャンバス上で右クリックし、 + メニューからマトリクスエディタを選択する。代わりに、セグメントを + ダブルクリックするときにマトリクスエディタが既定値のエディタに + なるようにRosegardenを設定することも可能である。 + + + + 音符の挿入 + + マトリクスビューにノートを挿入する一番簡単な方法は、マウスを + 使うことである。これを行なうために、ツールバー上で鉛筆ツール + を選択し、マトリクスエディタ上にクリックしドラッグする。 + 音符と、そこでクリックした点に関連するピッチが入力され、 + マウスボタンをリリースする前に関連した距離に関連するduration + を持つだろう。 + + + + 既定値では、時間とdurationはツールバー又は表示メニュー上のグリッド + 設定に添った形で、特定のグリッドユニットに貼り付けられる。 + クリックとドラッグ中にシフトキーを押したままにすることでこの効果を + 抑止できる。 + + + + PCキーボードからのノートのタイプ + + + Duration + + + キーボードからのノートのdurations入力は、ツールバー又は + 表示メニュー上のグリッド設定によって制御される。これを + 以下の数字キーを使って設定することができる: + + + 5 – Whole bar + 1 – Beat + 2 – Half note (minim) + 4 – Quarter note (crotchet) + 8 – Eighth note (quaver) + 6 – Sixteenth note (semiquaver) + 3 – Thirty-second note (demisemiquaver) + 0 – Sixty-fourth note (hemidemisemiquaver) + + + + + + ピッチ + + + 一旦正確なdurationがグリッドメニュー中で選択されると、 + 以下のピッチキーの1つを押すことによって、 + カーソルの挿入による + 現在の位置にノートを挿入できる。 + + + + A – ド (the tonic of the current key in the current clef) + S – レ + D – ミ + F – ファ + J – ソ + K – ラ + L – シ + + + キーを押す間にShiftキーを押すと、 + ノートが半音上がり、(シャープが定義されていないミとシは + 除く) ShiftCtrlキーを + 一緒に押すと、半音下がる(ファとドを除く) + + + 1オクターブ上を入力する場合は、 + use the corresponding + keys on the next row up: Q, + W, E, R, + U, I, と + Oを使う。 + 同様に、1オクターブ下を入力する場合には + Z, X, + C, V, B, + NMを使う。 + + + + + その他の注意すべき点 + + + すべてのコマンドの挿入はツールメニューのサブメニュー上で + 有効である。たった1つのノートを挿入するためにメニューを + 辿っていくことはありそうもないが、メニューはキーボード + ショートカットを表示しているので、どのキーがどの機能に + 割り当てられているかを忘れた場合には役に立つリファレンスを + 提供する。 + + + キーボードショートカットはQWERTYレイアウトキーボード用に + 現在デザインされている。その他のレイアウトにキーをリマップ + する方法はまだなく、設定メニュー上の"ショートカットの構成" + オプションを使うことによって各々のキーの再定義を個別に行なう??。 + short of reassigning each + key individually using the "Configure Shortcuts..." option + on the Settings menu. + + + + + + + MIDIキーボードからのノートの入力 + + + MIDIキーボード又はその他のMIDI制御デバイスを使うことで + マトリクスエディタ中にノートを入力することができる。 + マトリクスエディタはキーボード上で演奏したピッチを使うが、 + durationsはエディタそれ自身でのグリッドの設定中で選択したもの + You can enter notes into the matrix editor one at a time + using a MIDI keyboard or other MIDI control device. The + matrix editor uses the pitches you play on the keyboard, + but the durations you have selected in the Grid setting of + the editor itself. これは"ステップ録音"として知られている。 + + + + MIDIキーボードからノートを入力するために、最初に既定値の + MIDIデバイスにキーボードを構成することを確実にする必要が + ある。次に、ツールバー又は表示メニュー中で、このコントロールが、 + ノートのdurationとなる正しいグリッド設定を確実にする必要がある。 + Then make sure you have the right Grid + setting in the View menu or toolbar, as this controls the + note duration. + 次に、マトリクスエディタのツールバー上のステップ録音ボタンか + ツールメニューのステップ録音を選択する。MIDIキーボード上で + 押されたすべてのノート上のその点は、ウィンドウがクローズするか、 + 別のウィンドウが有効になるか、再度ステップ録音がoffにされるまで + そのウィンドウ中に現在の挿入時間で挿入される。 + + + + 異なったdurationのノートを挿入するために、ステップ録音実行 + 中の間グリッド設定を変更することができる。 + + + + + + ノートの選択 + マトリクスエディタ中でノートを選択するために、選択(矢印)ツール + にスイッチし、次に、選択したいノートを含む四角の領域を囲む。 + 選択されたイベントは青でハイライトされる。もしも1つのイベント + 上で代わりにクリックすると、そのイベントのみが選択される。 + + もしも、シフトキーを、ノートをクリックするか、 + 四角で囲む間押しているならば、新しい選択が、置き代わる代わりに + 存在する任意の選択に追加される。 + + + + 選択を解除したい場合には、マトリクスエディタの空白の場所で + クリックするか、エスケープキーを押す。 + + + マトリクスエディタの左端のピアノキーボードの下中でキー上で + シフトしながらクリックすることによって与えられたピッチの + ノートをすべて選択することができる。ピッチの範囲を選択する + ために、シフトキーをOSIながらドラッグすることもできる。この選択 + は、今まで選択したものに追加されるので、新しく選択したい場合には + 古いものを先に消す。 + + + + + 音符の移動とコピー + + 移動ツールと共にクリックしてドラッグするか、選択の後 + 選択ツールと共にドラッグするかをマトリクスエディタで + 行なうことによって時間とピッチの両方中でノートを移動 + することができる。 + + + ノートをコピーするためには、まず選択し、標準のコピーと + 貼り付け機能を使う。貼り付け後、張り付けられた音符は + 代わりに選択され、必要なところにどこにもドラッグすることが + できる。 + + + + + マトリクス表示の設定 + + + + + + + + Notationエディタ + + + + + 概要 + + + + &rosegarden;のnotationエディタは、伝統的なスコア記法中で + 1つまたはそれ以上のstaffを表示、編集することを可能にする。 + + + + + + + + + + &rosegarden;'s notation editor + + + + &rosegarden; はシーケンサアプリケーションとして、その主要な + 焦点と互換性を持つ、最高のレイアウトを提供しようとする。 + This means that although the editor supports + chords, overlapping and nested beamed groups, triplets and + arbitrary tuplets, grace notes, dynamics, accents, text and + so on, it does not provide as much fine control over layout + (especially in contrapuntal music) as a dedicated score + editing program might. + + 写植によい形式である、 + + Lilypondファイル を書くことができるのにもかかわらず、 + 写植品質の楽譜を&rosegarden;は生成することを目的としない。 + + + + + + + + 1つまたは複数のstaff + + + &rosegarden;メインウィンドウからnotationエディタを開く + 3つの方法がある(それらはすべて、メインウィンドウに + いくつかのセグメントが存在することを最初に要求し、 + そのため、もしも、新しい楽曲構成を始めるならば、 + それを編集することを考え始める前に、セグメントを + 作成する必要がある)。 + + + + + セグメント上でのダブルクリック + + + + 最も明らかな手段は、メインキャンバス中でセグメントを + ダブルクリックする方法である。これは既定のエディタ + (notation、マトリクスまたはイベントリスト)として + 構成されているもので、どこででもセグメントを + オープンし、既定値でこれはnotationエディタである。 + そのため、Notationエディタウィンドウ中で1つの + staffとして、1つのセグメントをダブルクリックする + と開く。 + + + この方法で複数のstaffをオープンすることもできる。 + シフトキーを押しながら、オープンしたい複数のセグメントの + 各々を、メイン表示上で選択(1つのマウスクリック)するが、 + 最後のものをダブルクリックする。選択されたすべての + セグメントは1つのnotationウィンドウ中に一緒に + オープンされる。 + + + + + + + 既定のエディタメニュー機能でのオープン(リターンキー) + + + + リターンキーは既定のエディタメニュー機能の中のオープン + のショートカットであり、それはダブルクリックと同じ + である。notationエディタ中で現在選択されている + セグメントすべてをまとめてオープンするか、既定値として + 構成したその他のエディタでオープンする。 + + + + + Notationエディタメニュー機能内でのオープン + + + 代わりに、メインウィンドウのメニュー機能内の + オープンた、キャンバス内のセグメント上の右ボタンの + ポップアップメニュー上でオープンすることもできる。 + 希望のセグメントを選択(上記のようにシフトキー+クリックか、 + + すべてのセグメントの選択機能のどちらか)し、 + 次に、Notationエディタ中でオープンを選択する。 + + + + + + + + + + もしも1つ以上のstaff(すなわちセグメント)をnotationエディタ + 内で表示したいのであれば、一時にそのうちの1つのみが"カレント" + にできる。 + カレントstaffは、その上に挿入カーソルを持つことで識別すること + ができ(ルーラとカーソル + を参照)、挿入用カーソルを使う編集操作が起こった上のstaff + である。this is the staff on which any editing + operations that use the insert cursor will take place. + 最上部のstaffは既定値ではカレントであるが、その上で + コントロールキーを押しながらクリックするか、 + Staff上のカーソルを上に + とStaff上のカーソルを下にメニュー機能を使うことで、 + 違ったstaffに切り替えることができる。 + + + + + + + + リニアとページレイアウト + + + notationエディタがstaffを表示する通常の方法は、 + リニアレイアウトとして知られているものである。1つのstaff + がその他の一番上にあり、それぞれのstaffは単独の、水平に + スクロール可能な長い行になっている。エディタ上のいくつかの + 機能は(ルーラのようなもの) + リニアレイアウトのみで有効である。 + + + + しかし、2つの違ったページベースのレイアウト内でstaffを + 表示させることも可能である。継続(Continuous)ページ + と複数(Multiple)ページである。 + + + 継続ページレイアウト内では、楽曲はウィンドウとして同じ + 幅の無限の高さのページとして編集される。各々のstaffは + 各行の終わりで区切られ、残りのstaffを以下に持つ新しい + 行で始まる。 + + + + 複数ページレイアウトでは楽曲は印刷されるときに真のページに + 分割される。それぞれのページのサイズは、実際に印刷される + 的にそれぞれのラインにほぼ同じ量の楽曲がフィットするように + 計算される(構成ダイアログ中で印刷の改造度のために指定された + ポイントサイズに従って)。印刷バージョンは、印刷するときに + 明確な紙の大きさとマージンに依存するので、まったく同じという + ことはありそうもないが、A4サイズを使うときにはそれはかなり + 近くなければならない。 + + + + + + + + + + 複数ページレイアウトでの&rosegarden;のnotationエディタ + + + + ほとんど、但し全部ではない、表示と編集機能はリニアレイアウト + と同じようにページレイアウトモードで動く。 + + + + 3つのレイアウトモードを切り替えるためには、リニアレイアウト、 + 継続ページレイアウトと複数ページレイアウトメニュー機能を使う。 + + + + + + + ルーラとカーソル + + + &rosegarden;notation エディタウィンドウは2つのルーラと + カーソルを含んでいる。ルーラはメインnotationキャンバスの + 上から下までtickmarkとともに水平のstripで分割されていて、 + カーソルはエディタ中のトップのstaffの開始点に初期状態として + 垂直の色が付いた行としてある。 + + + + 紫色のカーソルは挿入カーソルである。これは、挿入かペースト + が起こるような動作のポイントを表示する。上部のルーラ上で + ドラッグかクリックをするか、(任意のイベントを避ける)空白の + staffの一部上でクリックするかドラッグするか、 + コントロールキーを押したままどこかでクリックすること + で挿入カーソルを移動することができる。 + + + + 一度に1つのイベントを、挿入カーソルを移動するために、左か右の + 矢印キーを使うことができる。もしもコントロール + キーを、矢印キーを押すときに押していると、カーソルは一度に + すべてのバーを移動する。もしもシフトキーを押しているならば、 + カーソルはそれらをパスするように、 + イベントの選択 + を行なう。 + + + + 青のカーソルは再生ポインタである。マトリクス表示とメイン + ウィンドウ内の同様のカーソルと同じく、これは、現在の再生 + または録音位置を示す。これは下の方のルーラで位置を変更できる。 + + + + ルーラはリニアレイアウト + モードでのみ表示されることに注意。 + + + + + + + + + + ツールと選択 + + ほとんどの、&rosegarden; Notationエディタのメニューと + ツールバー編集機能はツール + 選択を行なう機能ドラッグ操作 + の3つの機能に分類される。 + + + + + ツール + + + 基本的なツールはツールバーボタンから通常アクセスできる、 + 選択ツール、消去ツールと、ノートの挿入、rests、テキスト + その他のためのそれらである。ツールを選択すると、代わりに + 少なくとも他のツールが選択されるまで、メインnotation + キャンバス上でマウスボタンの既定の動作が変わる。たとえば、 + 選択ツールを選択すると、選択が可能になり、(以下の) + 選択ベースの機能が使えるようになる。挿入ツールを選択すると + (たとえばノートの1つ)、GUIの動作が + 切り替えられ、キャンバス上でクリックすることでノートを + 挿入できる。削除ツールはそれらをクリックすることでイベントを + 削除する。 + + + ツール目丹生を使うことで現在のツールを変更することもできる。 + + + + + + 選択操作上の機能 + + + 残りの大多数のメニュー機能は使うことができる前にキャンバス + 上で選択されることを要求する。そのうちのいくつかは、 + (たとえば、Cut や + Note スタイル機能) + 選択されたイベント上で動作する。その他は + (たとえばGrace Notesや + Stem Directions機能) + 選択がいくつかのnoteを含むまで実行を凍結する。 + + + キャンバス上のいくつかのイベントを選択するために、 + 選択(矢印)ツールに切り替え、選択したいイベントを含む + 矩形領域を囲む。選択されたイベントは、青にハイライト + される。もしも1つのイベント上でクリックすると、 + そのイベントのみが選択される。 + + そのイベントのために編集ダイアログをオープンするために + 1つのイベント上でダブルクリックをすることもできるが、 + それは選択には何の動作もしない。。 + + + もしも、シフトを矩形領域からドラッグ + アウトする間押しているならば、そのコンテンツは置換の + 変わりに存在する任意の選択に追加される。 + + + すべてのバーを選択するために、そのバー内のどこか空白の + 場所で、選択ツールと共にダブルクリックする。staffのすべて + をセンタcするために、3回クリックする。編集メニューは + 挿入カーソルの位置上を元にした拡張領域を選択するための + 機能を運び、シフトキーと左又は右矢印キーを押すことによって、 + 挿入カーソルの周りのイベントを選択できる。 + + + 一度に、1つのstaffより多くイベントを選択することはできない。 + + + + + + ドラッグ操作 + + + あるものの周りでドラッグを行なうことでひとまとまりの編集を + 確実にすることができる。選択(矢印)ツールに切り替え、 + ノートのピッチを、その頭を上か下にクリックし、ドラッグする + ことによって変更でき、noteの時間とその他のイベントは、 + それらを左か右にドラッグすることによって変更できる。 + (残りの時間シグネチャにドラッグできないが、それ以外は + すべてドラッグできる。もしも1つ以上のイベントを選択 + しているならば、一度にすべての選択がドラッグされる。) + + + ドラッグは通常ツールバー機能やメニューを使うよりも、 + より少ない確実な手段であるが、それはより簡単である。 + + + + + + + + + + ノートの挿入とrests + + + noteを挿入するために、ツールバー上の特定のduration上でクリックする + ことによってノートメニューの1つを選択し、ノートを追加したい位置の + staff上でクリックする。 + + + + If you add a note at the same time as an existing note of + different duration, the editor will generally assume that you + want to create chords and will split the existing or new note + accordingly so as to create one or more chords with ties. If + you really do want to chord two different durations, you can + select the tied noteheads and use the Collapse Equal-Pitch Notes + function to merge them together. Alternatively, the default + behaviour can be changed in the &rosegarden; configuration dialog + so as not to do the split at all. + + + もしも、異なったduration(すなわち同じピッチ)の存在する音符の + 上に正確に音符を追加するならば、存在する音符のdurationは新しい + ものによって変更される。 + + + + もしも存在する音符と同じような時間の休符を追加するならば、 + 音符は、おそらくそれと共に削除されるか、短くされるか、 + restのdurationのために、封じられる。 + If you add a rest at the same time as an existing note, + the note will be silenced for the duration of the rest, + shortening or possibly removing it altogether. + + + PCキーボードによる音符と休符の入力 + + + Duration + + + 最初に、挿入したいときに音符(又は休符)のdurationを + 表示するためにnotationツールを選択することを確実にすること。 + 以下の数字キーを使うことによって色々なノートタイプを選択できる: + + + + 5 – Breve + 1 – Whole note (semibreve) + 2 – Half note (minim) + 4 – Quarter note (crotchet) + 8 – Eighth note (quaver) + 6 – Sixteenth note (semiquaver) + 3 – Thirty-second note (demisemiquaver) + 0 – Sixty-fourth note (hemidemisemiquaver) + + + 数字キーを押す間にCtrlキーを押すと、 + 関連するdotted-noteツールを選択する。 + + + Gキーを押すことで、tripletバージョンの + note durationに切り替えることができる。もう一回押すと、 + 通常のdurationに切り替わる。ウィンドウの下部のステータス + バーはtriplet durationが有効の時にそれを通知する。 + + + + ピッチ + + + notationツールが選択されると、以下のピッチキーのどれかを + 押すことによってカーソルの挿入 + で現在の位置に音符を挿入することができる。 + + + A – ド (the tonic of the current key in the current clef) + S – レ + D – ミ + F – ファ + J – ソ + K – ラ + L – シ + + + キーを押している間Shiftキーを押すと、 + 半音noteが高くなり(#が定義されていないミとシを除く) + ShiftCtrlキーを一緒に押すと、 + 半音低くなる(ファとドを除く) + + + 一オクターブ高い音符を入力するためには、以下にあるキーを + 使う。Q, + W, E, R, + U, Iと + O。同様に、オクターブ下の音符を入力する + ためには、 Z, X, + C, V, B, + NMを使う。 + + + + + 休符 + + 音符の代わりに休符を挿入するためには、 + Pを使う。その代わりに、現在のツールを + 切り替えてrestツールに、また、noteツールに再度戻すために、 + TYを使うことができる。 + + + + + + Chords + + + 既定値のnotationエディタの動作は、音符の挿入後に挿入 + カーソルを次に進め、メロディ中でその後に別の音符を + 挿入できるようになる。これは、Hキーを、 + chordモードに切り替えるために使うことによって、変更する + ことができ、最後のものの同じ時間に続く挿入が起きるchord + モードへ切り替えることができる。再度H + キーを押すと、メロディ挿入動作に戻る。 + + + + + その他の注意点 + + + 挿入コマンドのすべては、ツールメニューのサブメニューで有効で + ある。1つのno-toを挿入するためにメニューを操作することは、 + ありそうもないことであるが、メニューはショートカットを表示し、 + それゆえ、どのキーがどの機能か忘れた場合に有効なリファレンス + を提供する。 + + + キーボードショートカットはQWERTYレイアウトキーボード用に + 現在デザインされている。その他のレイアウトにキーをリマップ + する方法はまだなく、設定メニュー上の"ショートカットの構成" + オプションを使うことによって各々のキーの再定義を個別に行なう??。 + The keyboard shortcuts are currently designed for use + with a QWERTY-layout keyboard. There is not yet any way to + remap the keys for another layout, short of reassigning each + key individually using the "Configure Shortcuts..." option + on the Settings menu. + + + + + + + MIDIキーボードを使った音符の挿入 + + + MIDIキーボード又はその他のMIDI制御デバイスを使うことで + マトリクスエディタ中に音符を入力することができる。 + notationエディタはキーボード上で演奏したピッチを使うが、 + durationsはエディタそれ自身でのグリッドの設定中で選択したもの + をつかう。これは"ステップ録音"として知られている。 + + + + MIDIキーボードからノートを入力するために、最初に既定値の + MIDIデバイスにキーボードを構成することを確実にする必要が + ある。次に、notationツールがdurationをセットするために選択 + されることを確実にする。次に、notationエディタのツールバー + 上のステップ録音ボタンかツールメニューのステップ録音を + 選択する。MIDIキーボード上で押されたすべてのノート上のその点 + は、ウィンドウがクローズするか、 + 別のウィンドウが有効になるか、再度ステップ録音がoffにされるまで + そのウィンドウ中に現在の挿入時間で挿入される。 + + + + 異なったdurationのノートを挿入するために、ステップ録音実行 + 中の間別のnotationツールに変更することができ、また、chord + を挿入するために、Chordモードに切り替えることができる。 + + + + + + + + + Clefs, keys, テンポと時間シグネチャ + + + 時間に関係した変更(テンポと時間シグネチャ)を操作するために + &rosegarden;が行なう方法について知る最初のことは、clefsと + keysに完全に違うことが扱われる。 + The first thing to know about the way &rosegarden; handles + these is that time-related changes (tempos and time + signatures) are treated entirely differently from clefs and + keys. + notationと同じように再生と録音を簡単に管理するために、&rosegarden; + はテンポと時間シグネチャが変更されることを要求し、それは一度に + すべてのstaffを行なう。 + In order to simplify managing playback and recording as + well as notation, &rosegarden; requires that when the tempo or + time signature changes, it does so in all staffs at once. You + can't have one staff in 3/4 and another in 4/4 simultaneously, + or one staff playing at 120 to the beat and another at 90. + This applies only to time: there is no such restriction on the + use of clef and key changes. + + clef, key, テンポまたは時間シグネチャをnotationエディタ + 内で変更したい場合、変更を行ないたい場所に挿入カーソルを位置づけ、編集 + メニュー + Add Clef + Change..., Add Key + Change..., Add + Tempo Change... と Add Time Signature + Change... 機能を使う。すると以下のように、変更したい固有の + clef,key,テンポまたは時間シグネチャを変更できる所にダイアログ + ボックスが表示される。 + + + Clef + + + + + + + + &rosegarden;'s clef dialog + + + + + + + + Key + + + + + + + + &rosegarden;'s key signature dialog + + + + + + + + テンポ + + + + + + + + + &rosegarden;'s tempo dialog + + + + + + + + 時間シグネチャ + + + + + + + + + &rosegarden;'s time signature dialog + + + + + + + + + + + テキストと歌詞 + + + テキストイベント中で、staffはたくさんの種類のテキストを含む + ことが可能である。テキストイベントには2つの基本的なクラスがある。 + 最初のものは、(staff中の特定の時間に関連付けられる)ツールバー + 中の大きなTとしてマークされたボタン上で + 有効な、テキストツールを使うことで、作成できる。 + 歌詞は、これと同じ方法で作成できるが、 + 歌詞エディタ + を使うことによってより簡単に作成できる。 + + + + 小さなテキストを追加するために、追加したい点でテキストツールを + 選択してクリックする。ダイアログボックスが表示され、その中に + テキストを入力することができ、その意図された目的を選択する。 + (Rosegarden prefers to store what the text + is for, rather than how it should look; this is so that in + future we may be able to configure how the various sorts of + text are presented for each individual user.) + 有効なpurposes(又はスタイル)は以下の通りである。 + + + + + Dynamic Used for + minor local indications such as the dynamic marks "p", "mf" + etc. Shown below the staff in small italic + type by default. + + Direction Used + when indicating significant changes in style or mood. Shown + above the staff in large roman type by default. + + + Local Direction + Used to indicate less significant changes in style or mood. + Shown below the staff in a smaller bold-italic roman type by + default. + + Tempo Used to + indicate significant changes in tempo. Shown above the + staff in large bold roman type by default. + + + Local Tempo Used + to indicate more minor or local changes in tempo. Shown + above the staff in a small bold roman type by default. + + + 歌詞 + 歌詞エディタ + を使うことで通常歌詞は作成できるが、このスタイルを使うことで + 1語1語入力することもできる。このスタイルは既定値では + 小さなroman type でテキストの下に表示される。 + (注意:もしもこの方法で歌詞を入力し、staffの歌詞を + あとで編集する場合、この方法で入力した任意の歌詞は、 + その位置が、もしも、歌詞エディタによって期待される所と適合して + いなければ、変更又は移動される。) + + + Annotation Used + for helpful text that is not strictly considered part of the + score. Shown below the staff, boxed-out in a yellow + sticky-label-style box by default. + + + + + + テキストツールで存在するテキスト上でクリックすることで、 + 作成した後にテキストを編集することもできる。 + + + 歌誌の編集 + + 表示メニュー中の、 + 歌詞エディタのオープンオプション + から、歌詞エディタは有効であり、これは、一度に1つのstaffの + ためにすべての歌詞イベントを編集することができるようになり、 + これは基本の本文編集システムを使う。これを使うために、メニュー + オプションを有効にし、残りのダイアログ中で歌詞を編集し、 + OKをクリックする。 + + The lyrics you enter should follow a particular + format. Bar lines are vital to avoid the editor getting + confused, and are represented with a slash ("/"). Within + each bar the individual syllables are separated by spaces + (at least one space: the editor doesn't care about any extra + whitespace). Each syllable in turn will be attached to the + next subsequent note or chord within that bar (although at + the moment the editor can get quite confused by chords that + are not exact, i.e. that require smoothing or + quantizing). + + If you want a note to have no syllable attached to it, + you need to provide a dot (".") as the syllable for that + note. (This is why the default lyric text for a segment is + usually full of dots.) Remember to separate the dots with + spaces, so that they are clearly separate syllables. + + If you want more than one syllable on the same note, + with a space between them, use a tilde ("~") instead of the + space. It will be shown as a space on the score. + + If you want to split a syllable across two notes, with + a hyphen, you need to enter a space following the hyphen so + the editor knows to treat it as two syllables. (Hyphens get + no special treatment within syllables.) + + Syllables consisting only of numbers surrounded by + square brackets (like "[29]") will be ignored; this is the + format used for the automatically-generated bar numbers + shown in the editor. + + You should also be aware that the textual format of + lyrics is only used for editing: the lyrics are actually + stored as distinct text events (one per syllable). This + means that the text format may potentially change in the + future to accommodate more advanced editing capabilities, + although the event format should not change and so your + saved files should continue to be compatible. + + + + + + + + + スラーとhairpins + + スラーとhairpin dynamic markingsはイベントとして、 + noteやrestsと同じように保存される。これらを生成するために、 + カバーしたいもの(一続きのnoteやその他)の領域を選択し、次に、 + グループメニューからの + スラーの追加, + クレッシェンドの追加 または + デクレッシェンドの追加 options from + the Group を選択する。 + + その他のイベントと同じように、スラー又はhairpin を取り除く + ことができる。選択ツールを使って選択し、Delete + キーを押すか、削除ツールを有効にしてそれをクリックする。 + + + + + + + Note stems and slashes + + You can set the stem direction of any selected notes + (provided they are a sort that have stems) using the three + Stem Direction options on the Notes menu. The options allow + you to either fix the stems up or down, or revert to the stem + direction that &rosegarden; would otherwise have chosen. See + also Beams. + + The Notes menu also contains options for adding slashes + across note stems, for example to indicate short repeated + notes or drum rolls. These are currently purely notational; + &rosegarden; will not take them into account when playing the + staff or generating &MIDI;. + + + + + + Beams + + Adding beams to notes is considered a grouping operation + in the &rosegarden; Notation editor, available on the Group + menu. Select the notes you want to beam, and use the Beam + Group menu option. To remove a beam, select the notes and use + the Unbeam menu option. + + It is possible to have more than one beamed group + happening at the same time — you just select and beam the + separate groups one at a time — but Rosegarden is usually not + yet clever enough to work out which notes should have stems up + and which should have stems down for simultaneous beamed + groups, so you will probably have to set the stem directions + of the notes in the groups explicitly as well as beaming them. + + &rosegarden; can attempt to guess a sensible beaming for a + piece of music, provided it's not too complicated. To invoke + this, select the notes you want to calculate the beaming for + (for example by triple-clicking to select a whole staff) and + then use the Auto-Beam option on the + Group menu. Auto-beaming + is also done automatically when loading a &MIDI; file, for + example, and the editor also does some automatic beaming as + you enter notes (this can be disabled by changing the + "Auto-Beam when appropriate" setting on the configuration + dialog or the insertion tool's right-button menu). + + + + + + + 三連符とその他の連符 + + A triplet group consists of three notes or chords played + in the time of two. (More precisely, it consists of notes + with a total duration of three arbitrary units played in the + time of two of those units.) + + We use the word tuplet to describe the general + situation in which notes with a total duration of any given + number of units are played in the time of a different number + of those units: nine notes in the time of eight, or six in the + time of four, or a crotchet and a quaver in the time of a + single crotchet, or even two notes in the time of three. (At + present &rosegarden; does not support the last example — tuplet + groups must always be played with a shorter duration than + written.) + + The triplet and tuplet menu functions work by taking an + existing series of notes or rests and squashing them so they + play quicker, filling in the left-over space at the end of the + series with a final rest and drawing the whole as a tuplet + group. You can therefore create a new series of triplets by + entering the first two notes of the series (in their normal + form), making them into triplets, and then filling in the rest + left over by the triplet operation with the final note of the + triplet. Or you can apply the triplet operation before you + enter any notes, thus turning the original rest itself into + triplet form, and then insert the notes of the triplet on top + of it. Some examples may help: + + + + + + + + + + + + + &rosegarden;'s general tuplet dialog + + + + + + To specify a general tuplet group, we need to know what + the base note is (for example, if we play three crotchets in + the time of two then the base is a crotchet) and the ratio of + the number of base notes written to the number played. + + + + + + + + + + + Paste types + + + The meaning of cut and paste is less obvious for a music + editing program than it is for something like a word + processor in which the letters and words go in a simple + linear order. Accordingly, &rosegarden;'s Notation editor + offers several different types of Paste operation, as well + as separate Cut and Cut and + Close functions. + + + + + + + + + + &rosegarden;'s paste-type dialog + + + + + The types of Paste operation are: + + + + + Restricted + + Requires an existing gap (containing nothing but + rests) of enough duration to completely contain the + clipboard's contents. The contents are pasted into + the gap. If there is no gap long enough, the paste + is not carried out. + + + This is the default paste type. + + + + + + Simple + + Erases enough events to make a gap long enough to + paste into, and then pastes into that. The pasted + events therefore completely replace any existing ones + in the time covered by the paste. + + + + + + Open and Paste + + The opposite of Cut and + Close. Makes room for the paste by moving all of the + subsequent events further towards the end of the + composition. + + + + + + Note Overlay + + Carries out a paste in the way that it would + happen if you entered each of the notes in the clipboard + yourself using the notation editor: if there are other + notes overlapping with them, the new or existing notes + will be split into ties appropriately. + + + + + + Matrix Overlay + + Carries out a paste in the way that it would + happen if you entered each of the notes in the clipboard + yourself using the matrix editor: the notes presently + in the way of the paste will be ignored, allowing the new + notes to overlap arbitrarily with them. + + + + + + + All of these take effect at the current position of the + insert cursor on the current staff. To choose between the various + paste types, use the Paste... + menu option (with dots) on the Edit menu. + + + + + + 音符のスタイル + + + &rosegarden;は、たとえば、音符の頭の選択、tailの数を、音符が + 埋まっているか埋まっていないかにかかわらず、描画された音符の + 色々なタイプの色々な描画方法を変更することができる。 + + + + 標準のスタイル(クラシック、クロス、三角とMensual)が提供され、 + 音符スタイルメニューオプションを、選択した個別の音符のために + スタイルを変更することができる。それぞれの音符はそれに対して + ドのスタイルが選択されたかを憶えていて、この情報は楽曲情報 + の中に格納される。設定メニュー中の + Rosegardenの構成...オプションを + 使うことによって新しい音符の既定値のスタイルを + 変更することができる。 + + + + XMLファイル中に音符のスタイルを記述する + ことによって固有の音符スタイルを作成することができる。 + (Even the standard styles are + defined this way: the only reason the editor knows that a + Classical semiquaver has a tilted oval filled head, a stem, + two flags, etc., is that the description in Classical.xml + says so.) See the Developers Guide for + more information. + + + + + 音符フォント + + &rosegarden; は、Lilypondプロジェクトによって開発された、 + Fetaフォントという1つのスケーラブルなnotationフォントを提供 + している。Fetaはほとんどすべての古典的な仕事のために適合して + いるとても高品質のフォントである。 + + + &rosegarden; は、数多くの、その他のnotationフォントを + 標準のサポートを含む。それらは、TrueType(.ttf)またはPostScript + Type-1(.pfb,.pfa)形式のフォントで提供されることを必要とし、 + &rosegarden;がインストールされた場所にそれらをインストール + するために、関連したパーミッションを必要とする。サポートされて + いるnotationフォントをインストールするために、&rosegarden; + のインストールのためにshareディレクトリに位置づける(通常 + /opt/kde/share/apps/rosegardenのようなKDEデスクトップの + インストールツリーである)。これは、"fonts"と呼ばれる + サブディレクトリで見付かる。そこにフォントファイルをコピーし、 + &rosegarden;を再起動する。もしも、そのフォントがサポートされて + いるならば、それは、notationエディタのフォントメニューに + 現われる + + 完全又は部分的なサポートは以下のフォントで提供されて + いる:Blake HodgettsによるFughetta; "オリジナル" Finale + フォントのPetrucci;"新しい"Finale"フォントのMaestro; + SibeliusフォントのOpus;Sibelius ジャズフォントのInkpen; + AdobeからのSonata;CubaseシーケンサからのSteinberg;と + Xinfonia(上記のフォントのほとんどは、各社の登録商標で + ある)。THE ROSEGARDEN TEAM + MAKES NO REPRESENTATION AS TO THE LEGAL STATUS OF ANY USE OF + THESE FONTS WITH ROSEGARDEN。 + It is your responsibility to + ensure you are in compliance with the licence (if any) under + which a font was provided to you, before attempting to use it. + If you are not sure whether you have the right to use a font, + don't: apart from anything else, the standard Feta font better + than most of these anyway. + + It is also possible to provide new mapping files so as + to use new fonts. For some fonts that have similar mappings + or metrics to fonts in the above list, this may be as simple + as editing the name of the font in the mapping file. See the + Developers Guide + for more information. + + + + + + + + + Notation from performance data + + + &rosegarden; は多用途のプログラムである。これはnotation + エディタであるが、第一次的にはシーケンサと音楽を演奏する + ためのプログラムである。さらに、演奏中、もちろん、時間と + noteのduration は印刷された楽譜上ほど明確ではない。 + + + + これは、notationエディタ中で意味のあるnoteを表示させるために + 大量の基本的なnoteの時間とdurationを試みることを&rosegarden; + が行なうためにそれはたびたび望ましいことを意味する。これは + quantizationの一種であるが、大量の、驚くべき、あてずっぽうで + うまく行なうことを要求する種類のものである。&rosegarden;は、 + 平面のグリッドquantizerよりもわずかによい仕事を行なうために + デザインされたquantizerを含む。 + + Applying + quantization strictly for notation is rather unimaginatively + referred to as notation quantization: it only + applies to the notes you see and edit in notation, and + doesn't affect the notes that play, or that you edit in + other views such as the matrix. This quantization is + automatically applied to music imported or recorded from + MIDI, although not all of its possible capabilities are + enabled by default. + + + + There are two ways to see which notes have been quantized + for notation. By default, each notation view contains a Raw + Note Ruler (in the group of rulers above the score) showing + a rectangular block for each note. This block is positioned + so as to represent the time and duration of the note as + performed, but with the top and bottom edges of the + rectangle extended or shortened to represent the time after + notation quantization. If this is too much information for + you, you can alternatively choose (in the configuration + dialog) to show in a green colour all note heads in the + score that have had their timings altered by notation + quantization. + + + + + + + + + + + &rosegarden;'s notation quantize dialog + + + + If the quantization &rosegarden; has used is not suitable, + either for the entire score or for a selection of notes, you + can choose to use a different level of quantization or none + at all. To apply a different quantization to some notes, + select the notes and use the Quantize + menu function (tick the box labelled Quantize for + notation only). The quantization level or type used + by default can be changed in the configuration dialog. + + + + Configurable parameters for the heuristic notation quantizer + + + Parameters for quantization itself + + + + + Complexity + + The "complexity" of a notation quantizer is its + most fundamental parameter. A "complex" quantizer + will be more prepared to accept that complex-looking + music is in fact intended to be complex, whereas a + "simple" quantizer is more likely to assume that + complex-looking music results from an imprecise + performance of simple music. + + The default setting is intended to produce + reasonable results for a fairly wide range of music. + + + + + + Base grid unit + + The base grid unit (set to a note duration + value) specifies the absolute minimum unit of note + that will be permitted to remain in the score after + quantization. For example, if set to a semiquaver, + all notes will be placed on boundaries of a multiple + of a semiquaver, with durations also a multiple of a + semiquaver. + + The setting of the base grid unit is not quite + as significant for a notation quantizer as it is for a + plain grid quantizer, because all it does is impose an + absolute limit on the level of precision permitted by + the complexity parameter. Mostly, when you find a + case in which increasing the grid unit produces better + results, you've actually found a case in which the + quantizer simply didn't do as good a job as it should + have been able to with the smaller unit. + + + + + + Tuplet level + + The notation quantizer is capable of identifying + tuplets (triplets and other time-squashed groups), + within reasonable limits. This parameter controls how + ambitious it will attempt to be when looking for + tuplets, by setting a limit on how many notes per + tuplet group it will attempt to identify. If it is + set to None, the quantizer will not + attempt to identify tuplets at all. + + + + + + + + + + Parameters that control tidying up after quantization + + + + + Tie notes at barlines etc + + Causes any notes that are still found after + quantization to overlap barlines or to have + durations not exactly expressible with single note + heads to be split into multiple notes appropriately, + and tied. This has the same effect as applying the + "Tie Notes at Barlines" function + in the notation view. + + + This parameter is not set by default because it + changes the number of note events, which is + undesirable when using &rosegarden; partly or + principally as a MIDI sequencer. + + + + + + Split-and-tie overlapping chords + + + Causes overlapping notes to be split and tied, so + as to make strict chords with individual noteheads + tied as necessary. This has the same effect as + applying the "Split-and-Tie + Overlapping Chords" function in the notation view. + + + This parameter is not set by default partly because + it changes the number of note events, which is + undesirable when using &rosegarden; partly or + principally as a MIDI sequencer. + + + + + + Re-beam + + + Causes the notes to be re-beamed into groups + appropriately after quantization. This is usually + desirable. + + + + + + Add articulations (staccato, tenuto, + slurs) + + + Causes the quantizer to attempt to identify, based + on the durations of individual and consecutive + notes, which notes should be notated with staccato + marks (for notes that fall significantly short of + the following note, but not apparently short + enough to merit a rest), tenuto (for notes that + almost or just overlap the following note) and + slurs (for series of notes that meet or overlap). + + + + + + + + + + + + The Event List editor + + 概要 + + + + The &rosegarden; Event List editor shows the events in a + single segment in a raw form, and enables you to edit the + precise properties of those events individually. + + + + + + + + &rosegarden;'s event list editor + + + + + + + + + + + + + + + + + Command Reference + + + + + + + Main window + + + + + File menu + + + + + + + Ctrln + + File + New + + Creates a new composition. + + + + + + Ctrlo + + File + Open + + Opens an existing composition from a Rosegarden-4 (.rg) file. + + + + + File + Import + + This submenu contains functions for importing compositions from other file formats. + + + + + + Import + Import &MIDI; file... + + Creates a new composition from the contents of an existing &MIDI; (.mid) file. + + + + + Import + Import Rosegarden 2.1 file... + + Creates a new composition from the contents of an existing Rosegarden 2.1 (.rose) file. + + + + + + + + + File + Merge + + This submenu contains functions for merging other files into the current composition. + + + + + + Merge + Merge File... + + Merges the contents of an existing Rosegarden (.rg) file into the current composition. You will be offered a choice of whether to merge the file in new tracks at the start of the composition, or after the end of the current composition. + + + + + Merge + Merge &MIDI; file... + + Merges the contents of an existing &MIDI; (.mid) file into the current composition. You will be offered a choice of whether to merge the file in new tracks at the start of the composition, or after the end of the current composition. + + + + + Merge + Merge Rosegarden 2.1 file... + + Merges the contents of an existing Rosegarden 2.1 (.rose) file into the current composition. You will be offered a choice of whether to merge the file in new tracks at the start of the composition, or after the end of the current composition. + + + + + + + + + File + Export + + This submenu contains functions for exporting the contents of compositions to other file formats. + + + + + + Export + Export &MIDI; file... + + Saves the contents of the current composition into a new &MIDI; file. Note that not all data in the Rosegarden composition necessarily can or will be saved in the &MIDI; format. + + + + + Export + Export Csound score file... + + Saves the contents of the current composition into a new Csound score file. Together with a suitable orchestra file (not supplied), this can be used to play the composition through Csound. Note that not all data in the Rosegarden composition necessarily can or will be saved in the Csound format. + + + + + Export + Export Lilypond file... + + Saves the contents of the current composition into a new Lilypond file. This can then be processed by the Lilypond system to produce typeset-quality music, although it is likely that the file may need some tweaking to get really good quality output. Note that not all data in the Rosegarden composition necessarily can or will be saved in the Lilypond format. + + + + + Export + Export Mup file... + + Saves the contents of the current composition into a new Mup file. This can then be processed by the Mup music publication system, although it is likely that the file may need some tweaking to get really good quality output. Note that not all data in the Rosegarden composition necessarily can or will be saved in the Mup format. + + + + + Export + Export MusicXML file... + + Saves the contents of the current composition into a new MusicXML file. This can then be used with any music software that supports the MusicXML format. Note that MusicXML support is experimental and has not been well tested. Not all data in the Rosegarden composition necessarily can or will be saved in the MusicXML format. + + + + + + + + + + Ctrls + + File + Save + + Saves the composition. + + + + + File + Save As... + + Saves the composition with a new filename. + + + + + + Ctrlw + + File + Close + + Closes the current composition. + + + + + + Ctrlp + + File + Print + + Prints the current composition. At the time of writing, the print function is incomplete. We recommend using the Export Lilypond file function and printing with Lilypond instead. + + + + + + Ctrlq + + File + Quit + + Quits &rosegarden; + + + + + + + + + + + Edit menu + + + + + + + + + Ctrl + z + + + Edit + Undo + + + + + + Reverses the last command performed. + + + + + + + + + + + Ctrl + Shift + z + + + Edit + Redo + + + + + + Repeats the last command performed, following an undo. + + + + + + + + + + + Ctrl + x + + + Edit + Cut + + + + + + Removes the currently selected segment from the + composition view and adds it to the clipboard. Note that + when you have selected a track, all segments in that track + are selected. + + + + + + + + + + + Ctrl + c + + + Edit + Copy + + + + + + Removes the selected segments from the composition and + places them in the clipboard to replace any contents the + clipboard previously had. + + Note that when you have selected a track, all segments in that track + are selected. + + + + + + + + + + + Ctrl + v + + + Edit + Paste + + + + + + Inserts the contents of the clipboard into the composition. + Verbage hear stating where the contents are inserted + (current track, offset within that track etc). + + + + + + + + + + + Delete + + + Edit + Delete + + + + + + Removes the selected segments from the composition and throws them away. + + + + + + + + + + Edit + Select All Segments + + + + + + Selects all segments within the composition. + + + + + + + + + Edit + Add Tempo Change... + + + + + + Invokes a tempo change dialog. + + This offers a + selection of ways to change the tempo of the + composition, including changing the tempo from the + insert cursor position onwards, from the last + tempo change onwards, or for the entire + composition. See Changing the Tempo for more information. + + + + + + + + + Edit + Add Time Signature Change... + + + + + + Invokes a time-signature change dialog. + + + This offers a + selection of ways to change the tempo of the + composition, including changing the time signature + from the insert cursor position onwards or from the + start of the current bar. See + Changing the Time Signature + for more information. + + + + + + + + + + Edit + Change Composition Duration... + + + + + + Invokes a composition duration change dialog. + + + This allows you to change the overall duration of + the composition. This duration sets a hard limit + (as a number of bars) on the scrollable width of the + main window and the length of time you can play or + record before the composition is deemed to have + ended. The default is 100 bars. + + + + + + + + + + Edit + Edit Document Properties... + + + + + + Invokes a document properties dialog. + + + The document properties dialog allows you to review and/or modify the current document properties. Note - explain what are properties. Note to developers - It seems kinda weird to have icons on the left for selecting, and tabs in each one. Why not just tabs or just the things on the left? + + + + + + + + + + + + + Segments menu + + + + + + + + + Return + + + Segments + Open in Default Editor + + + + + Opens all of the currently + selected segments together in a notation editor, or in + whichever other editor you have configured as your + default. + + + + + + + + + Segments + Open in Matrix Editor + + + + + Opens all of the currently + selected segments in a matrix editor. + + See matrix editor. + + + + + + + + Segments + Open in Notation Editor + + + + + Opens all of the currently + selected segments together in a notation editor. + + See notation editor. + + + + + + + + Segments + Open in Event List Editor + + + + + Opens all of the currently + selected segments together in a event-list editor. + + See event-list editor. + + + + + + + + + Segments + Quantize... + + + + + Invokes a quantization dialog for quantizing the current selection. + + See quantization. + + + + + + + + Segments + Rescale... + + + + + Allows you to stretch or squash segments in time. + + + This option invokes a rescale dialog, which allows + you to specify a ratio of timings that is then + applied to the selected segments. This has the + result of stretching (slowing down) or squashing + (speeding up) the selected segments, changing their + durations accordingly. + + + + This only applies to segments containing MIDI + events, not to audio segments. Rosegarden does not + currently provide native support for audio + time-stretching. + + + + + + + + Segments + Auto-Split + + + + + + Splits the selected segments on silences. + + + This function works slightly differently depending + on whether the selected segments contain audio or + MIDI data. For audio segments, it offers you a + dialog in which you can choose a threshold below + which the segment is considered "silent"; it then + splits the segment whenever its amplitude falls + below this threshold. For MIDI segments, it simply + splits the segment everywhere that a full bar of + silence occurs. + + + + + + + + Segments + Split by Pitch... + + + + + Splits the currently selected segments into higher and + lower parts. + + + This function invokes a dialog allowing you to + choose a pitch as a "split point", and then splits + the selected segments in half with all the notes on + or above that split point in the "higher" segment + and all the notes below it in the "lower". + + + + If the music in the segment consists of two separate + parts (e.g. left and right hand piano parts) that + are not always completely on either side of a single + split point, you may with to select the "ranging + split-point" option. If this is selected, + Rosegarden will attempt to track the two parts as + they move up and down, usually doing a slightly + better job of separating out notes that were + intended to lie in the two separate parts. + + + + The resulting segments are both created on the same + track, with one overlapping the other. + + + + + + + + + + + + + + + + + + + Notation editor + + + + + + + + + + + File menu + + + + + + + Ctrlw + + File + Close + + Closes the window + + + + + + + + + Edit menu + + + + + + + Ctrlz + + Edit + Undo + + + + + + Reverses the last edit. + + Edits are shared across + all views, so if the last edit was not made in + this view, undoing it might not appear to change + this view either. + + + + + + + + CtrlShiftz + + Edit + Redo + + + + + + Repeats the last edit, following an undo. + + + + + + + + + + Ctrlx + + Edit + Cut + + + + + + Removes the selected events from the composition + and places them in the clipboard to replace any + contents the clipboard previously had. + + + + + + + + + + Ctrlc + + Edit + Copy + + + + + + Copies the selected events to the clipboard + to replace any contents the clipboard previously had. + + + + + + + + + + Ctrlv + + Edit + Paste + + + + + + Copies the contents of the clipboard to the + location of the insert cursor in the current + composition. + + + + The clipboard must not contain + multiple segments, and there must be enough + space (occupied only by rests) starting at + the insert cursor position to accommodate the + clipboard's contents. + + + + + + + + + CtrlShiftx + + Edit + Cut and Close + + + + + + Removes the selected events from the composition + and places them in the clipboard to replace any + contents the clipboard previously had, and closes + the gap left behind by moving all subsequent + events towards the beginning of the composition. + + + + + + + + + + CtrlShiftv + + Edit + Paste... + + + + + + Provides a choice of paste mechanisms with the + ability to set one as the default for use in the + Paste menu function. + + + + See the section on Paste types for more information. + + + + + + + + + + Del + + Edit + Delete + + + + + Removes the selected events from the composition + and throws them away. + + + + + + + + + Edit + Select from Start + + + + + Extends the current selection by selecting + all events from the start of the staff up to the + current selection (or up to the insert cursor, + if no events are currently selected). + + + + + + + + + Edit + Select to End + + + + + Extends the current selection by selecting + all events from the end of the current selection + (or from the insert cursor, if no events are + currently selected) up to the end of the staff. + + + + + + + + + Edit + Select Whole Staff + + + + + Selects all the events on the current staff. + + + + + + + + + + Esc + + Edit + Clear Selection + + + + + Unselects all events. + + + + + + + + + Edit + Filter Selection + + + + + Invokes an event filter dialog. + + This offers you the ability to filter a range of events in + any of several categories out of your selection. + + + + + + + + + The event filter dialog + + + + + + All ranges may be either inclusive or exclusive. + + + An inclusive range will remove events on either side of it + from the selection. You can use this, for example, to + filter everything below middle C and above the A above + middle C out of your selection. + + + An exclusive range will remove the events within the range + itself, leaving everything on either side of it selected. + Using the same search points as in the previous example, + you would use an exclusive range to remove everything + between middle C and the A above middle C from your + selection, while leaving everything above and below that + range selected. + + + Once your selection has been filtered, you can manipulate + it by any conventional means. + + + + + + + + Edit + Add Tempo Change... + + + + + Invokes a tempo change dialog. + + This offers a + selection of ways to change the tempo of the + composition, including changing the tempo from the + insert cursor position onwards, from the last + tempo change onwards, or for the entire + composition. See Changing the Tempo for more information. + + + + + + + + Edit + Add Time Signature Change... + + + + + + Invokes a time-signature change dialog. + + + + This offers a + selection of ways to change the tempo ofthe + composition, including changing the time signature + from the insert cursor position onwards or from the + start of the current bar. See + Changing the Time Signature + for more information. + + + + + + + + + Edit + Add Clef Change... + + + + + + Invokes a clef selection dialog, and inserts the + chosen clef at the current insert cursor position. + + + + The dialog allows you to choose a clef, but also + to choose how you want the clef to be applied, in + cases where there are already some notes following + the point where the clef is to be inserted. You + must choose one of the following: + + + + + Maintain current pitches + + + Any notes following the clef will keep + their current performance pitches. + + + For example, inserting a + tenor clef in the middle of a previously + treble-clef section will cause the notes following + the clef to be moved an octave + higher up the staff, because they will still have + their treble-clef pitches. + + + + + + Transpose into appropriate octave + + + Any notes following the clef will + retain their pitch within the octave, but + may be moved into a different octave to + match the new clef, and therefore will play + at a new pitch. + + + For example, inserting a tenor clef in the + middle of a previously treble-clef section + will cause the notes following the clef to + move by one staff line only to adjust to the new + clef, but to play an octave lower than before. + + + + + + + + + + + + + + Edit + Add Key Change... + + + + + + + + + + + + + + + + + + Group menu + + + + + + + Group + Beam Group + + + + + Makes the selected notes into a beamed group. + + + + + + + + + Group + Auto-Beam + + + + + Scans the area covered by the selection and attempts + to group short notes into plausible beamed groups. + + + + + + + + + Group + Unbeam + + + + + Removes the selected notes from any beamed groups + they may be part of, leaving them as separate + individuals. + + If part of a beamed group is selected, the unselected + part of the group will remain beamed. + + + + + + + Group + Tuplet + + + + + Makes a triplet or other tuplet group. + + This function allows you to adjust the timing of a + short section of music in the ratio of two + durations, for example to indicate that three notes + should be played in the time of two (the classic + triplet), or nine in the time of six, or whatever. + You can set this ratio in a dialog box when you + invoke the function. + + + If you have selected some events before invoking the + function, it will assume that you want to make a + tuplet group out of the selected region (or as close + to its duration as possible) and will adjust the + default values available in the dialog accordingly. + + + + + + + + Group + Simple Tuplet + + + + + + Makes a tuplet group (normally of triplets) with + the most apparently obvious ratio of durations. + + + Usually this function will attempt to make a triplet + group starting at the current insert cursor, or if + some events are selected, will attempt to make them + into triplets. It is possible that it might end up + making non-triplet groups if there is no obvious + valid triplet arrangement. + + + + + + + + Group + Make Grace Notes + + + + + Converts the selected notes into grace notes. + + + + + + + + + + Group + Ungrace + + + + + Converts any grace notes in the selection to + normal notes. + + + + + + + + + + Group + Slur + + + + + Adds a slur across the selected notes. + + To remove the slur, click on it + with the erase tool just as you would for a note. + + + + + + + + + Group + Crescendo + + + + + Adds a crescendo (opening hairpin) indication + across the selected notes. + + To remove the crescendo indication, click on it + with the erase tool just as you would for a note. + + + + + + + + + Group + Decrescendo + + + + + Adds a decrescendo (closing hairpin) indication + across the selected notes. + + To remove the decrescendo indication, click on it + with the erase tool just as you would for a note. + + + + + + + + + + + + + Notes menu + + + + + + Notes + + + + + + + + + + + + + + + Notes + Note Style + + + + + Change the note style of the selected notes. + + This submenu contains an entry for each of the note + styles that are currently available. Choosing one + will change the note style of the selected notes to + that style. + + + + + + + + Notes + Stem Direction + + + + + Change the stem + direction of the selected notes. + + This submenu allows you to specify that all the + stems of + the selected notes should point up or down, plus an + entry to reset the stem directions to those that + Rosegarden originally chose for the notes. + + + + + + + + Notes + Slashes + + + + + Add diagonal + slashes across the selected notes' stems. + + This submenu allows you to choose a number of + diagonal strokes or slashes to be drawn across the + stems of each of the selected notes. These may be + used, for example, to indicate repetition or rolls + to a human reader. They do not (yet) affect + performance using Rosegarden. + + + + + + + + + + + Marks menu + + + + + blah + blah + + + to be continued + + + + + + + + + Transforms menu + + + + + + Transforms + Normalize Rests + + + + Makes the rests in the selection + theoretically correct. + + This function examines each sequence of consecutive + rests found in the selection, and adjusts, splits + and merges rests as necessary to ensure that the + rests have theoretically correct durations and fall + on the correct boundaries. + + + For example, a 4/4 bar containing a crotchet + (quarter-note), then a minim (half-note) rest and a + crotchet rest will be rearranged to place the crotchet + rest first, as the minim rest should not cross the + central beat boundary of the bar. + + + This function is also useful in occasional + situations where Rosegarden has made a bad job of + maintaining the rests correctly within a bar, for + example when editing imported &MIDI; data. Normalizing + the rests will usually make the arrangement of notes + in such a situation a bit clearer. (Rosegarden always + normalizes the rests as a matter of course when + importing or recording &MIDI;, but things can sometimes + get muddled up again.) + + + + + + + Transforms + Collapse Rests + + + + Makes multiple short rests into fewer longer + ones. + + This function merges consecutive rests into longer + rests, wherever possible. That is, wherever two + consecutive rests in the selection are found to have + a total duration expressible as a single longer + rest, they will be merged. + + + + + + + Transforms + Collapse Equal-Pitch Notes + + + + Makes multiple short notes into fewer longer + ones. + + This function merges consecutive notes into longer + notes, wherever possible. That is, wherever two + consecutive notes of equal pitch in the selection + are found to have a total duration expressible as a + single longer note, they will be merged. + + + + + + + Transforms + Tie Equal-Pitch Notes + + + Ties consecutive notes whenever possible. + + This function ties together any consecutive notes of + equal pitch found in the selection. Tied notes are + shown with a curved line joining the note heads, and + are played as a single long note. + + + + + + + Transforms + Untie Notes + + + Breaks ties between notes. + + Any tied notes found in the selection are untied, + and will subsequently be played as separate + notes. + + + + + + Transforms + Make Notes Viable + + + Splits notes at displayable + durations. This function is intended to deal + with notes that have excessively long durations that + overflow barlines or that are too long to be displayed + as a single note. It takes any such notes and splits + them into shorter, tied notes. + + + + + + + Transforms + De-Counterpoint + + + Turns counterpoint into a series of split-and-tied notes and chords. + + &rosegarden; has no explicit support for counterpoint + (multiple lines of notes edited separately on the + same staff), but it will do its best to approximate + it when it finds notes in a segment that are + apparently contrapuntal, i.e. that overlap but that + are not precise enough to be treated as chords. For + example, when a short note starts shortly after a + longer note, Rosegarden will show the longer note + and a short spacing rest together, followed by the + shorter note. Unfortunately this often isn't what + you want. + + + The De-Counterpoint function can be applied to a + selection that contains overlapping notes. It will + split overlapping notes at the point where they + overlap, and tie together the resulting split notes, + ensuring that the music takes the form of a series of + chords and/or single notes starting and ending in neat + blocks, with some notes possibly tied. + + + + + + + Transforms + Quantize... + + + Quantizes the selection. + + + + + + Transforms + Fix Smoothed Values + + + Makes the note durations in the current + view permanent. + + When notating recorded or performance &MIDI;, + Rosegarden usually has to round off the durations of + some notes so that they can be displayed as normal + note types. This is known as smoothing, and it + normally does not affect the notes actually played, + it's just a convenience for display. The Fix + Smoothed Values function takes the current smoothed + note durations and sets them such that they are used + for performance (and editing in the matrix view, + etc) as well as for notation. + + + + + + + Transforms + Interpret... + + + Modifies the velocities and timings of + notes according to any written or indicated dynamics + found. The selection of interpretations + available is as follows: + + + + Apply text dynamics (p, mf, ff etc) + + Sets a velocity to each note + based on the last piece of text of "Dynamic" + type seen on the same staff (only texts of the + form pp, p, mp, mf, f, ff, fff etc are matched). + + + + + Apply hairpin dynamics + + Makes the notes gradually + increase or decrease in velocity during a + crescendo or decrescendo hairpin. + + + + + + Stress beats + + Makes notes that land on bar or + beat boundaries slightly louder (greater + velocity) than the surrounding notes. + + + + + + Articulate slurs, staccato, tenuto etc + + Shortens unslurred notes, + shortens staccato notes more, and gives notes + inside slurs and tenuto notes their full length. + + + + + + + + + + + + Transforms + Transpose + + + Alters the pitch of the selected + notes. This submenu contains basic + transposition functions which move the selected notes + up or down a semitone or a whole octave in pitch, as + well as a general transpose function that allows you + to choose how far up or down you want to transpose the + selection. + + + These functions simply change the stored pitches + of the notes in the selection, so that they both play + and appear at the new pitches. They do not deal with + performance transposition (displaying one pitch and + playing another), for which see the main window's + segment parameter box; nor do they help you with + transposing from one key into another, for which see + the key + change function. + + + + + + + + + + + + + + + + + + + + Developer's Guide to Rosegarden + + + Configuring custom notation fonts + + If you have a notation font installed on your system in a + scalable format (TrueType or Type-1) but it is not currently + supported by Rosegarden, you can create your own mapping XML + file to describe the font's character map and metrics in a way + Rosegarden can use. These files are installed in the + fonts/mappings subdirectory of the Rosegarden installation + directory, and a number of samples are included with the + distribution. + + You can also use these mapping files to define new + pixmap-based fonts, in which every shape in a particular size is + loaded from a separate pixmap file. The two standard notation + fonts supplied with Rosegarden-4 are pixmap fonts defined in + exactly this way. + + + It is even possible to define a notation font as using one + or more scalable system fonts, augmented with pixmaps for + particular sizes or for characters not found in the scalable + fonts. This is because most of the mapping file format is the + same for scalable and pixmap fonts, and where there are + different elements for the different sorts of fonts, it is + usually possible to include both of them. Rosegarden will + usually use pixmaps where available and scalable fonts + otherwise. + + + You may also wish to edit the mapping files supplied with + Rosegarden if you find their measurements for alignment or + sizing are not to your liking. (If you believe that any of the + supplied files are actually wrong, please let us know.) + + + + Codes and Glyphs + + + + + + Notation font mapping XML format + + Here is a summary of the XML elements that may be used + in the font mapping file. + + + rosegarden-font-encoding + + This element must exist in every mapping file, and + should contain all the other elements. The only attribute + is "name", which contains the font's name as shown in the + font selection dropdown. Although the file format will + permit any name to be used here, Rosegarden will only pick + up the font corectly if the XML file has the same name as + the contents of this attribute (except that the XML file + should be named in lower-case and should end in ".xml"). + + + + + font-information + + This should normally be the first child element of + "rosegarden-font-encoding". It may have any of the + following attributes, all of which are optional: + + + + origin + + A textual description of the likely origin of + the mapped font (not the origin of the mapping + file). + + + + + copyright + + A textual description of the likely copyright + status of the mapped font (not the copyright status + of the mapping file). Note that because the mapping + file contains information such as origin and + copyright of the font itself, it is usually + advisable to make separate mapping files for + separate fonts where practical, even if the fonts + share other mapping data. + + + + + mapped-by + + The name of the creator of the mapping file + (i.e. you, presumably). + + + + + type + + The type of the font. This attribute should + contain one of the values "pixmap" or "scalable". + Fonts that are loaded into the windowing system and + are available to Rosegarden as standard system fonts + have type "scalable"; fonts that need to be loaded + from pixmap files corresponding to individual sizes + of pixmap (such as the feta and rg21 fonts included + with Rosegarden) have type "pixmap". + + This information is only intended for the user + reference; it isn't actually used by Rosegarden. It is + legitimate in practice for a font to be a mixture of the + two, but in general we will assume in this documentation + that a font is either scalable or pixmap. + + + + + smooth + + A boolean attribute indicating whether the + font is antialiased (smooth) or not. Should have + the value "true" or "false". If the font is smooth, + other display elements such as beams and slurs that + are not generated from the font will also be + antialiased. + + + + + autocrop + + Only relevant for scalable (system) fonts. + Rosegarden usually expects the metrics for a font to + contain the vertically smallest bounding boxes for + elements such as note heads and accents, rather than + including empty space above or below these elements + for alignment purposes. Most fonts do not do what + Rosegarden expects. Therefore for these fonts you + should set the autocrop attribute to "true"; then + Rosegarden will crop any unnecessary space from the + top and bottom of these elements when rendering + them. + + + + + + + + + + font-requirements + + This element is only relevant for scalable fonts. It is + used to specify that this font should only be offered if + certain system fonts are available, as well as to + associate IDs with those system fonts to refer to in the + font-symbol-map + element. This scheme is used to decide which notation + fonts should be offered to the user, and also allows you + to compose a Rosegarden notation font from more than one + system font if desired. + + The "font-requirements" element should contain a list + of "font-requirement" child elements. Each of these has two + attributes: "font-id", containing a numerical ID of your + choice for reference elsewhere in the file, and either a + "name" or a "names" attribute. If "name" is provided, it + will be used as the name of a single system font to be + associated with the font id; if "names" is provided, it will + be treated as a comma-separated list of system fonts and the + first one found will be associated with the font id. + + + + + font-sizes + + The "font-sizes" element specifies which notation font + sizes are available, and how the nominal font size relates + to the dimensions of non-font elements such as stems, staff + lines and beams. The "size" of a notation font is assumed + to be the distance in pixels between staff lines, or more + precisely, the height of a conventional note head that + completely fills the space between lines: the size therefore + does not include the thickness of either of the neighbouring + staff lines. + + + + + There are two possible child elements of "font-sizes": + "font-scale" and "font-size". Their use depends on the + type of font being described. + + + For pixmap (non-scalable) fonts, the "font-sizes" element + should contain a list of "font-size" elements, one for + each size of pixmaps available. The pixmaps themselves + must be installed in the + fonts/<font-name>/<font-size> subdirectory of + the Rosegarden installation directory, where + <font-name> is the name of the font (as specified in + the "rosegarden-font-encoding" element at the start of the + mapping file), or a lower-case version of the name, and + <font-size> is the pixel size of the font. A font + size will only be made available to the user if it has an + entry in the "font-sizes" list and the pixmap directory is + found. + + + + For scalable fonts, the "font-sizes" element should + contain one "font-scale" element that defines the + relationships between font and non-font elements in a + general way, and also defines the relationship between + Rosegarden's nominal font size and the size of the + corresponding system font. If this "font-scale" element + is found, then Rosegarden will assume the font is + available in any size. You can however still include one + or more "font-size" elements to define precise proportions + for any particular size for which the general proportions + do not quite work correctly, for example because of + rounding error. + + + + The attributes of "font-scale" and "font-size" are very + similar. The main difference is that all attributes of + "font-scale" are floating-point values relative to the + font size, where 1.0 is the base font size (i.e. the + distance between staff lines), whereas attributes of + "font-size" are integer pixel values. The attributes + available are as follows. (Those marked "optional" have + vaguely sensible defaults, so it's a good idea to try not + setting them first.) + + + + + + note-height + + This attribute is only available for the + "font-size" element, and it is mandatory in that + element. It defines the base size of font to which the + other attributes in this element apply, and a size that + will be offered to the user and used when looking up + pixmaps for this font. + + + + + font-height + + May be used in either "font-size" or "font-scale". + This is only relevant for scalable fonts, but is + mandatory for them if used in the "font-scale" element. + This defines the size of the system font used to draw a + given size of notation font. + + + + + beam-thickness + + Optional. Defines the thickness of a beam. + + + + + staff-line-thickness + + Optional. Defines the thickness of a staff line. + + + + + stem-thickness + + Optional. Defines the thickness of a note stem. + + + + + flag-spacing + + Optional. Defines the gap between note flags in + cases where multiple flags are drawn by drawing a single + flag several times. + + + + + border-x + + Optional. Specifies that the note head pixmaps + have a fixed area to left and right that should not be + considered part of the note head. This attribute gives + the thickness of that area. + + + + + border-y + + Optional. Specifies that the note head pixmaps + have a fixed area to top and bottom that should not be + considered part of the note head. This attribute gives + the thickness of that area. + + + + + + + + font-symbol-map + + This element lists the symbols available in this notation + font, and which pixmap files or system font code points + they should be drawn from. + + It should contain a list of "symbol" elements. These + have several possible attributes, the choice of which will + normally depend on whether the font is based on pixmaps or + system fonts: + + + + + name + + Mandatory. This attribute should contain the + name of the notation symbol. If the symbol exists in + the Unicode + 3.2 standard, the name should be that used to + identify the symbol in the standard. + + Most of the symbols Rosegarden expects to find + are in the standard; one exception is that many fonts + have a special version of the flag symbol that is + intended to be used when composing multiple flags from + individual single flags. Rosegarden refers to this as + "MUSICAL SYMBOL COMBINING FLAG-0", a name not used in + the Unicode standard (which has flags 1-5 only). + + For a definitive set of the symbol names + Rosegarden knows about, see the file + "gui/notecharname.cpp" in the Rosegarden source + distribution. Note however that it is possible to use + additional symbol names by introducing them in a notation + style. + + + + + + src + + The name of the pixmap file from which this + symbol should be loaded, without a directory or + extension. This is the usual way of describing a + symbol in a pixmap font. The file itself should be + installed to + fonts/<font-name>/<font-size>/<src>.xpm + under the Rosegarden installation directory. + + + + + + inversion-src + + The name of a pixmap file from which an inverted + version of this symbol may be loaded, without a + directory or extension. If this attribute is absent + and an inverted version of the symbol is required, it + will be generated simply by loading the normal version + and reflecting it in a central x-axis. + + + + + + code + + The code point at which this symbol may be found + in the relevant system font, as a decimal integer. + This is a way of describing a symbol in a scalable + font. This attribute will only be referred to if no + pixmap file is supplied, or if the pixmap file fails + to load. + + + + + + inversion-code + + The code point at which an inverted version of + this symbol may be found in the relevant system font. + If this attribute is absent and an inverted version of + the symbol is required, it will be generated simply by + loading the normal version and reflecting it in a + central x-axis. + + + + + + glyph + + The raw glyph index at which this symbol may be found + in the relevant system font, as a decimal integer. + This is a way of describing a symbol in a scalable + font. This attribute will only be referred to if no + pixmap file is supplied, or if the pixmap file fails + to load. + + + + + + inversion-glyph + + The raw glyph index at which an inverted version of + this symbol may be found in the relevant system font. + If this attribute is absent and an inverted version of + the symbol is required, it will be generated simply by + loading the normal version and reflecting it in a + central x-axis. + + + + + + font-id + + The id of the system font from which this symbol + should be loaded, as defined in the font-requirements + element. The default is 0. + + + + + + codebase + + This (decimal integer) attribute may be of use + if many of the symbols in a scalable font cover a + short range of code points starting at a relatively + high code page. If supplied, the codebase value will + be added to each of the subsequent code and + inversion-code values when looking up a symbol. + + + + + + + + Although none of these attributes is mandatory except for + the name, a symbol obviously needs to supply at least one + of "src", "inversion-src", "code", "inversion-code", + "glyph", or "inversion-glyph" to stand any chance of being + rendered at all. It is of course perfectly legitimate to + supply several or all of these attributes. + + + + + + font-hotspots + + + + + + + + + + Creating new notation styles + + + Rosegarden's notation editor has the ability to display and + edit notes in various standard styles: classical, diamond + heads and so on. These styles are all defined in XML style + definition files installed along with the application, and + it's possible to create a new one by writing a simple XML + file. Rosegarden simply looks at the set of installed files + to determine which styles to offer the user. You can refer to + the default set of files in the styles subdirectory of the + Rosegarden installation directory for examples. + + + + The file format is not yet especially comprehensive; at the + moment it has been designed to be powerful enough to describe + the standard styles that come with Rosegarden, but not much + more. If you should try to create new styles this way, we'd + be very interested in your feedback on the Rosegarden + mailing-lists. + + + + Notation style XML format + + + Here is a summary of the XML elements that may be used in + a style definition file. + + + + rosegarden-note-style + + This element must exist in every style file, and + should contain all the other elements. It has one optional + attribute, "base-style", which may be used to name a style + from which this style takes the default values for any + parameters not specified elsewhere in the present file. + It's often good practice to define a style in terms of the + minimal difference from a given base style: see the supplied + Cross.xml for a particularly simple example. + + + Note that the "rosegarden-note-style" element does not + give the name of the style being defined, which is instead + currently drawn from the name of the file. At some point in + the future we may add internationalizable style name + attributes to this element. + + + + global, note + + Within the "rosegarden-note-style" element, there may + be one "global" element and any number of "note" elements. + We describe these together, as they have almost identical + sets of attributes. The "global" element simply provides + default values for those parameters not specified for a + particular note type in any following "note" element. + + + The attributes for these elements are as follows. All + of these are optional except as described: + + + + + type + + Only relevant to the "note" element, and + mandatory for that element. This attribute specifies + which sort of note is being styled. Legal values are + textual American or British note names (from "64th", + "sixth-fourth note", "hemidemisemiquaver" etc to + "double whole note"). + + + + + + shape + + Defines a note head shape for this style. Any + string is a legal value, but the only values + implemented so far are "angled oval", "level oval", + "breve", "cross", "triangle up", "triangle down", + "diamond" and "rectangle". The value "number" is also + recognised but not yet implemented. + + + + + + charname + + Defines a note font character name to be used as + the note head for this style. An element may supply a + "shape" or "charname" attribute, but not both. The + name should be one of those defined in the current + notation font's symbol + map (in a "name" attribute). + + + + + + filled + + Specifies whether this note should have a filled + head (where applicable, i.e. where the shape attribute + supplies a shape that is available both filled and + unfilled). Must be "true" or "false". + + + + + + stem + + Specifies whether this note should have a stem. + Must be "true" or "false". + + + + + + flags + + Defines how many flags or beams this note should + have. The valid range is 0 to 4. + + + + + + slashes + + Defines how many slashes this note should have + across its stem. + + + + + + hfixpoint + + Specifies in which x position the stem fixes to + the note head. Acceptable values are "normal" (the + right side when the stem points up, the left when it + points down), "central", and "reversed" (left side + when the stem points up, right when it points down). + + + + + + vfixpoint + + Specifies in which y position the stem fixes to + the note head. Acceptable values are "near" (the stem + fixes to the top when pointing up, the bottom when + pointing down), "middle", or "far". + + + + + + + + + + + + + + + + + + + + + + Credits and License + + + Rosegarden + + + + + + + Rosegarden-4 is Copyright 2000-2003 Guillaume Laurent, + Chris Cannam and Richard Bown. The moral rights of + Guillaume Laurent, Chris Cannam and Richard Bown to be + identified as the authors of this work have been asserted. + + + + + + + + Parts of Rosegarden-4 are derived from Rosegarden 2.1, + which is Copyright 1994 – 2001 Chris Cannam, Andrew Green, + Richard Bown and Guillaume Laurent. + + + + + + + + For musical notation display Rosegarden-4 uses pixmaps + derived from the Feta font, part of the Lilypond software, + which is Copyright 1997 – 2001 Jan Nieuwenhuizen and + Han-Wen Nienhuys. + + + + + + + + Other major contributors include Randall Farmer, Ron + Kuris, Hans Kieserman, and Michael McIntyre. + + + + + + + + The Rosegarden splash-screen image is from a 1900 postcard + of Thornden Park at Syracuse University, Syracuse, NY, + used with thanks to the staff of Syracuse University. + + + + + + + + + Documentation copyright 2002-2003 Chris Cannam, Richard Bown, Guillaume Laurent + + + + + + This program is licensed under the terms of the + GNU GPL. + + + + + &documentation.index; + diff --git a/docs/sv/index.docbook b/docs/sv/index.docbook new file mode 100644 index 0000000..066dcb0 --- /dev/null +++ b/docs/sv/index.docbook @@ -0,0 +1,6485 @@ + +Rosegarden"> + MIDI"> + + +]> + + + + + + + + + + + + + + + + + Handbok Rosegarden + + Chris Cannam + Richard Bown + Guillaume Laurent + Stefan Asserhäll
    stefan.asserhall@comhem.se
    Översättare
    +
    + + + 2002-2004 + Chris Cannam, Richard Bown, Guillaume Laurent + + + 2005-08-04 + 1.2.0 + + + + + + + + + + &rosegarden; + + + Rosegarden är ett program för ljud- och &MIDI;-inspelning och en editor för musikalisk notskrift. Den här handboken beskriver hur det används. + + + + Rosegarden + musikbehandlare + MIDI + ljud + musik + beteckning + partitur + KDE + + +
    + + + + + Inledning + + + Om Rosegarden + Rosegarden är ett program för ljud- och &MIDI;-inspelning och en editor för musikalisk notskrift. Rosegarden låter dig spela in, arrangera och komponera musik, i form av ett traditionellt partitur eller &MIDI;-data, eller ljudfiler som antingen importeras eller spelas in via en mikrofon, gitarr eller vilken ljudkälla du önskar. Du kan använda Rosegarden för att skriva, redigera och organisera musik för att skapa en komposition, som du därefter kan syntetisera, lägga till effekter i och mixa för att bränna till en cd eller distribuera på webben. Rosegarden innehåller också professionellt stöd för notredigering för utskrift med hög kvalitet. + + Rosegarden är konstruerat för att se ut som och fungera på ett sätt som är bekant för erfarna användare som kommer till Linux från andra plattformar, medan det också är tillgängligt och användarvänligt för de som är nykomlingar till musikprogramvara i allmänhet. + + + Om den här handboken + Den här handboken ger en översikt av &rosegarden;s möjligheter, och tillhandahåller en referens för en del av de begrepp som ingår. Den är skapad för att antingen vara meningsfull när den läses i en följd, eller när den används som en referens till begrepp och tillgängliga funktioner i Rosegarden. Om du dessutom vill läsa en handledning, hittar du en här. + + Om det finns något annat du inte förstår eller något du behöver ytterligare hjälp med, besök gärna Rosegardens webbplats för vanliga frågor och instruktioner om användning av e-postlistan. + + + + Om menyer och snabbtangenter Handboken hänvisar oftast till funktionerna du kan använda i Rosegarden genom att beskriva var de befinner sig i menyerna. Funktionen för att lägga till ett enstaka nytt spår i huvudspåreditorn är exempelvis Spår Lägg till spår. + + I många fall är det inte det enda sättet att nå en viss funktion. I det här fallet är samma funktion också tillgänglig via snabbtangenten Ctrl+T, och den visas också som en ikon i en av huvudfönstrets verktygsrader. Både snabbtangenten och ikonen kan snabbt läras in, eftersom de visas i Rosegardens meny tillsammans med funktionens namn. Du bör komma ihåg att även om vi alltid anger det fullständiga menyalternativet i dokumentationen av referensskäl, är det inte nödvändigtvis det bästa eller det vanligaste sättet att använda en funktion, och du bör dessutom hålla ett öga på snabbtangenter och ikoner i verktygsraderna. + + + + Valfria funktioner Handboken antar att installationen av Rosegarden stöder alla funktionerna som det har möjlighet till. Vissa av Rosegardens funktioner, inklusive några av de större, är i själva verket valfria när en installation av Rosegarden byggs. Hela ljuddelsystemet kompileras till exempel bara om JACK-biblioteken är tillgängliga, stöd för syntinsticksmoduler beror på ett antal andra moduler, etc. Dessa beroenden är dokumenterade i filen README och Rosegardens konfigureringsdokumentation. Om du märker att handboken hänvisar till funktioner som inte finns i den version av Rosegarden som du använder, rådfråga konfigureringsdokumentationen eller distributören. + + + + + + + + + + Rosegarden-filer och -dokument + &rosegarden; lagrar varje komposition i ett eget dokument, med sitt eget interna format. När du sparar ett dokument lagras det på disk som en fil med filändelsen .rg. &rosegarden; kan också hantera ett antal andra standardfilformat. + + + Nya kompositioner + När &rosegarden; startar, görs det med ett nytt dokument som innehåller en "tom" komposition som är klar att börja redigera. För att lägga till något i kompositionen måste du antingen spela in något eller skapa några tomma musikavsnitt (som kallas "segment"), som du sedan kan fylla i med de olika redigeringsfunktionerna. + Se Inspelning för detaljinformation om hur musik spelas in, och se avsnittet om spåreditorn för en beskrivning av hur musiksegment skapas, redigeras och hanteras. + + + + Använda MIDI-filer + För att importera och exportera MIDI-filer, använd alternativen Arkiv Importera Importera MIDI-fil och Arkiv Exportera Exportera MIDI-fil. + Även om &rosegarden; kan ladda och spara filformat som MIDI, lagras inte MIDI-data internt. Du bör i allmänhet föredra att spara filer med &rosegarden;s eget format, eftersom &rosegarden; lagrar en hel del information som går förlorad vid export till MIDI. + När en MIDI-fil laddas, delar &rosegarden; upp musiken i ett spår per MIDI-spår eller kanal i filen, ställer in lämpliga instrumentavbildningar och försöker beräkna en trolig notering för utförd MIDI-data. + + + + Sammanfoga filer Förutom att ladda eller importera filer, kan du också sammanfoga dem med det nuvarande dokumentet, och lägga till segmenten som hittas i filen till de som redan finns. + + För att sammanfoga en fil, använd bara passande alternativ i undermenyn Arkiv Sammanfoga, istället för att använda alternativen Öppna eller Importera. + + + + Utskrift + Du kan skriva ut en komposition i form av ett partitur, genom att använda funktionen Arkiv Skriv ut. + + Att skapa ett partitur från utförd data är en svår uppgift, och i de flesta fall är det inte rimligt att förvänta sig att en standardutskrift baserad på MIDI-data är särskilt läsbar. Du bör använda notbehandlaren för att städa upp partituret innan du skriver ut det. (Se också Notskrift från utförandedata.) + + &rosegarden; klarar av att skapa helt läsbara partitur. Även om det är så, är programmet avsett att vara en skärmeditor, och inte i huvudsak avsett för typsättning. Om du vill skapa partitur med riktig utskriftskvalitet, bör du fundera på att använda Lilypond tillsammans med &rosegarden;. Lilypond är programvara för typsättning av musik som läser ett specialiserat textfilformat, och skapar typsatt utmatning av hög kvalitet. &rosegarden; klarar av att skriva Lilypond-filer med funktionen Arkiv Exportera Exportera Lilypond-fil. + + + + + Spåreditorn + + Översikt + &rosegarden;s utseende liknar många andra populära musikbehandlare. Det är baserat på en spårstruktur: Huvudfönstret visar en spåreditor med en spårlista och tillhörande instrument längs med vänster sida. Du kan behandla och flytta block med musikdata (som kallas “segment”) i spåreditorn, samt öppna själva segmenten i specialiserade editorer (not, matris, slagverksmatris och händelselista). + + + + + + + + + &rosegarden;s spåreditor som visar två segment med musikdata + + + + + + Spår kan tilldelas en uppsättning &MIDI;-instrument, syntinsticksmoduler eller ljudinstrument. I bilden ovan syns tre segment i spåreditorn för spår som är tilldelade till generella MIDI-instrument. + + + + + + + + + &rosegarden;s spårknappar som visar spårnamn + + + + + + Området med knappar till vänster om segmentduken visar spårnummer, tystnads- och inspelningsstatus, och spårets namn. Du kan göra ett spår tyst eller inte genom att klicka på den blåa knappen i form av en lysdiod, och välja ett visst spår som ska användas för inspelning genom att klicka på den röda knappen. För att ändra spårnamnet, dubbelklicka på det. + + + + + + + + + &rosegarden;s spårknappar som visar instrumenttilldelningar + + + + + + Spårnamn visas bara om menyalternativet Inställningar Visa spårnamn är aktiverat. Annars visas spårens instrumenttilldelningar istället, som i bilden. + + + + Spår och instrument + Varje spår måste ha ett tilldelat instrument för att kunna höras. Normalt tilldelas de 16 första spåren till de 16 instrumenten i den första tillgängliga MIDI-enheten, och de följande 16 spåren tilldelas till ljud. + + För att ändra instrumenttilldelningen för ett spår, högerklicka på spårnamnet: En meny dyker upp där du kan välja bland alla tillgängliga instrument. + + + + + + + + + &rosegarden;s instrumentmeny + + + + + + Ett instrument kan betraktas som en enstaka kanal i en &MIDI;-enhet, som en mono- eller stereoljudutgång, eller som en ljudsyntinsticksmodul. Spår som innehåller notinformation ska tilldelas till &MIDI;- eller syntinsticksinstrument, och de som innehåller ljud till ljudinstrument. Du kan tilldela mer än ett spår till samma instrument, och i så fall använder alla dessa spår samma ljud. + Du kan ändra diverse egenskaper för instrumentet som tilldelats ett spår, genom att använda instrumentparameterrutan. Det är till exempel här som du kan ställa in ett MIDI-instrument så att det använder en speciell ljudpatch, och på så sätt åstadkommer ett speciellt ljud (piano, stråkar, etc.). + Se avsnittet Studio för mer om instrument. + + + + + Skapa segment + För att skapa ett tomt segment när någonting nytt ska komponeras, måste du använda pennverktyget. Klicka på pennan i verktygsraden, och klicka därefter på stället där du vill att segmentet ska börja (på rätt plats för spåret som du vill att segmentet ska finnas i, och på ett avstånd i redigeringsfönstret som motsvarar rätt tid) och dra åt höger till segmentet är rätt antal takter i längd. + + Oftast börjar varje nytt segment på ett taktstreck och utökas takt för takt, men effekten att låsa till rutnätet kan förhindras genom att hålla nere Skift under klick- och dragåtgärden. + + När du väl har skapat ett segment kan du börja redigera det med matriseditorn, slagverksmatriseditorn eller notbehandlaren. För att använda en av editorerna, dubbelklicka antingen på segmentet eller klicka med höger musknapp och välj editorn du vill använda i den sammanhangsberoende menyn. + + Om du avser att spela in från en MIDI-enhet eller ljudingång, behöver du inte först skapa ett nytt segment att spela in till. Varje enskild inspelning hamnar alltid i ett nytt segment, som skapas automatiskt under inspelningen. + + + + Ljudsegment + Ett ljudsegment innehåller inspelad eller samplad ljuddata, istället för redigerbar tonhändelsedata. Rosegarden låter dig spela in, spela upp, arrangera och dela ljudsegment, men innehåller inte funktioner för redigering av ljudvågformer. + För att skapa ett ljudsegment kan du spela in från en ljudkälla till ett spår som hör till ett ljudinstrument, eller arbeta med befintliga WAV-filer. För att göra det måste du använda ljudhanteringsdialogrutan (som nås via Segment Hantera ljudsegment). + + + + + + + + Ljudfilhantering + + + + + + Du kan dra och släppa ljudfiler från KDE:s filbläddrare eller KDE-skrivbordet till ljudfilhanteringen, eller öppna dem med dess arkivmeny. Därefter kan du antingen dra och släppa dem på Rosegardens spårduk, eller använda menyfunktionen Åtgärd Infoga i markerat ljudspår i ljudfilhanteringen, under förutsättning att spåret som för närvarande är markerat i huvudfönstret är tilldelat till ett ljudinstrument. Nyinspelade ljudsegment syns också i dialogrutan för ljudfilhantering. + + Information om ljudfilerna som hör ihop med en viss komposition är sparad med kompositionen, men själva ljudfilerna är inte det. Du måste försäkra dig om att ditt dokument har en vettig sökväg för ljudfiler (via Komposition Redigera dokumentegenskaper... Ljud, för att göra det möjligt att komma åt dina ljudfiler tillsammans. + + Dialogrutan för ljudfilhantering visar också samplingsfrekvensen och annan information för varje ljudfil, och markerar eventuella ljudfiler vars samplingsfrekvens inte motsvarar nuvarande JACK-ljudsessionen som Rosegarden använder. Rosegarden samplar om filerna vid uppspelning med en snabb linjär omsampling (men därför med mycket dålig kvalitet). Du råds att sampla om dem separat med en särskild dedicerad ljudeditor istället. + + + + + Hantering av segment + Huvudfönstret innehåller en uppsättning "verktyg" för att redigera segment. De är tillgängliga i huvudverktygsraden: Välj först verktyget du vill ha i verktygsraden, och klicka och dra därefter på segmenten i huvudduken. + + + Markeringsverktyget + "Markeringsverktyget" (pilverktyget) är i själva verket ett verktyg med flera användningar. Det kan användas för att markera, flytta, kopiera, ändra storlek och skapa segment. + + Den mest uppenbara användningen är markering: Markera ett enstaka segment genom att klicka på det med markeringsverktyget, eller markera flera genom att klicka med Skift nertryckt, eller genom att klicka på ett tomt ställe i fönstret och dra för att åstadkomma ett område. + + För att flytta segment med markeringsverktyget, klicka och dra helt enkelt segmentet. För att skapa kopior, klicka och dra med Ctrl nertryckt. För att ändra storlek på ett segment, klicka och dra segmentets högerkant, och för att skapa nya segment klicka och dra på ett tomt ställe med musens mittenknapp. + + Markeringsverktyget ersätter ändå inte övriga verktyg helt och hållet: Ibland behöver du vara noggrannare med vilken åtgärd du avsåg, särskilt vid arbete med små segment. + + + + + Verktygen för att flytta och ändra storlek + För att flytta ett segment till en annan starttid eller ett annat spår, använd förflyttningsverktyget och klicka och dra segmentet du vill flytta. Om du håller nere Ctrl-tangenten medan du drar, kopieras segmentet istället för att flyttas. + + För att ändra storlek på ett segment, använd verktyget för storleksändring, och klicka och dra i högra ändan av segmentet. + + Både vid förflyttning och storleksändring kan du hålla nere Skift för finpositionering, för att undvika att hoppa till en viss rutnätsposition. + + + + + Delningsverktyget + Du kan använda delningsverktyget för att dela ett enstaka segment i två separata segment. För att dela segmentet, välj delningsverktyget och klicka på segmentet du vill dela. + Normalt delas segment vid taktstrecket närmast markören, men det kan förhindras genom att hålla nere Skift när segmentet delas. + + + + + Tempo och taktart + + Tempo + + + + + + + + &rosegarden;s tempodialogruta + + + + + + + + Taktart + + + + + + + + &rosegarden;s taktartsdialogruta + + + + + + + + + + Överföringen + När du spelar upp en komposition, sveper &rosegarden; en uppspelningsmarkör över spåren från vänster till höger och spelar upp innehållet i segmenten när den korsar dem. Markörens position på skärmen följs och styrs av ett fönster som kallas Överföring. + + Översikt + + + + + + + + &rosegarden;s överföringsfönster + + + + + + Om överföringen inte är synlig, kan du aktivera den med Inställningar Visa överföring. + + Överföringen visar tiden som uppnåtts av uppspelningsmarkören, normalt i sekunder. Du kan ändra den att visa metronomtid (takter och taktslag), metronomtid med en blinkande visuell metronom, eller ramtider för ljudsampling, med den översta av de små knapparna till vänster i överföringsfönstret. Knappen direkt nedanför byter mellan att visa tid som är kvar till kompositionens slut istället för tid från början. + + Huvudknapparna i överföringen startar uppspelning med musikbehandlaren eller gör paus, flyttar markörpositionen framåt, flyttar den bakåt, stoppar den eller går till kompositionens början eller slut. + + Ytterligare knappar och visning av &MIDI;-händelser är dolda längst ner i överföringsfönstret, och kan visas eller inte med pilknappen i det längst till vänster. Dessutom finns knappar för inspelning, för upprepning, för att spela enskilda spår solo, för att stänga av eller sätta på metronomen och för att tysta dina MIDI-enheter (panikknapp) i extradelen. + + + + Inspelning + För att spela in ett nytt segment i ett spår, försäkra dig först om att rätt spår är markerat för inspelning genom att klicka på den röda (för ljudspår) eller gula (för MIDI-spår) lysdiodknappen vid spårets namn, och använd därefter överföringens inspelningsknapp. Det ger effekten att både starta överföringen, och därigenom spela upp den befintliga kompositionen, och att spela in i motsvarande spår. + Du kan bara markera ett enda MIDI-spår för inspelning, men du kan spela in hur många ljudspår som helst samtidigt så länge datorn är kraftfull nog. Du kan också markera ett MIDI-spår och ett eller flera ljudspår samtidigt. Var försiktig så att du inte lämnar spår markerade av misstag när du är klar med användning av dem och försöker spela in någon annanstans. + Som ett alternativ kan du använda punch-in inspelning för att skilja på åtgärderna att starta överföringen och gå in i inspelningsläge. Punch-in inspelning ändras med mellanslagstangenten. Du kan trycka på mellanslag medan en komposition spelas upp för att omedelbart byta mellan uppspelning och inspelning utan att stoppa överföringen, eller använda mellanslag för att förbereda inspelning medan överföringen är stoppad, så att följande uppspelning i själva verket också spelar in. (Det senare är praktiskt vid synkronisering med en extern överföring.) + Om du spelar in ett MIDI-spår, sker inspelning från alla MIDI-enheter som är inställda för inspelning i MIDI-enhetshanteringen. + Om du spelar in ljudspår, sker inspelning av varje spår från ingången som för närvarande är inställd för det spårets instrument i instrumentparameterrutan. Det är antingen en extern ljudingång eller en delnivå eller huvudnivå för ljud (för att utföra ihopmixningar). Om det är en extern ingång, spelas det normalt in från ljudkortets första tillgängliga fysiska inspelningsingång. Du kanske vill använda ett anslutningsverktyg i JACK för att ansluta ett annat ljudprogram som stöder JACK till ingången istället. + + + Synkronisering med extern överföring + + Överföring med JACK + Rosegarden stöder överföringsmekanismen i JACK för att synkronisera överföringen med andra program med JACK på samma dator. För att aktivera den, gå till Inställningar Anpassa Rosegarden... och välj "Synkronisera" i menyn för JACK överföringsläge på sidan Musikbehandlare under fliken Synkronisering. + + När överföring med JACK används, delar alla program som prenumererar på den en gemensam styrning av överföringen, och du kan starta, stoppa och förflytta överföringen från vart och ett av dem. + + Många ljudprogram under Linux som använder ljudservern JACK stöder också överföring med JACK. Titta i deras dokumentation för detaljinformation om de gör det och hur. + + + MIDI-tidkod + Rosegarden stöder synkronisering med MIDI-tidkod (MTC) i huvud- och slavläge. Det är särskilt användbart för att synkronisera Rosegardens överföring med en hårdvaruenhet som stöder MTC, eller med programvara som kör på andra datorer anslutna via MIDI. + För att göra Rosegarden till MTC-huvudenhet, så att det styr alla MTC-slavar eller program som ansluts, gå till Inställningar Anpassa Rosegarden... och välj "MTC-huvudenhet" i menyn MIDI-tidkodsläge under fliken Synkronisering på sidan Musikbehandlare. För att göra Rosegarden till en slav, så att Rosegardens överföring automatiskt synkroniseras med inkommande MTC-händelser, välj "MTC-slav". + + + + + + Studion + + + Enheter, instrument och anslutningar + + Rosegarden använder termen studio för att ange allt som den känner till om ljudsystemen anslutna till datorn. Det kan omfatta &MIDI;- och ljudhårdvara och annan ljudprogramvara, och omfattar information om anslutningar, inställning, &MIDI;-patchar och så vidare. Studion är inbyggd i alla kompositioner du skapar med Rosegarden. + + Tre ord i terminologin är fundamentala här: + + + Enhet + + En enhet, så vitt det angår Rosegarden, är helt enkelt något som kan skapa ljud. Det kan vara en MIDI- eller ljudenhet. MIDI-enheter motsvarar inte nödvändigtvis direkt med fysiska MIDI-portar: De är bara saker med namn som du kan ange, som förväntas fungera på ett visst sätt. Inställningsinformation som MIDI-patchavbildningar kan anslutas till enheter. + + + + + Instrument + + Varje enhet har ett antal instrument, där vart och ett antas låta på ett visst sätt. Detta är det du kan tilldela spår till för att välja vilket ljud de spelar. Normalt innehåller en enhet 16 instrument, som skapas åt dig vid start. Om enheten är en MIDI-enhet, initieras vart och ett av dem till en av de 16 MIDI-kanalerna. Instrumentet är stället där du anger alla egenskaper för en viss stämma, som programinställningar, eko, volym, etc. + + + + + Anslutning + + Även om en MIDI-enhet helt enkelt är ett namn och en samling inställningsinformation, anger anslutningen vilken MIDI-port som den är fysiskt ansluten till. Det kan ställas in i MIDI-enhetshanteringen. (Ljud- och syntinsticksmodulenheter har inte anslutningar på samma sätt). + + + + + + Tänk dig exempelvis en konfiguration som består av en dator med två fysiska MIDI-portar, där den ena har en extern synt ansluten. Då skulle du normalt ställa in Rosegarden att ha en MIDI-enhet, som motsvarar synten. Du skulle därefter kunna ställa in enheten med rätt namn och patchavbildning, och ange en anslutning för den som motsvarar ljudkortets verkliga MIDI-port. Vart och ett av de 16 standardinstrumenten på enheten skulle kunna anpassas med ett lämpligt program, och därefter skulle du tilldela spår till dem. + + I praktiken försöker Rosegarden normalt skapa en enhet för var och en av de tillgängliga anslutningarna vid start. Så med exemplet ovan skulle två MIDI-enheter normalt skapas även om du bara behöver en. Du skulle därefter i allmänhet byta namn på och ange patchavbildningar för den första, och ta bort eller helt enkelt inte använda den andra. Kom ihåg att det finns inget sätt för Rosegarden att veta vilka syntar som du verkligen har anslutit till MIDI-portarna på datorn. Av denna anledning är enheterna som skapas vid start bara avsedda som en standarduppsättning, och det är upp till dig att försäkra dig om att enheterna du ställer in stämmer med de du verkligen använder. + + Så fort den är inställd, lagras studioinställningen med varje fil på Rosegarden-format som du sparar. + + + + + Hantering av MIDI-enheter + + + + + + + + + MIDI-enhetshantering + + + + + + Dialogrutan för MIDI-enhetshantering visar de MIDI-enheter som för närvarande är tillgängliga, och var de är anslutna. Använd Komposition Studio Hantera MIDI-enheter för att nå dialogrutan. + + Som beskrivs i avsnittet Enheter, instrument och anslutningar, försöker Rosegarden normalt tillhandahålla en rimlig uppsättning enheter vid start, och göra rimliga anslutningar för enheterna. Standarduppsättningen kanske dock inte alltid är lämplig, och därför låter dialogrutan dig byta namn på enheter och ändra deras anslutningar och uppspelnings- eller inspelningsriktningar. + + Var och en av uppspelningsenheterna här tillhandahåller en utgång för MIDI-spår att skicka till: Om du lägger till en ny uppspelningsenhet, får du 16 nya instrument i enheten som du kan tilldela spår till. Om du därefter tilldelar en anslutning till enheten, spelas spåren som har tilldelats till den på lämplig kanal (beroende på instrumentet) i vilken MIDI-synt som helst som är kopplad till anslutningen. + + Inspelningsenheterna som listas här representerar möjliga källor för att spela in MIDI. Du kan göra en eller flera av dem aktuella (så att Rosegarden lyssnar på den vid inspelning) med kryssrutorna på varje rad, som visas i dialogrutan. + + + + + Hantera banker och program för MIDI-enheter + + + + + + + + + Editorn för MIDI-banker och program + + + + + + Kom ihåg att varje MIDI-enhet innehåller ett antal instrument, och att du kan tilldela spår till instrumenten. Med MIDI-terminologi, motsvarar varje instrument en enskild kanal i MIDI-synten. Du kan välja vilken av de tillgängliga stämmorna (ljuden) i synten som varje instrument använder, men för att göra det måste du tala om namnen på alla tillgängliga stämmor för Rosegarden. + + Den här dialogrutan låter dig tilldela programbanker (namn på stämmor) till MIDI-enheter, och på så sätt låta varje instrument i en enhet att ställas in att använda en av stämmorna i instrumentparameterrutan. + + Det vanliga sättet att ställa in programnamn för en enhet är att helt enkelt importera dem från en av enhetsfilerna (".rgd") som tillhandahålls. För att göra det, markera en enhet i listan till vänster i dialogrutan, klicka därefter på importknappen under listan och välj .rgd-filen som motsvarar din synt. + + Om det inte finns en aktuell .rgd-fil tillgänglig för din synt, kan du använda dialogrutan för att skapa en ny bank. För att göra det måste du hitta programavbildningen i din synts MIDI-implementeringsdiagram och skriva in namnen för hand: Därefter kan du exportera dem till en .rgd-fil att dela med andra användare av Rosegarden. Kontakta e-postlistan rosegarden-user om du har skapat en ny .rgd-fil och vill bidra med den. (Det är hur alla befintliga .rgd-filer har kommit att inkluderas med Rosegarden: andra användare har bidragit dem.) + + + Tonavbildningar för slagverk + + Många MIDI-syntar har åtminstone ett slagverksprogram, där varje "tonhöjd" spelar ett annorlunda ljud. Rosegarden innehåller en särskild matriseditor för slagverk för att visa och redigera toner med en skala som består av de riktiga namnen på tonhöjderna, istället för den konventionella tonskalan på ett piano. + + Tonavbildningarna som är tillgängliga för en viss MIDI-synt definieras också i Rosegardens enhetsfil (".rgd"). Varje MIDI-program som definieras som ett slagverksprogram kan ha en tillhörande tonavbildning. Om det finns en, används den normalt för alla spår som tilldelas programmet. Liksom program och bankdefinitioner kan tonavbildningar importeras från och exporteras till .rgd-filer. + + + + Ljudteckensnitt + + Om du råkar använda en programvarusynt eller ljudkortssynt som använder ljudteckensnittsfiler (.sf2), kan du helt enkelt ladda riktiga programnamn direkt från .sf2-filen i dialogrutan. Begär bara import som vanligt, och välj därefter .sf2-filen som du använder istället för en .rgd-fil. + + Observera att studion bara hanterar information om befintliga MIDI-enheter i Rosegarden. Den hanterar inte uppgifter som att ladda ett ljudteckensnitt till ljudkortet från början. Om du vill försäkra dig om att ett ljudteckensnitt laddas till ljudkortet när Rosegarden startas, ska du använda det speciella alternativet "Ladda ljudsamplingar till Soundblaster-kort vid start" i inställningen av musikbehandlaren under Inställningar Anpassa Rosegarden.... + + + + Varianter + + Vissa MIDI-enheter (till exempel de från Roland) organiserar programnamn på ett sätt som kallas "varianter". För dessa enheter vill man i allmänhet välja ett program genom att först ange ett grundprogramnamn, som ett piano, och därefter ange en av ett antal varianter av programmet, som ett elektriskt piano. Detta skiljer sig från syntar baserad på generell MIDI, som organiserar programmen i banker och förväntar sig att du först väljer en bank och därefter ett program i banken. + + Rosegarden kan stödja enheter som använder varianter, men du måste ändå skriva in programnamnen med bankformat. Internt använder enheter med variationer fortfarande styrning med val av MIDI-bank för att välja bland variationerna: Du måste ta reda på om enheten använder mest signifikant eller minst signifikant värde i bankväljaren för att ange variationer, och vilket banknummer som motsvarar vilken variant. Därefter kan du skriva in bankerna som vanligt, och använda alternativet "Visa variantlista baserad på Mest signifikant värde/Minst signifikant värde" i bankdialogrutan för att tala om för Rosegarden att varianter istället för banker ska visas när enheten visas i en instrumentparameterruta. + + + + Programavbildning vid &MIDI;-import + När du importerar en &MIDI;-fil till en komposition, använder &rosegarden; befintlig studioinställning för att avgöra hur &MIDI;-programmen avbildas på &rosegarden;-instrument. Målet är att försäkra att varje &MIDI;-program avbildas på ett instrument som verkligen finns i studion (och alltså verkligen är anslutet till datorn), så att alla &MIDI;-spår kan höras. &MIDI; programändrings- och bankvalshändelserna som hittas i den importerade filen används vid import, men bara som en hjälp att hitta lämpligt instrument för varje &MIDI;-spår bland instrumentuppsättningen i studion. Om studion till exempel för närvarande är inställd att bara innehålla GM-instrument, och du importerar en &MIDI;-fil som innehåller GS-programändringar, avbildar &rosegarden; GS-bankerna tillbaka till GM eftersom de är allt som den vet om att du har vid tiden då filen importeras. Den kommer inte ihåg ursprungliga GS-programnummer. Det här betyder att du alltid ska försäkra dig om att din studio är riktigt inställd för enheterna som du verkligen har, innan du importerar &MIDI;-filen. Annars kan programdata i &MIDI;-filen gå förlorad. + + + + + Ljudfördelning + Alla spår i Rosegarden som tilldelas till ett ljudinstrument eller syntinsticksmodulinstrument blir en del av Rosegardens ljudfördelningsarkitektur. Det finns 16 ljudinstrument och 16 syntinsticksmodulinstrument, och vart och ett av dem har en uppsättning justerbara parametrar som omfattar toningsnivå, panorering, effekter och så vidare. De är i allmänhet inställningsbara i instrumentparameterrutan eller ljudmixern. Varje ljudinstrument har också en ingångsanslutning, och både ljudinstrument och syntinsticksmodulinstrument har en utgångsanslutning. + + Ett instruments ingångsanslutning definierar varifrån Rosegarden läser ljuddata vid inspelning till instrumentet. Den vanligaste inställningen är en av Rosegardens externa ljudingångar, vars antal kan ställas in i ljudmixern. De motsvarar JACK ljudportar exponerade av Rosegarden, där du kan ansluta utgångar från vilket JACK ljudprogram som helst eller från någon av ljudkortets portar med ett externt JACK fördelningsprogram som QJackCtl. Du kan också ställa in ett instruments ljudingång till en av Rosegardens inbyggda delnivåutgångar eller huvudutgångar för ihopmixningar. + Ett instruments utgångsanslutning definierar var ljudet tar vägen när det spelas upp. Instrumentens normalinställning är att skicka ljud till Rosegardens huvudutgång, som är en annan extern JACK port (eller ett par portar vid stereo), som därefter kan anslutas genom att använda samma externa JACK fördelningsprogram. Rosegarden stöder dock också upp till åtta interna delutgångsbussar, dit du kan skicka utdata från instrument istället, för att gruppera instrument i samhörande kategorier. Du kan styra antalet och fördelningen av dem i ljudmixern. + Rosegarden stöder för närvarande effekter med en uppsättning effektplatser som infogas innan toningen för varje ljudinstrument. Du kan ännu inte tilldela effekter till delnivåbussarna, och Rosegarden stöder ännu inte att skicka effekter, även om du kan uppnå liknande resultat genom att använda JACK externa effekter och mixningsarkitektur. + Några ytterligare detaljer angående inställning av ljudfördelning, mixning och effekter beskrivs i avsnitten ljudmixern, instrumentparameterrutan och ljudinsticksmoduler. + + + + Ljudmixern + + + + + + + + &rosegarden;s ljudmixer + + + + + + Rosegardens ljudmixningsfönster, som visas med Komposition Studio Ljudmixer, liknar en ljudmixer i hårdvara och tillhandahåller ett sätt att se och ändra tillståndet för ett antal ljudinstrument på en gång. Den innehåller många likadana knappar som finns i ljud- och syntinsticksmodulernas instrumentparameterrutor, där de viktigaste är mätaren av uppspelningsnivå och toningskontroll för varje ljudinstrument och syntinsticksmodulinstrument, samt fördelningskontroll, panorering, mono/stereo och platser för effektinsticksmoduler. + Ljudmixerfönstret är också platsen där du ser och styr huvudljudnivån (längst till höger i bilden ovan), samt inspelningsnivån (till vänster om huvudtoningen) och delutnivåer. + Menyn Inställningar i ljudmixern är särskilt relevant. Förutom att styra vad som visas i mixerfönstret, innehåller menyn också inställningen av ljudfördelningen för antalet ljudinspelningsingångar i stereo som är tillgängliga och för antalet delnivåutgångar. De är studioinställningar som sparas med din Rosegarden formatfil. + + Observera att om du i själva verket inte använder några delnivåer (dvs. om det inte finns några instrument som är inställda att skicka sin utsignal till en delnivå) kan du se en liten prestandaförbättring om du uttryckligen ställer in antalet delnivåer till inga, istället för att behålla oanvända i inställningen. + + + + MIDI-mixern + + + + + + + + &rosegarden;s MIDI-mixer + + + + + Rosegardens MIDI-mixningsfönster, som visas med Komposition Studio MIDI-mixer, tillhandahåller ett sätt att se och redigera instrumentparametervärden för ett antal MIDI-instrument på en gång. + + Fönstret är organiserat som en ruta med flikar. Längs nederkanten ser du en flik för varje MIDI-uppspelningsenhet i studioinställningen. När en enhetsflik väljes, uppdateras resten av fönstret för att visa knapparna för enhetens 16 instrument. + + Knapparna som visas för varje instrument är de som ställts in i hanteringen av styrparametrar, samt volym (som motsvarar ändring av MIDI-volymstyrningen, inte en MIDI-ljudstyrka eller ljudnivå i decibel) och en ungefärlig utnivåindikator. + + + + Ljudinsticksmoduler + En ljudinsticksmodul är en programvarumodul, skild från Rosegarden, men som Rosegarden kan ladda och använda för att utföra en viss ljudbehandlingsuppgift. De kan grovt delas upp i effektinsticksmoduler och syntinsticksmoduler. Effektinsticksmoduler tar ljudindata och behandlar det för att skapa annorlunda ljudutdata. Rosegarden använder Linux-standarden LADSPA för effektinsticksmodulernas programmeringsgränssnitt, och DSSI för syntinsticksmodulernas programmeringsgränssnitt, vilket gör det möjligt att använda ett stort antal insticksmoduler med öppen källkod som gjorts tillgängliga av många utvecklare. + Användning av insticksmoduler ger en kostnad i processortid, eftersom ljudbehandling i realtid oftast kräver en väsentlig mängd arbete till och med med en modern processor. Det ger också en potentiell kostnad i tillförlitlighet: När Rosegarden kör en insticksmodul, och insticksmodulen hänger sig eller kraschar, så gör Rosegarden också det. Många insticksmoduler är mycket tillförlitliga, men det är oundvikligt att vissa inte är så vältestade. + + Effektinsticksmoduler En effektinsticksmodul är något som du kan använda för att ändra en ljudsignal på ett styrbart sätt. Exempel omfattar eko, fördröjningseffekter, dynamisk komprimering och så vidare. + Varje ljud- eller syntinsticksmodulinstrument i Rosegarden har fem tillhörande effektplatser. Normalt är de tomma, men du kan ladda insticksprogram i dem för att bilda en kedja med upp till fem effekter för ljudsignalen innan den går igenom toningsnivå och panoreringsbehandling. + + För att ladda en insticksmodul på en plats, klicka på dess knapp i instrumentparameterrutan: + + + + + + + + Insticksplatsknappar + + + + + (Dessa knappar är också alternativt tillgängliga i ljudmixerns fönster.) + Att klicka på en insticksmodulknapp visar insticksmoduldialogrutan. Den visar tillgängliga effektkategorier i den första menyn. Markera en, så kan du därefter välja insticksmodul i den andra menyn. + + + + + + + + En insticksdialogruta i &rosegarden; + + + + + + Under menyerna för val av insticksmoduler, har dialogrutan ett varierande antal vridbara rattar som visar alla parametrar som kan ändras för insticksprogrammet du har valt. För att ändra ett värde, klicka bara på en ratt och dra uppåt och neråt, eller vänster och höger. (Uppåt eller åt höger för att öka värdet, neråt eller åt vänster för att minska det.) Du kan också rulla mushjulet för att ändra värdet, eller klicka med musens mittenknapp för att återställa det till det ursprungliga normalvärdet. + + Det är också möjligt att kopiera en insticksmodul med sin nuvarande inställning till en annan plats, för att använda samma insticksmodulinställningar för mer än ett instrument, eller för att basera en insticksmodulinställning på en annan. Klicka bara på knappen Kopiera när du har ställt in insticksmodulen som du vill ha den, och öppna därefter dialogrutan för en annan insticksmodulplats och klicka på Klistra in. + + Till sist kan du använda åtgärden Förbikoppla för att tillfälligt ta bort en insticksmodul från behandlingen, men ändå behålla dess inställning. + + + Syntinsticksmoduler + Syntinsticksmoduler kan användas istället för MIDI-enheter i hårdvara eller fristående programvarusyntar, för att skapa ljud från segmenten med tonhändelser. + + Att använda en syntinsticksmodul ger dig något bättre kontroll och upprepningsbarhet än att använda en extern MIDI-enhet, eftersom Rosegarden kan ladda rätt insticksmodul åt dig och använda riktiga inställningar nästa gång du laddar samma fil. Insticksmoduler kan också ge bättre tidsupplösning än externa MIDI-enheter, och syntinsticksmodulinstrument har fördelen att vara fördelningsbara som ljudinstrument, vilket också betyder att du kan lägga till effektinsticksmoduler ovanför dem. + + För att använda en syntinsticksmodul, tilldela först ett spår till ett syntinsticksmodulinstrument, och ladda därefter en syntinsticksmodul genom att klicka på den översta knappen i instrumentparameterrutan: + + + + + + + + + Syntinsticksmodulknappar + + + + + + Det här visar samma insticksmoduldialogruta som visas ovan för effektinsticksmoduler, men med en lista över syntinsticksmoduler istället för effekter. Återigen visas den särskilda uppsättning med vridbara parametrar för synten du har valt. Syntinsticksmoduler kan också ha "program" som kan väljas i en meny. Menyn visas bara om du har valt en synt som stöder det. När du har valt och ställt in en syntinsticksmodul för ett instrument, ska all MIDI-data på spår som tilldelas till det instrumentet spelas via synten, liksom inkommande MIDI-data under inspelning eller övervakning. + + + + Egna redigeringsfönster i en insticksmodul + + De flesta insticksmoduler kan styras helt och hållet med rattarna i Rosegardens insticksmoduldialogruta. Dock har några få insticksmoduler (i allmänhet syntar) också sina egna redigeringsfönster som kan aktiveras eller inaktiveras från Rosegarden, och som kan tillhandahålla fullständigare eller bättre organiserade knappar. + + När du väljer en insticksmodul som har sitt eget redigeringsfönster, aktiveras knappen nere till vänster i insticksmodulens dialogruta som heter "Editor": + + + + + + + + + Redigeringsknappen i en insticksmodul + + + + + + (För syntinsticksmoduler finns en liknande knapp i instrumentparameterrutan.) Att klicka på knappen visar insticksmodulens eget redigeringsfönster. Alla ändringar som du gör i redigeringsfönstret ska också synas i Rosegardens egen insticksmoduldialogruta, och ska naturligtvis sparas i din Rosegarden-fil som vanligt. + + + + + Metronomer + Rosegarden har två inbyggda metronomer, en för användning under inspelning och en som kan kopplas in under normal uppspelning. De fungerar genom att skicka toner till ett MIDI-instrument, och båda metronomerna använder samma instrument, tonhöjds- och ljudstyrkeinformation. + + + + + + + + + &rosegarden;s inställningsdialogruta för metronom + + + + + För att ställa in metronomerna, använd Komposition Studio Hantera metronom för att visa metronomdialogrutan. Här kan du välja ett MIDI-instrument för metronomen och välja metronomens upplösning (om den ska ticka en gång per taktslag, en gång per underavdelning av ett taktslag, eller bara en gång per takt), tonhöjd och ljudstyrkor. Egenskaper som själva stämman som MIDI-synten använder för metronomens tick beror på instrumentet som väljes, precis som stämman för ett MIDI-spår beror på instrumentet som spåret är tilldelat till. Du kan ställa in instrumentet genom att tilldela ett spår till det i huvudfönstret och välja rätt program från instrumentparameterrutan. + + Metronomerna för inspelning och uppspelning kan aktiveras eller inaktiveras från överföringsfönstret genom att använda metronomknappen. Knappen styr inspelningsmetronomen när inspelning är förberedd eller pågår, och annars uppspelningsmetronomen. Normalt är inspelningsmetronomen aktiverad och uppspelningsmetronomen inaktiverad. + + Rosegarden har också en "visuell metronom": Överföringsfönstret kan ställas in att blinka starkt för att markera varje taktslag. Se avsnittet om överföringen för mer detaljinformation. + + + + MIDI-filter + + + + + + + + MIDI-filterdialogrutan + + + + + + Genom att använda den här dialogrutan kan du bestämma vilka MIDI-händelser som Rosegarden ignorerar eller accepterar, antingen när händelser skickas vidare med MIDI THRU, eller helt enkelt när de spelas in. Använd kryssrutorna för att tala om för Rosegarden vilka typer av MIDI-händelser som du inte vill skicka vidare eller spela in. + + + + + + Externa MIDI-styrenheter + Rosegardens ljud- och MIDI-mixningsfönster samt huvudfönstret kan också i viss mån styras av en extern MIDI-enhet. För att ställa in det, måste du använda ett ALSA MIDI-anslutningsprogram som qjackctl för att ansluta MIDI-styrenheten till Rosegardens "externa styringång" och MIDI-utgångarna. + Rosegarden tar emot MIDI-styrändringsmeddelanden för att justera mixerspåret som motsvarar den inkommande MIDI-kanalen vid varje styrenhetshändelse, och skickar också ut MIDI-meddelanden när något ändras i ett mixerspår för att stödja styrenheter med motoriserade skjutreglage eller knappar. + Rosegarden tar emot MIDI-styrenhet nummer 81 för att ändra fönstret som för närvarande är aktivt. Skicka styrenhet 81 med datavärdet 0-9 för att välja huvudfönstret, 10-19 för att välja ljudmixerfönstret eller 20-29 för att välja MIDI-mixerfönstret. + Rosegarden tar emot MIDI-styrenhet nummer 82 för att ändra spår som för närvarande är markerat i huvudfönstret. Stegningen av styrenheten beror på antal spår i fönstret: förhållandet mellan styrenhetens datavärde till spårnummer beräknas så att det fullständiga dataintervallet i MIDI-styrenheten används, under förutsättning att det inte finns mer än 128 spår i fönstret. + + + + + + + Segment- och instrumentparametrar + + + Segmentparameterrutan + + + + + + + + + &rosegarden;s segmentparameterruta + + + + + + Segmentparameterrutan hör hemma till vänster i Rosegardens huvudfönster. (Om du inte kan se den, försök använda Inställningar Visa segment- och instrumentparametrar.) Den låter dig ändra vissa aspekter av markerade segment.Om ett enstaka segment för närvarande är markerat, visas dess parametrar i segmentparameterrutan och kan redigeras där. Om flera segment är markerade, visar parameterrutan bara nuvarande värden där de är samma för alla markerade segment, men du kan fortfarande redigera dem och ändringarna gäller för allt som är markerat. + + Namn + + Visar namnet på det markerade segmentet (eller segmenten, om alla har samma namn). Klicka på knappen "..." för att redigera namnet. + + + + + Upprepa + + Stänger av eller sätter på upprepning för markerade segment. Ett upprepande segment upprepas till efterföljande segment börjar i samma spår, eller till kompositionens slut om det inte finns något efterföljande segment. + + Upprepade delar av ett upprepande segment visas med en svagare färg på huvudduken än det ursprungliga segmentet. Du kan ändra dem till riktiga redigerbara kopior av det ursprungliga segmentet genom att antingen använda Segment Omvandla upprepningar till kopior, eller genom att helt enkelt dubbelklicka på enskilda upprepade block. + + + + + Kvantisera + + Visar kvantiseringsinställningen för markerade segment. Du kan ändra den för att snabbt kvantisera starttider för alla deras toner. För mer avancerad kvantisering, använd Segment Kvantisera... . Se Kvantisering för mer detaljinformation. + + + + + Transponera + + Visar transponeringen (i halvtonssteg) som för närvarande används för det markerade segmentet. Transponeringen utförs när segmentet spelas upp, och visas inte med noterna i matris-, not- eller händelseeditorerna. Du kan använda den för att snabbt ändra tonhöjd för en del eller hela kompositionen. + + + + + Fördröjning + + Visar fördröjningen som för närvarande gäller för markerade segment. Du kan ställa in en fördröjning här för att göra att ett helt segment spelas upp senare än skrivet. Fördröjningen utförs när segmentet spelas upp, och visas inte med noterna i matris-, not- eller händelseeditorerna. + Du kan antingen ange en fördröjning med metronomtid (genom att välja notvärde i fördröjningskombinationsrutan), då fördröjningens exakta tid beror på tempot, eller med klocktid (genom att välja tiden i millisekunder i kombinationsrutan). + + + + + Färg + + Visar färgen som används för att visa markerade segment. Du kan välja en annan färg i kombinationsrutan, eller välja alternativet "Lägg till ny färg" om du vill ha en färg som inte finns i kombinationsrutan. + Du kan också hantera och byta namn på färger genom att använda Komposition Redigera dokumentegenskaper... (och därefter välja sidan Färg i dialogrutan med dokumentegenskaper). Den ändrade färgpaletten sparas med kompositionen i Rosegarden-filen. + + + + + &rosegarden;s färghantering + + + + + + + + + + + + + Instrumentparameterrutan + Instrumentparameterrutan finns i nedre vänstra hörnet av Rosegardens huvudfönster, nedanför segmentparameterrutan. (Om du inte kan se den, försök använda Inställningar Visa segment- och instrumentparametrar.) + + Den visar vilka instrument som tilldelats nuvarande markerat spår, och innehåller alla redigerbara knapparna för instrumentet. Kom ihåg att eftersom hur många spår som helst kan tilldelas till samma instrument, kan inställningarna i rutan påverka mer än ett spår åt gången. + + Utseendet och innehållet i instrumentparameterrutan beror på instrumenttypen: MIDI, ljud eller syntinsticksmodul. + + + MIDI-instrumentparametrar + + + + + + + + &rosegarden;s instrumentparameterruta för ett MIDI-instrument + + + + + När du markerar ett spår som är tilldelat till ett MIDI-instrument, visar instrumentparameterrutan MIDI-parametrar. + Längst upp visar rutan instrumentets namn och anslutningen som dess enhet använder. + Därunder kan du se och redigera MIDI-kanalnumret och inställningar av bank och program som ska skickas till instrumentet vid uppspelningens start (inklusive kryssrutan "Slagverk" som styr om bara slagverksprogram ska erbjudas i inställningarna). + + Till sist visar rutan tillgängliga styrenheter för enheten (de för en generell MIDI-enhet visas ovan). Alla inställningar som du gör här skickas till instrumentets kanal vid uppspelningens start. + + + + Ljudinstrumentparametrar + + + + + + + + &rosegarden;s instrumentparameterruta för ett ljudinstrument + + + + + När du markerar ett ljudspår, visar instrumentparameterrutan ljudparametrar. + Rutan har två huvudtoningar, en omgiven av blått för uppspelning och den andra omgiven av rött för inspelningsnivå vid inspelning till instrumentet. Mellan dem finns en mätare av uppspelningsnivå. + De två menyerna längst upp i rutan används för att välja ingångs- och utgångsfördelning för instrumentet. Under dem kan du välja om instrumentet är mono eller stereo, och panoreringsinställning för plats i stereofältet. (Ljudinstrument är alltid till sist stereo, eftersom panoreringsinställningen alltid tillämpas. Men om du ställer in instrumentet till mono, reduceras all ljuddata och effektutdata till mono innan panoreringen tillämpas.) + Kolumnen med fem knappar längst ner till vänster är effektplatserna. Klicka på dem för att välja och aktivera insticksmoduler för ljudinstrumentet, och för att styra dem med redigeringsdialogrutan för insticksmoduler. Detta är infogade effekter, som utförs i ordning uppifrån och ner innan toning och panorering. + + + + Instrumentparametrar för syntinsticksmoduler + + + + + + + + &rosegarden;s instrumentparameterruta för ett syntinsticksmodulinstrument + + + + + När du markerar ett spår som är tilldelat till ett syntinsticksmodulinstrument, visar instrumentparameterrutan syntparametrar. Du märker att även om en syntinsticksmodul använder segment med MIDI-data, så beter den sig mer som ett ljudspår när det gäller styrning och fördelning. + Den viktigaste knappen här är den längst upp till vänster (som lyder Xsynth i bilen ovan), som visar namnet på syntinsticksmodulen som används för instrumentet. Klicka på den för att välja en viss synt och styra den i Rosegardens vanliga redigeringsdialog för insticksmoduler. När du väl har valt en insticksmodul, kanske du också kan klicka på redigeringsknappen nedanför för att öppna en dedicerad grafisk editor för den särskilda insticksmodulen (om insticksmodulen har någon). + Återstående knappar här är samma som för ljudinstrument: Uppspelningstoning, uppspelningsnivå, utgångsfördelning, mono/stereo, panoreringsinställningar och effektplatser är alla exakt likadana. + + + + + + + Kvantisering + "Kvantisering" är processen att flytta toner och andra händelser så att de börjar eller avslutas på exakta taktdelar. Det används traditionellt för att göra ett ungefärligt utförande till ett precist men som låter ganska mekaniskt, antingen på grund av att precision är önskad effekt, eller på grund av orsaker som att göra noter tydligare i notering. + + För allmän kvantisering, använd Segment Kvantisera i huvudfönstret eller Justera Kvantisera i matriseditorn eller notbehandlarna. Det visar en dialogruta där du kan välja precis de kvantiseringsparametrarna du behöver, och tillämpar dem på alla markerade segment eller toner. (Du kan också snabbt nå dialogrutan genom att trycka på tangenten "=".) + + + + + + + + + &rosegarden;s kvantiseringsdialogruta + + + + + + Kvantiseringsdialogrutan erbjuder ett urval kvantiseringsmetoder, var och en med sin egen uppsättning parametrar. Tillgängliga kvantiseringsmetoder är: + + + + Rutnätskvantisering + + Rutnätskvantiseringen flyttar starttider för toner så att de börjar på den närmaste punkten i ett rutnät (definierat av de olika parametrarna för kvantiseringen). På så sätt justeras toner som ursprungligen varierar något i starttid av kvantiseringen, vilket ger ett mer precist och mekaniskt utförande. + + + + + Legato-kvantisering + + Legato-kvantiseringen utför en enkel rutnätskvantisering, och justerar också notvärdena så att eventuella avstånd mellan tonerna tas bort genom att förlänga varje not så att den (åtminstone) fortsätter till början på nästa. Du kan också få denna legato-effekt utan tillhörande rutnätskvantisering med funktionen Justera Kvantisera Legato i matriseditorn. + + + + + Heuristisk kvantisering + + Kvantiseringen försöker justera starttider och notvärden för toner så att en läsbar notering skapas. Se Notskrift från utförandedata för en beskrivning av kvantiseringen och dess användning. + + + + + + Rutnätskvantiseringen har följande justerbara parametrar: + + + + Grundenhet för rutnät + + Det här är storleken på rutnätet som används för kvantiseringen. + + + + + Svaj + + Det här är ett procenttal som justerar graden som alternerande taktslag kvantiseras "sent". + Om inställt till inget (förvalt värde), görs kvantiseringen till ett jämt rutnät med avstånd enligt grundenheten för rutnätet. + Om inställd till 100 %, placeras varannan rutnätslinje två tredjedelar av avståndet mellan föregående och nästa, istället för halvvägs. Det gör att toner kvantiseras till första och tredje triolen med en svajig takt. + Övriga inställningar ger proportionellt varierande grad av svaj. Du kan också ställa in parametern till negativa värden (för att omväxlande taktslag ska börja tidigare) eller till värden större än 100 %. + + + + + Itereringsvärde + + Rutnätskvantiseringens normalbeteende är att exakt flytta varje not till den närmaste rutnätslinjen, men om du ställer in iterationsgränsen till något som är mindre än 100 % (normalvärdet "Fullständig kvantisering") flyttas varje not bara den procentandelen av avståndet till närmaste rutnätslinje, vilket resulterar i en kvantiseringseffekt som nästan utförs, men inte helt och hållet. + Kvantiseringen kan utföras upprepade gånger, för att pröva gradvis ökande kvantiseringsgrader, därav namnet "iterativ". Använd Justera Kvantisera Upprepa senaste kvantisering i matriseditorn för att göra det. + + + + + Kvantisera både notvärden och starttider + + Om det här alternativet är aktiverat, kvantiseras tonernas sluttider till samma rutnät som deras starttider. + + + + + Kvantiseringsdialogrutan har också en valfri avancerad sektion som innehåller ytterligare alternativ för kvantisering. + + Ett annat enkelt sätt att utföra en rutnätskvantisering är att göra den i huvudfönstret med menyn Kvantisera i segmentparameterrutan. Om du markerar några segment och ändrar värdet som visas i menyn, blir segmenten omedelbart rutnätskvantiserade till upplösningen som visas i menyn. + + Till sist finns också en styrning av kvantisering i matrisvyn. + + + + + Matriseditorn + &rosegarden;s matriseditor låter dig visa och redigera musik med ett enkelt logiskt format: Varje not representeras som ett block i ett rutnät, på en plats som motsvarar tonhöjden. + + + + + + + + &rosegarden;s matriseditor + + + Varje fönster i matriseditorn visar ett enstaka segment. För att redigera ett segment, högerklicka bara på det på huvudduken och välj matriseditorn i menyn. Alternativt kan du ställa in Rosegarden att göra matriseditorn till standardvy som är tillgänglig genom att dubbelklicka på ett segment. + + + Styrning av rutnät och kvantisering + Matrisvyn innehåller menyerna Rutnät och Kvantisering i huvudmenyraden. + Rutnätsmenyn styr det synliga rutnätets storlek i matrisvyns bakgrund, samt tidsupplösningen som används när noter skrivs in och flyttas. Efter du har ställt in det till ett visst tidsvärde, låses de normala åtgärderna för att infoga och dra noter automatiskt till rutnätspunkter åtskilda med det tidsvärdets bredd. Du kan överskrida positioneringsfunktionen tillfälligt genom att hålla nere Skift under redigeringen, eller inaktivera den genom att ställa in rutnätsmenyn till Ingen låsning. + Kvantiseringsmenyn fungerar på ett ganska annorlunda sätt. I stället för att styra beteendet hos andra redigeringsverktyg, utför den verkligen en åtgärd. När du ändrar värde i menyn, blir de markerade noterna, eller hela segmentet om ingenting är markerat, omedelbart kvantiserade av en rutnätskvantisering med vald upplösning. + Kvantiseringsmenyn visar också kontinuerligt vilken upplösning som det nuvarande segmentet eller markeringen är kvantiserad med. Om du till exempel markerar en uppsättning noter som börjar på efterföljande kvartsnotstaktslag, uppdateras kvantiseringsmenyn så att 1/4 visas, eftersom det är den grövsta upplösningen som motsvarar den befintliga kvantiseringen av nuvarande markering. + + + + Infoga noter + Det enklaste sättet att mata in en not i matrisvyn är att använda musen. För att göra det, välj pennverktyget i verktygsraden, klicka och dra därefter i matriseditorn. Noten matas in vid tiden och med tonhöjden som motsvarar punkten du klickar, och har ett notvärde som motsvarar avståndet du drar innan du släpper musknappen. + + Normalt är tiden och notvärdet låsta till en viss rutnätsenhet enligt rutnätsinställningarna i menyn Visa eller verktygsraden. Du kan förhindra effekten genom att hålla nere Skift medan du klickar och drar. + + + Skriva in noter med datorns tangentbord + + + Notvärde + + Notvärden för noter som matas in via tangentbordet styrs av rutnätsinställningarna i menyn Visa eller verktygsraden . Du kan ställa in det genom att använda de numeriska tangenterna: + + + 5 – Hel takt + 1 – Takt + 2 – Halvnot + 4 – Kvartsnot + 8 – Åttondedelsnot + 6 – Sextondedelsnot + 3 – Trettioandredelsnot + 0 – Sextifjärdedelsnot + + + + + + Tonhöjd + + Så fort rätt notvärde är vald i rutnätsmenyn kan du infoga en not på infogningsmarkörens aktuella position genom att trycka på en av tonhöjdstangenterna: + + + A – C (Do, tonikan i aktuell tonart för aktuell klav) + S – D (Re) + D – E (Mi) + F – F (Fa) + J – G (So) + K – A (La) + L – H (Ti) + + + Genom att hålla nere Skift när en tangent trycks, fås en upphöjd not (utom för E och H som inte har upphöjda versioner) och genom att hålla nere Skift och Ctrl tillsammans fås en nersänkt not (utom för F och C). + + För att skriva in noter en oktav högre,använd motsvarande tangenter på nästa rad ovanför: Q, W, E, R, U, I och O. På motsvarande sätt, för att lägga till noter en oktav lägre, använd Z, X, C, V, B, N och M. + + + + + Övriga anmärkningar + + Alla infogningskommandon är också tillgängliga från en undermeny i menyn Verktyg. Det är inte troligt att du någonsin vill navigera i menyn bara för att infoga en enstaka not, men menyerna visar snabbtangenterna och tillhandahåller på så sätt en användbar referens om du skulle glömma vilken tangent som gör vad. + + Snabbtangenterna är för närvarande gjorda för att användas med tangentbord som har QWERTY-organisation. Det finns ännu inte något sätt att ändra snabbtangenter till en annan organisation, förutom att individuellt ändra tilldelning av varje tangent med Inställningar Anpassa genvägar.... + + + + + + + Skriva in noter genom att använda ett MIDI-keyboard + + Du kan lägga till noter i matriseditorn en i taget med ett MIDI-keyboard eller en annan MIDI-styrenhet. Matriseditorn använder tonhöjden du spelar på ett keyboard, men de notvärden du har valt i editorns egna rutnätsinställningar. Det är känt som "stegvis inspelning". + + För att börja mata in noter från ett MIDI-keyboard, försäkra dig först om att det är inställt som förvald MIDI-inspelningsenhet. Försäkra dig därefter om att du har rätt rutnätsinställning i menyn Visa eller på verktygsraden, eftersom det styr notvärdena. Tryck därefter på knappen för stegvis inspelning i matriseditorns verktygsrad, eller välj Stegvis inspelning i menyn Verktyg. Från detta ögonblick infogas alla toner som du spelar på ditt MIDI-keyboard vid den nuvarande inmatningstiden i fönstret, ända till stegvis inspelning stängs av igen, aktiveras i ett annat fönster eller fönstret stängs. + + Du kan ändra rutnätsinställningar medan stegvis inspelning pågår, för att infoga noter med olika notvärden. + + + + + Markera noter För att markera noter i matriseditorn, byt till markeringsverktyget (pilen) och rita upp ett rektangulärt område som innehåller noterna du vill markera. Markerade händelser färgläggs då i blått. Om du istället klickar på en enstaka händelse, markeras bara den händelsen. Om du håller nere Skift medan du ritar upp en rektangel eller klickar på en not, läggs den nya markeringen till i en eventuell befintlig markering istället för att ersätta den. + + För att rensa en markering, klicka på ett tomt område i matriseditorn eller tryck på Esc-tangenten. + + Du kan också markera alla noter av en viss tonhöjd genom att skift-klicka på en tangent på pianoklaviaturen längs vänster sida i matriseditorn. Du kan också skift-klicka och dra för att markera en uppsättning tonhöjder. Markeringen läggs till i en eventuell befintlig markering, så om du vill ha en helt ny markering, avmarkera först den föregående. + + + + Flytta och kopiera noter + Du kan flytta noter både i tid och tonhöjd i matriseditorn genom att antingen klicka och dra dem med förflyttningsverktyget, eller markera dem och därefter dra dem med markeringsverktyget. + För att kopiera noter, markera dem och använd därefter de vanliga funktionerna kopiera och klistra in. Efter de har klistrats in är de inklistrade noterna markerade istället, och du kan dra dem var du än vill ha dem. + + + + + + Slagverksmatriseditorn + + Slagverksmatriseditorn är identisk med matriseditorn, förutom att den visar tonhöjdsnamn på den vertikala skalan istället för pianotangenter, och att den inte visar notvärdet för varje not. Den är avsedd för användning med slagverksprogram i MIDI-instrument, där varje tonhöjd spelar ett annorlunda slagverksljud. + + Se också Tonavbildningar för slagverk. + + + + Notbehandlaren + + + + + Inledning + + &rosegarden;s notbehandlare gör det möjligt att visa och redigera ett eller flera notsystem med traditionell partiturnotation. + + + + + + + + &rosegarden;s notbehandlare + + + + + &rosegarden; försöker presentera partitur med bästa möjliga utläggning givet dess huvudsakliga fokus som en musikbehandlare. Det betyder att även om editorn stöder ackord, överlappande och nästlade balkgrupper, trioler och godtyckliga annandelningar, prydnadsnoter, dynamik, accenter, text och så vidare, tillhandahåller den inte så mycket detaljkontroll över utläggningen (särskilt i musik med kontrapunkt) som särskilda program för redigering av partitur kan göra. &rosegarden; har inte som mål att skapa partitur av typsättningskvalitet, även om Lilypond-filer kan exporteras, vilka kan utgöra en bra grund för typsättning. + + + + + + Enkla och flera notsystem + + Det finns tre sätt att öppna en notbehandlare i &rosegarden;s huvudfönster. (Alla kräver att du först har ett befintligt segment i huvudfönstret, så om du påbörjar en ny komposition, bör du skapa dina segment innan du börjar fundera på hur de ska redigeras.) + + + Dubbelklicka på segment + + + Det mest uppenbara sättet är att dubbelklicka på ett segment på huvudduken. Det öppnar segmentet i den editor som du har ställt in som standardvy (not, matris eller händelselista), som normalt är notbehandlaren. Alltså öppnas ett segment som ett enskilt notsystem i notbehandlarens fönster genom att dubbelklicka på det. + + Du kan också öppna en editor med flera notsystem på följande sätt: Håll nere Skift-tangenten, markera (med ett enda musklick) alla segment i huvudvyn som du vill öppna, men dubbelklicka på det sista. Alla markerade segment öppnas då tillsammans i ett enda fönster i notbehandlaren. + + + + + + Funktionen Öppna i standardvy (returtangenten) + + + Returtangenten är en snabbtangent för menyfunktionen att öppna i standardvyn, som gör i stort sett samma sak som att dubbelklicka: Den öppnar alla segment som för närvarande är markerade i notbehandlaren, eller i någon annan editor som du har ställt in som standardvy. + + + + + Menyfunktionerna Öppna i notbehandlare + + + Som ett alternativ kan du använda huvudfönstrets menyalternativ Öppna i notbehandlare, antingen i menyn Segment eller i menyn som visas med höger musknapp över ett segment på duken. Markera segmenten du vill redigera (genom att skift-klicka som ovan, eller genom att använda alternativet Markera alla segment) och välj därefter Öppna i notbehandlare. + + + + + + + + Om du har mer än ett notsystem (dvs. segment) synligt i notbehandlaren kan bara ett av dem vara "aktuellt" på en gång. Det aktuella notsystemet kan urskiljas eftersom infogningsmarkören visas i det (se Linjaler och markörer), och det är notsystemet där alla redigeringsåtgärder som använder infogningsmarkören äger rum. Det översta notsystemet är normalt det aktuella, men du kan byta till ett annat notsystem genom att Ctrl-klicka på det eller genom att använda menyalternativen Markör upp notsystem och Markör ner notsystem. + + + + + + + Horisontell och sidbaserad utläggning + + Det vanliga sättet som notbehandlaren visar notsystem är känt som horisontell utläggning: Notsystem ovanför varandra, med varje notsystem som en enda, horisontell rullande lång rad. Vissa funktioner i editorn (som linjalerna) är bara tillgängliga med horisontell utläggning. + + Du kan dock också visa notsystem med två olika sidbaserade utläggningar: Vertikal utläggning eller Sidutläggning. + + I vertikal utläggning visas noteringen på en oändligt hög sida med samma bredd som fönstret. Varje notsystem bryts vid radens slut, och påbörjar en ny rad under återstående notsystem. + + I sidutläggning visas noteringen uppdelad på riktiga sidor i stort sett som den ser ut när den skrivs ut. Varje sidas storlek beräknas så att ungefär samma antal noter får plats på varje rad som när det verkligen skrivs ut (enligt punktstorleken som anges för utskriftsupplösningen i inställningsdialogrutan). Den utskrivna versionen är troligen inte precis likadan, eftersom det beror på den exakta pappersstorleken och marginalerna som används vid utskrift, men det bör vara ganska nära om du råkar använda A4-papper. + + + + + + + + + &rosegarden;s notbehandlare med sidutläggning + + + + De flesta, men inte alla, av visnings- och redigeringsfunktionerna fungerar lika bra i sidutläggningslägena som i horisontell utläggning. + + För att byta mellan utläggningslägen, använd menyalternativen Horisontell utläggning, Vertikal utläggning och Sidutläggning. + + + + + + Linjaler och markörer + + &rosegarden;s notredigeringsfönster innehåller två linjaler och två markörer. Linjalerna är de horisontella raderna uppdelade med graderingar längst upp och längst ner på huvudnoteringsduken, och markörerna är de färgade vertikala linjerna som ursprungligen visas i början av det översta notsystemet i editorn. + + Den violetta markören är infogningsmarkören. Den visar platsen där åtgärder som infoga och klistra in utförs. Du kan flytta infogningsmarkören genom att klicka eller dra på den övre linjalen, eller genom att klicka med markeringsverktyget på en tom del av notsystemet (och undvika alla händelser), eller genom att klicka var som helst med Ctrl intryckt. + + Du kan också använda vänster och höger piltangenter för att flytta infogningsmarkören en händelse i taget. Om du håller nere Ctrl medan piltangenterna trycks, flyttas markören en hel takt åt gången. Om du håller nere Skift, markeras händelserna medan markören rör sig över dem. + + Den blåa markören är uppspelningsmarkören. Precis som liknande markörer i huvudfönstret och matrisvyn, visar den platsen för nuvarande uppspelning eller inspelning. Den kan förflyttas genom att använda linjalen längst ner. + + Observera att linjalerna bara visas i läget Horisontell utläggning. + + + + + + + + + Verktyg och markeringar + De flesta redigeringsfunktioner i menyer och verktygsrader i &rosegarden;s notbehandlare ingår i en av tre kategorier: verktyg, funktioner som arbetar med markeringar och dragåtgärder. + + + + Verktyg + + De grundläggande verktygen är markeringsverktyget, borttagningsverktyget och de som används för att infoga noter, pauser, text och så vidare, vilka oftast väljes med knappar i verktygsraden. Att välja ett verktyg ändrar det normala beteendet hos musknapparna på huvudnoteringsduken, åtminstone till ett annat verktyg väljes istället. Genom att till exempel välja markeringsverktyget kan du göra markeringar och på så sätt använda de markeringsbaserade funktionerna (nedan). Genom att välja ett infogningsverktyg (som en av noterna) ändras det grafiska gränssnittets beteende så att noter infogas genom att klicka på duken. Genom att välja borttagningsverktyget gör att du kan ta bort händelser genom att klicka på dem. + Du kan också byta aktuellt verktyg med menyn Verktyg. + + + + + Funktioner som arbetar med markeringar + + Flertalet återstående menyalternativen kräver att en markering görs på duken innan de kan användas. Vissa av dem (såsom alternativen Klipp ut eller Notstil) fungerar på alla händelser som markerats. Andra (såsom Prydnadsnot eller Skaftriktning) vägrar fungera om inte markeringen innehåller några noter. + För att markera några händelser på duken, byt till markeringsverktyget (pilen) och rita därefter upp ett rektangulärt område som innehåller händelserna du vill markera. De markerade händelserna färgläggs då med blått. Om du klickar på en enskild händelse, markeras bara den händelsen Du kan också dubbelklicka på en enskild händelse för att visa en redigeringsdialogruta för händelsen, men det har ingenting att göra med markeringar. ). Om du håller nere Skift medan du ritar upp en rektangel, läggs innehållet till i en eventuell befintlig markering istället för att ersätta den. + För att markera en hel takt, dubbelklicka med markeringsverktyget på ett tomt utrymme i takten. För att markera hela notsystemet, klicka tre gånger. Redigeringsmenyn innehåller alternativ för att markera utökade områden baserat på infogningsmarkörens plats, och du kan också markera händelser omkring infogningsmarkören genom att hålla nere Skift och trycka på vänster eller höger piltangent. + Det är inte möjligt att markera händelser i mer än ett notsystem på en gång. + + + + + Dragåtgärder + + Du kan också utföra en viss mängd redigering genom att bara dra omkring saker. Byt till markeringsverktyget (pilen), och därefter kan du ändra tonhöjd på noter genom att bara klicka och dra deras huvuden uppåt eller neråt, och ändra tider för noter och andra händelser genom att dra dem åt vänster eller höger. (Du kan inte dra pauser eller taktarter, men du kan dra allting annat. Om du har markerat mer än en händelse, dras hela markeringen på en gång.) + Att dra är oftast ett mindre noggrant sätt att redigera än att använda funktionerna i menyn eller verktygsraden, men det kan vara enklare. + + + + + + + + + Infoga noter och pauser + + För att infoga en not, välj ett av notverktygen genom att klicka på ett visst notvärde i verktygsraden, och därefter klicka i notsystemet på platsen där du vill lägga till noten. + + Du kan också markera en av de tillfälliga förtecknen på verktygsraden för att infoga upphöjda eller nersänkta noter. Om inget tillfälligt förtecken används, följer den infogade noten de fasta förtecknen. Som ett alternativ kan du välja ikonen "Följ föregående tillfälliga förtecken" (som visas som en not med en pil som pekar tillbaka från stället där förtecknet skulle visas) för att få noten att följa det tillfälliga förtecken som senast användes på samma plats i notsystemet. + + Om du lägger till en not på samma tid som en befintlig not med annat notvärde, antar editorn i allmänhet att du vill skapa ackord och delar upp den befintliga eller nya noten på motsvarande sätt för att skapa ett eller flera bundna ackord. Om du verkligen vill skapa ett ackord med två olika notvärden, kan du markera de bundna nothuvudena och använda funktionen Lägg ihop noter med samma tonhöjd för att lägga ihop dem. Som ett alternativ kan det förvalda beteendet ändras in &rosegarden;s inställningsdialogruta, så att uppdelningen inte alls görs. + + Om du lägger till en not exakt ovanpå en befintlig not med annorlunda notvärde (dvs. på samma tonhöjd), ändras notvärdet på den befintliga noten till det nya notvärdet. + + Om du lägger till en paus på exakt samma tid som en befintlig not, blir den befintliga noten tyst under pausvärdet, vilket förkortar den eller möjligen tar bort den helt och hållet. + + + Skriva in noter och pauser med datorns tangentbord + + + Notvärde + + Försäkra dig först om att ett notverktyg är valt för att ange notvärdet (eller pausvärdet) som du vill infoga. Du kan välja de olika nottyperna genom att använda nummertangenterna: + + + 5 – Brevis + 1 – Helnot + 2 – Halvnot + 4 – Kvartsnot + 8 – Åttondedelsnot + 6 – Sextondedelsnot + 3 – Trettioandredelsnot + 0 – Sextifjärdedelsnot + + + Du kan byta till en triolversion av notvärdet genom att trycka på tangenten G. Genom att trycka på den igen byter du tillbaka till normalt notvärde. Statusraden längst ner i fönstret underrättar dig om att ett triolvärde är aktivt. + + + + Tonhöjd + + Så fort ett notverktyg är valt, kan du infoga en not på infogningsmarkörens aktuella position genom att trycka på en av tonhöjdstangenterna: + + + A – C (Do, tonikan i aktuell tonart för aktuell klav) + S – D (Re) + D – E (Mi) + F – F (Fa) + J – G (So) + K – A (La) + L – H (Ti) + + + Tryck på tangenten "." för att växla mellan notvärden med eller utan punkt. + + Genom att hålla nere Skift när en tangent trycks, fås en upphöjd not (utom för E och H som inte har upphöjda versioner) och genom att hålla nere Skift och Ctrl tillsammans fås en nersänkt not (utom för F och C). + + För att skriva in noter en oktav högre,använd motsvarande tangenter på nästa rad ovanför: Q, W, E, R, U, I och O. På motsvarande sätt, för att lägga till noter en oktav lägre, använd Z, X, C, V, B, N och M. + + + + + Pauser + + För att infoga en paus istället för en not, tryck på P. Som ett alternativ kan du använda tangenterna T och Y för att byta aktuellt verktyg till ett pausverktyg och tillbaka till ett notverktyg igen. + + + + + Ackord + + Normalbeteendet i notbehandlaren är att flytta infogningsmarkören framåt efter en not har infogats, så att den är klar att mata in en ny not på efterföljande plats i en melodi. Det kan ändras med tangenten H, som byter till ackordsläge så att efterföljande inmatning sker samtidigt som den senaste. Att trycka på H igen byter tillbaka till inmatningsbeteende för melodi. + + + + + Ändra notvärden + + Du kan använda tangentbordet för att ändra notvärden som du redan har skrivit in. Försäkra dig om att noterna du vill ändra är markerade, och tryck därefter på Ctrl samt nummertangenten för noten som du vill ha. Du kan också lägga till eller ta bort punkter, genom att trycka Ctrl och ".". Använd det upprepade gånger för att välja mellan en punkt, två punkter eller ingen punkt. + + Om du håller nere Alt samt Ctrl, ändrar du notvärden som de visas i notbehandlaren utan att ändra utfört notvärde. Det kan vara mycket användbart för att städa upp ett partitur: Se också Notskrift från utförandedata. + + + + Övriga anmärkningar + + Alla infogningskommandon är också tillgängliga från en undermeny i menyn Verktyg. Det är inte troligt att du någonsin vill navigera i menyn bara för att infoga en enstaka not, men menyerna visar snabbtangenterna och tillhandahåller på så sätt en användbar referens om du skulle glömma vilken tangent som gör vad. + + Snabbtangenterna är för närvarande gjorda för att användas med tangentbord som har QWERTY-organisation. Det finns ännu inte något sätt att ändra snabbtangenter till en annan organisation, förutom att individuellt ändra tilldelning av varje tangent med alternativet "Anpassa genvägar..." i menyn Inställningar. + + Genom att hålla nere Ctrl vid tryck på en nummertangent väljes motsvarande verktyg med punkt. + + + + + + + Skriva in noter genom att använda ett MIDI-keyboard + + Du kan lägga till noter i notbehandlaren en i taget med ett MIDI-keyboard eller en annan MIDI-styrenhet, en process som är känd som "stegvis inspelning". Notbehandlaren använder tonhöjden du spelar på ett keyboard, men de notvärden du har valt i själva editorn. + + För att börja mata in noter från ett MIDI-keyboard, försäkra dig först om att det är inställt som förvald MIDI-inspelningsenhet. Försäkra dig därefter om att ett notverktyg är valt för att ange ett notvärde. Tryck därefter på knappen för stegvis inspelning i notbehandlarens verktygsrad, eller välj Stegvis inspelning i menyn Verktyg. Från detta ögonblick infogas alla toner som du spelar på ditt MIDI-keyboard vid den nuvarande inmatningstiden i noteringsfönstret, ända till stegvis inspelning stängs av igen, aktiveras i ett annat fönster eller fönstret stängs. + + Du kan välja ett annat notverktyg medan stegvis inspelning pågår för att infoga noter med olika notvärden, och du kan också byta till ackordläge för att infoga ackord. + + + + + + + + Klav och tonart + + + Det första man måste veta om hur &rosegarden; hanterar dessa är att tidsrelaterade ändringar (tempo och taktarter) hanteras helt annorlunda än klaver och tonarter. För att förenkla hantering av uppspelning och inspelning samt notering, kräver &rosegarden; att när tempo eller taktart ändras, görs det i alla notsystem på en gång. Du kan inte låta ett notsystem använda 3/4 medan ett annat samtidigt använder 4/4, eller ha ett notsystem som spelar med 120 taktslag och ett annat med 90. Det gäller bara tid: Det finns inga sådana begränsningar för användning av klav- och tonartsbyten. + + För att ändra klav, tonart, tempobeteckning eller taktart inne i ett fönster i notbehandlaren, placera infogningsmarkören på ett ställe där du vill att ändringen ska ske, och använd en av redigeringsmenyns funktioner Lägg till klavbyte..., Lägg till tonartsbyte..., Byt tempo... eller Byt taktart... . Då visas en dialogruta där du kan välja en viss inställning för klav, tonart, tempobeteckning eller taktart som du vill använda, enligt följande. + + + Klav + + + + + + + + &rosegarden;s klavdialogruta + + + + + + Dialogrutan låter dig välja en klav, och låter dig dessutom välja hur du vill att klaven ska användas, i fall där det redan finns några noter efter punkten där klaven ska infogas. Du måste välja något av följande: + + + Behåll nuvarande tonhöjder + + Alla noter som följer klaven behåller sina nuvarande utförda tonhöjder. + Genom att till exempel infoga en c-klav i mitten av ett avsnitt med en tidigare g-klav gör att noterna som kommer efter klaven att flyttas en oktav högre i notsystemet, eftersom de fortfarande har sina tonhöjder enligt g-klaven. + + + + + Transponera till lämplig oktav + + Alla noter som kommer efter klaven behåller sin tonhöjd inom oktaven, men kan flyttas till en annan oktav för att passa med den nya klaven, och spelas därför med annan tonhöjd. + Genom att till exempel infoga en c-klav i mitten av ett avsnitt med en tidigare g-klav gör att noterna som kommer efter klaven bara att flyttas en linje i notsystemet för att justeras enligt den nya klaven, men spelas en oktav lägre än tidigare. + + + + + + + + + + Tonart + + + + + + + + &rosegarden;s dialogruta för fasta förtecken + + + + + + + + + + + + Text och sångtexter + + Ett notsystem kan innehålla olika sorters text, i texthändelser. Det finns två grundläggande klasser med texthändelser: Enstaka textobjekt som används för punktnoteringar etc., och sångtexter. De förstnämnda kan skapas (och på så sätt kopplas till en viss tid i notsystemet) med textverktyget, som är tillgängligt från knappen markerad med ett stort T i verktygsraden. Sångtext kan också skapas på detta sätt, men skapas enklare med sångtexteditorn. + + För att lägga till ett textstycke, välj textverktyget och klicka på stället där du vill lägga till den. En dialogruta visas, där du kan skriva in texten och välja dess tänkta syfte. (Rosegarden föredrar att lagra vad texten är till för, istället för hur. Det görs så att vi i framtiden kan ställa in hur diverse textsorter presenteras för varje individuell användare). Tillgängliga syften (eller stilar) är: + + + + DynamikAnvänds för mindre lokala föredragsbeteckningar som dynamikbeteckningarna "p", "mf" etc. Visas normalt under notsystemet med liten kursiv stil. + + AnvisningAnvänds för att ange väsentliga ändringar i stil eller stämning. Visas normalt ovanför notsystemet med stort romerskt teckensnitt. + + Lokal anvisningAnvänds för att ange mindre väsentliga ändringar i stil eller stämning. Visas normalt under notsystemet med mindre romerskt teckensnitt i fetstil. + + TempoAnvänds för att ange väsentliga ändringar av tempo. Visas normalt ovanför notsystemet med stort romerskt teckensnitt i fetstil. + + Lokalt tempoAnvänds för att ange mindre viktiga eller lokala ändringar av tempo. Visas normalt ovanför notsystemet med litet romerskt teckensnitt i fetstil. + + SångtextÄven om sångtext oftast skapas i sångtexteditorn, kan de också skrivas in ord för ord om det behövs genom att använda den här stilen. Normalt visas stilen under texten med litet romerskt teckensnitt. (Varning: Om du skriver in sångtext på detta sätt och senare redigerar notsystemets sångtext med sångtexteditorn, kan all sångtext som skrivs in på detta sätt ändras eller flyttas om positionen inte stämmer med den som sångtexteditorn förväntar sig.) + + AnteckningAnvänds för hjälptext som inte strikt anses tillhöra partituret. Visas normalt under notsystemet, i en gul ruta som liknar en klisterlapp. + + + + Du kan också redigera text efter den skapats genom att klicka på den befintliga texten med textverktyget. + + + Redigera sångtexter + + Sångtexteditorn, tillgänglig från alternativet Öppna sångtexteditor i menyn Visa, låter dig redigera alla sångtexthändelser för ett enskilt notsystem på en gång, med ett ganska grundläggande textbaserat redigeringssystem. För att använda den, välj bara menyalternativet, redigera sångtexten i dialogrutan som visas, och klicka därefter på Ok. + + Sångtext som du skriver in måste följa ett visst format. Taktstreck är mycket viktiga för att undvika att editorn blir förvirrad, och representeras med ett snedstreck ("/"). Inom varje takt skiljs enskilda stavelser åt med mellanslag (åtminstone ett mellanslag: editorn bryr sig inte om extra blanktecken). Varje stavelse kopplas i sin tur till nästföljande not eller ackord i takten (även om editorn för närvarande kan bli riktigt förvirrad av ackord som inte är exakta, dvs. som kräver utjämning eller kvantisering). + + Om du vill att en not inte ska ha någon tillhörande stavelse, måste du använda en punkt (".") som stavelse för noten. (Det är därför standardtexten för ett segment oftast är full med punkter.) Kom ihåg att skilja punkterna åt med mellanslag, så att de tydligt är skilda stavelser. + + Om du vill ha mer än en stavelse för samma not, med ett mellanslag mellan dem, använd tilde ("~") istället för mellanslag. Det visas som ett mellanslag i partituret. + + Om du vill dela en stavelse mellan två noter med ett bindestreck, måste du skriva in ett mellanslag efter bindestrecket så att editorn vet att det ska behandlas som två stavelser. (Bindestreck hanteras inte speciellt inne i stavelser.) + + Stavelser som bara består av siffror omgivna av hakparenteser (som "[29]") ignoreras. Det är formatet för automatiskt skapade taktnummer som visas i editorn. + + Du bör också vara medveten om att textformatet för sångtext bara används för redigering: sångtexten lagras i själva verket som distinkta texthändelser (en per stavelse). Det betyder att textformatet potentiellt kan ändras i framtiden för att hantera mer avancerade redigeringsmöjligheter, även om händelseformatet inte bör ändras och sparade filer bör fortsätta att fungera. + + + + + + + + + Legatobågar och klykor + + Dynamikmarkeringarna legatobågar och klykor lagras som händelser, precis som noter eller pauser. För att skapa en, markera området du vill täcka (en följd av noter eller något annat), och använd därefter alternativen Lägg till legatobåge, Lägg till crescendo eller Lägg till diminuendo i menyn Grupp. + + Du kan ta bort en legatobåge eller klyka på samma sätt som alla andra händelser: Markera den antingen med markeringsverktyget och tryck därefter på Delete, eller klicka på den med borttagningsverktyget aktivt. + + + + + + + Notskaft och tvärbalkar + + Du kan ställa in skaftriktningen på alla markerade noter (under förutsättning att de är av en sort som har skaft) med de tre skaftriktningsalternativen i menyn Noter. Alternativen låter dig antingen låsa skaften uppåt eller neråt, eller återgå till skaftriktningen som &rosegarden; annars skulle ha valt. Se också Balkar. + + Menyn Noter innehåller också alternativ för att lägga till tvärbalkar på notskaft, för att till exempel ange korta upprepade noter eller trumvirvlar. De är för närvarande bara notation. &rosegarden; tar inte hänsyn till dem när notsystemet spelas upp eller när &MIDI; skapas. + + + + + + Balkar + + Att lägga till balkar till noter anses som en grupperingsåtgärd i &rosegarden;s notbehandlare, tillgänglig i menyn Grupp. Markera noterna du vill lägga till en balk för, och använd menyalternativet Balkar i menyn Grupp. För att ta bort en balk, markera noterna och använd menyalternativet Ta bort balkar. + + Det är möjligt att ha mer än en balkgrupp som inträffar samtidigt. Du markerar och lägger bara till balkar för enskilda grupper en åt gången. Oftast är Rosegarden inte ännu smart nog för att räkna ut vilka noter som bör ha skaften uppåt och vilka som bör ha skaften neråt för grupper som samtidigt ges balkar, alltså behöver du troligen explicit ange skaftriktningar för noter i grupperna samt ge dem balkar. + + &rosegarden; kan försöka att gissa lämpliga balkar för ett musikstycke, under förutsättning att det inte är alltför komplicerat. För att göra det, markera noterna du vill beräkna balkar för (till exempel genom att trippelklicka för att markera ett helt notsystem) och därefter använda alternativet Automatiska balkar i menyn Grupp. Balkar skapas också automatiskt till exempel när en &MIDI;-fil laddas, och editorn skapar också vissa balkar automatiskt när du skriver in noter (det kan stängas av genom att ändra inställningen "Lägg automatiskt till balkar om lämpligt" i inställningsdialogrutan eller infogningsverktygets meny som visas med höger musknapp). + + + + + + + Trioler och andra annandelningar + + En triolgrupp består av tre toner eller ackord som spelas under samma tid som två. (Mer exakt består den av toner med ett totalt notvärde av tre godtyckliga enheter, som spelas under samma tid som två av enheterna.) + + Vi använder ordet annandelning för att beskriva det allmänna fallet då toner med ett totalt notvärde av ett givet antal enheter, spelas under en tid som anges av ett annat antal av enheterna: Nio toner under tiden för åtta, eller sex under tiden för fyra, eller en fjärdedelsnot och en åttondedelsnot under tiden för en enda fjärdedelsnot, eller till och med två toner under tiden för tre. (För närvarande stöder inte &rosegarden; det sista exemplet. Annandelningar måste alltid spelas med ett kortare notvärde än det skrivna.) + + Menyfunktionerna för trioler och annandelningar fungerar genom att ta en befintlig följd av noter eller pauser och trycka ihop dem så att de spelas upp snabbare, och fylla i överblivet utrymme efter följden med en slutgiltig paus och rita upp det hela som en annandelning. Därför kan du skapa en ny följd av trioler genom att mata in de första två noterna i följden (med normal form), göra dem till trioler, och därefter fylla i utrymmet som blivit kvar efter triolåtgärden med den sista noten i triolen. Eller kan du utföra triolåtgärden innan du matar in några noter, och på så sätt omvandla den ursprungliga pausen till triolform, och därefter infoga triolens noter ovanpå den. Några exempel kan vara till hjälp: + + + + + + + + + + + + + &rosegarden;s allmänna dialogruta för annandelningar + + + + + + För att ange en allmän annandelning, måste man känna till vad grundnoten är (om man till exempel spelar tre fjärdedelsnoter under tiden för två är grundnoten en fjärdedelsnot) och förhållandet mellan antalet grundnoter som skrivs till antalet som spelas. + + + + + + + + + + + Inklistringstyper + + Betydelsen av klipp ut och klistra in är inte så uppenbar för musikredigeringsprogram som den är för något som en ordbehandlare, där bokstäverna och orden anges i en enkel linjär ordning. I enlighet med det erbjuder &rosegarden;s notbehandlare flera olika typer av inklistringsåtgärder, samt separata funktioner för Klipp ut eller Klipp ut och stäng. + + + + + + + + + &rosegarden;s inklistringstypdialogruta + + + Typerna av inklistringsåtgärder är: + + + + + Begränsat + + Kräver ett befintligt gap (som inte innehåller något annat än pauser) med tillräckligt notvärde för att helt omfatta klippbordets innehåll. Innehållet klistras in i gapet. Om det inte finns ett gap som är långt nog, utförs inte inklistringen. + Det här är förvald inklistringstyp. + + + + + Enkel + + Raderar tillräckligt med händelser för att skapa ett gap som är långt nog att klistra in i, och klistrar därefter in i det. De inklistrade händelserna ersätter därför fullständigt alla eventuella befintliga i tiden som täcks av inklistringen. + + + + + Öppna och klistra in + + Motsatsen till Klipp ut och stäng. Gör rum för det som ska klistras in genom att flytta alla efterföljande händelser längre mot kompositionens slut. + + + + + Överlagring av noter + + Utför en inklistring på samma sätt som skulle ske om du skrev in var och en av noterna på klippbordet själv med notbehandlaren: Om det finns andra noter som överlappar med dem, delas nya och befintliga noter i lämpliga bindebågar. + + + + + Matrisöverlagring + + Utför en inklistring på samma sätt som skulle ske om du skrev in var och en av noterna på klippbordet själv med matriseditorn: Noterna som för närvarande är ivägen för inklistringen ignoreras, och de nya noterna får överlappa godtyckligt med dem. + + + + + + Alla dessa får effekt på infogningsmarkörens aktuella position i aktuellt notsystem. För att välja mellan de olika typerna av inklistring, använd menyalternativet Klistra in... (med punkter) i menyn Redigera. + + + + + Justera notering + + + + Justera not- och pausvärden + + + Normalisera pauser + + Ibland kan ett notavsnitt råka ut för felaktiga pausvärden för aktuell taktart, som ett resultat av redigering eller kvantiseringsåtgärder. Du kan använda funktionen Normalisera pauser för att fixa dem. Funktionen undersöker varje sekvens av pauser i en följd som hittas i markeringen och justerar, delar och lägger ihop pauser enligt vad som är nödvändigt för att försäkra att pauserna har rätt teoretiskt pausvärde och hamnar på rätt gränser. + + Om en 4/4-takt innehåller en fjärdedelsnot, arrangeras en halvnotspaus och en fjärdedelspaus om så att fjärdedelspausen placeras först, eftersom halvnotspausen inte ska överlappa den centrala taktgränsen i takten. + + + + + + + Tolka utförandeantydningar i notskrift + + Du kan använda tolkningsfunktionen för att ändra ljudstyrkor och tider för toner enligt eventuell skriven eller angiven dynamik som hittas. Tillgängliga val av tolkningar är följande: + + Tillämpa dynamikbeteckningar (p, mf, ff, etc.) + Anger en ljudstyrka för varje not baserat på senaste texten av typen "Dynamik" som observerats i samma notsystem (bara text på formen pp, p, mp, mf, f, ff, fff etc känns igen). + + + + Använd dynamikklykor + Gör att noterna gradvis ökar eller minskar ljudstyrka under en klyka som anger crescendo eller diminuendo. + + + + Betona taktslag + Gör noter som hamnar på takt- eller taktslagsgränser något starkare (större ljudstyrka) än omgivande noter. + + + + Artikulationsbeteckningar + Avkortar noter utan legatobågar, avkortar staccato-noter ännu mer, och ger noter inne i legatobågar och tenuto-noter sina fulla notvärden. + + + + + + + + + + + Notskrift från utförandedata + + &rosegarden; är ett program med flera användningsområden: Det är en notbehandlare, men det är i huvudsak en musikbehandlare och editor för utförd musik, och i utföranden är tonernas tider och notvärden naturligtvis sällan så precisa som de är i ett tryckt partitur. + + Det betyder att det ofta är önskvärt för &rosegarden; att göra en hel del uppstädning av grundläggande nottider och notvärden vid försök att skapa meningsfulla noter att visa i notbehandlaren. Det är en sorts kvantisering, men en sort som kräver en förvånansvärd mängd gissningar för att göras bra. Det ingår en kvantisering i &rosegarden; som är konstruerad för att göra ett något bättre jobb än den enkla rutnätskvantiseringen. + + Att använda kvantisering enbart för notskrift kallas ganska fantasilöst för kvantisering: Den gäller bara noterna du ser och redigerar i notskrift, och påverkar inte tonerna som spelas, eller det du redigerar i andra vyer som matrisvyn. Kvantiseringen utförs automatiskt för musik som importeras eller spelas in från MIDI, även om inte alla dess möjliga funktioner normalt är aktiverade. + + Det finns två sätt att se vilka noter som har kvantiserats för notskrift. Normalt innehåller varje notvy en linjal för obehandlade noter (i gruppen med linjaler ovanför partituret) som visar ett rektangulärt block för varje not. Blocket är placerat så att det representerar tiden och notvärdet för noten som utfördes, men med rektangelns övre och nedre kant utökade eller avkortade för att representera tiden efter kvantisering. Om det är för mycket information för dig, kan du som ett alternativ välja (i inställningsdialogrutan) att visa alla nothuvuden i partituret som har ändrade tider efter kvantisering med grön färg. + + + + + + + + + + &rosegarden;s kvantiseringsdialogruta + + + + Om kvantiseringen &rosegarden; har använt inte är lämplig, antingen för hela partituret eller för ett antal markerade noter, kan du välja att använda en annan kvantiseringsnivå eller ingen alls. För att använda en annan kvantisering för vissa noter, markera noterna och använd menyfunktionen Kvantisera... (markera rutan som heter Kvantisera bara för notskrift). Kvantiseringsnivån som normalt används kan ändras i inställningsdialogrutan. + + + Inställningsbara parametrar för den heuristiska kvantiseringen + + + Parametrar för själva kvantiseringen + + + + + Komplexitet + + Kvantiseringens "komplexitet" är dess mest grundläggande parameter. En "komplex" kvantisering är mer redo att acceptera att musik som ser komplex ut i själva verket är avsedd att vara komplex, medan en "enkel" kvantisering är mer redo att anta att musik som ser komplex ut orsakas av ett mindre precist utförande av enkel musik. + Standardinställningarna är avsedda att skapa rimliga resultat för ett ganska brett musikspektrum. + + + + + Grundenhet för rutnät + + Den grundläggande rutnätsenheten (inställd till ett notvärde) anger den absolut minsta notenheten som tillåts bli kvar i partituret efter kvantisering. Om den till exempel är inställd till en sextondedelsnot, placeras alla noter på gränser som är en multipel av sextondedelsnoter, och notvärdena är också multiplar av sextondedelsnoter. + Basrutnätsenhetens Inställning är inte riktigt så viktig för kvantisering som den är för den vanliga rutnätskvantiseringen, eftersom allt den gör är att lägga en absolut gräns på precisionsnivån som tillåts av komplexitetsparametern. Oftast när du hittar ett fall där bättre resultat uppnås genom att öka rutnätsenheten, har du i själva verket hittat ett fall där kvantiseringen helt enkelt inte gjorde ett så bra jobb som den skulle ha kunnat göra med den mindre enheten. + + + + + Annandelningsnivå + + Kvantiseringen klarar av att identifiera annandelningar (trioler och andra tidskomprimerade grupper), inom rimliga gränser. Parametern styr hur ambitiös den försöker vara när den letar efter annandelningar, genom att ange en gräns för hur många noter per annandelning som den försöker identifiera. Om den är inställd till Inget, försöker inte kvantiseringen identifiera annandelningar överhuvudtaget. + + + + + + + + + Parametrar som styr uppstädning efter kvantisering + + + + + Lägg till balkar igen + + Gör att noterna placeras in i balkar med grupper som är passande efter kvantiseringen. Det är ofta önskvärt. + + + + + Lägg till artikulationsbeteckningar + + Gör att kvantiseringen försöker identifiera vilka noter som ska markeras som staccato, baserat på notvärdet hos individuella noter och noter i följd (för noter som slutar väsentligt tidigare än den efterföljande noten, men uppenbarligen inte tidigt nog för att vara värda en paus), tenuto (för noter som nästan eller precis överlappar följande not) och legatobågar (för följder av noter som möts eller överlappar). + + + + + Bind noter vid taktstreck etc. + + Gör att alla noter som fortfarande finns kvar efter kvantisering och överlappar taktstreck eller som har notvärden som inte kan uttryckas exakt med enstaka nothuvuden att delas upp i flera noter på lämpligt sätt, och bindas. Det får samma effekt som att utföra funktionen "Bind noter vid taktstreck" i notvyn. + Den här parametern är normalt inte aktiverad, delvis på grund av att den ändrar antalet tonhändelser, vilket är olämpligt när &rosegarden; delvis eller huvudsakligen används som en MIDI-musikbehandlare. + + + + + Dela och bind ackordnoter med för stora notvärden + + Gör att överlappande noter delas och binds, så att strikta ackord med individuella nothuvuden bundna efter behov skapas. Det får samma effekt som att utföra funktionen "Dela och bind ackordnoter med för stora notvärden" i notvyn. + Den här parametern är normalt inte aktiverad, delvis på grund av att den ändrar antalet tonhändelser, vilket är olämpligt när &rosegarden; delvis eller huvudsakligen används som en MIDI-musikbehandlare. + + + + + + + + + + Notstilar + + &rosegarden; låter dig också ändra diverse aspekter av sättet som olika nottyper ritas upp, som val av nothuvuden, antal flaggor, om noter är ifyllda eller inte och så vidare. + + En uppsättning standardstilar (Klassisk, Kors, Triangel och Mensural) tillhandahålls, och du kan ändra stilen som används för enskilda noter genom att markera dem och därefter använda alternativen i menyn Notstil. Varje not kommer ihåg vilken stil som har valts för den, och informationen sparas som en del av kompositionen. Du kan också ändra förvald stil för nya noter genom att använda alternativet Anpassa Rosegarden... i menyn Inställningar. + + Det är också möjligt att skapa dina egna notstilar genom att beskriva dem med XML-filer. (Till och med standardstilarna är definierade på detta sätt: Den enda orsaken att editorn vet om att en klassisk sextondedelsnot har ett ovalt lutande ifyllt huvud, ett skaft, två flaggor etc., är att beskrivningen i Classical.xml anger det.) Se Anpassa Rosegarden för mer information. + + + + Notteckensnitt + &rosegarden; levereras med ett enda skalbart notteckensnitt, Feta-teckensnittet utvecklat i Lilypond-projektet. Feta är ett teckensnitt med mycket hög kvalitet som bör vara lämpligt för nästan allt klassiskt arbete. + + &rosegarden; innehåller också stöd som standard för ett antal andra notteckensnitt. Du måste själv tillhandahålla teckensnitten på formaten Truetype (.ttf) eller Postscript Typ-1 (.pfb, .pfa), och du måste ha lämpliga rättigheter för att installera dem på samma plats som &rosegarden; installerades. För att installera ett notteckensnitt som stöds, lokalisera katalogen share för &rosegarden;s installation (oftast en underkatalog till KDE-skrivbordets installationsträd, som /opt/kde/share/apps/rosegarden). Du märker att katalogen har en underkatalog som heter "fonts". Kopiera teckensnittsfilerna till den, och starta om &rosegarden;. Om teckensnittet stöds, ska det nu synas i teckensnittsmenyn i notbehandlaren. + + Fullständigt eller delvis stöd tillhandahålls för närvarande för följande teckensnitt: Fughetta, av Blake Hodgetts; Petrucci, det "ursprungliga" Finale-teckensnittet; Maestro, det "nya" Finale-teckensnittet; Opus, Sibelius teckensnitt; Inkpen, Sibelius jazz-teckensnitt; Sonata från Adobe; Steinberg, från Cubase-musikbehandlaren; och Xinfonia. (De flesta av ovanstående teckensnittsnamn är registrerade varumärken av respektive företag.) ROSEGARDEN-GRUPPEN GER INGA UTFÄSTELSER ANGÅENDE JURIDISK STATUS FÖR ANVÄNDNING AV NÅGOT AV DESSA TECKENSNITT MED ROSEGARDEN. Det är ditt ansvar att försäkra dig om att du följer den licens (om det finns någon) som du erhöll teckensnittet med, innan du försöker använda det. Om du inte är säker på att du har rättighet att använda ett teckensnitt, gör då inte det. Förutom alla andra aspekter, så är det vanliga Feta-teckensnittet ändå bättre än de flesta av dem. + + Det är också möjligt att tillhandahålla nya avbildningsfiler för att använda nya teckensnitt. För vissa teckensnitt som har liknande avbildningar eller mått som teckensnitt i listan ovan, kan det vara så enkelt som att redigera teckensnittets namn i avbildningsfilen. Se Anpassa Rosegarden för mer information. + + + + + + + Händelselisteditorn + + Inledning + + &rosegarden;s editor för händelselistan visar händelserna i ett enstaka segment i obehandlad form, och gör det möjligt att redigera de exakta egenskaperna för händelserna individuellt. + + + + + &rosegarden;s händelselisteditor + + + + + + + + + + + + + + + + + + Anpassa Rosegarden + + + Anpassa egna notteckensnitt + + Om du har ett notteckensnitt installerat på systemet med ett skalbart format (Truetype eller Typ-1) men den för närvarande inte stöds av Rosegarden, kan du skapa din egen XML-avbildningsfil för att beskriva teckensnittets teckenavbildning och mått på ett sätt som Rosegarden kan använda. Filerna installeras i underkatalogen fonts/mappings i Rosegardens installationskatalog, och ett antal exempel ingår i distributionen. + + Du kan också använda avbildningsfilerna för att definiera nya teckensnitt baserade på punktavbildning, där varje form av en viss storlek laddas från en separat punktavbildningsfil. De två standardteckensnitten för notskrift som levereras med Rosegarden-4 är punktavbildade teckensnitt som definierats exakt på detta sätt. + + Det är till och med möjligt att definiera ett notteckensnitt att använda en eller flera skalbara systemteckensnitt, förbättrade med punktavbildningar för vissa storlekar eller för tecken som inte finns i de skalbara teckensnitten. Det går eftersom det mesta av avbildningsfilernas format är samma för skalbara och punktavbildade teckensnitt, och när det finns olika element för olika sorters teckensnitt är det oftast möjligt att inkludera båda. Rosegarden använder oftast punktavbildningar om de är tillgängliga, och annars skalbara teckensnitt. + + Du kanske också vill redigera avbildningsfilerna som levereras med Rosegarden om du tycker att deras mått för justering eller storlek inte passar dig. (Om du tycker att någon av filerna som levereras är felaktig på något sätt, tala gärna om det för oss.) + + + Koder och glyfer + + + + + + XML-format för avbildning av notteckensnitt + + Här är en översikt över XML-elementen som kan användas i en teckensnittsavbildningsfil. + + + rosegarden-font-encoding + + Elementet måste finnas i varje avbildningsfil, och ska innehålla alla övriga element. Det enda attributet är "name" som innehåller teckensnittets namn som visas i kombinationsrutan för teckensnittsval. Även om filformatet tillåter att vilket namn som helst används här, hittar Rosegarden bara teckensnittet på ett riktigt sätt om XML-filen har samma namn som det här attributets innehåll (utom att XML-filen ska namnges med små bokstäver och ska sluta med ".xml"). + + + + font-information + + Det här ska normalt vara första delelement i "rosegarden-font-encoding". Det kan ha vilket som helst av följande attribut, som alla är valfria: + + origin + + En textbeskrivning av det avbildade teckensnittets troliga ursprung (inte ursprunget för avbildningsfilen). + + + + + copyright + + En textbaserad beskrivning av trolig copyright-status för det avbildade teckensnittet (inte copyright-status för avbildningsfilen). Observera att eftersom avbildningsfilen innehåller information som ursprung och copyright för själva teckensnittet, är det oftast lämpligt att göra separata avbildningsfiler för separata teckensnitt när det är praktiskt, även om teckensnitten delar annan avbildningsdata. + + + + + mapped-by + + Namnet på skaparen av avbildningsfilen (dvs. antagligen du själv). + + + + + type + + Teckensnittets typ. Attributet ska innehålla ett av värdena "pixmap" eller "scalable". Teckensnitt som laddas i fönsterhanteringssystemet och är tillgängliga för Rosegarden som vanliga systemteckensnitt har typen "scalable". Teckensnitt som måste laddas från punktavbildningsfiler som motsvarar individuella storlekar på punktavbildningar (som teckensnitten feta och rg21 som ingår i Rosegarden) har typen "pixmap". + + Den här informationen är bara avsett som referens för användaren. Den används i själva verket inte av Rosegarden. I praktiken är det legitimt att ett teckensnitt är en blandning av de två, men i allmänhet antar vi i den här dokumentationen att teckensnittet antingen är skalbart eller punktavbildat. + + + + + smooth + + Ett Booleanskt attribut som anger om teckensnittet är kantutjämnat eller inte. Ska ha värdet "true" eller "false". Om teckensnittet är utjämnat, kommer andra element som balkar och legatobågar som inte skapas från teckensnittet att vara kantutjämnade. + + + + + autocrop + + Bara relevant för skalbara (system) teckensnitt. Rosegarden förväntar sig oftast att ett teckensnitts mått innehåller de vertikala minsta omgivande rutor för element som nothuvuden och accenter, istället för att omfatta tomt utrymme ovanför eller under elementen av justeringssyfte. De flesta teckensnitt gör inte vad Rosegarden förväntar sig. Därför ska du ställa in attributet för automatisk beskärning till "true". Då beskär Rosegarden allt onödigt tomt utrymme längst upp och längst ner i elementen när de ritas upp. + + + + + + + + + + font-requirements + Det här elementet är bara relevant för skalbara teckensnitt. Det används för att ange att teckensnittet bara ska erbjudas om vissa systemteckensnitt är tillgängliga, samt att koppla identifikationsvärden med systemteckensnitten att kunna hänvisa till i elementet font-symbol-map. Den här metoden används för att bestämma vilka notteckensnitt som användaren ska erbjudas, och dessutom låta dig komponera ett notteckensnitt i Rosegarden från mer än ett systemteckensnitt om du önskar. + Elementet "font-requirements" ska innehålla en lista med delelementen "font-requirement". Vart och ett av dessa har två attribut: "font-id" som innehåller en numerisk identifikation av ditt val för referenser på andra ställe in filen, och antingen attributet "name" eller "names". Om "name" tillhandahålls, används det som namnet på ett enstaka systemteckensnitt som ska höra ihop med teckensnittsidentifikationen. Om "names" tillhandahålls behandlas det som en lista av systemteckensnitt åtskilda med kommatecken, där det första som hittas kopplas ihop med teckensnittsidentifikationen. + + + + font-sizes + + Elementet "font-sizes" anger vilka storlekar av notteckensnitt som är tillgängliga, och hur den nominella teckenstorleken förhåller sig till storleken på element som inte ingår i teckensnittet, såsom skaft, notsystemlinjer och balkar. Ett notteckensnitts "storlek" antas vara avståndet i bildpunkter mellan notsystemlinjer, eller exaktare, platsen för ett vanligt nothuvud som fullständigt fyller avståndet mellan linjer: Storleken omfattar därför inte tjockleken hos någon av intilliggande notlinjer. + + Det finns två möjliga delelement till "font-sizes": "font-scale" och "font-size". Deras användning beror på typ av teckensnitt som beskrivs. + + För punktavbildade (inte skalbara) teckensnitt, ska elementet "font-sizes" innehålla en lista med element "font-size", ett för varje storlek av punktavbilder som är tillgängliga. Punktavbilderna själva måste vara installerade i underkatalogen fonts/<font-name>/<font-size> i Rosegardens installationskatalog, där <font-name> är teckensnittets namn (som det anges i elementet "rosegarden-font-encoding" i avbildningsfilens början), eller en version av namnet med små bokstäver, och <font-size> är teckensnittets bildpunktsstorlek. En teckenstorlek görs bara tillgänglig för användaren om den har en post i listan "font-sizes" och punktavbildningskatalogen hittas. + + För skalbara teckensnitt ska elementet "font-sizes" innehålla ett element "font-scale" som definierar förhållandet mellan teckensnitt och element som inte hör till teckensnittet på ett allmänt sätt, och också definierar förhållandet mellan Rosegardens nominella teckenstorlek och motsvarande systemteckensnitts storlek. Om elementet "font-scale" hittas, antar Rosegarden att teckensnittet är tillgängligt i alla storlekar. Du kan dock fortfarande inkludera ett eller flera element "font-size" för att definiera exakta proportioner för en särskild storlek där de allmänna proportionerna inte riktigt fungerar rätt, till exempel på grund av avrundningsfel. + + Attributen till "font-scale" och "font-size" är mycket lika. Den huvudsakliga skillnaden är att alla attribut till "font-scale" är flyttal i förhållande till teckenstorleken, där 1,0 är basstorleken (dvs. avståndet mellan linjer i notsystemet), medan attributen till "font-size" är heltalsvärden av bildpunkter. Tillgängliga attribut är de följande. (De som är markerade som "valfria" har i viss mån rimliga standardvärden, så det är en god idé att inte ange dem först.) + + + + + note-height + + Det här attributet är bara tillgängligt för elementet "font-size", och krävs för elementet. Det definierar teckensnittets grundstorlek som andra attribut i elementet gäller, och en storlek som erbjuds användaren och används vid uppslagning av punktavbildningar för teckensnittet. + + + + + font-height + + Kan antingen användas i "font-size" eller "font-scale". Det är bara tillämpligt för skalbara teckensnitt, men krävs för dem om det används i elementet "font-scale". Det anger storleken på systemteckensnittet som används för att rita en given storlek av notteckensnittet. + + + + + beam-thickness + + Valfritt. Anger tjockleken på en balk. + + + + + staff-line-thickness + + Valfritt. Anger tjockleken på en notsystemslinje. + + + + + stem-thickness + + Valfritt. Anger tjockleken på ett notskaft. + + + + + flag-spacing + + Valfritt. Anger avståndet mellan notflaggor i de fall då flera flaggor ritas genom att upprepa en enstaka flagga flera gånger. + + + + + border-x + + Valfritt. Anger att nothuvudets punktavbildning har ett fast område till vänster och höger som inte ska anses vara en del av nothuvudet. Attributet anger områdets tjocklek. + + + + + border-y + + Valfritt. Anger att nothuvudets punktavbildning har ett fast område ovanför och under som inte ska anses vara en del av nothuvudet. Attributet anger områdets tjocklek. + + + + + + + + font-symbol-map + Det här elementet listar symbolerna som är tillgängliga i notteckensnittet, och vilka punktavbildningsfiler eller vilka kodpunkter i ett systemteckensnitt som de ska ritas upp med. + + Det ska innehålla en lista med "symbol" element. De har flera möjliga attribut, där valet av vilka normalt beror på om teckensnittet är baserat på punktavbildningar eller systemteckensnitt: + + + + name + + Krävs. Det här attributet ska innehålla namnet på notsymbolen. Om symbolen finns i Unicode 3.2 standarden, ska namnet som används för att identifiera symbolen vara det som används i standarden. + + De flesta symboler som Rosegarden förväntar sig att hitta ingår i standarden. Ett undantag är att många teckensnitt har en specialversion av flaggsymbolen som är avsedd att användas när flera flaggor skapas från individuella enstaga flaggor. Rosegarden kallar den för "MUSICAL SYMBOL COMBINING FLAG-0", ett namn som inte används av Unicode-standarden (som bara har flaggorna 1 - 5). + + För den fullständiga uppsättningen symbolnamn som Rosegarden känner till, se filen "gui/notecharname.cpp" i Rosegardens källkodsdistribution. Observera dock att det är möjligt att använda ytterligare symbolnamn genom att lägga till dem i en notationsstil. + + + + + src + + Namnet på punktavbildningsfilen som ska användas för att ladda symbolen, utan katalog eller filändelse. Det är det vanliga sättet att beskriva en symbol i ett punktavbildat teckensnitt. Själva filen ska installeras i fonts/<teckensnittsnamn>/<teckenstorlek>/<källa>.xpm under Rosegardens installationskatalog. + + + + + inversion-src + + Namnet på en punktavbildningsfil som kan användas för att ladda en inverterad version av symbolen, utan katalog eller filändelse. Om attributet saknas och en inverterad version av symbolen behövs, skapas den helt enkelt genom att ladda den normala versionen och spegla den i den centrala x-axeln. + + + + + code + + Kodpunkten där symbolen kan hittas i relevant systemteckensnitt, som ett decimalt heltal. Det är ett sätt att beskriva en symbol i ett skalbart teckensnitt. Attributet används bara om ingen punktavbildningsfil tillhandahålls, eller om laddning av punktavbildningsfilen misslyckas. + + + + + inversion-code + + Kodpunkten där en inverterad version av symbolen kan hittas i relevant systemteckensnitt. Om attributet saknas och en inverterad version av symbolen behövs, skapas den helt enkelt genom att ladda den normala versionen och spegla den i den centrala x-axeln. + + + + + glyph + + Det obehandlade indexet för glyfen där symbolen kan hittas i relevant systemteckensnitt, som ett decimalt heltal. Det är ett sätt att beskriva en symbol i ett skalbart teckensnitt. Attributet används bara om ingen punktavbildningsfil tillhandahålls, eller om laddning av punktavbildningsfilen misslyckas. + + + + + inversion-glyph + + Det obehandlade indexet för glyfen där en inverterad version av symbolen kan hittas i relevant systemteckensnitt. Om attributet saknas och en inverterad version av symbolen behövs, skapas den helt enkelt genom att ladda den normala versionen och spegla den i den centrala x-axeln. + + + + + font-id + + Identifikationen för systemteckensnittet som den här symbolen ska laddas från, som det är definierat i elementet font-requirements. Normalvärdet är 0. + + + + + codebase + + Det här attributet (ett decimalt heltal) kan vara användbart om många av symbolerna i ett skalbart teckensnitt täcker ett kort område med kodpunkter med början på en relativt hög kodsida. Om det anges, läggs värdet codebase till för vart och ett av efterföljande värden på code och inversion-code när en symbol slås upp. + + + + + + Även om inget av attributen krävs, förutom namnet, måste en symbol uppenbarligen tillhandahålla åtminstone en av "src", "inversion-src", "code", "inversion-code", "glyph" eller "inversion-glyph" för att ha någon möjlighet att överhuvudtaget ritas upp. Det är förstås fullständig legitimt att tillhandahålla flera eller alla dessa attribut. + + + + + font-hotspots +   + + + + + + + + Skapa nya notstilar + + Rosegardens notbehandlare har möjlighet att visa och redigera noter med olika standardstilar: klassisk, rombformade huvuden och så vidare. Alla stilar definieras i definitionsfiler på XML-form som installeras tillsammans med programmet, och det är möjligt att skapa en ny genom att skriva en enkel XML-fil. Rosegarden tittar helt enkelt på uppsättningen installerade filer för att avgöra vilka stilar som användaren ska erbjudas. Du kan till exempel hänvisa till standarduppsättningen med filer i underkatalogen för stilar i Rosegardens installationskatalog. + + Filformatet är inte ännu särskilt omfattande. För ögonblicket är det konstruerat för att vara kraftfullt nog att beskriva standardstilarna som levereras med Rosegarden, men inte mycket mer. Om du gör ett försök att skapa nya stilar på det här sättet, är vi mycket intresserade av din återmatning via Rosegardens e-postlistor. + + + XML-format för notstil + + Här är en översikt över XML-elementen som kan användas i en stildefinitionsfil. + + + rosegarden-note-style + + Det här elementet måste finnas i alla stilfiler, och ska innehålla alla övriga element. Det har ett valfritt attribut, "base-style", som kan användas för att namnge en stil där den här stilen hämtar standardvärden för alla parametrar som inte anges någon annanstans i den befintliga filen. Det är ofta lämpligt att definiera en stil i form av minsta möjliga skillnader från en given basstil. Se filen Cross.xml som tillhandahålls, för ett särskilt enkelt exempel. + + Observera att elementet "rosegarden-note-style" inte anger namnet på stilen som definieras, som istället tas från filens namn. Någon gång i framtiden kanske stöd för översättning av stilnamn läggs till i det här elementets attribut. + + + + global, note + + I elementet "rosegarden-note-style" kan det finnas ett "global" element och hur många "note" element som helst. De beskrivs tillsammans, eftersom de har nästan identiska uppsättningar attribut. Elementet "global" tillhandahåller helt enkelt standardvärden för de parametrar som inte anges för en viss nottyp i något av följande "note" element. + + Attributen för elementen är följande. Alla är valfria utom enligt beskrivningen: + + + + + type + + Gäller bara elementet "note", och krävs för det elementet. Det här attributet anger vilken sorts not som stilen gäller för. Giltiga värden är tonnamn på amerikansk eller brittisk engelska (från "64th", "sixth-fourth note", "hemidemisemiquaver" etc till "double whole note"). + + + + + shape + + Definierar en form för nothuvudet i den här stilen. Vilken sträng som helst är ett giltigt värde, men de enda värden som hittills är implementerade är "angled oval", "level oval", "breve", "cross", "triangle up", "triangle down", "diamond" och "rectangle". Värdet "number" känns också igen, men är ännu inte implementerat. + + + + + charname + + Definierar ett teckennamn i notteckensnittet som ska användas som nothuvud för stilen. Ett element kan tillhandahålla attributet "shape" eller "charname", men inte båda. Namnet ska vara ett av de som definieras i det nuvarande notskriftteckensnittets symbol map (i ett attribut "name"). + + + + + filled + + Anger om noten ska ha ett ifyllt huvud (när det är tillämpligt, dvs. när formegenskapen anger en form som både är tillgänglig ifylld och inte). Måste vara "true" eller "false". + + + + + stem + + Anger om noten ska ha ett skaft. Måste vara "true" eller "false". + + + + + flags + + Anger hur många flaggor eller balkar som noten ska ha. Giltigt intervall är 0 till 4. + + + + + slashes + + Anger hur många tvärbalkar noten ska ha över skaftet. + + + + + hfixpoint + + Anger på vilken x-position som skaftet ansluts till nothuvudet. Acceptabla värden är "normal" (höger sida när skaftet pekar uppåt, vänster sida när det pekar neråt), "central" och "reversed" (vänster sida när skaftet pekar uppåt, höger sida när det pekar neråt). + + + + + vfixpoint + + Anger på vilken y-position som skaftet ansluts till nothuvudet. Acceptabla värden är "near" (skaftet ansluts till toppen när det pekar uppåt, till botten när det pekar neråt), "middle" eller "far". + + + + + + + + + + + + + + + + + + + + + Tack till och licens + + + Rosegarden + + + + + Rosegarden-4 är Copyright 2000-2004 Guillaume Laurent, Chris Cannam och Richard Bown. Moralisk rättighet att identifieras som upphovsmän till det här verket hävdas av Guillaume Laurent, Chris Cannam och Richard Bown. + + + + Delar av Rosegarden-4 är härledda från Rosegarden 2.1, som är Copyright 1994 – 2001 Chris Cannam, Andrew Green, Richard Bown och Guillaume Laurent. + + + + För visning av musikalisk notskrift använder Rosegarden-4 punktavbildningar härledda från teckensnittet Feta, som är en del av programvaran Lilypond, som är Copyright 1997 – 2001 Jan Nieuwenhuizen och Han-Wen Nienhuys. + + + + Bland andra väsentliga bidragsgivare finns Randall Farmer, Ron Kuris, Hans Kieserman och Michael McIntyre. + + + + Rosegardens startskärm kommer från ett vykort av Thornden-parken vid Syracuse-universitetet i Syracuse, New York, tryckt år 1900. Tack till personalen på Syracuse-universitetet för användning av det. + + + + + + Dokumentation copyright 2002-2004 Chris Cannam, Richard Bown, Guillaume Laurent + + + + Det här programmet distribueras under villkoren i GNU General Public License. + + + + + + Rosegarden-4 utgåvehistorik + + + 0.9.9 – juli 2004: syntinsticksmoduler, utlösande segment, notationsförbättringar + 0.9.8 – maj 2004: bättre ljuddelsystem + 0.9.7 – februari 2004: + 0.9.6 – december 2003: felrättningar + 0.9.5 – november 2003: en hel del saker + 0.9.1 – maj 2003: stegvis inspelning, MUP-export, många många felrättningar + 0.9 – april 2003: många förbättringar av notation, förbättrad bankeditor, ljudförbättringar och förfiningar, översättningar + 0.8.5 – december 2002: bankeditor, MIDI-filter, panikknapp + 0.8 – oktober 2002: utskrift, LADSPA-insticksmoduler, förbättrad matrisvy + 0.2.0 – augusti 2002: WAV-filstöd, markering med svepning, kontrapunkt + 0.1.6 – juni 2002: inställningsdialogruta, Lilypond-stöd, kvantiseringsdialogruta + 0.1.5 – maj 2002: KDE 3, ALSA-stöd, JACK-ljudstöd + 0.1.4 – mars 2002: mer ångra, segmentredigering, ljuduppspelning + 0.1.3 – januari 2002: pianorulle och matrisvy, &MIDI;-inspelning + 0.1.2 – november 2001: ångra notation, transportdialogruta, positionspekare + 0.1.1 – oktober 2001: skalbar notation + 0.1 – juni 2001: första öppna utgåva av Rosegarden-4 + + + + + &documentation.index; +
    diff --git a/docs/sv/rg-audiofilemanager.png b/docs/sv/rg-audiofilemanager.png new file mode 100644 index 0000000..3696a90 Binary files /dev/null and b/docs/sv/rg-audiofilemanager.png differ diff --git a/docs/sv/rg-audiomixer.png b/docs/sv/rg-audiomixer.png new file mode 100644 index 0000000..e4403f7 Binary files /dev/null and b/docs/sv/rg-audiomixer.png differ diff --git a/docs/sv/rg-bankeditor.png b/docs/sv/rg-bankeditor.png new file mode 100644 index 0000000..e650dc4 Binary files /dev/null and b/docs/sv/rg-bankeditor.png differ diff --git a/docs/sv/rg-clefdialog.png b/docs/sv/rg-clefdialog.png new file mode 100644 index 0000000..f9bdcd7 Binary files /dev/null and b/docs/sv/rg-clefdialog.png differ diff --git a/docs/sv/rg-colours.png b/docs/sv/rg-colours.png new file mode 100644 index 0000000..c86592a Binary files /dev/null and b/docs/sv/rg-colours.png differ diff --git a/docs/sv/rg-devicemanager.png b/docs/sv/rg-devicemanager.png new file mode 100644 index 0000000..ad10b19 Binary files /dev/null and b/docs/sv/rg-devicemanager.png differ diff --git a/docs/sv/rg-eventlisteditor.png b/docs/sv/rg-eventlisteditor.png new file mode 100644 index 0000000..7020cbc Binary files /dev/null and b/docs/sv/rg-eventlisteditor.png differ diff --git a/docs/sv/rg-gridquantizer.png b/docs/sv/rg-gridquantizer.png new file mode 100644 index 0000000..361759d Binary files /dev/null and b/docs/sv/rg-gridquantizer.png differ diff --git a/docs/sv/rg-ipb-audio.png b/docs/sv/rg-ipb-audio.png new file mode 100644 index 0000000..a595d31 Binary files /dev/null and b/docs/sv/rg-ipb-audio.png differ diff --git a/docs/sv/rg-ipb-midi.png b/docs/sv/rg-ipb-midi.png new file mode 100644 index 0000000..839e5f8 Binary files /dev/null and b/docs/sv/rg-ipb-midi.png differ diff --git a/docs/sv/rg-ipb-synth.png b/docs/sv/rg-ipb-synth.png new file mode 100644 index 0000000..9af58eb Binary files /dev/null and b/docs/sv/rg-ipb-synth.png differ diff --git a/docs/sv/rg-keysigdialog.png b/docs/sv/rg-keysigdialog.png new file mode 100644 index 0000000..698a583 Binary files /dev/null and b/docs/sv/rg-keysigdialog.png differ diff --git a/docs/sv/rg-mainwindow.png b/docs/sv/rg-mainwindow.png new file mode 100644 index 0000000..317132d Binary files /dev/null and b/docs/sv/rg-mainwindow.png differ diff --git a/docs/sv/rg-matrixview.png b/docs/sv/rg-matrixview.png new file mode 100644 index 0000000..b389776 Binary files /dev/null and b/docs/sv/rg-matrixview.png differ diff --git a/docs/sv/rg-metronome.png b/docs/sv/rg-metronome.png new file mode 100644 index 0000000..4af8961 Binary files /dev/null and b/docs/sv/rg-metronome.png differ diff --git a/docs/sv/rg-midifilter.png b/docs/sv/rg-midifilter.png new file mode 100644 index 0000000..a01c6e7 Binary files /dev/null and b/docs/sv/rg-midifilter.png differ diff --git a/docs/sv/rg-midimixer.png b/docs/sv/rg-midimixer.png new file mode 100644 index 0000000..926ee2c Binary files /dev/null and b/docs/sv/rg-midimixer.png differ diff --git a/docs/sv/rg-notationquantizer.png b/docs/sv/rg-notationquantizer.png new file mode 100644 index 0000000..2914c0b Binary files /dev/null and b/docs/sv/rg-notationquantizer.png differ diff --git a/docs/sv/rg-notationview-multipage.png b/docs/sv/rg-notationview-multipage.png new file mode 100644 index 0000000..a0e94ff Binary files /dev/null and b/docs/sv/rg-notationview-multipage.png differ diff --git a/docs/sv/rg-notationview.png b/docs/sv/rg-notationview.png new file mode 100644 index 0000000..d16acb9 Binary files /dev/null and b/docs/sv/rg-notationview.png differ diff --git a/docs/sv/rg-pastedialog.png b/docs/sv/rg-pastedialog.png new file mode 100644 index 0000000..948710e Binary files /dev/null and b/docs/sv/rg-pastedialog.png differ diff --git a/docs/sv/rg-plugin-dialog.png b/docs/sv/rg-plugin-dialog.png new file mode 100644 index 0000000..d03b369 Binary files /dev/null and b/docs/sv/rg-plugin-dialog.png differ diff --git a/docs/sv/rg-pluginbuttons.png b/docs/sv/rg-pluginbuttons.png new file mode 100644 index 0000000..9ebc12d Binary files /dev/null and b/docs/sv/rg-pluginbuttons.png differ diff --git a/docs/sv/rg-plugineditorbutton.png b/docs/sv/rg-plugineditorbutton.png new file mode 100644 index 0000000..cfa6e4b Binary files /dev/null and b/docs/sv/rg-plugineditorbutton.png differ diff --git a/docs/sv/rg-segmentparameterbox.png b/docs/sv/rg-segmentparameterbox.png new file mode 100644 index 0000000..2b9635a Binary files /dev/null and b/docs/sv/rg-segmentparameterbox.png differ diff --git a/docs/sv/rg-synthpluginbuttons.png b/docs/sv/rg-synthpluginbuttons.png new file mode 100644 index 0000000..42d49b1 Binary files /dev/null and b/docs/sv/rg-synthpluginbuttons.png differ diff --git a/docs/sv/rg-tempodialog.png b/docs/sv/rg-tempodialog.png new file mode 100644 index 0000000..6e7a525 Binary files /dev/null and b/docs/sv/rg-tempodialog.png differ diff --git a/docs/sv/rg-timesigdialog.png b/docs/sv/rg-timesigdialog.png new file mode 100644 index 0000000..3426fa3 Binary files /dev/null and b/docs/sv/rg-timesigdialog.png differ diff --git a/docs/sv/rg-trackbutton-instruments.png b/docs/sv/rg-trackbutton-instruments.png new file mode 100644 index 0000000..07388bc Binary files /dev/null and b/docs/sv/rg-trackbutton-instruments.png differ diff --git a/docs/sv/rg-trackbutton-labels.png b/docs/sv/rg-trackbutton-labels.png new file mode 100644 index 0000000..cda662e Binary files /dev/null and b/docs/sv/rg-trackbutton-labels.png differ diff --git a/docs/sv/rg-trackeditor.png b/docs/sv/rg-trackeditor.png new file mode 100644 index 0000000..96ac7c4 Binary files /dev/null and b/docs/sv/rg-trackeditor.png differ diff --git a/docs/sv/rg-transport.png b/docs/sv/rg-transport.png new file mode 100644 index 0000000..0389da8 Binary files /dev/null and b/docs/sv/rg-transport.png differ diff --git a/docs/sv/rg-tupletdialog.png b/docs/sv/rg-tupletdialog.png new file mode 100644 index 0000000..156c3a0 Binary files /dev/null and b/docs/sv/rg-tupletdialog.png differ diff --git a/docs/sv/rosegarden.po b/docs/sv/rosegarden.po new file mode 100644 index 0000000..3c37a3b --- /dev/null +++ b/docs/sv/rosegarden.po @@ -0,0 +1,7454 @@ +# translation of rosegarden.po to Swedish +# +# Stefan Asserhäll , 2005, 2006. +msgid "" +msgstr "" +"Project-Id-Version: rosegarden\n" +"POT-Creation-Date: 2006-01-06 12:01+0000\n" +"PO-Revision-Date: 2006-01-06 19:07+0100\n" +"Last-Translator: Stefan Asserhäll \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.1\n" + +#. Tag: title +#: index.docbook:204 +#, no-c-format +msgid "The Rosegarden Handbook" +msgstr "Handbok Rosegarden" + +#. Tag: author +#: index.docbook:206 +#, no-c-format +msgid "Chris Cannam" +msgstr "Chris Cannam" + +#. Tag: author +#: index.docbook:210 +#, no-c-format +msgid "Richard Bown" +msgstr "Richard Bown" + +#. Tag: author +#: index.docbook:214 +#, no-c-format +msgid "Guillaume Laurent" +msgstr "Guillaume Laurent" + +#. Tag: trans_comment +#: index.docbook:218 +#, no-c-format +msgid "ROLES_OF_TRANSLATORS" +msgstr "" +" Stefan " +"Asserhäll " +"
    stefan.asserhall@comhem.se
    Översättare
    " + +#. Tag: holder +#: index.docbook:223 +#, no-c-format +msgid "Chris Cannam, Richard Bown, Guillaume Laurent" +msgstr "Chris Cannam, Richard Bown, Guillaume Laurent" + +#. Tag: phrase +#: index.docbook:237 +#, no-c-format +msgid "&rosegarden;" +msgstr "&rosegarden;" + +#. Tag: para +#: index.docbook:239 +#, no-c-format +msgid "" +"Rosegarden is an audio and &MIDI; sequencer and musical notation editor. " +"This Handbook describes how to use it." +msgstr "" +"Rosegarden är ett program för ljud- och &MIDI;-inspelning och en editor " +"för musikalisk notskrift. Den här handboken beskriver hur det används." + +#. Tag: keyword +#: index.docbook:249 +#, no-c-format +msgid "Rosegarden" +msgstr "Rosegarden" + +#. Tag: keyword +#: index.docbook:250 +#, no-c-format +msgid "sequencer" +msgstr "musikbehandlare" + +#. Tag: keyword +#: index.docbook:251 +#, no-c-format +msgid "MIDI" +msgstr "MIDI" + +#. Tag: keyword +#: index.docbook:252 +#, no-c-format +msgid "audio" +msgstr "ljud" + +#. Tag: keyword +#: index.docbook:253 +#, no-c-format +msgid "music" +msgstr "musik" + +#. Tag: keyword +#: index.docbook:254 +#, no-c-format +msgid "notation" +msgstr "beteckning" + +#. Tag: keyword +#: index.docbook:255 +#, no-c-format +msgid "score" +msgstr "partitur" + +#. Tag: keyword +#: index.docbook:256 +#, no-c-format +msgid "KDE" +msgstr "KDE" + +#. Tag: title +#: index.docbook:272 index.docbook:2458 index.docbook:3918 +#, no-c-format +msgid "Introduction" +msgstr "Inledning" + +#. Tag: title +#: index.docbook:275 +#, no-c-format +msgid "About Rosegarden" +msgstr "Om Rosegarden" + +#. Tag: para +#: index.docbook:276 +#, no-c-format +msgid "" +"Rosegarden is a &MIDI; and audio sequencer and " +"musical notation editor. Rosegarden allows you to record, arrange, and " +"compose music, in the shape of traditional score or &MIDI; data, or of audio " +"files either imported or recorded from a microphone, guitar or whatever " +"audio source you care to specify. You can use Rosegarden to write, edit, and " +"organise music to create a composition, which you can then synthesise, add " +"effects to, and mix down for burning to CD or distribution on the web. " +"Rosegarden also contains professional notation editing support for high " +"quality printed output." +msgstr "" +"Rosegarden är ett program för ljud- och " +"&MIDI;-inspelning och en editor för musikalisk notskrift. Rosegarden låter " +"dig spela in, arrangera och komponera musik, i form av ett traditionellt " +"partitur eller &MIDI;-data, eller ljudfiler som antingen importeras eller " +"spelas in via en mikrofon, gitarr eller vilken ljudkälla du önskar. Du kan " +"använda Rosegarden för att skriva, redigera och organisera musik för att " +"skapa en komposition, som du därefter kan syntetisera, lägga till effekter " +"i och mixa för att bränna till en cd eller distribuera på webben. Rosegarden " +"innehåller också professionellt stöd för notredigering för utskrift med hög " +"kvalitet." + +#. Tag: para +#: index.docbook:289 +#, no-c-format +msgid "" +"Rosegarden is designed to look and act in a " +"manner familiar to experienced users coming to Linux from other platforms, " +"whilst also being accessible and friendly to users new to music software " +"generally." +msgstr "" +"Rosegarden är konstruerat för att se ut som och " +"fungera på ett sätt som är bekant för erfarna användare som kommer till " +"Linux från andra plattformar, medan det också är tillgängligt och " +"användarvänligt för de som är nykomlingar till musikprogramvara i " +"allmänhet." + +#. Tag: title +#: index.docbook:297 +#, no-c-format +msgid "About this Handbook" +msgstr "Om den här handboken" + +#. Tag: para +#: index.docbook:298 +#, no-c-format +msgid "" +"This handbook summarises the capabilities of &rosegarden; and provides a " +"reference for some of the concepts involved. It's designed to make sense " +"either read in order or used as a reference to the concepts and functions " +"available in Rosegarden. If you would like to read a tutorial as well, " +"you " +"can find one here." +msgstr "" +"Den här handboken ger en översikt av &rosegarden;s möjligheter, och " +"tillhandahåller en referens för en del av de begrepp som ingår. Den är " +"skapad för att antingen vara meningsfull när den läses i en följd, eller " +"när den används som en referens till begrepp och tillgängliga funktioner " +"i Rosegarden. Om du dessutom vill läsa en handledning, hitt" +"ar du en här." + +#. Tag: para +#: index.docbook:307 +#, no-c-format +msgid "" +"If there's something else that you don't understand or require further help " +"with, please visit the Rosegarden " +"website for Frequently Asked Questions and mailing list instructions." +msgstr "" +"Om det finns något annat du inte förstår eller något du behöver " +"ytterligare hjälp med, besök gärna Rosegardens " +"webbplats för vanliga frågor och instruktioner om användning av " +"e-postlistan." + +#. Tag: title +#: index.docbook:316 +#, no-c-format +msgid "About Menus and Shortcuts" +msgstr "Om menyer och snabbtangenter" + +#. Tag: para +#: index.docbook:316 +#, no-c-format +msgid "" +"This handbook usually refers to the functions you can use in Rosegarden by " +"describing where they live on the menus. For example, the function to add a " +"single new track to the main track editor is Tracks Add Track " +"." +msgstr "" +"Handboken hänvisar oftast till funktionerna du kan använda i Rosegarden " +"genom att beskriva var de befinner sig i menyerna. Funktionen för att " +"lägga till ett enstaka nytt spår i huvudspåreditorn är exempelvis " +"Spår Lägg till " +"spår." + +#. Tag: para +#: index.docbook:325 +#, no-c-format +msgid "" +"In many cases, this is not the only way to reach a particular function. In " +"this case the same function is also available through the keyboard shortcut " +"Ctrl+T, and it also appears as an icon on one of the main window's toolbars. " +"Both the keyboard shortcut and the icon can quickly be learned, because they " +"are shown on the menu in Rosegarden alongside the name of the function. You " +"should bear in mind that although we always give the full menu location in " +"this documentation for reference purposes, it's not necessarily the best or " +"most usual way to use a function, and you should keep an eye on the keyboard " +"shortcuts or toolbar icons as well." +msgstr "" +"I många fall är det inte det enda sättet att nå en viss funktion. I det " +"här fallet är samma funktion också tillgänglig via snabbtangenten " +"Ctrl+T, och den visas också som en ikon i en av huvudfönstrets " +"verktygsrader. Både snabbtangenten och ikonen kan snabbt läras in, " +"eftersom de visas i Rosegardens meny tillsammans med funktionens namn. Du " +"bör komma ihåg att även om vi alltid anger det fullständiga " +"menyalternativet i dokumentationen av referensskäl, är det inte " +"nödvändigtvis det bästa eller det vanligaste sättet att använda en " +"funktion, och du bör dessutom hålla ett öga på snabbtangenter och ikoner " +"i verktygsraderna." + +#. Tag: title +#: index.docbook:340 +#, no-c-format +msgid "Optional Features" +msgstr "Valfria funktioner" + +#. Tag: para +#: index.docbook:340 +#, no-c-format +msgid "" +"This Handbook assumes that your Rosegarden installation supports all the " +"features of which it is capable. Some of Rosegarden's features, including " +"some very major ones, are actually optional when building a Rosegarden " +"installation, depending on which other libraries and supporting code is " +"available. For example, the whole audio subsystem is only compiled in if " +"JACK libraries are available; synth plugin support depends on a number of " +"other modules; etc." +msgstr "" +"Handboken antar att installationen av Rosegarden stöder alla funktionerna " +"som det har möjlighet till. Vissa av Rosegardens funktioner, inklusive " +"några av de större, är i själva verket valfria när en installation av " +"Rosegarden byggs. Hela ljuddelsystemet kompileras till exempel bara om " +"JACK-biblioteken är tillgängliga, stöd för syntinsticksmoduler beror på " +"ett antal andra moduler, etc." + +#. Tag: para +#: index.docbook:348 +#, no-c-format +msgid "" +"These dependencies are documented in the Rosegarden README and configuration " +"documentation. If you find that this Handbook refers to features not visible " +"in the version of Rosegarden you're using, consult your configuration " +"documentation or distributor." +msgstr "" +"Dessa beroenden är dokumenterade i filen README och Rosegardens " +"konfigureringsdokumentation. Om du märker att handboken hänvisar till " +"funktioner som inte finns i den version av Rosegarden som du använder, " +"rådfråga konfigureringsdokumentationen eller distributören." + +#. Tag: title +#: index.docbook:370 +#, no-c-format +msgid "Rosegarden Files and Documents" +msgstr "Rosegarden-filer och -dokument" + +#. Tag: para +#: index.docbook:371 +#, no-c-format +msgid "" +"&rosegarden; stores each composition in its own document, using its own " +"internal format. When you save a document it is stored on disc as a file " +"with the .rg extension. &rosegarden; can also handle a number of other " +"standard file formats." +msgstr "" +"&rosegarden; lagrar varje komposition i ett eget dokument, med sitt eget " +"interna format. När du sparar ett dokument lagras det på disk som en fil " +"med filändelsen .rg. &rosegarden; kan också hantera ett antal andra " +"standardfilformat." + +#. Tag: title +#: index.docbook:379 +#, no-c-format +msgid "New compositions" +msgstr "Nya kompositioner" + +#. Tag: para +#: index.docbook:380 +#, no-c-format +msgid "" +"When &rosegarden; starts up, it does so with a new document, containing an " +"\"empty\" composition ready to start editing. To put something in that " +"composition, you must either record something, or create some blank lengths " +"of music (referred to as \"segments\") that you can then fill in using the " +"various editing facilities." +msgstr "" +"När &rosegarden; startar, görs det med ett nytt dokument som innehåller " +"en \"tom\" komposition som är klar att börja redigera. För att lägga " +"till något i kompositionen måste du antingen spela in något eller skapa " +"några tomma musikavsnitt (som kallas \"segment\"), som du sedan kan fylla i " +"med de olika redigeringsfunktionerna." + +#. Tag: para +#: index.docbook:388 +#, no-c-format +msgid "" +"See Recording for details of how to " +"record music, and see the Track Editor " +"section for a description of how to create, edit, and manage segments of " +"music." +msgstr "" +"Se Inspelning för detaljinformation om " +"hur musik spelas in, och se avsnittet om spåreditorn för en beskrivning av hur " +"musiksegment skapas, redigeras och hanteras." + +#. Tag: title +#: index.docbook:396 +#, no-c-format +msgid "Using MIDI files" +msgstr "Använda MIDI-filer" + +#. Tag: para +#: index.docbook:397 +#, no-c-format +msgid "" +"To import and export MIDI files, use the File Import " +"Import MIDI File and " +"File Export " +"Export MIDI File functions." +msgstr "" +"För att importera och exportera MIDI-filer, använd alternativen " +"Arkiv " +"Importera Importera " +"MIDI-fil och Arkiv Exportera " +"Exportera MIDI-fil." + +#. Tag: para +#: index.docbook:412 +#, no-c-format +msgid "" +"Although &rosegarden; can load and save file formats such as MIDI, it does " +"not store MIDI data internally. You should generally prefer to save files in " +"&rosegarden;'s own format, as &rosegarden; stores quite a lot of information " +"that will be lost when exporting to MIDI." +msgstr "" +"Även om &rosegarden; kan ladda och spara filformat som MIDI, lagras inte " +"MIDI-data internt. Du bör i allmänhet föredra att spara filer med " +"&rosegarden;s eget format, eftersom &rosegarden; lagrar en hel del " +"information som går förlorad vid export till MIDI." + +#. Tag: para +#: index.docbook:419 +#, no-c-format +msgid "" +"When a MIDI file is loaded, &rosegarden; splits out the music into one track " +"per MIDI track or channel in the file, sets up the appropriate instrument " +"mappings, and attempts to calculate " +"plausible notation for the MIDI performance data." +msgstr "" +"När en MIDI-fil laddas, delar &rosegarden; upp musiken i ett spår per " +"MIDI-spår eller kanal i filen, ställer in lämpliga " +"instrumentavbildningar och försöker beräkna en trolig notering " +"för utförd MIDI-data." + +#. Tag: title +#: index.docbook:430 +#, no-c-format +msgid "Merging files" +msgstr "Sammanfoga filer" + +#. Tag: para +#: index.docbook:430 +#, no-c-format +msgid "" +"As well as loading or importing files, you can also merge them into the " +"current document, adding the segments found in the file to the ones already " +"there." +msgstr "" +"Förutom att ladda eller importera filer, kan du också sammanfoga dem med " +"det nuvarande dokumentet, och lägga till segmenten som hittas i filen till " +"de som redan finns." + +#. Tag: para +#: index.docbook:436 +#, no-c-format +msgid "" +"To merge a file, just use the relevant option on the File Merge " +"submenu, instead of using the Open or Import option." +msgstr "" +"För att sammanfoga en fil, använd bara passande alternativ i undermenyn " +"Arkiv " +"Sammanfoga, istället för att " +"använda alternativen Öppna eller Importera." + +#. Tag: title +#: index.docbook:447 +#, no-c-format +msgid "Printing" +msgstr "Utskrift" + +#. Tag: para +#: index.docbook:448 +#, no-c-format +msgid "" +"You can print out a composition in the form of a musical score, using the " +" File " +"Print function." +msgstr "" +"Du kan skriva ut en komposition i form av ett partitur, genom att använda " +"funktionen Arkiv " +"Skriv ut." + +#. Tag: para +#: index.docbook:458 +#, no-c-format +msgid "" +"Producing a score from performance data is a hard task, and in most cases " +"it's unreasonable to expect a default printout based on MIDI data to be very " +"readable. You should use the notation " +"editor to tidy up the score before printing. (See also Notation from performance data.)" +msgstr "" +"Att skapa ett partitur från utförd data är en svår uppgift, och i de " +"flesta fall är det inte rimligt att förvänta sig att en standardutskrift " +"baserad på MIDI-data är särskilt läsbar. Du bör använda notbehandlaren för att städa upp " +"partituret innan du skriver ut det. (Se också Notskrift från utförandedata.)" + +#. Tag: para +#: index.docbook:468 +#, no-c-format +msgid "" +"&rosegarden; is capable of producing very readable scores. Even so, it is " +"designed to be a screen editor and not primarily a typesetter. If you want " +"to produce true print-quality scores you should consider using Lilypond in conjunction with " +"&rosegarden;. Lilypond is music typesetting software that reads a " +"specialised text file format and produces high-quality typeset output. " +"&rosegarden; is capable of writing Lilypond files using the " +"File Export " +"Export Lilypond function." +msgstr "" +"&rosegarden; klarar av att skapa helt läsbara partitur. Även om det är " +"så, är programmet avsett att vara en skärmeditor, och inte i huvudsak " +"avsett för typsättning. Om du vill skapa partitur med riktig " +"utskriftskvalitet, bör du fundera på att använda Lilypond tillsammans med " +"&rosegarden;. Lilypond är programvara för typsättning av musik som läser " +"ett specialiserat textfilformat, och skapar typsatt utmatning av hög " +"kvalitet. &rosegarden; klarar av att skriva Lilypond-filer med funktionen " +" Arkiv " +"Exportera Exportera " +"Lilypond-fil." + +#. Tag: title +#: index.docbook:487 +#, no-c-format +msgid "The Track Editor" +msgstr "Spåreditorn" + +#. Tag: title +#: index.docbook:489 index.docbook:842 +#, no-c-format +msgid "Overview" +msgstr "Översikt" + +#. Tag: para +#: index.docbook:490 +#, no-c-format +msgid "" +"&rosegarden;'s main layout is similar to many other popular sequencers. It " +"is based on a track structure — the main window shows a track editor " +"with a list of tracks and their associated instruments down the left hand " +"side. You can manipulate and move blocks of music data (referred to as " +"“segments”) on the track editor as well as opening the segments " +"themselves in specialised editors (notation, matrix, percussion matrix, and event list)." +msgstr "" +"&rosegarden;s utseende liknar många andra populära musikbehandlare. " +"Det är baserat på en spårstruktur: Huvudfönstret visar en spåreditor " +"med en spårlista och tillhörande instrument längs med vänster sida. Du " +"kan behandla och flytta block med musikdata (som kallas " +"“segment”) i spåreditorn, samt öppna själva segmenten i " +"specialiserade editorer (not, " +"matris, " +"slagverksmatris " +"och händelselista)." + +#. Tag: phrase +#: index.docbook:512 +#, no-c-format +msgid "&rosegarden;'s Track Editor showing two segments of music data" +msgstr "&rosegarden;s spåreditor som visar två segment med musikdata" + +#. Tag: para +#: index.docbook:518 +#, no-c-format +msgid "" +"Tracks can be assigned to a range of &MIDI;, plugin synth, or audio " +"instruments. In the picture above we see three segments in the track editor " +"on tracks assigned to General MIDI instruments." +msgstr "" +"Spår kan tilldelas en uppsättning &MIDI;-instrument, syntinsticksmoduler " +"eller ljudinstrument. I bilden ovan syns tre segment i spåreditorn för " +"spår som är tilldelade till generella MIDI-instrument." + +#. Tag: phrase +#: index.docbook:532 +#, no-c-format +msgid "&rosegarden;'s Track buttons showing track labels" +msgstr "&rosegarden;s spårknappar som visar spårnamn" + +#. Tag: para +#: index.docbook:538 +#, no-c-format +msgid "" +"The button area to the left of the segment canvas shows you the track " +"number, mute and record status, and the label of the track. You can mute or " +"unmute a track by clicking on the blue LED-style button, and select a " +"particular track as a record target by clicking on the red one. To change " +"the track label, double-click on it." +msgstr "" +"Området med knappar till vänster om segmentduken visar spårnummer, " +"tystnads- och inspelningsstatus, och spårets namn. Du kan göra ett spår " +"tyst eller inte genom att klicka på den blåa knappen i form av en lysdiod, " +"och välja ett visst spår som ska användas för inspelning genom att " +"klicka på den röda knappen. För att ändra spårnamnet, dubbelklicka " +"på det." + +#. Tag: phrase +#: index.docbook:554 +#, no-c-format +msgid "&rosegarden;'s Track buttons showing instrument assignments" +msgstr "&rosegarden;s spårknappar som visar instrumenttilldelningar" + +#. Tag: para +#: index.docbook:560 +#, no-c-format +msgid "" +"Track labels are only shown if the Settings Show Track Labels " +" menu option is enabled. Otherwise, as in this picture, the " +"instrument assignments for the tracks are shown instead." +msgstr "" +"Spårnamn visas bara om menyalternativet Inställningar Visa " +"spårnamn är aktiverat. Annars visas " +"spårens instrumenttilldelningar istället, som i bilden." + +#. Tag: title +#: index.docbook:572 +#, no-c-format +msgid "Tracks and instruments" +msgstr "Spår och instrument" + +#. Tag: para +#: index.docbook:573 +#, no-c-format +msgid "" +"Each track must have an instrument assigned to it, in order to be heard. By " +"default the first 16 tracks are assigned to the 16 instruments of the first " +"available MIDI device, and the next 16 tracks are assigned to audio." +msgstr "" +"Varje spår måste ha ett tilldelat instrument för att kunna höras. " +"Normalt tilldelas de 16 första spåren till de 16 instrumenten i den " +"första tillgängliga MIDI-enheten, och de följande 16 spåren tilldelas " +"till ljud." + +#. Tag: para +#: index.docbook:579 +#, no-c-format +msgid "" +"To change the instrument assignment for a track, right-click on the track " +"label: a pop-up menu will appear from which you can select among all the " +"available instruments." +msgstr "" +"För att ändra instrumenttilldelningen för ett spår, högerklicka på " +"spårnamnet: En meny dyker upp där du kan välja bland alla tillgängliga " +"instrument." + +#. Tag: phrase +#: index.docbook:591 +#, no-c-format +msgid "&rosegarden;'s Instrument menu" +msgstr "&rosegarden;s instrumentmeny" + +#. Tag: para +#: index.docbook:597 +#, no-c-format +msgid "" +"An instrument can be understood as a single channel on a &MIDI; device, or " +"as a mono or stereo audio output or an audio synth plugin. Tracks containing " +"note data should be assigned to &MIDI; or synth plugin instruments, and " +"those containing audio to audio instruments. You can assign more than one " +"track to the same instrument, in which case the multiple tracks will use the " +"same sounds." +msgstr "" +"Ett instrument kan betraktas som en enstaka kanal i en &MIDI;-enhet, som en " +"mono- eller stereoljudutgång, eller som en ljudsyntinsticksmodul. Spår som " +"innehåller notinformation ska tilldelas till &MIDI;- eller " +"syntinsticksinstrument, och de som innehåller ljud till ljudinstrument. Du " +"kan tilldela mer än ett spår till samma instrument, och i så fall " +"använder alla dessa spår samma ljud." + +#. Tag: para +#: index.docbook:606 +#, no-c-format +msgid "" +"You can change various properties of the instrument associated with a track " +"using the Instrument " +"Parameter Box. This is where, for example, you would set a MIDI " +"instrument to use a particular patch and so produce a particular sound " +"(piano, strings etc)." +msgstr "" +"Du kan ändra diverse egenskaper för instrumentet som tilldelats ett spår, " +"genom att använda instrumentparameterrutan. Det är till exempel här som du kan ställa in ett MIDI-instrument så " +"att det använder en speciell ljudpatch, och på så sätt åstadkommer ett " +"speciellt ljud (piano, stråkar, etc.)." + +#. Tag: para +#: index.docbook:614 +#, no-c-format +msgid "" +"See the Studio section for more " +"about instruments." +msgstr "" +"Se avsnittet Studio för mer om " +"instrument." + +#. Tag: title +#: index.docbook:623 +#, no-c-format +msgid "Creating segments" +msgstr "Skapa segment" + +#. Tag: para +#: index.docbook:624 +#, no-c-format +msgid "" +"To create an empty segment, in order to begin composing something new, you " +"need to use the pencil tool. Click on the pencil on the toolbar, and then " +"click at the point where you want the segment to start (at the correct " +"height for the track you want the segment to be on, and at a distance across " +"the editor window corresponding to the correct time) and drag rightwards " +"until the segment is the right number of bars long." +msgstr "" +"För att skapa ett tomt segment när någonting nytt ska komponeras, måste " +"du använda pennverktyget. Klicka på pennan i verktygsraden, och klicka " +"därefter på stället där du vill att segmentet ska börja (på rätt " +"plats för spåret som du vill att segmentet ska finnas i, och på ett " +"avstånd i redigeringsfönstret som motsvarar rätt tid) och dra åt höger " +"till segmentet är rätt antal takter i längd." + +#. Tag: para +#: index.docbook:635 +#, no-c-format +msgid "" +"Usually each new segment starts on a barline and extends bar by bar, but " +"this snap-to-grid effect can be prevented by holding down Shift while " +"clicking and dragging." +msgstr "" +"Oftast börjar varje nytt segment på ett taktstreck och utökas takt för " +"takt, men effekten att låsa till rutnätet kan förhindras genom att hålla " +"nere Skift under klick- och dragåtgärden." + +#. Tag: para +#: index.docbook:641 +#, no-c-format +msgid "" +"Once you have created a segment, you can then begin editing using the matrix, percussion matrix or notation editors. To use one of these " +"editors, either double-click on the segment, or else click with the right " +"mouse button and choose the editor you want from the context menu." +msgstr "" +"När du väl har skapat ett segment kan du börja redigera det med matriseditorn, slagverksmatriseditorn eller " +"notbehandlaren. För att använda en " +"av editorerna, dubbelklicka antingen på segmentet eller klicka med höger " +"musknapp och välj editorn du vill använda i den sammanhangsberoende menyn." + +#. Tag: para +#: index.docbook:650 +#, no-c-format +msgid "" +"If you are intending to record from a " +"MIDI device or audio input, you don't need to create a new segment to record " +"into first -- each separate recording always goes into a new segment, " +"created automatically during recording." +msgstr "" +"Om du avser att spela in från en " +"MIDI-enhet eller ljudingång, behöver du inte först skapa ett nytt segment " +"att spela in till. Varje enskild inspelning hamnar alltid i ett nytt " +"segment, som skapas automatiskt under inspelningen." + +#. Tag: title +#: index.docbook:660 +#, no-c-format +msgid "Audio segments" +msgstr "Ljudsegment" + +#. Tag: para +#: index.docbook:661 +#, no-c-format +msgid "" +"An audio segment contains recorded or sampled audio data, instead of " +"editable note-event data. Rosegarden allows you to record, play, arrange and " +"split audio segments, but does not contain audio waveform editing facilities." +msgstr "" +"Ett ljudsegment innehåller inspelad eller samplad ljuddata, istället för " +"redigerbar tonhändelsedata. Rosegarden låter dig spela in, spela upp, " +"arrangera och dela ljudsegment, men innehåller inte funktioner för " +"redigering av ljudvågformer." + +#. Tag: para +#: index.docbook:667 +#, no-c-format +msgid "" +"To create an audio segment, you can record from an audio source onto a track " +"assigned to an audio instrument, or you can work with existing WAV files. To " +"do this, you need to use the audio manager dialog (reached via " +"SegmentsManage Audio " +"Segments)." +msgstr "" +"För att skapa ett ljudsegment kan du spela " +"in från en ljudkälla till ett spår som hör till ett " +"ljudinstrument, eller arbeta med befintliga WAV-filer. För att göra det " +"måste du använda ljudhanteringsdialogrutan (som nås via " +"Segment Hantera " +"ljudsegment)." + +#. Tag: phrase +#: index.docbook:682 +#, no-c-format +msgid "The audio file manager" +msgstr "Ljudfilhantering" + +#. Tag: para +#: index.docbook:688 +#, no-c-format +msgid "" +"You can drag-and-drop audio files from the KDE file browser or your KDE " +"desktop into the audio file manager, or you can open them using its File " +"menu. Then you can either drag-and-drop them onto Rosegarden's track canvas, " +"or use the audio file manager's ActionInsert into Selected Audio " +"Track menu function, provided the current " +"selected track in the main window is assigned to an audio instrument. " +"Newly-recorded audio segments also appear in the audio file manager dialog." +msgstr "" +"Du kan dra och släppa ljudfiler från KDE:s filbläddrare eller " +"KDE-skrivbordet till ljudfilhanteringen, eller öppna dem med dess " +"arkivmeny. Därefter kan du antingen dra och släppa dem på Rosegardens " +"spårduk, eller använda menyfunktionen Åtgärd Infoga i markerat " +"ljudspår i ljudfilhanteringen, under " +"förutsättning att spåret som för närvarande är markerat i " +"huvudfönstret är tilldelat till ett ljudinstrument. Nyinspelade " +"ljudsegment syns också i dialogrutan för ljudfilhantering." + +#. Tag: para +#: index.docbook:699 +#, no-c-format +msgid "" +"Details of the audio files associated with a particular composition are " +"saved with that composition, but the audio files themselves are not. You " +"should ensure your document has a sensible audio file search path (via " +"CompositionEdit " +"Document " +"Properties...Audio) so " +"as to keep your audio files accessible together." +msgstr "" +"Information om ljudfilerna som hör ihop med en viss komposition är sparad " +"med kompositionen, men själva ljudfilerna är inte det. Du måste " +"försäkra dig om att ditt dokument har en vettig sökväg för ljudfiler " +"(via Komposition " +"Redigera dokumentegenskaper... " +"Ljud, för att göra det möjligt " +"att komma åt dina ljudfiler tillsammans." + +#. Tag: para +#: index.docbook:707 +#, no-c-format +msgid "" +"The audio manager dialog also shows the sample-rate and other information " +"for each audio file, and marks with an asterisk any audio file whose sample " +"rate does not match that of the current JACK audio session that Rosegarden " +"is using. Rosegarden will resample these files at playback time using a fast " +"(but correspondingly very low quality) linear resampler. You are advised to " +"resample them separately using a separate dedicated audio editor instead." +msgstr "" +"Dialogrutan för ljudfilhantering visar också samplingsfrekvensen och annan " +"information för varje ljudfil, och markerar eventuella ljudfiler vars " +"samplingsfrekvens inte motsvarar nuvarande JACK-ljudsessionen som Rosegarden " +"använder. Rosegarden samplar om filerna vid uppspelning med en snabb " +"linjär omsampling (men därför med mycket dålig kvalitet). Du råds att " +"sampla om dem separat med en särskild dedicerad ljudeditor istället." + +#. Tag: title +#: index.docbook:720 +#, no-c-format +msgid "Manipulating segments" +msgstr "Hantering av segment" + +#. Tag: para +#: index.docbook:721 +#, no-c-format +msgid "" +"The main window contains a selection of \"tools\" for editing segments. " +"These are available from the main toolbar: first select the tool you want " +"from the toolbar, and then click and drag on the segments on the main canvas." +msgstr "" +"Huvudfönstret innehåller en uppsättning \"verktyg\" för att redigera " +"segment. De är tillgängliga i huvudverktygsraden: Välj först verktyget " +"du vill ha i verktygsraden, och klicka och dra därefter på segmenten i " +"huvudduken." + +#. Tag: title +#: index.docbook:729 +#, no-c-format +msgid "The Select tool" +msgstr "Markeringsverktyget" + +#. Tag: para +#: index.docbook:730 +#, no-c-format +msgid "" +"The \"select tool\" (the arrow tool) is actually a multipurpose tool: it can " +"be used to select, move, copy, resize and create segments." +msgstr "" +"\"Markeringsverktyget\" (pilverktyget) är i själva verket ett verktyg med " +"flera användningar. Det kan användas för att markera, flytta, kopiera, " +"ändra storlek och skapa segment." + +#. Tag: para +#: index.docbook:735 +#, no-c-format +msgid "" +"The most obvious use is selection: select a single segment by clicking on it " +"with the select tool, or select several by clicking with Shift held down, or " +"by clicking in an empty area of the window and dragging out an area." +msgstr "" +"Den mest uppenbara användningen är markering: Markera ett enstaka segment " +"genom att klicka på det med markeringsverktyget, eller markera flera genom " +"att klicka med Skift nertryckt, eller genom att klicka på ett tomt ställe " +"i fönstret och dra för att åstadkomma ett område." + +#. Tag: para +#: index.docbook:742 +#, no-c-format +msgid "" +"To move segments with the select tool, simply click and drag on the segment. " +"To create copies, click and drag with Ctrl held down. To resize a segment, " +"click and drag on the right-hand edge of the segment; and to create new " +"segments, click and drag on an empty area with the middle mouse button." +msgstr "" +"För att flytta segment med markeringsverktyget, klicka och dra helt enkelt " +"segmentet. För att skapa kopior, klicka och dra med Ctrl nertryckt. För " +"att ändra storlek på ett segment, klicka och dra segmentets högerkant, " +"och för att skapa nya segment klicka och dra på ett tomt ställe med " +"musens mittenknapp." + +#. Tag: para +#: index.docbook:749 +#, no-c-format +msgid "" +"The select tool doesn't replace the other tools completely, though — " +"sometimes you need to be more precise about which operation you intend, " +"particularly when working on small segments." +msgstr "" +"Markeringsverktyget ersätter ändå inte övriga verktyg helt och hållet: " +"Ibland behöver du vara noggrannare med vilken åtgärd du avsåg, särskilt " +"vid arbete med små segment." + +#. Tag: title +#: index.docbook:759 +#, no-c-format +msgid "Move and Resize tools" +msgstr "Verktygen för att flytta och ändra storlek" + +#. Tag: para +#: index.docbook:760 +#, no-c-format +msgid "" +"To move a segment to a different start time or track, use the Move tool and " +"click and drag on the segment you want to move. If you hold down the Ctrl " +"key while dragging, the segment will be copied instead of moved." +msgstr "" +"För att flytta ett segment till en annan starttid eller ett annat spår, " +"använd förflyttningsverktyget och klicka och dra segmentet du vill flytta. " +"Om du håller nere Ctrl-tangenten medan du drar, kopieras segmentet " +"istället för att flyttas." + +#. Tag: para +#: index.docbook:765 +#, no-c-format +msgid "" +"To resize a segment, use the Resize tool, and click and drag on the " +"right-hand end of the segment." +msgstr "" +"För att ändra storlek på ett segment, använd verktyget för " +"storleksändring, och klicka och dra i högra ändan av segmentet." + +#. Tag: para +#: index.docbook:768 +#, no-c-format +msgid "" +"For both move and resize you can hold Shift for fine positioning, to avoid " +"snapping to a particular grid position." +msgstr "" +"Både vid förflyttning och storleksändring kan du hålla nere Skift för " +"finpositionering, för att undvika att hoppa till en viss rutnätsposition." + +#. Tag: title +#: index.docbook:775 +#, no-c-format +msgid "Split tool" +msgstr "Delningsverktyget" + +#. Tag: para +#: index.docbook:776 +#, no-c-format +msgid "" +"You can use the split tool to split a " +"single segment into two separate segments. To split your segment, select the " +"split tool and click on the segment you wish to split." +msgstr "" +"Du kan använda delningsverktyget " +" " +"för att dela ett enstaka segment i två separata segment. För att dela " +"segmentet, välj delningsverktyget och klicka på segmentet du vill dela." + +#. Tag: para +#: index.docbook:787 +#, no-c-format +msgid "" +"By default segments are split on the closest barline to the cursor, but this " +"can be prevented by holding down Shift while splitting the segment." +msgstr "" +"Normalt delas segment vid taktstrecket närmast markören, men det kan " +"förhindras genom att hålla nere Skift när segmentet delas." + +#. Tag: title +#: index.docbook:796 +#, no-c-format +msgid "Tempo and Time Signature" +msgstr "Tempo och taktart" + +#. Tag: title +#: index.docbook:798 +#, no-c-format +msgid "Tempo" +msgstr "Tempo" + +#. Tag: phrase +#: index.docbook:806 +#, no-c-format +msgid "&rosegarden;'s tempo dialog" +msgstr "&rosegarden;s tempodialogruta" + +#. Tag: title +#: index.docbook:814 +#, no-c-format +msgid "Time signature" +msgstr "Taktart" + +#. Tag: phrase +#: index.docbook:822 +#, no-c-format +msgid "&rosegarden;'s time signature dialog" +msgstr "&rosegarden;s taktartsdialogruta" + +#. Tag: title +#: index.docbook:832 +#, no-c-format +msgid "The Transport" +msgstr "Överföringen" + +#. Tag: para +#: index.docbook:833 +#, no-c-format +msgid "" +"When you play a composition, &rosegarden; sweeps a playback pointer across " +"the tracks from left to right playing the contents of the segments as it " +"crosses them. The pointer's position on the screen is tracked and controlled " +"by a window called the Transport." +msgstr "" +"När du spelar upp en komposition, sveper &rosegarden; en " +"uppspelningsmarkör över spåren från vänster till höger och spelar upp " +"innehållet i segmenten när den korsar dem. Markörens position på " +"skärmen följs och styrs av ett fönster som kallas Överföring." + +#. Tag: phrase +#: index.docbook:850 +#, no-c-format +msgid "&rosegarden;'s Transport window" +msgstr "&rosegarden;s överföringsfönster" + +#. Tag: para +#: index.docbook:856 +#, no-c-format +msgid "" +"If the Transport isn't visible, you can activate it with " +"Settings Show " +"Transport ." +msgstr "" +"Om överföringen inte är synlig, kan du aktivera den med " +"Inställningar Visa " +"överföring." + +#. Tag: para +#: index.docbook:861 +#, no-c-format +msgid "" +"The Transport shows the time reached by the playback pointer, in seconds by " +"default. You can switch it to show musical time (bar and beat counts), " +"musical time with a flashing visual metronome, or audio sample frame times, " +"using the topmost of the small buttons on the left of the transport window. " +"The button immediately below that toggles the display so as to show time " +"remaining to the end of the composition instead of from the start." +msgstr "" +"Överföringen visar tiden som uppnåtts av uppspelningsmarkören, normalt i " +"sekunder. Du kan ändra den att visa metronomtid (takter och taktslag), " +"metronomtid med en blinkande visuell metronom, eller ramtider för " +"ljudsampling, med den översta av de små knapparna till vänster i " +"överföringsfönstret. Knappen direkt nedanför byter mellan att visa tid " +"som är kvar till kompositionens slut istället för tid från början." + +#. Tag: para +#: index.docbook:870 +#, no-c-format +msgid "" +"The main controls on the transport start the sequencer playing and pause it, " +"fast forward the pointer position, rewind it, stop it or jump to beginning " +"or end of composition." +msgstr "" +"Huvudknapparna i överföringen startar uppspelning med musikbehandlaren eller " +"gör paus, flyttar markörpositionen framåt, flyttar den bakåt, stoppar " +"den eller går till kompositionens början eller slut." + +#. Tag: para +#: index.docbook:876 +#, no-c-format +msgid "" +"Additional controls and a &MIDI; event display are hidden on the bottom flap " +"on the transport, which can be toggled on or off using the arrow button next " +"to it at the left. Also on this extra portion there are buttons for " +"recording, setting loops, soloing individual tracks, turning on or off the " +"metronome, and silencing your MIDI devices (panic button)." +msgstr "" +"Ytterligare knappar och visning av &MIDI;-händelser är dolda längst ner i " +"överföringsfönstret, och kan visas eller inte med pilknappen i det " +"längst till vänster. Dessutom finns knappar för inspelning, för " +"upprepning, för att spela enskilda spår solo, för att stänga av eller " +"sätta på metronomen och för att tysta dina MIDI-enheter (panikknapp) i " +"extradelen." + +#. Tag: title +#: index.docbook:885 +#, no-c-format +msgid "Recording" +msgstr "Inspelning" + +#. Tag: para +#: index.docbook:886 +#, no-c-format +msgid "" +"To record a new segment into a track, first make sure the right track is " +"selected for recording by selecting the red (for audio tracks) or yellow " +"(for MIDI tracks) LED-style button on the track label, and then use the " +"Transport's record control. This has the effect of both starting the " +"transport, thus playing the existing composition, and recording into the " +"appropriate track." +msgstr "" +"För att spela in ett nytt segment i ett spår, försäkra dig först om att " +"rätt spår är markerat för inspelning genom att klicka på den röda (för ljudspår) " +"eller gula (för MIDI-spår) lysdiodknappen vid spårets namn, och använd " +"därefter överföringens inspelningsknapp. Det ger effekten att både starta " +"överföringen, och därigenom spela upp den befintliga kompositionen, och att " +"spela in i motsvarande spår." + +#. Tag: para +#: index.docbook:895 +#, no-c-format +msgid "" +"You can only select a single MIDI track for recording, but you can record " +"any number of audio tracks at once so long as your computer is powerful " +"enough. You can also select a MIDI track and one or more audio tracks at the " +"same time. Be careful not to accidentally leave tracks selected when you " +"have finished using them and are trying to record somewhere else." +msgstr "" +"Du kan bara markera ett enda MIDI-spår för inspelning, men du kan " +"spela in hur många ljudspår som helst samtidigt så länge datorn är " +"kraftfull nog. Du kan också markera ett MIDI-spår och ett eller flera " +"ljudspår samtidigt. Var försiktig så att du inte lämnar spår markerade " +"av misstag när du är klar med användning av dem och försöker " +"spela in någon annanstans." + +#. Tag: para +#: index.docbook:903 +#, no-c-format +msgid "" +"Alternatively you can use punch-in record to separate the acts of starting " +"the transport and entering record mode. Punch-in record is toggled with the " +"Space bar. You can press Space while playing a composition to switch " +"instantly between playback and recording without stopping the transport, or " +"you can use Space to arm for recording when the transport is stopped, so " +"that a subsequent Play will in fact record as well. (The latter is handy " +"when synchronising to an external " +"transport.)" +msgstr "" +"Som ett alternativ kan du använda punch-in inspelning för att skilja på " +"åtgärderna att starta överföringen och gå in i inspelningsläge. " +"Punch-in inspelning ändras med mellanslagstangenten. Du kan trycka på " +"mellanslag medan en komposition spelas upp för att omedelbart byta mellan " +"uppspelning och inspelning utan att stoppa överföringen, eller använda " +"mellanslag för att förbereda inspelning medan överföringen är stoppad, " +"så att följande uppspelning i själva verket också spelar in. (Det senare " +"är praktiskt vid synkronisering med en " +"extern överföring.)" + +#. Tag: para +#: index.docbook:914 +#, no-c-format +msgid "" +"If you record to a MIDI track, your recording will be from all of the MIDI " +"devices that are selected for recording in the MIDI device manager." +msgstr "" +"Om du spelar in ett MIDI-spår, sker inspelning från alla MIDI-enheter " +"som är inställda för inspelning i " +"MIDI-enhetshanteringen." + +#. Tag: para +#: index.docbook:920 +#, no-c-format +msgid "" +"If you record to audio tracks, your recording to each track will be from the " +"input currently selected for that track's instrument in the instrument parameter " +"box. This will either be an external audio input or an audio " +"submaster or master (for performing mixdowns). If it's an external input, it " +"will by default record from your soundcard's first available physical record " +"in. You may wish to use a JACK connection tool to connect some other JACK " +"audio application to the input instead." +msgstr "" +"Om du spelar in ljudspår, sker inspelning av varje spår från ingången som för " +"närvarande är inställd för det spårets instrument i instrumentparameterrutan" +". Det är antingen en extern ljudingång eller en delnivå eller " +"huvudnivå för ljud (för att utföra ihopmixningar). Om det är en extern " +"ingång, spelas det normalt in från ljudkortets första tillgängliga " +"fysiska inspelningsingång. Du kanske vill använda ett anslutningsverktyg i " +"JACK för att ansluta ett annat ljudprogram som stöder JACK till ingången " +"istället." + +#. Tag: title +#: index.docbook:936 +#, no-c-format +msgid "Synchronising to external transports" +msgstr "Synkronisering med extern överföring" + +#. Tag: title +#: index.docbook:938 +#, no-c-format +msgid "JACK Transport" +msgstr "Överföring med JACK" + +#. Tag: para +#: index.docbook:939 +#, no-c-format +msgid "" +"Rosegarden supports the JACK transport mechanism for synchronising its " +"transport with other JACK applications on the same computer. To activate it, " +"go to Settings " +"Configure Rosegarden... and in the " +"Sequencer page's Synchronisation tab, select \"Sync\" from the JACK " +"transport mode menu." +msgstr "" +"Rosegarden stöder överföringsmekanismen i JACK för att synkronisera " +"överföringen med andra program med JACK på samma dator. För att aktivera " +"den, gå till Inställningar " +"Anpassa Rosegarden... och välj " +"\"Synkronisera\" i menyn för JACK överföringsläge på sidan Musikbehandlare " +"under fliken Synkronisering." + +#. Tag: para +#: index.docbook:950 +#, no-c-format +msgid "" +"When the JACK transport is in use, all of the applications that are " +"subscribed to it share a common transport control, and you can start, stop, " +"and move the transport from any one of them." +msgstr "" +"När överföring med JACK används, delar alla program som prenumererar på " +"den en gemensam styrning av överföringen, och du kan starta, stoppa och " +"förflytta överföringen från vart och ett av dem." + +#. Tag: para +#: index.docbook:955 +#, no-c-format +msgid "" +"Many Linux audio applications that use the JACK audio server also support " +"JACK transport: consult their documentation for details of whether and how." +msgstr "" +"Många ljudprogram under Linux som använder ljudservern JACK stöder också " +"överföring med JACK. Titta i deras dokumentation för detaljinformation om de " +"gör det och hur." + +#. Tag: title +#: index.docbook:960 +#, no-c-format +msgid "MIDI Time Code" +msgstr "MIDI-tidkod" + +#. Tag: para +#: index.docbook:961 +#, no-c-format +msgid "" +"Rosegarden supports MIDI Time Code (MTC) synchronisation in master and slave " +"modes. This is particularly useful for synchronising the Rosegarden " +"transport with a hardware MTC-capable device, or with software running on " +"other computers connected via MIDI." +msgstr "" +"Rosegarden stöder synkronisering med MIDI-tidkod (MTC) i huvud- och slavläge. " +"Det är särskilt användbart för att synkronisera Rosegardens överföring med " +"en hårdvaruenhet som stöder MTC, eller med programvara som kör på andra " +"datorer anslutna via MIDI." + +#. Tag: para +#: index.docbook:968 +#, no-c-format +msgid "" +"To make Rosegarden the MTC Master, so that it will control any MTC slave " +"device or application connected to it, go to Settings Configure " +"Rosegarden... and in the Sequencer page's " +"Synchronisation tab, select \"MTC Master\" from the MIDI Time Code menu. To " +"make Rosegarden an MTC Slave so that Rosegarden's transport will " +"automatically be synchronised with incoming MTC events, select \"MTC Slave\"." +msgstr "" +"För att göra Rosegarden till MTC-huvudenhet, så att det styr alla MTC-slavar " +"eller program som ansluts, gå till " +"Inställningar Anpassa Rosegarden..." +" och välj \"MTC-huvudenhet\" i menyn MIDI-tidkodsläge under " +"fliken Synkronisering på sidan Musikbehandlare. För att göra Rosegarden " +"till en slav, så att Rosegardens överföring automatiskt synkroniseras med " +"inkommande MTC-händelser, välj \"MTC-slav\"." + +#. Tag: title +#: index.docbook:986 +#, no-c-format +msgid "The Studio" +msgstr "Studion" + +#. Tag: title +#: index.docbook:989 +#, no-c-format +msgid "Devices, instruments and connections" +msgstr "Enheter, instrument och anslutningar" + +#. Tag: para +#: index.docbook:991 +#, no-c-format +msgid "" +"Rosegarden uses the term Studio to refer to everything it knows about the " +"sound systems attached to the computer. This may include &MIDI; and audio " +"hardware and other sound software, and includes information about " +"connections, configuration, &MIDI; patches and so on. The Studio is built-in " +"to every composition you create with Rosegarden." +msgstr "" +"Rosegarden använder termen studio för att ange allt som den känner till " +"om ljudsystemen anslutna till datorn. Det kan omfatta &MIDI;- och " +"ljudhårdvara och annan ljudprogramvara, och omfattar information om " +"anslutningar, inställning, &MIDI;-patchar och så vidare. Studion är " +"inbyggd i alla kompositioner du skapar med Rosegarden." + +#. Tag: para +#: index.docbook:998 +#, no-c-format +msgid "Three pieces of terminology are essential here:" +msgstr "Tre ord i terminologin är fundamentala här:" + +#. Tag: term +#: index.docbook:1003 +#, no-c-format +msgid "Device" +msgstr "Enhet" + +#. Tag: para +#: index.docbook:1005 +#, no-c-format +msgid "" +"A device, as far as Rosegarden is concerned, is simply " +"something capable of producing sounds. This may be a MIDI or audio device. " +"MIDI devices do not necessarily correspond directly to physical MIDI ports: " +"they are just things with names that you can refer to, expected to work in " +"particular ways. Configuration information such as MIDI patch maps can be " +"attached to devices." +msgstr "" +"En enhet, så vitt det angår Rosegarden, är helt enkelt " +"något som kan skapa ljud. Det kan vara en MIDI- eller ljudenhet. " +"MIDI-enheter motsvarar inte nödvändigtvis direkt med fysiska MIDI-portar: " +"De är bara saker med namn som du kan ange, som förväntas fungera på ett " +"visst sätt. Inställningsinformation som MIDI-patchavbildningar kan " +"anslutas till enheter." + +#. Tag: term +#: index.docbook:1018 +#, no-c-format +msgid "Instrument" +msgstr "Instrument" + +#. Tag: para +#: index.docbook:1020 +#, no-c-format +msgid "" +"Each device has a number of instruments, each of which is " +"assumed to make a particular sound. These are the things that you can assign " +"tracks to in order to choose which sound they play. By default, a device " +"contains 16 instruments, created for you at startup: if the device is a MIDI " +"device, then these will each be initialised to one of the 16 MIDI channels. " +"The instrument is where you set all the properties of a particular voice, " +"such as program settings, reverb, volume etc." +msgstr "" +"Varje enhet har ett antal instrument, där vart och ett antas " +"låta på ett visst sätt. Detta är det du kan tilldela spår till för att " +"välja vilket ljud de spelar. Normalt innehåller en enhet 16 instrument, " +"som skapas åt dig vid start. Om enheten är en MIDI-enhet, initieras vart " +"och ett av dem till en av de 16 MIDI-kanalerna. Instrumentet är stället " +"där du anger alla egenskaper för en viss stämma, som " +"programinställningar, eko, volym, etc." + +#. Tag: term +#: index.docbook:1035 +#, no-c-format +msgid "Connection" +msgstr "Anslutning" + +#. Tag: para +#: index.docbook:1037 +#, no-c-format +msgid "" +"While a MIDI device is simply a name and a collection of configuration " +"information, the connection specifies which MIDI port it is " +"physically attached to. This can be configured in the MIDI device manager. (Audio and " +"synth plugin devices do not have connections in the same way.)" +msgstr "" +"Även om en MIDI-enhet helt enkelt är ett namn och en samling " +"inställningsinformation, anger anslutningen vilken MIDI-port " +"som den är fysiskt ansluten till. Det kan ställas in i MIDI-enhetshanteringen. (Ljud- och " +"syntinsticksmodulenheter har inte anslutningar på samma sätt)." + +#. Tag: para +#: index.docbook:1050 +#, no-c-format +msgid "" +"For example, imagine a setup consisting of a PC with two physical MIDI " +"ports, one of which has an external synth attached to it. Here you would " +"normally configure Rosegarden so as to have one MIDI device, corresponding " +"to the synth. You could then configure this device with the correct name and " +"patch map, and then specify a connection for it that corresponded to the " +"relevant MIDI port on your soundcard. Each of the 16 default instruments on " +"the device could then be configured with a suitable program, and you would " +"then assign tracks to those." +msgstr "" +"Tänk dig exempelvis en konfiguration som består av en dator med två " +"fysiska MIDI-portar, där den ena har en extern synt ansluten. Då skulle du " +"normalt ställa in Rosegarden att ha en MIDI-enhet, som motsvarar synten. Du " +"skulle därefter kunna ställa in enheten med rätt namn och " +"patchavbildning, och ange en anslutning för den som motsvarar ljudkortets " +"verkliga MIDI-port. Vart och ett av de 16 standardinstrumenten på enheten " +"skulle kunna anpassas med ett lämpligt program, och därefter skulle du " +"tilldela spår till dem." + +#. Tag: para +#: index.docbook:1061 +#, no-c-format +msgid "" +"In practice, Rosegarden will by default create a device for each of the " +"available connections on startup. So in the example above, two MIDI devices " +"will be created by default even though you only need one. You would " +"generally then rename and apply patch maps to the first, and delete or " +"simply not use the second. Remember that there is no way for Rosegarden to " +"know what synths you actually have plugged in to the MIDI ports on your " +"computer: for this reason, the devices created at startup are just intended " +"to be a default set, and it's up to you to ensure that the devices you " +"configure match those you are really using." +msgstr "" +"I praktiken försöker Rosegarden normalt skapa en enhet för var och en av " +"de tillgängliga anslutningarna vid start. Så med exemplet ovan skulle två " +"MIDI-enheter normalt skapas även om du bara behöver en. Du skulle " +"därefter i allmänhet byta namn på och ange patchavbildningar för den " +"första, och ta bort eller helt enkelt inte använda den andra. Kom ihåg " +"att det finns inget sätt för Rosegarden att veta vilka syntar som du " +"verkligen har anslutit till MIDI-portarna på datorn. Av denna anledning är " +"enheterna som skapas vid start bara avsedda som en standarduppsättning, och " +"det är upp till dig att försäkra dig om att enheterna du ställer in " +"stämmer med de du verkligen använder." + +#. Tag: para +#: index.docbook:1075 +#, no-c-format +msgid "" +"Once configured, the studio setup is stored with every Rosegarden-format " +"file you save." +msgstr "" +"Så fort den är inställd, lagras studioinställningen med varje fil på " +"Rosegarden-format som du sparar." + +#. Tag: title +#: index.docbook:1081 +#, no-c-format +msgid "Managing MIDI devices" +msgstr "Hantering av MIDI-enheter" + +#. Tag: phrase +#: index.docbook:1090 +#, no-c-format +msgid "The MIDI device manager" +msgstr "MIDI-enhetshantering" + +#. Tag: para +#: index.docbook:1096 +#, no-c-format +msgid "" +"The MIDI device manager dialog shows you the MIDI devices that you currently " +"have available to you, and where they are connected. To reach this dialog, " +"use Composition " +"Studio Manage MIDI " +"Devices ." +msgstr "" +"Dialogrutan för MIDI-enhetshantering visar de MIDI-enheter som för " +"närvarande är tillgängliga, och var de är anslutna. Använd " +"Komposition " +"Studio Hantera " +"MIDI-enheter för att nå dialogrutan." + +#. Tag: para +#: index.docbook:1106 +#, no-c-format +msgid "" +"As described in the Devices, " +"Instruments and Connections section, by default Rosegarden tries to " +"provide a plausible set of devices for you at startup, and to make sensible " +"connections for those devices. But the default configuration might not " +"always be suitable, and so this dialog allows you to rename devices and " +"modify their connections and play/record direction." +msgstr "" +"Som beskrivs i avsnittet Enheter, " +"instrument och anslutningar, försöker Rosegarden normalt " +"tillhandahålla en rimlig uppsättning enheter vid start, och göra rimliga " +"anslutningar för enheterna. Standarduppsättningen kanske dock inte alltid " +"är lämplig, och därför låter dialogrutan dig byta namn på enheter och " +"ändra deras anslutningar och uppspelnings- eller inspelningsriktningar." + +#. Tag: para +#: index.docbook:1117 +#, no-c-format +msgid "" +"Each of the Play devices listed here provides a target for MIDI tracks to " +"talk to: if you add a new Play device, you will then have 16 new instruments " +"on this device which you can assign tracks to. If you then assign a " +"connection for that device, the tracks assigned to it will play to the " +"appropriate channel (depending on the instrument) of any MIDI synth attached " +"to that connection." +msgstr "" +"Var och en av uppspelningsenheterna här tillhandahåller en utgång för " +"MIDI-spår att skicka till: Om du lägger till en ny uppspelningsenhet, får " +"du 16 nya instrument i enheten som du kan tilldela spår till. Om du " +"därefter tilldelar en anslutning till enheten, spelas spåren som har " +"tilldelats till den på lämplig kanal (beroende på instrumentet) i vilken " +"MIDI-synt som helst som är kopplad till anslutningen." + +#. Tag: para +#: index.docbook:1127 +#, no-c-format +msgid "" +"The Record devices listed here represent possible sources for recording " +"MIDI. You can make one or more of them current (so that Rosegarden will " +"listen to them when recording) using the checkboxes on each line, as shown " +"in this dialog." +msgstr "" +"Inspelningsenheterna som listas här representerar möjliga källor för att " +"spela in MIDI. Du kan göra en eller flera av dem aktuella (så att " +"Rosegarden lyssnar på den vid inspelning) med kryssrutorna på varje rad, " +"som visas i dialogrutan." + +#. Tag: title +#: index.docbook:1136 +#, no-c-format +msgid "Managing banks and programs for MIDI devices" +msgstr "Hantera banker och program för MIDI-enheter" + +#. Tag: phrase +#: index.docbook:1145 +#, no-c-format +msgid "The MIDI bank and program editor" +msgstr "Editorn för MIDI-banker och program" + +#. Tag: para +#: index.docbook:1151 +#, no-c-format +msgid "" +"Remember that each MIDI device contains a number of instruments, and that " +"you can assign tracks to those instruments. In MIDI terms, each instrument " +"corresponds to a single channel on your MIDI synth. You can choose which of " +"the available voices (sounds) on your synth each instrument uses, but in " +"order to do this, you need to let Rosegarden know the names for all of the " +"available voices." +msgstr "" +"Kom ihåg att varje MIDI-enhet innehåller ett antal instrument, och att du " +"kan tilldela spår till instrumenten. Med MIDI-terminologi, motsvarar varje " +"instrument en enskild kanal i MIDI-synten. Du kan välja vilken av de " +"tillgängliga stämmorna (ljuden) i synten som varje instrument använder, " +"men för att göra det måste du tala om namnen på alla tillgängliga " +"stämmor för Rosegarden." + +#. Tag: para +#: index.docbook:1161 +#, no-c-format +msgid "" +"This dialog allows you to attach banks of programs (names for voices) to " +"your MIDI devices, thus permitting each instrument on a device to be set to " +"use one of those voices in the Instrument Parameter " +"Box." +msgstr "" +"Den här dialogrutan låter dig tilldela programbanker (namn på stämmor) " +"till MIDI-enheter, och på så sätt låta varje instrument i en enhet att " +"ställas in att använda en av stämmorna i " +"instrumentparameterrutan." + +#. Tag: para +#: index.docbook:1170 +#, no-c-format +msgid "" +"The usual way to set up the program names for a device is simply to import " +"them from one of the supplied device (\".rgd\") files. To do this, select a " +"device in the list on the left of the dialog, then click the Import button " +"below the list and choose the .rgd file corresponding to your synth." +msgstr "" +"Det vanliga sättet att ställa in programnamn för en enhet är att helt " +"enkelt importera dem från en av enhetsfilerna (\".rgd\") som " +"tillhandahålls. För att göra det, markera en enhet i listan till vänster " +"i dialogrutan, klicka därefter på importknappen under listan och välj " +".rgd-filen som motsvarar din synt." + +#. Tag: para +#: index.docbook:1179 +#, no-c-format +msgid "" +"If there is no current .rgd file available for your synth, then you can use " +"this dialog to create a new bank. To do this you will have to find the " +"program map in your synth's MIDI Implementation Chart and enter all the " +"names by hand: you can then Export them to a .rgd file to share with other " +"Rosegarden users. Contact the rosegarden-user mailing list if you have made " +"a new .rgd file and would like to share it. (This is how all of the existing " +".rgd files have come to be included with Rosegarden: other users have " +"contributed them.)" +msgstr "" +"Om det inte finns en aktuell .rgd-fil tillgänglig för din synt, kan du " +"använda dialogrutan för att skapa en ny bank. För att göra det måste du " +"hitta programavbildningen i din synts MIDI-implementeringsdiagram och skriva " +"in namnen för hand: Därefter kan du exportera dem till en .rgd-fil att " +"dela med andra användare av Rosegarden. Kontakta e-postlistan " +"rosegarden-user om du har skapat en ny .rgd-fil och vill bidra med den. (Det " +"är hur alla befintliga .rgd-filer har kommit att inkluderas med Rosegarden: " +"andra användare har bidragit dem.)" + +#. Tag: title +#: index.docbook:1192 +#, no-c-format +msgid "Percussion Key Mappings" +msgstr "Tonavbildningar för slagverk" + +#. Tag: para +#: index.docbook:1194 +#, no-c-format +msgid "" +"Many MIDI synthesizers have at least one percussion program, in which each " +"\"pitch\" plays a different type of sound. Rosegarden contains a dedicated " +"percussion matrix editor to view and edit notes against a scale consisting " +"of the correct names for the pitches, instead of against the conventional " +"piano keyboard pitch scale." +msgstr "" +"Många MIDI-syntar har åtminstone ett slagverksprogram, där varje \"tonhöjd\" " +"spelar ett annorlunda ljud. Rosegarden innehåller en särskild matriseditor för " +"slagverk för att visa och redigera toner med en skala som består av de " +"riktiga namnen på tonhöjderna, istället för den konventionella tonskalan på " +"ett piano." + +#. Tag: para +#: index.docbook:1203 +#, no-c-format +msgid "" +"The key mappings available for a particular MIDI device are also defined in " +"the Rosegarden device (\".rgd\") file. Each MIDI program that is defined as " +"a percussion program can have a key mapping associated with it; if there is " +"one, then it will be used by default in any track that is assigned to this " +"program. Like program and bank definitions, key mappings can be imported " +"from and exported to .rgd files." +msgstr "" +"Tonavbildningarna som är tillgängliga för en viss MIDI-synt definieras också " +"i Rosegardens enhetsfil (\".rgd\"). Varje MIDI-program som definieras som " +"ett slagverksprogram kan ha en tillhörande tonavbildning. Om det finns en, " +"används den normalt för alla spår som tilldelas programmet. Liksom " +"program och bankdefinitioner kan tonavbildningar importeras från och " +"exporteras till .rgd-filer." + +#. Tag: title +#: index.docbook:1215 +#, no-c-format +msgid "SoundFonts" +msgstr "Ljudteckensnitt" + +#. Tag: para +#: index.docbook:1217 +#, no-c-format +msgid "" +"If you happen to be using a soft-synth or soundcard synth that uses " +"SoundFont (.sf2) files, you can simply load the correct program names " +"directly from your .sf2 file into this dialog. Just ask to Import as normal, " +"and then choose the .sf2 file that you are using instead of a .rgd file." +msgstr "" +"Om du råkar använda en programvarusynt eller ljudkortssynt som använder " +"ljudteckensnittsfiler (.sf2), kan du helt enkelt ladda riktiga programnamn " +"direkt från .sf2-filen i dialogrutan. Begär bara import som vanligt, och " +"välj därefter .sf2-filen som du använder istället för en .rgd-fil." + +#. Tag: para +#: index.docbook:1225 +#, no-c-format +msgid "" +"Note that the Studio only manages information about existing MIDI devices " +"for Rosegarden, it does not actually handle tasks such as loading a " +"SoundFont to your soundcard in the first place. If you want to make sure a " +"SoundFont is loaded to your soundcard when Rosegarden starts up, you should " +"use the special \"Load SoundFont to SoundBlaster card at startup\" option in " +"the sequencer configuration in Settings Configure " +"Rosegarden... ." +msgstr "" +"Observera att studion bara hanterar information om befintliga MIDI-enheter i " +"Rosegarden. Den hanterar inte uppgifter som att ladda ett ljudteckensnitt " +"till ljudkortet från början. Om du vill försäkra dig om att ett " +"ljudteckensnitt laddas till ljudkortet när Rosegarden startas, ska du " +"använda det speciella alternativet \"Ladda ljudsamplingar till " +"Soundblaster-kort vid start\" i inställningen av musikbehandlaren under " +"Inställningar " +"Anpassa Rosegarden...." + +#. Tag: title +#: index.docbook:1240 +#, no-c-format +msgid "Variations" +msgstr "Varianter" + +#. Tag: para +#: index.docbook:1242 +#, no-c-format +msgid "" +"Some MIDI devices (for example, those from Roland) organise their program " +"names using a scheme known as \"variations\". For these devices, you " +"generally want to select a program by first selecting the basic program name " +"— such as a piano — and then selecting one of a set of " +"variations on that program — such as an electric piano. This is in " +"contrast to General MIDI-based synths, which organise their programs into " +"banks and expect you to choose a bank first and then a program from that " +"bank." +msgstr "" +"Vissa MIDI-enheter (till exempel de från Roland) organiserar programnamn " +"på ett sätt som kallas \"varianter\". För dessa enheter vill man i " +"allmänhet välja ett program genom att först ange ett grundprogramnamn, " +"som ett piano, och därefter ange en av ett antal varianter av programmet, " +"som ett elektriskt piano. Detta skiljer sig från syntar baserad på " +"generell MIDI, som organiserar programmen i banker och förväntar sig att " +"du först väljer en bank och därefter ett program i banken." + +#. Tag: para +#: index.docbook:1255 +#, no-c-format +msgid "" +"Rosegarden can support devices that use variations, but you still have to " +"enter the program names in a bank format. Internally, devices that use " +"variations still use MIDI bank select controllers to choose between the " +"variations; you need to find out from your synth's documentation whether " +"your device uses the LSB or MSB bank select to choose variations, and which " +"bank number corresponds to which variation. You can then enter the banks as " +"normal, and use the \"Show Variation list based on MSB/LSB\" option on the " +"bank dialog to tell Rosegarden to show variations instead of banks when " +"displaying that device in an instrument parameter box." +msgstr "" +"Rosegarden kan stödja enheter som använder varianter, men du måste ändå " +"skriva in programnamnen med bankformat. Internt använder enheter med " +"variationer fortfarande styrning med val av MIDI-bank för att välja bland " +"variationerna: Du måste ta reda på om enheten använder mest signifikant " +"eller minst signifikant värde i bankväljaren för att ange variationer, " +"och vilket banknummer som motsvarar vilken variant. Därefter kan du skriva " +"in bankerna som vanligt, och använda alternativet \"Visa variantlista " +"baserad på Mest signifikant värde/Minst signifikant värde\" i " +"bankdialogrutan för att tala om för Rosegarden att varianter istället " +"för banker ska visas när enheten visas i en instrumentparameterruta." + +#. Tag: title +#: index.docbook:1272 +#, no-c-format +msgid "Program mapping on &MIDI; import" +msgstr "Programavbildning vid &MIDI;-import" + +#. Tag: para +#: index.docbook:1273 +#, no-c-format +msgid "" +"When you import a &MIDI; file into a composition, &rosegarden; uses the " +"existing studio setup to determine how to map the &MIDI; programs onto " +"&rosegarden; instruments. The aim is to ensure that every &MIDI; program " +"gets mapped to an instrument that really exists in your studio (and thus is " +"actually attached to your computer), so that all the &MIDI; tracks can be " +"heard." +msgstr "" +"När du importerar en &MIDI;-fil till en komposition, använder &rosegarden; " +"befintlig studioinställning för att avgöra hur &MIDI;-programmen avbildas " +"på &rosegarden;-instrument. Målet är att försäkra att varje " +"&MIDI;-program avbildas på ett instrument som verkligen finns i studion " +"(och alltså verkligen är anslutet till datorn), så att alla &MIDI;-spår " +"kan höras." + +#. Tag: para +#: index.docbook:1283 +#, no-c-format +msgid "" +"The &MIDI; program-change and bank-select events found in the imported file " +"are used when importing, but only as an aid to help find the appropriate " +"instrument for each &MIDI; track from the set of instruments in your studio. " +"So, for example, if your studio is currently set up to contain only " +"GM instruments, and you import a &MIDI; file with " +"GS program changes onto it, &rosegarden; will remap the " +"GS banks back onto GM because they're " +"all it knows that you have at the time you import the file. It doesn't " +"remember the original GS program numbers." +msgstr "" +"&MIDI; programändrings- och bankvalshändelserna som hittas i den " +"importerade filen används vid import, men bara som en hjälp att hitta " +"lämpligt instrument för varje &MIDI;-spår bland instrumentuppsättningen " +"i studion. Om studion till exempel för närvarande är inställd att bara " +"innehålla GM-instrument, och du importerar en &MIDI;-fil " +"som innehåller GS-programändringar, avbildar " +"&rosegarden; GS-bankerna tillbaka till " +"GM eftersom de är allt som den vet om att du har vid " +"tiden då filen importeras. Den kommer inte ihåg ursprungliga " +"GS-programnummer." + +#. Tag: para +#: index.docbook:1296 +#, no-c-format +msgid "" +"This means that you should always ensure that your studio is correctly " +"configured for the devices you actually have, before you import the &MIDI; " +"file. Otherwise the program data in the &MIDI; file may be lost." +msgstr "" +"Det här betyder att du alltid ska försäkra dig om att din studio är " +"riktigt inställd för enheterna som du verkligen har, innan du importerar " +"&MIDI;-filen. Annars kan programdata i &MIDI;-filen gå förlorad." + +#. Tag: title +#: index.docbook:1308 +#, no-c-format +msgid "Audio Routing" +msgstr "Ljudfördelning" + +#. Tag: para +#: index.docbook:1309 +#, no-c-format +msgid "" +"Any Rosegarden track assigned to an audio or synth plugin instrument becomes " +"part of Rosegarden's audio routing architecture. There are 16 audio " +"instruments and 16 synth plugin instruments, and each of these has a set of " +"adjustable parameters including fader level, pan, effects and so on. These " +"are generally configurable in the Instrument Parameter " +"Box or audio mixer. Each " +"audio instrument also has an input connection, and both audio and synth " +"plugin instruments have an output connection." +msgstr "" +"Alla spår i Rosegarden som tilldelas till ett ljudinstrument eller " +"syntinsticksmodulinstrument blir en del av Rosegardens " +"ljudfördelningsarkitektur. Det finns 16 ljudinstrument och 16 " +"syntinsticksmodulinstrument, och vart och ett av dem har en uppsättning " +"justerbara parametrar som omfattar toningsnivå, panorering, effekter och " +"så vidare. De är i allmänhet inställningsbara i instrumentparameterrutan eller ljudmixern. Varje " +"ljudinstrument har också en ingångsanslutning, och både ljudinstrument " +"och syntinsticksmodulinstrument har en utgångsanslutning." + +#. Tag: para +#: index.docbook:1323 +#, no-c-format +msgid "" +"An instrument's input connection defines where Rosegarden will read audio " +"data from when recording to this instrument. The most usual setting would be " +"to one of Rosegarden's external audio inputs, the number of which is " +"configurable in the audio mixer. " +"These correspond to JACK audio ports exposed by Rosegarden, to which you can " +"connect outputs from any other JACK audio application or soundcard capture " +"ports using an external JACK router application such as QJackCtl. You can also set an " +"instrument's audio input to the output of one of Rosegarden's built-in audio " +"submasters or master output for mixdowns." +msgstr "" +"Ett instruments ingångsanslutning definierar varifrån Rosegarden läser " +"ljuddata vid inspelning till instrumentet. Den vanligaste inställningen är " +"en av Rosegardens externa ljudingångar, vars antal kan ställas in i ljudmixern. De motsvarar JACK " +"ljudportar exponerade av Rosegarden, där du kan ansluta utgångar från " +"vilket JACK ljudprogram som helst eller från någon av ljudkortets portar " +"med ett externt JACK fördelningsprogram som QJackCtl. Du kan också ställa in " +"ett instruments ljudingång till en av Rosegardens inbyggda " +"delnivåutgångar eller huvudutgångar för ihopmixningar." + +#. Tag: para +#: index.docbook:1337 +#, no-c-format +msgid "" +"An instrument's output connection defines where the audio goes when played. " +"Instruments default to sending their audio to Rosegarden's master output, " +"which is another (stereo pair of) external JACK port(s) that can then be " +"connected up using the same external JACK router. However, Rosegarden also " +"supports up to eight internal submaster busses, to which you can send " +"instrument outputs instead so as to group instruments into related " +"categories. You can control the number and routing of these in the audio mixer." +msgstr "" +"Ett instruments utgångsanslutning definierar var ljudet tar vägen när det " +"spelas upp. Instrumentens normalinställning är att skicka ljud till " +"Rosegardens huvudutgång, som är en annan extern JACK port (eller ett par " +"portar vid stereo), som därefter kan anslutas genom att använda samma " +"externa JACK fördelningsprogram. Rosegarden stöder dock också upp till " +"åtta interna delutgångsbussar, dit du kan skicka utdata från instrument " +"istället, för att gruppera instrument i samhörande kategorier. Du kan " +"styra antalet och fördelningen av dem i ljudmixern." + +#. Tag: para +#: index.docbook:1348 +#, no-c-format +msgid "" +"Rosegarden currently supports effects using a set of pre-fader insert " +"effects slots for each audio instrument. You cannot yet assign effects to " +"the submaster busses, and Rosegarden does not yet support send effects, " +"although you can obtain similar results using an external JACK effects and " +"mixing architecture." +msgstr "" +"Rosegarden stöder för närvarande effekter med en uppsättning " +"effektplatser som infogas innan toningen för varje ljudinstrument. Du kan " +"ännu inte tilldela effekter till delnivåbussarna, och Rosegarden stöder " +"ännu inte att skicka effekter, även om du kan uppnå liknande resultat " +"genom att använda JACK externa effekter och mixningsarkitektur." + +#. Tag: para +#: index.docbook:1356 +#, no-c-format +msgid "" +"Some further details of audio routing configuration, mixing, and effects are " +"discussed in the audio mixer, " +"instrument parameter " +"box and audio plugins " +"sections." +msgstr "" +"Några ytterligare detaljer angående inställning av ljudfördelning, " +"mixning och effekter beskrivs i avsnitten ljudmixern, instrumentparameterrutan och ljudinsticksmoduler." + +#. Tag: title +#: index.docbook:1365 +#, no-c-format +msgid "The Audio Mixer" +msgstr "Ljudmixern" + +#. Tag: phrase +#: index.docbook:1373 +#, no-c-format +msgid "&rosegarden;'s Audio Mixer" +msgstr "&rosegarden;s ljudmixer" + +#. Tag: para +#: index.docbook:1379 +#, no-c-format +msgid "" +"Rosegarden's audio mixer window, reached through Composition Studio " +"Audio Mixer, resembles a hardware " +"audio mixer and provides a way to see and change the state of a number of " +"audio instruments at once. It contains many of the same controls as found in " +"the audio and synth plugin instrument parameter " +"boxes, most importantly a playback level meter and fader control for " +"each audio and synth plugin instrument, as well as routing controls, pan, " +"mono/stereo and effects plugin slots." +msgstr "" +"Rosegardens ljudmixningsfönster, som visas med Komposition Studio " +"Ljudmixer, liknar en ljudmixer i " +"hårdvara och tillhandahåller ett sätt att se och ändra tillståndet för " +"ett antal ljudinstrument på en gång. Den innehåller många likadana " +"knappar som finns i ljud- och syntinsticksmodulernas " +"instrumentparameterrutor, där de viktigaste är mätaren av " +"uppspelningsnivå och toningskontroll för varje ljudinstrument och " +"syntinsticksmodulinstrument, samt fördelningskontroll, panorering, " +"mono/stereo och platser för effektinsticksmoduler." + +#. Tag: para +#: index.docbook:1395 +#, no-c-format +msgid "" +"The audio mixer window is also where you see and control the master audio " +"output level (at the far right of the picture above), as well as the record " +"level (to the left of the master fader) and submaster output levels." +msgstr "" +"Ljudmixerfönstret är också platsen där du ser och styr huvudljudnivån " +"(längst till höger i bilden ovan), samt inspelningsnivån (till vänster " +"om huvudtoningen) och delutnivåer." + +#. Tag: para +#: index.docbook:1401 +#, no-c-format +msgid "" +"The audio mixer's Settings menu is particularly relevant. " +"Apart from controlling what will be shown in the mixer window, this menu " +"also contains the audio " +"routing settings for the number of stereo audio record inputs " +"available and the number of submasters. These are studio settings whose " +"values are saved with your Rosegarden format file." +msgstr "" +"Menyn Inställningar " +"i ljudmixern är särskilt relevant. Förutom att styra vad som visas i " +"mixerfönstret, innehåller menyn också inställningen av ljudfördelningen för antalet " +"ljudinspelningsingångar i stereo som är tillgängliga och för antalet " +"delnivåutgångar. De är studioinställningar som sparas med din Rosegarden " +"formatfil." + +#. Tag: para +#: index.docbook:1411 +#, no-c-format +msgid "" +"Note that if you are not actually using any submasters (i.e. if there are no " +"instruments configured to route their output to a submaster) you may see a " +"small performance improvement if you set the number of submasters explicitly " +"to None, rather than keeping unused ones in the configuration." +msgstr "" +"Observera att om du i själva verket inte använder några delnivåer (dvs. " +"om det inte finns några instrument som är inställda att skicka sin " +"utsignal till en delnivå) kan du se en liten prestandaförbättring om du " +"uttryckligen ställer in antalet delnivåer till inga, istället för att " +"behålla oanvända i inställningen." + +#. Tag: title +#: index.docbook:1420 +#, no-c-format +msgid "The MIDI Mixer" +msgstr "MIDI-mixern" + +#. Tag: phrase +#: index.docbook:1428 +#, no-c-format +msgid "&rosegarden;'s MIDI Mixer" +msgstr "&rosegarden;s MIDI-mixer" + +#. Tag: para +#: index.docbook:1433 +#, no-c-format +msgid "" +"Rosegarden's MIDI mixer window, reached through Composition Studio " +"MIDI Mixer, provides a way to see " +"and edit the instrument parameter " +"values for a number of MIDI instruments at once." +msgstr "" +"Rosegardens MIDI-mixningsfönster, som visas med Komposition Studio " +"MIDI-mixer, tillhandahåller ett " +"sätt att se och redigera instrumentparametervärd" +"en för ett antal MIDI-instrument på en gång." + +#. Tag: para +#: index.docbook:1443 +#, no-c-format +msgid "" +"The window is organised using a tabbed pane. Along the bottom, you will see " +"one tab for each playback MIDI device in your studio configuration. When you " +"select a device tab, the rest of the window will update to show the controls " +"for the 16 instruments of that device." +msgstr "" +"Fönstret är organiserat som en ruta med flikar. Längs nederkanten ser du " +"en flik för varje MIDI-uppspelningsenhet i studioinställningen. När en " +"enhetsflik väljes, uppdateras resten av fönstret för att visa knapparna " +"för enhetens 16 instrument." + +#. Tag: para +#: index.docbook:1450 +#, no-c-format +msgid "" +"The controls shown for each instrument are those set up in the control " +"parameter manager, as well as volume (corresponding to the MIDI volume " +"control change, not to MIDI velocity or audio dB levels) and an approximate " +"output level indicator." +msgstr "" +"Knapparna som visas för varje instrument är de som ställts in i " +"hanteringen av styrparametrar, samt volym (som motsvarar ändring av " +"MIDI-volymstyrningen, inte en MIDI-ljudstyrka eller ljudnivå i decibel) och " +"en ungefärlig utnivåindikator." + +#. Tag: title +#: index.docbook:1460 +#, no-c-format +msgid "Audio Plugins" +msgstr "Ljudinsticksmoduler" + +#. Tag: para +#: index.docbook:1461 +#, no-c-format +msgid "" +"An audio plugin is a piece of software, separate from Rosegarden, that " +"Rosegarden can load and use in order to perform a particular audio " +"processing task. These can be broadly divided into effects plugins and synth " +"plugins. Effects plugins take an audio input and manipulate it to produce a " +"different audio output; synth plugins take MIDI-like events as input and " +"turn them into audio output. Rosegarden uses the Linux standard LADSPA " +"plugin API for effects and the DSSI plugin API for synths, permitting the " +"use of large numbers of open-source plugins made available by many " +"developers." +msgstr "" +"En ljudinsticksmodul är en programvarumodul, skild från Rosegarden, men " +"som Rosegarden kan ladda och använda för att utföra en viss " +"ljudbehandlingsuppgift. De kan grovt delas upp i effektinsticksmoduler och " +"syntinsticksmoduler. Effektinsticksmoduler tar ljudindata och behandlar det " +"för att skapa annorlunda ljudutdata. Rosegarden använder Linux-standarden " +"LADSPA för effektinsticksmodulernas programmeringsgränssnitt, och DSSI " +"för syntinsticksmodulernas programmeringsgränssnitt, vilket gör det " +"möjligt att använda ett stort antal insticksmoduler med öppen källkod " +"som gjorts tillgängliga av många utvecklare." + +#. Tag: para +#: index.docbook:1472 +#, no-c-format +msgid "" +"The use of plugins has a cost in CPU time, as audio processing in real time " +"usually takes a significant amount of work even on a modern CPU. It also has " +"a potential cost in reliability: when Rosegarden is running a plugin, if the " +"plugin hangs or crashes, so does Rosegarden. Many plugins are very reliable, " +"but it's inevitable that some will not be so well tested." +msgstr "" +"Användning av insticksmoduler ger en kostnad i processortid, eftersom " +"ljudbehandling i realtid oftast kräver en väsentlig mängd arbete till och " +"med med en modern processor. Det ger också en potentiell kostnad i " +"tillförlitlighet: När Rosegarden kör en insticksmodul, och " +"insticksmodulen hänger sig eller kraschar, så gör Rosegarden också det. " +"Många insticksmoduler är mycket tillförlitliga, men det är oundvikligt " +"att vissa inte är så vältestade." + +#. Tag: title +#: index.docbook:1481 +#, no-c-format +msgid "Effects plugins" +msgstr "Effektinsticksmoduler" + +#. Tag: para +#: index.docbook:1481 +#, no-c-format +msgid "" +"An effects plugin is something that you can use to modify an audio signal in " +"a controllable way. Examples include reverb, delay effects, dynamic " +"compression and so on." +msgstr "" +"En effektinsticksmodul är något som du kan använda för att ändra en " +"ljudsignal på ett styrbart sätt. Exempel omfattar eko, " +"fördröjningseffekter, dynamisk komprimering och så vidare." + +#. Tag: para +#: index.docbook:1486 +#, no-c-format +msgid "" +"Every audio or synth-plugin instrument in Rosegarden has five associated " +"effects slots. By default these are empty, but you can load plugins into " +"them in order to chain up to five effects onto the audio signal before it " +"goes through fader level and pan processing." +msgstr "" +"Varje ljud- eller syntinsticksmodulinstrument i Rosegarden har fem " +"tillhörande effektplatser. Normalt är de tomma, men du kan ladda " +"insticksprogram i dem för att bilda en kedja med upp till fem effekter för " +"ljudsignalen innan den går igenom toningsnivå och panoreringsbehandling." + +#. Tag: para +#: index.docbook:1492 +#, no-c-format +msgid "" +"To load a plugin to a slot, click its button on the instrument parameter " +"box:" +msgstr "" +"För att ladda en insticksmodul på en plats, klicka på dess knapp i instrumentparameterruta" +"n:" + +#. Tag: phrase +#: index.docbook:1503 +#, no-c-format +msgid "Plugin Slot Buttons" +msgstr "Insticksplatsknappar" + +#. Tag: para +#: index.docbook:1508 +#, no-c-format +msgid "" +"(These buttons are also optionally available in the audio mixer window.)" +msgstr "" +"(Dessa knappar är också alternativt tillgängliga i ljudmixerns fönster.)" + +#. Tag: para +#: index.docbook:1511 +#, no-c-format +msgid "" +"Clicking a plugin button will pop up the plugin dialog. This shows you the " +"available categories of effects in the first menu; select one, and you can " +"then choose your plugin in the second menu." +msgstr "" +"Att klicka på en insticksmodulknapp visar insticksmoduldialogrutan. Den " +"visar tillgängliga effektkategorier i den första menyn. Markera en, så " +"kan du därefter välja insticksmodul i den andra menyn." + +#. Tag: phrase +#: index.docbook:1523 +#, no-c-format +msgid "A &rosegarden; Plugin Dialog" +msgstr "En insticksdialogruta i &rosegarden;" + +#. Tag: para +#: index.docbook:1529 +#, no-c-format +msgid "" +"Below the plugin selection menus, the dialog gives you a varying number of " +"rotary controllers showing all the modifiable parameters for the plugin you " +"have selected. To change a value, just click a rotary and drag up and down " +"or left and right. (Up or right to raise the value, down or left to lower " +"it.) You can also roll the mouse wheel to change the value, or click with " +"the middle mouse button to reset it to its initial default." +msgstr "" +"Under menyerna för val av insticksmoduler, har dialogrutan ett varierande " +"antal vridbara rattar som visar alla parametrar som kan ändras för " +"insticksprogrammet du har valt. För att ändra ett värde, klicka bara på " +"en ratt och dra uppåt och neråt, eller vänster och höger. (Uppåt " +"eller åt höger för att öka värdet, neråt eller åt vänster för att " +"minska det.) Du kan också rulla mushjulet för att ändra värdet, eller " +"klicka med musens mittenknapp för att återställa det till det " +"ursprungliga normalvärdet." + +#. Tag: para +#: index.docbook:1538 +#, no-c-format +msgid "" +"It is also possible to copy one plugin with its current configuration into " +"another slot, so as to use the same plugin settings with more than one " +"instrument, or to base one plugin configuration on another. Just click the " +"Copy button when you have the plugin set up the way you want it, and then " +"open another plugin slot's plugin dialog and click Paste." +msgstr "" +"Det är också möjligt att kopiera en insticksmodul med sin nuvarande " +"inställning till en annan plats, för att använda samma " +"insticksmodulinställningar för mer än ett instrument, eller för att " +"basera en insticksmodulinställning på en annan. Klicka bara på knappen " +"Kopiera när du har ställt in insticksmodulen som du vill ha den, och " +"öppna därefter dialogrutan för en annan insticksmodulplats och klicka på " +"Klistra in." + +#. Tag: para +#: index.docbook:1545 +#, no-c-format +msgid "" +"Finally, you can use the Bypass toggle to remove a plugin temporarily from " +"processing while retaining its configuration." +msgstr "" +"Till sist kan du använda åtgärden Förbikoppla för att tillfälligt ta " +"bort en insticksmodul från behandlingen, men ändå behålla dess " +"inställning." + +#. Tag: title +#: index.docbook:1551 +#, no-c-format +msgid "Synth plugins" +msgstr "Syntinsticksmoduler" + +#. Tag: para +#: index.docbook:1552 +#, no-c-format +msgid "" +"Synth plugins can be used in place of hardware or standalone soft-synth MIDI " +"devices, to generate sounds from your note event segments." +msgstr "" +"Syntinsticksmoduler kan användas istället för MIDI-enheter i hårdvara " +"eller fristående programvarusyntar, för att skapa ljud från segmenten med " +"tonhändelser." + +#. Tag: para +#: index.docbook:1557 +#, no-c-format +msgid "" +"Using a synth plugin gives you somewhat better control and repeatability " +"than using an external MIDI device, because Rosegarden will be able to load " +"the correct plugins for you and use the correct settings the next time you " +"load your same file. Plugins may also offer better timing resolution than " +"external MIDI devices, and synth plugin instruments have the advantage of " +"being routable like audio instruments, which also means you can add effects " +"plugins on top of them." +msgstr "" +"Att använda en syntinsticksmodul ger dig något bättre kontroll och " +"upprepningsbarhet än att använda en extern MIDI-enhet, eftersom Rosegarden " +"kan ladda rätt insticksmodul åt dig och använda riktiga inställningar " +"nästa gång du laddar samma fil. Insticksmoduler kan också ge bättre " +"tidsupplösning än externa MIDI-enheter, och syntinsticksmodulinstrument " +"har fördelen att vara fördelningsbara som ljudinstrument, vilket också " +"betyder att du kan lägga till effektinsticksmoduler ovanför dem." + +#. Tag: para +#: index.docbook:1567 +#, no-c-format +msgid "" +"To make use of a synth plugin, first assign a track to a synth plugin " +"instrument, and then load a synth plugin by clicking on the topmost button " +"in the instrument parameter " +"box:" +msgstr "" +"För att använda en syntinsticksmodul, tilldela först ett spår till " +"ett syntinsticksmodulinstrument, och ladda därefter en syntinsticksmodul " +"genom att klicka på den översta knappen i instrumentparameterruta" +"n:" + +#. Tag: phrase +#: index.docbook:1581 +#, no-c-format +msgid "Synth Plugin Buttons" +msgstr "Syntinsticksmodulknappar" + +#. Tag: para +#: index.docbook:1587 +#, no-c-format +msgid "" +"This will bring up the same plugin dialog as shown above for effects " +"plugins, but with a list of synth plugins instead of effects. Once again, " +"you will be shown the particular set of rotary parameters for the synth you " +"have selected. Synth plugins may also have \"programs\", selectable from a " +"menu -- this menu will only appear if you have chosen a synth that supports " +"them. When you have selected and configured a synth plugin for an " +"instrument, any MIDI data on tracks assigned to that instrument should play " +"through that synth, as should incoming MIDI data during recording or " +"monitoring." +msgstr "" +"Det här visar samma insticksmoduldialogruta som visas ovan för " +"effektinsticksmoduler, men med en lista över syntinsticksmoduler istället " +"för effekter. Återigen visas den särskilda uppsättning med vridbara " +"parametrar för synten du har valt. Syntinsticksmoduler kan också ha " +"\"program\" som kan väljas i en meny. Menyn visas bara om du har valt en " +"synt som stöder det. När du har valt och ställt in en syntinsticksmodul " +"för ett instrument, ska all MIDI-data på spår som tilldelas till det " +"instrumentet spelas via synten, liksom inkommande MIDI-data under inspelning " +"eller övervakning." + +#. Tag: title +#: index.docbook:1601 +#, no-c-format +msgid "Plugin native editor windows" +msgstr "Egna redigeringsfönster i en insticksmodul" + +#. Tag: para +#: index.docbook:1603 +#, no-c-format +msgid "" +"Most plugins can be controlled completely using the rotary controllers in " +"Rosegarden's plugin dialog. However, a few plugins (generally synths) also " +"have their own editor windows which can be switched on or off from " +"Rosegarden and which may provide more complete or more organised controls." +msgstr "" +"De flesta insticksmoduler kan styras helt och hållet med rattarna i " +"Rosegardens insticksmoduldialogruta. Dock har några få insticksmoduler (i " +"allmänhet syntar) också sina egna redigeringsfönster som kan aktiveras " +"eller inaktiveras från Rosegarden, och som kan tillhandahålla " +"fullständigare eller bättre organiserade knappar." + +#. Tag: para +#: index.docbook:1610 +#, no-c-format +msgid "" +"When you select a plugin that has its own editor window, the button at the " +"lower left of the plugin dialog labelled \"Editor\" will become active:" +msgstr "" +"När du väljer en insticksmodul som har sitt eget redigeringsfönster, " +"aktiveras knappen nere till vänster i insticksmodulens dialogruta som heter " +"\"Editor\":" + +#. Tag: phrase +#: index.docbook:1621 +#, no-c-format +msgid "A Plugin Editor Button" +msgstr "Redigeringsknappen i en insticksmodul" + +#. Tag: para +#: index.docbook:1627 +#, no-c-format +msgid "" +"(For synth plugins, there is a similar button in the instrument parameter " +"box.) Clicking this button should show the plugin's own editor window. Any " +"changes you make in this editor window should also be reflected in " +"Rosegarden's own plugin dialog, if visible, and of course should be saved in " +"your Rosegarden file as normal." +msgstr "" +"(För syntinsticksmoduler finns en liknande knapp i " +"instrumentparameterrutan.) Att klicka på knappen visar insticksmodulens " +"eget redigeringsfönster. Alla ändringar som du gör i redigeringsfönstret " +"ska också synas i Rosegardens egen insticksmoduldialogruta, och ska " +"naturligtvis sparas i din Rosegarden-fil som vanligt." + +#. Tag: title +#: index.docbook:1637 +#, no-c-format +msgid "Metronomes" +msgstr "Metronomer" + +#. Tag: para +#: index.docbook:1638 +#, no-c-format +msgid "" +"Rosegarden has two built-in metronomes, one for use during recording and one " +"that can be switched on during normal playback. They work by sending notes " +"to a MIDI instrument, and both metronomes use the same instrument, pitch and " +"velocity information." +msgstr "" +"Rosegarden har två inbyggda metronomer, en för användning under " +"inspelning och en som kan kopplas in under normal uppspelning. De fungerar " +"genom att skicka toner till ett MIDI-instrument, och båda metronomerna " +"använder samma instrument, tonhöjds- och ljudstyrkeinformation." + +#. Tag: phrase +#: index.docbook:1653 +#, no-c-format +msgid "&rosegarden;'s metronome configuration dialog" +msgstr "&rosegarden;s inställningsdialogruta för metronom" + +#. Tag: para +#: index.docbook:1658 +#, no-c-format +msgid "" +"To configure the metronomes, use Composition Studio " +"Manage Metronome to bring up the " +"metronome dialog. Here you can select a MIDI instrument for the metronome " +"and choose the metronome's resolution (whether it should tick once per beat, " +"once per subdivision of a beat, or only once per bar), pitch, and " +"velocities. Properties such as the actual voice the MIDI synth uses for the " +"metronome tick depend on the instrument selected, just as the voice used for " +"a MIDI track depends on the instrument that track is assigned to. You can " +"configure the instrument by assigning a track to it on the main window and " +"selecting the correct program from the instrument parameter box." +msgstr "" +"För att ställa in metronomerna, använd Komposition Studio " +"Hantera metronom för att visa " +"metronomdialogrutan. Här kan du välja ett MIDI-instrument för metronomen " +"och välja metronomens upplösning (om den ska ticka en gång per taktslag, " +"en gång per underavdelning av ett taktslag, eller bara en gång per takt), " +"tonhöjd och ljudstyrkor. Egenskaper som själva stämman som MIDI-synten " +"använder för metronomens tick beror på instrumentet som väljes, precis " +"som stämman för ett MIDI-spår beror på instrumentet som spåret är " +"tilldelat till. Du kan ställa in instrumentet genom att tilldela ett spår " +"till det i huvudfönstret och välja rätt program från " +"instrumentparameterrutan." + +#. Tag: para +#: index.docbook:1678 +#, no-c-format +msgid "" +"The record and play metronomes can be switched on or off from the Transport " +"window, using the metronome button. This button controls the record " +"metronome when recording is armed or in progress, and the play metronome at " +"other times. By default, the record metronome is switched on and the play " +"metronome switched off." +msgstr "" +"Metronomerna för inspelning och uppspelning kan aktiveras eller inaktiveras " +"från överföringsfönstret genom att använda metronomknappen. Knappen " +"styr inspelningsmetronomen när inspelning är förberedd eller pågår, och " +"annars uppspelningsmetronomen. Normalt är inspelningsmetronomen aktiverad " +"och uppspelningsmetronomen inaktiverad." + +#. Tag: para +#: index.docbook:1687 +#, no-c-format +msgid "" +"Rosegarden also has a \"visual metronome\": the transport window can be told " +"to flash brightly to mark each beat. See the " +"Transport section for more details." +msgstr "" +"Rosegarden har också en \"visuell metronom\": Överföringsfönstret kan " +"ställas in att blinka starkt för att markera varje taktslag. Se avsnittet " +"om överföringen för mer " +"detaljinformation." + +#. Tag: title +#: index.docbook:1695 +#, no-c-format +msgid "MIDI filters" +msgstr "MIDI-filter" + +#. Tag: phrase +#: index.docbook:1703 +#, no-c-format +msgid "The MIDI filter dialog" +msgstr "MIDI-filterdialogrutan" + +#. Tag: para +#: index.docbook:1709 +#, no-c-format +msgid "" +"Using this dialog you can decide which MIDI events Rosegarden will ignore or " +"accept, either when forwarding events using MIDI THRU or when simply " +"recording them. Use the check boxes on this dialog to tell Rosegarden which " +"types of MIDI events you don't want to forward or record." +msgstr "" +"Genom att använda den här dialogrutan kan du bestämma vilka " +"MIDI-händelser som Rosegarden ignorerar eller accepterar, antingen när " +"händelser skickas vidare med MIDI THRU, eller helt enkelt när de spelas " +"in. Använd kryssrutorna för att tala om för Rosegarden vilka typer av " +"MIDI-händelser som du inte vill skicka vidare eller spela in." + +#. Tag: title +#: index.docbook:1721 +#, no-c-format +msgid "External MIDI controllers" +msgstr "Externa MIDI-styrenheter" + +#. Tag: para +#: index.docbook:1722 +#, no-c-format +msgid "" +"Rosegarden's audio and MIDI mixer windows and main canvas can also be " +"controlled to some degree by an external MIDI device. To set this up, you " +"will need to use an ALSA MIDI connection manager such as qjackctl to connect " +"your MIDI controller device to Rosegarden's \"external controller\" input " +"and output MIDI ports." +msgstr "" +"Rosegardens ljud- och MIDI-mixningsfönster samt huvudfönstret kan " +"också i viss mån styras av en extern MIDI-enhet. För att ställa in det, " +"måste du använda ett ALSA MIDI-anslutningsprogram som qjackctl " +"för att ansluta MIDI-styrenheten till Rosegardens \"externa styringång\" " +"och MIDI-utgångarna." + +#. Tag: para +#: index.docbook:1730 +#, no-c-format +msgid "" +"Rosegarden accepts MIDI control change messages to adjust the mixer track " +"corresponding to the incoming MIDI channel on each controller event, and " +"also sends out MIDI messages when something is changed in a mixer track in " +"order to support controllers with powered faders or knobs." +msgstr "" +"Rosegarden tar emot MIDI-styrändringsmeddelanden för att justera mixerspåret " +"som motsvarar den inkommande MIDI-kanalen vid varje styrenhetshändelse, " +"och skickar också ut MIDI-meddelanden när något ändras i ett mixerspår " +"för att stödja styrenheter med motoriserade skjutreglage eller knappar." + +#. Tag: para +#: index.docbook:1737 +#, no-c-format +msgid "" +"Rosegarden accepts MIDI controller number 81 to change the currently active " +"window. Send controller 81 with data value 0-9 to select the main window, " +"10-19 to select the audio mixer window or 20-29 to select the MIDI mixer " +"window." +msgstr "" +"Rosegarden tar emot MIDI-styrenhet nummer 81 för att ändra fönstret som " +"för närvarande är aktivt. Skicka styrenhet 81 med datavärdet 0-9 för att " +"välja huvudfönstret, 10-19 för att välja ljudmixerfönstret eller 20-29 för " +"att välja MIDI-mixerfönstret." + +#. Tag: para +#: index.docbook:1741 +#, no-c-format +msgid "" +"Rosegarden accepts MIDI controller number 82 to change the currently " +"selected track in the main window. The stepping of this controller depends " +"on the number of tracks in the window -- the ratio of controller data value " +"to track number will be calculated so as to use the full MIDI controller " +"data range, provided there are no more than 128 tracks in the window." +msgstr "" +"Rosegarden tar emot MIDI-styrenhet nummer 82 för att ändra spår som " +"för närvarande är markerat i huvudfönstret. Stegningen av styrenheten " +"beror på antal spår i fönstret: förhållandet mellan styrenhetens " +"datavärde till spårnummer beräknas så att det fullständiga dataintervallet " +"i MIDI-styrenheten används, under förutsättning att det inte finns mer " +"än 128 spår i fönstret." + +#. Tag: title +#: index.docbook:1753 +#, no-c-format +msgid "Segment and Instrument Parameters" +msgstr "Segment- och instrumentparametrar" + +#. Tag: title +#: index.docbook:1756 +#, no-c-format +msgid "The Segment Parameter Box" +msgstr "Segmentparameterrutan" + +#. Tag: phrase +#: index.docbook:1765 +#, no-c-format +msgid "&rosegarden;'s segment parameter box" +msgstr "&rosegarden;s segmentparameterruta" + +#. Tag: para +#: index.docbook:1771 +#, no-c-format +msgid "" +"The segment parameter box lives at the left side of the Rosegarden main " +"window. (If you can't see it, try using Settings Show Segment and Instrument " +"Parameters .) It allows you to modify some " +"aspects of the selected segments." +msgstr "" +"Segmentparameterrutan hör hemma till vänster i Rosegardens huvudfönster. " +"(Om du inte kan se den, försök använda Inställningar Visa segment- och " +"instrumentparametrar.) Den låter dig ändra " +"vissa aspekter av markerade segment." + +#. Tag: para +#: index.docbook:1777 +#, no-c-format +msgid "" +"If a single segment is currently selected, its parameters will be shown in " +"the segment parameter box and can be edited there. If several segments are " +"selected, the parameter box will only show the current values where they are " +"the same for all of the selected segments -- but you can still edit them, " +"and your changes will apply to the whole selection." +msgstr "" +"Om ett enstaka segment för närvarande är markerat, visas dess parametrar " +"i segmentparameterrutan och kan redigeras där. Om flera segment är " +"markerade, visar parameterrutan bara nuvarande värden där de är samma " +"för alla markerade segment, men du kan fortfarande redigera dem och " +"ändringarna gäller för allt som är markerat." + +#. Tag: term +#: index.docbook:1786 +#, no-c-format +msgid "Label" +msgstr "Namn" + +#. Tag: para +#: index.docbook:1788 +#, no-c-format +msgid "" +"Shows the label of the selected segment (or segments, if they all have the " +"same label). Click the \"...\" button to edit the label." +msgstr "" +"Visar namnet på det markerade segmentet (eller segmenten, om alla har " +"samma namn). Klicka på knappen \"...\" för att redigera namnet." + +#. Tag: term +#: index.docbook:1795 +#, no-c-format +msgid "Repeat" +msgstr "Upprepa" + +#. Tag: para +#: index.docbook:1797 +#, no-c-format +msgid "" +"Switches repeat on or off for the selected segments. A repeating segment " +"will repeat until the start of the following segment on the same track, or " +"until the end of the composition if there is no following segment." +msgstr "" +"Stänger av eller sätter på upprepning för markerade segment. Ett " +"upprepande segment upprepas till efterföljande segment börjar i samma " +"spår, eller till kompositionens slut om det inte finns något " +"efterföljande segment." + +#. Tag: para +#: index.docbook:1802 +#, no-c-format +msgid "" +"The repeated parts of a repeating segment are shown on the main canvas in a " +"fainter colour than the original segment. You can turn them into real " +"editable copies of the original segment either by using " +"Segments Turn Repeats into " +"Copies , or simply by double-clicking on the " +"individual repeating blocks." +msgstr "" +"Upprepade delar av ett upprepande segment visas med en svagare färg på " +"huvudduken än det ursprungliga segmentet. Du kan ändra dem till riktiga " +"redigerbara kopior av det ursprungliga segmentet genom att antingen använda " +"Segment Omvandla " +"upprepningar till kopior, eller genom att helt " +"enkelt dubbelklicka på enskilda upprepade block." + +#. Tag: term +#: index.docbook:1815 +#, no-c-format +msgid "Quantize" +msgstr "Kvantisera" + +#. Tag: para +#: index.docbook:1817 +#, no-c-format +msgid "" +"Shows the quantization setting for the selected segments. You can change " +"this to quickly quantize the start times of all their notes. For more " +"advanced quantization, use Segments Quantize... " +". See Quantization for " +"more details." +msgstr "" +"Visar kvantiseringsinställningen för markerade segment. Du kan ändra den " +"för att snabbt kvantisera starttider för alla deras toner. För mer " +"avancerad kvantisering, använd Segment Kvantisera... " +". Se Kvantisering för " +"mer detaljinformation." + +#. Tag: term +#: index.docbook:1832 +#, no-c-format +msgid "Transpose" +msgstr "Transponera" + +#. Tag: para +#: index.docbook:1834 +#, no-c-format +msgid "" +"Shows the transposition (in semitones) currently applied to the selected " +"segments. This transposition is applied when the segment is played, and is " +"not shown in the notes displayed in the matrix, notation or event list " +"editors. You can use this to quickly change the pitch of part or all of a " +"composition." +msgstr "" +"Visar transponeringen (i halvtonssteg) som för närvarande används för det " +"markerade segmentet. Transponeringen utförs när segmentet spelas upp, och " +"visas inte med noterna i matris-, not- eller händelseeditorerna. Du " +"kan använda den för att snabbt ändra tonhöjd för en del eller hela " +"kompositionen." + +#. Tag: term +#: index.docbook:1843 +#, no-c-format +msgid "Delay" +msgstr "Fördröjning" + +#. Tag: para +#: index.docbook:1845 +#, no-c-format +msgid "" +"Shows the delay currently in effect on the selected segments. You can set a " +"delay here in order to cause an entire segment to play later than written. " +"This delay is applied when the segment is played, and is not shown in the " +"notes displayed in the matrix, notation or event list editors." +msgstr "" +"Visar fördröjningen som för närvarande gäller för markerade segment. " +"Du kan ställa in en fördröjning här för att göra att ett helt segment " +"spelas upp senare än skrivet. Fördröjningen utförs när segmentet spelas " +"upp, och visas inte med noterna i matris-, not- eller " +"händelseeditorerna." + +#. Tag: para +#: index.docbook:1851 +#, no-c-format +msgid "" +"You can set a delay either in musical time (by choosing a note duration from " +"the delay dropdown), in which time the exact delay will depend on the tempo, " +"or in real time (by choosing a time in milliseconds from the dropdown)." +msgstr "" +"Du kan antingen ange en fördröjning med metronomtid (genom att välja " +"notvärde i fördröjningskombinationsrutan), då fördröjningens exakta " +"tid beror på tempot, eller med klocktid (genom att välja tiden i " +"millisekunder i kombinationsrutan)." + +#. Tag: term +#: index.docbook:1862 +#, no-c-format +msgid "Colour" +msgstr "Färg" + +#. Tag: para +#: index.docbook:1864 +#, no-c-format +msgid "" +"Shows the colour being used for the display of the selected segments. You " +"can choose another colour from the dropdown, or choose the \"Add New " +"Colour\" option if you want a colour not in the dropdown." +msgstr "" +"Visar färgen som används för att visa markerade segment. Du kan välja en " +"annan färg i kombinationsrutan, eller välja alternativet \"Lägg till ny " +"färg\" om du vill ha en färg som inte finns i kombinationsrutan." + +#. Tag: para +#: index.docbook:1869 +#, no-c-format +msgid "" +"You can also manage and rename colours using Composition Edit Document " +"Properties... (then choose the Colour page on " +"the document properties dialog). The modified colour palette will be saved " +"with the composition in the Rosegarden file." +msgstr "" +"Du kan också hantera och byta namn på färger genom att använda " +"Komposition Redigera " +"dokumentegenskaper... (och därefter välja sidan " +"Färg i dialogrutan med dokumentegenskaper). Den ändrade färgpaletten " +"sparas med kompositionen i Rosegarden-filen." + +#. Tag: phrase +#: index.docbook:1884 +#, no-c-format +msgid "&rosegarden;'s colour manager" +msgstr "&rosegarden;s färghantering" + +#. Tag: title +#: index.docbook:1897 +#, no-c-format +msgid "The Instrument Parameter Box" +msgstr "Instrumentparameterrutan" + +#. Tag: para +#: index.docbook:1898 +#, no-c-format +msgid "" +"The instrument parameter box can be found at the lower left of the " +"Rosegarden main window, below the Segment Parameter Box. " +"(If you can't see it, try using Settings Show Segment and Instrument " +"Parameters .)" +msgstr "" +"Instrumentparameterrutan finns i nedre vänstra hörnet av Rosegardens " +"huvudfönster, nedanför segmentparameterrutan. " +"(Om du inte kan se den, försök använda Inställningar Visa segment- och " +"instrumentparametrar.)" + +#. Tag: para +#: index.docbook:1907 +#, no-c-format +msgid "" +"It shows you which instrument is assigned to the current selected track, and " +"contains all of the editable controls for that instrument. Remember that " +"because any number of tracks can be assigned to the same instrument, the " +"settings in this box may affect more than one track at a time." +msgstr "" +"Den visar vilka instrument som tilldelats nuvarande markerat spår, och " +"innehåller alla redigerbara knapparna för instrumentet. Kom ihåg att " +"eftersom hur många spår som helst kan tilldelas till samma instrument, kan " +"inställningarna i rutan påverka mer än ett spår åt gången." + +#. Tag: para +#: index.docbook:1914 +#, no-c-format +msgid "" +"The layout and contents of the instrument parameter box depend on the type " +"of instrument: MIDI, audio, or synth plugin." +msgstr "" +"Utseendet och innehållet i instrumentparameterrutan beror på " +"instrumenttypen: MIDI, ljud eller syntinsticksmodul." + +#. Tag: title +#: index.docbook:1920 +#, no-c-format +msgid "MIDI Instrument Parameters" +msgstr "MIDI-instrumentparametrar" + +#. Tag: phrase +#: index.docbook:1928 +#, no-c-format +msgid "&rosegarden;'s instrument parameter box for a MIDI instrument" +msgstr "&rosegarden;s instrumentparameterruta för ett MIDI-instrument" + +#. Tag: para +#: index.docbook:1933 +#, no-c-format +msgid "" +"When you select a track assigned to a MIDI instrument, the instrument " +"parameter box shows MIDI parameters." +msgstr "" +"När du markerar ett spår som är tilldelat till ett MIDI-instrument, visar " +"instrumentparameterrutan MIDI-parametrar." + +#. Tag: para +#: index.docbook:1936 +#, no-c-format +msgid "" +"At the top, this box shows the name of the instrument and the connection " +"that its device is using." +msgstr "" +"Längst upp visar rutan instrumentets namn och anslutningen som dess enhet " +"använder." + +#. Tag: para +#: index.docbook:1940 +#, no-c-format +msgid "" +"Below that, you can see and edit the MIDI channel number and the bank and program settings that should " +"be sent to the instrument at the start of playback (including a " +"\"percussion\" toggle that controls whether only percussion programs should " +"be offered in these settings)." +msgstr "" +"Därunder kan du se och redigera MIDI-kanalnumret och inställningar av " +"bank och program som ska skickas " +"till instrumentet vid uppspelningens start (inklusive kryssrutan " +"\"Slagverk\" som styr om bara slagverksprogram ska erbjudas i " +"inställningarna)." + +#. Tag: para +#: index.docbook:1947 +#, no-c-format +msgid "" +"Finally this box shows you the controllers available for this device (those " +"for a General MIDI device are shown above). Any settings you make here will " +"be sent to this instrument's channel at the start of playback." +msgstr "" +"Till sist visar rutan tillgängliga styrenheter för enheten (de för en " +"generell MIDI-enhet visas ovan). Alla inställningar som du gör här " +"skickas till instrumentets kanal vid uppspelningens start." + +#. Tag: title +#: index.docbook:1955 +#, no-c-format +msgid "Audio Instrument Parameters" +msgstr "Ljudinstrumentparametrar" + +#. Tag: phrase +#: index.docbook:1963 +#, no-c-format +msgid "&rosegarden;'s instrument parameter box for an audio instrument" +msgstr "&rosegarden;s instrumentparameterruta för ett ljudinstrument" + +#. Tag: para +#: index.docbook:1968 +#, no-c-format +msgid "" +"When you select an audio track, the instrument parameter box shows audio " +"parameters." +msgstr "" +"När du markerar ett ljudspår, visar instrumentparameterrutan " +"ljudparametrar." + +#. Tag: para +#: index.docbook:1972 +#, no-c-format +msgid "" +"The box has two main faders, one with a blue surround for playback level and " +"the other with a red surround for the record level when recording to this " +"instrument. Between them is a playback level meter." +msgstr "" +"Rutan har två huvudtoningar, en omgiven av blått för uppspelning och den " +"andra omgiven av rött för inspelningsnivå vid inspelning till " +"instrumentet. Mellan dem finns en mätare av uppspelningsnivå." + +#. Tag: para +#: index.docbook:1978 +#, no-c-format +msgid "" +"The two menus at the top of the box are used to select the input and output " +"audio routing for this instrument. Below them you can select whether the " +"instrument is mono or stereo, and the pan setting for position in the stereo " +"field. (Audio instruments are always ultimately stereo, because the pan " +"setting is always applied. But if you set the instrument to mono, it will " +"reduce any audio data and effect outputs to mono before applying pan.)" +msgstr "" +"De två menyerna längst upp i rutan används för att välja ingångs- och " +"utgångsfördelning för instrumentet. Under dem kan du välja om " +"instrumentet är mono eller stereo, och panoreringsinställning för plats i " +"stereofältet. (Ljudinstrument är alltid till sist stereo, eftersom " +"panoreringsinställningen alltid tillämpas. Men om du ställer in " +"instrumentet till mono, reduceras all ljuddata och effektutdata till mono " +"innan panoreringen tillämpas.)" + +#. Tag: para +#: index.docbook:1987 +#, no-c-format +msgid "" +"The column of five buttons at lower left are the effects slots. Click on " +"them to select and activate plugin effects for this audio instrument, and to " +"control them using the plugin editor dialog. These are insert effects, " +"applied in order from top to bottom before the fader and pan." +msgstr "" +"Kolumnen med fem knappar längst ner till vänster är effektplatserna. " +"Klicka på dem för att välja och aktivera insticksmoduler för " +"ljudinstrumentet, och för att styra dem med redigeringsdialogrutan för " +"insticksmoduler. Detta är infogade effekter, som utförs i ordning " +"uppifrån och ner innan toning och panorering." + +#. Tag: title +#: index.docbook:1996 +#, no-c-format +msgid "Synth Plugin Instrument Parameters" +msgstr "Instrumentparametrar för syntinsticksmoduler" + +#. Tag: phrase +#: index.docbook:2004 +#, no-c-format +msgid "&rosegarden;'s instrument parameter box for a synth plugin instrument" +msgstr "&rosegarden;s instrumentparameterruta för ett syntinsticksmodulinstrument" + +#. Tag: para +#: index.docbook:2009 +#, no-c-format +msgid "" +"When you select a track assigned to a synth plugin instrument, the " +"instrument parameter box shows synth parameters. You will notice that " +"although a synth plugin track uses segments with MIDI data in them, in terms " +"of control and routing it behaves more like an audio track." +msgstr "" +"När du markerar ett spår som är tilldelat till ett " +"syntinsticksmodulinstrument, visar instrumentparameterrutan syntparametrar. " +"Du märker att även om en syntinsticksmodul använder segment med " +"MIDI-data, så beter den sig mer som ett ljudspår när det gäller styrning " +"och fördelning." + +#. Tag: para +#: index.docbook:2015 +#, no-c-format +msgid "" +"The most important control here is the button at top left (saying Xsynth in " +"the above picture) which shows the name of the synth plugin in use for this " +"instrument. Click this to select a particular synth and control it in the " +"standard Rosegarden plugin editor dialog. Once you've selected a plugin, you " +"may also be able to click the Editor button below it in order to open a " +"dedicated GUI editor for the particular plugin (if the plugin has one)." +msgstr "" +"Den viktigaste knappen här är den längst upp till vänster (som lyder " +"Xsynth i bilen ovan), som visar namnet på syntinsticksmodulen som används " +"för instrumentet. Klicka på den för att välja en viss synt och styra den " +"i Rosegardens vanliga redigeringsdialog för insticksmoduler. När du väl " +"har valt en insticksmodul, kanske du också kan klicka på " +"redigeringsknappen nedanför för att öppna en dedicerad grafisk editor " +"för den särskilda insticksmodulen (om insticksmodulen har någon)." + +#. Tag: para +#: index.docbook:2024 +#, no-c-format +msgid "" +"The remaining controls here are the same as for audio instruments: the " +"playback fader, playback level, output routing, mono/stereo and pan settings " +"and effects slots are all exactly the same." +msgstr "" +"Återstående knappar här är samma som för ljudinstrument: " +"Uppspelningstoning, uppspelningsnivå, utgångsfördelning, mono/stereo, " +"panoreringsinställningar och effektplatser är alla exakt likadana." + +#. Tag: title +#: index.docbook:2034 +#, no-c-format +msgid "Quantization" +msgstr "Kvantisering" + +#. Tag: para +#: index.docbook:2035 +#, no-c-format +msgid "" +"\"Quantization\" is the process of repositioning notes and other events so " +"that they start or finish on exact beat divisions. It is traditionally used " +"to make an approximate performance into a precise but rather " +"mechanical-sounding one -- either because precision is the desired effect, " +"or for reasons such as making the notes clearer in notation." +msgstr "" +"\"Kvantisering\" är processen att flytta toner och andra händelser så att " +"de börjar eller avslutas på exakta taktdelar. Det används traditionellt " +"för att göra ett ungefärligt utförande till ett precist men som låter " +"ganska mekaniskt, antingen på grund av att precision är önskad effekt, " +"eller på grund av orsaker som att göra noter tydligare i notering." + +#. Tag: para +#: index.docbook:2044 +#, no-c-format +msgid "" +"For general quantization, use Segments Quantize " +" in the main window or Adjust Quantize " +" in matrix or notation editors. This shows you a dialog in " +"which you can select the precise quantization parameters you need, and then " +"it applies these to all of the selected segments or notes. (You can also " +"quickly reach this dialog by pressing the \"=\" key.)" +msgstr "" +"För allmän kvantisering, använd Segment " +"Kvantisera i huvudfönstret eller " +"Justera " +"Kvantisera i matriseditorn eller " +"notbehandlarna. Det visar en dialogruta där du kan välja precis de " +"kvantiseringsparametrarna du behöver, och tillämpar dem på alla markerade " +"segment eller toner. (Du kan också snabbt nå dialogrutan genom att " +"trycka på tangenten \"=\".)" + +#. Tag: phrase +#: index.docbook:2069 +#, no-c-format +msgid "&rosegarden;'s quantize dialog" +msgstr "&rosegarden;s kvantiseringsdialogruta" + +#. Tag: para +#: index.docbook:2075 +#, no-c-format +msgid "" +"The quantize dialog offers a selection of quantizers, each with its own set " +"of parameters. The quantizers available are:" +msgstr "" +"Kvantiseringsdialogrutan erbjuder ett urval kvantiseringsmetoder, var och en " +"med sin egen uppsättning parametrar. Tillgängliga kvantiseringsmetoder är:" + +#. Tag: term +#: index.docbook:2082 +#, no-c-format +msgid "Grid quantizer" +msgstr "Rutnätskvantisering" + +#. Tag: para +#: index.docbook:2084 +#, no-c-format +msgid "" +"The grid quantizer moves the start times of notes so that they start at the " +"nearest point on some grid (defined by various parameters of the quantizer). " +"Thus notes that initially vary slightly in start time will be aligned by the " +"quantizer, making for a more precise and mechanical performance." +msgstr "" +"Rutnätskvantiseringen flyttar starttider för toner så att de börjar på " +"den närmaste punkten i ett rutnät (definierat av de olika parametrarna " +"för kvantiseringen). På så sätt justeras toner som ursprungligen " +"varierar något i starttid av kvantiseringen, vilket ger ett mer precist och " +"mekaniskt utförande." + +#. Tag: term +#: index.docbook:2095 +#, no-c-format +msgid "Legato quantizer" +msgstr "Legato-kvantisering" + +#. Tag: para +#: index.docbook:2097 +#, no-c-format +msgid "" +"The legato quantizer carries out a simple grid quantization, and also " +"adjusts the note durations so as to remove any gaps between notes by " +"extending each note so as to (at least) continue until the start of the " +"following one. You can also obtain this legato effect without the " +"accompanying grid quantization using the Adjust Quantize " +"Legato function in the Matrix " +"editor." +msgstr "" +"Legato-kvantiseringen utför en enkel rutnätskvantisering, och justerar " +"också notvärdena så att eventuella avstånd mellan tonerna tas bort " +"genom att förlänga varje not så att den (åtminstone) fortsätter till " +"början på nästa. Du kan också få denna legato-effekt utan tillhörande " +"rutnätskvantisering med funktionen Justera Kvantisera " +"Legato i matriseditorn." + +#. Tag: term +#: index.docbook:2113 +#, no-c-format +msgid "Heuristic notation quantizer" +msgstr "Heuristisk kvantisering" + +#. Tag: para +#: index.docbook:2115 +#, no-c-format +msgid "" +"The notation quantizer attempts to adjust note start times and durations so " +"as to produce readable notation. See Notation from performance data for a " +"description of this quantizer and its uses." +msgstr "" +"Kvantiseringen försöker justera starttider och notvärden för " +"toner så att en läsbar notering skapas. Se Notskrift från utförandedata för en " +"beskrivning av kvantiseringen och dess användning." + +#. Tag: para +#: index.docbook:2125 +#, no-c-format +msgid "The grid quantizer has the following adjustable parameters:" +msgstr "Rutnätskvantiseringen har följande justerbara parametrar:" + +#. Tag: term +#: index.docbook:2129 index.docbook:3711 +#, no-c-format +msgid "Base grid unit" +msgstr "Grundenhet för rutnät" + +#. Tag: para +#: index.docbook:2131 +#, no-c-format +msgid "This is the size of the grid used for quantization." +msgstr "Det här är storleken på rutnätet som används för kvantiseringen." + +#. Tag: term +#: index.docbook:2137 +#, no-c-format +msgid "Swing" +msgstr "Svaj" + +#. Tag: para +#: index.docbook:2139 +#, no-c-format +msgid "" +"This is a percentage figure which adjusts the degree by which alternate " +"beats are quantized \"late\"." +msgstr "" +"Det här är ett procenttal som justerar graden som alternerande taktslag " +"kvantiseras \"sent\"." + +#. Tag: para +#: index.docbook:2141 +#, no-c-format +msgid "" +"If set to None (the default), quantization will be to an even grid spaced " +"according to the base grid unit." +msgstr "" +"Om inställt till inget (förvalt värde), görs kvantiseringen till ett " +"jämt rutnät med avstånd enligt grundenheten för rutnätet." + +#. Tag: para +#: index.docbook:2144 +#, no-c-format +msgid "" +"If set to 100%, every second grid line will be placed two-thirds of the " +"distance between the previous and next ones, instead of only half. This will " +"result in notes being quantized to the first and third triplets of a swing " +"beat." +msgstr "" +"Om inställd till 100 %, placeras varannan rutnätslinje två tredjedelar av " +"avståndet mellan föregående och nästa, istället för halvvägs. Det " +"gör att toner kvantiseras till första och tredje triolen med en svajig " +"takt." + +#. Tag: para +#: index.docbook:2150 +#, no-c-format +msgid "" +"Other settings will produce proportionately varying degrees of swinginess. " +"You can also set this parameter to negative figures (for alternate beats to " +"start early) or to figures greater than 100%." +msgstr "" +"Övriga inställningar ger proportionellt varierande grad av svaj. Du kan " +"också ställa in parametern till negativa värden (för att omväxlande " +"taktslag ska börja tidigare) eller till värden större än 100 %." + +#. Tag: term +#: index.docbook:2158 +#, no-c-format +msgid "Iterative amount" +msgstr "Itereringsvärde" + +#. Tag: para +#: index.docbook:2160 +#, no-c-format +msgid "" +"The default behaviour of the grid quantizer is to move each note exactly " +"onto its nearest grid line. But if you set the iterative amount to something " +"less than 100% (the \"Full quantize\" default), each note will only be moved " +"that percentage of the distance toward its nearest grid line, resulting in a " +"nearly-but-not-quite quantized effect." +msgstr "" +"Rutnätskvantiseringens normalbeteende är att exakt flytta varje not till " +"den närmaste rutnätslinjen, men om du ställer in iterationsgränsen till " +"något som är mindre än 100 % (normalvärdet \"Fullständig " +"kvantisering\") flyttas varje not bara den procentandelen av avståndet till " +"närmaste rutnätslinje, vilket resulterar i en kvantiseringseffekt som " +"nästan utförs, men inte helt och hållet." + +#. Tag: para +#: index.docbook:2166 +#, no-c-format +msgid "" +"This quantizer may be applied repeatedly so as to try out gradually " +"increasing degrees of quantization, hence the name \"iterative\". Use " +" Adjust " +"Quantize Repeat Last " +"Quantize in the Matrix editor to do so." +msgstr "" +"Kvantiseringen kan utföras upprepade gånger, för att pröva gradvis " +"ökande kvantiseringsgrader, därav namnet \"iterativ\". Använd " +"Justera " +"Kvantisera Upprepa senaste " +"kvantisering i matriseditorn för att göra det." + +#. Tag: term +#: index.docbook:2179 +#, no-c-format +msgid "Quantize durations as well as start times" +msgstr "Kvantisera både notvärden och starttider" + +#. Tag: para +#: index.docbook:2181 +#, no-c-format +msgid "" +"If this option is enabled, the quantizer will quantize the notes' end times " +"to the same grid as their start times." +msgstr "" +"Om det här alternativet är aktiverat, kvantiseras tonernas sluttider till " +"samma rutnät som deras starttider." + +#. Tag: para +#: index.docbook:2188 +#, no-c-format +msgid "" +"The quantize dialog also has an optional Advanced section containing further " +"options for notation quantization." +msgstr "" +"Kvantiseringsdialogrutan har också en valfri avancerad sektion som " +"innehåller ytterligare alternativ för kvantisering." + +#. Tag: para +#: index.docbook:2193 +#, no-c-format +msgid "" +"Another simple way to apply a grid quantizer is to do it in the main window, " +"using the Quantize menu on the Segment Parameter Box. " +"If you select some segments and change the value shown in the menu, the " +"segments will immediately be grid-quantized to the resolution shown in the " +"menu." +msgstr "" +"Ett annat enkelt sätt att utföra en rutnätskvantisering är att göra den " +"i huvudfönstret med menyn Kvantisera i segmentparameterrutan. " +"Om du markerar några segment och ändrar värdet som visas i menyn, blir " +"segmenten omedelbart rutnätskvantiserade till upplösningen som visas i " +"menyn." + +#. Tag: para +#: index.docbook:2202 +#, no-c-format +msgid "" +"Finally, there is also a quantize " +"control in the matrix view." +msgstr "" +"Till sist finns också en styrning av " +"kvantisering i matrisvyn." + +#. Tag: title +#: index.docbook:2210 +#, no-c-format +msgid "The Matrix editor" +msgstr "Matriseditorn" + +#. Tag: para +#: index.docbook:2211 +#, no-c-format +msgid "" +"The &rosegarden; matrix editor enables you to view and edit music in a " +"simple, logical format: each note represented as a block in a grid, at a " +"height corresponding to the pitch." +msgstr "" +"&rosegarden;s matriseditor låter dig visa och redigera musik med ett enkelt " +"logiskt format: Varje not representeras som ett block i ett rutnät, på en " +"plats som motsvarar tonhöjden." + +#. Tag: phrase +#: index.docbook:2223 +#, no-c-format +msgid "&rosegarden;'s matrix editor" +msgstr "&rosegarden;s matriseditor" + +#. Tag: para +#: index.docbook:2225 +#, no-c-format +msgid "" +"Each matrix editor window shows a single segment. To edit a segment, just " +"right-click on it in the main canvas and select the matrix editor from the " +"menu. Alternatively, you can configure Rosegarden to make the matrix editor " +"the default editor available when you double-click on a segment." +msgstr "" +"Varje fönster i matriseditorn visar ett enstaka segment. För att redigera " +"ett segment, högerklicka bara på det på huvudduken och välj " +"matriseditorn i menyn. Alternativt kan du ställa in Rosegarden att göra " +"matriseditorn till standardvy som är tillgänglig genom att " +"dubbelklicka på ett segment." + +#. Tag: title +#: index.docbook:2235 +#, no-c-format +msgid "The Grid and Quantize controls" +msgstr "Styrning av rutnät och kvantisering" + +#. Tag: para +#: index.docbook:2236 +#, no-c-format +msgid "The matrix view contains Grid and Quantize menus in its main toolbar." +msgstr "Matrisvyn innehåller menyerna Rutnät och Kvantisering i huvudmenyraden." + +#. Tag: para +#: index.docbook:2240 +#, no-c-format +msgid "" +"The Grid menu controls the size of the visible grid in the background of the " +"matrix view, as well as the time resolution used when entering and moving " +"notes. After you set it to a particular time value, the normal note " +"insertion and drag operations will then snap automatically to grid points " +"spaced at that time width. You can override the snap-to-grid effect " +"temporarily by holding down Shift during editing, or you can disable it by " +"setting the Grid menu to None." +msgstr "" +"Rutnätsmenyn styr det synliga rutnätets storlek i matrisvyns bakgrund, " +"samt tidsupplösningen som används när noter skrivs in och flyttas. Efter " +"du har ställt in det till ett visst tidsvärde, låses de normala " +"åtgärderna för att infoga och dra noter automatiskt till rutnätspunkter " +"åtskilda med det tidsvärdets bredd. Du kan överskrida " +"positioneringsfunktionen tillfälligt genom att hålla nere Skift under " +"redigeringen, eller inaktivera den genom att ställa in rutnätsmenyn till " +"Ingen låsning." + +#. Tag: para +#: index.docbook:2249 +#, no-c-format +msgid "" +"The Quantize menu works rather differently. Rather than controlling the " +"behaviour of other editing tools, it actually performs an action. When you " +"change the value in this menu, the selected notes -- or the whole segment if " +"nothing is selected -- will immediately be quantized using a grid quantizer " +"of the chosen resolution." +msgstr "" +"Kvantiseringsmenyn fungerar på ett ganska annorlunda sätt. I stället för " +"att styra beteendet hos andra redigeringsverktyg, utför den verkligen en " +"åtgärd. När du ändrar värde i menyn, blir de markerade noterna, eller " +"hela segmentet om ingenting är markerat, omedelbart kvantiserade av en " +"rutnätskvantisering med vald upplösning." + +#. Tag: para +#: index.docbook:2256 +#, no-c-format +msgid "" +"The Quantize menu also shows you continuously what resolution the current " +"segment or selection is quantized to. For example, if you select a set of " +"notes that start on consecutive quarter-note beats, the Quantize menu will " +"update itself to show 1/4, as this is the coarsest resolution consistent " +"with the existing quantization of the current selection." +msgstr "" +"Kvantiseringsmenyn visar också kontinuerligt vilken upplösning som det " +"nuvarande segmentet eller markeringen är kvantiserad med. Om du till " +"exempel markerar en uppsättning noter som börjar på efterföljande " +"kvartsnotstaktslag, uppdateras kvantiseringsmenyn så att 1/4 visas, " +"eftersom det är den grövsta upplösningen som motsvarar den befintliga " +"kvantiseringen av nuvarande markering." + +#. Tag: title +#: index.docbook:2267 +#, no-c-format +msgid "Inserting notes" +msgstr "Infoga noter" + +#. Tag: para +#: index.docbook:2268 +#, no-c-format +msgid "" +"The simplest way to enter a note in the matrix view is to use the mouse. To " +"do this, select the pencil tool on the toolbar, and then click and drag on " +"the matrix editor. The note will be entered at the time and pitch " +"corresponding to the point you click at, and will have a duration " +"corresponding to the distance you drag before releasing the mouse button." +msgstr "" +"Det enklaste sättet att mata in en not i matrisvyn är att använda musen. " +"För att göra det, välj pennverktyget i verktygsraden, klicka och dra " +"därefter i matriseditorn. Noten matas in vid tiden och med tonhöjden som " +"motsvarar punkten du klickar, och har ett notvärde som motsvarar avståndet " +"du drar innan du släpper musknappen." + +#. Tag: para +#: index.docbook:2277 +#, no-c-format +msgid "" +"By default, the time and duration are snapped to a particular grid unit, " +"according to the Grid setting on the View menu or the toolbar. You can " +"prevent this effect by holding down Shift while clicking and dragging." +msgstr "" +"Normalt är tiden och notvärdet låsta till en viss rutnätsenhet enligt " +"rutnätsinställningarna i menyn Visa eller verktygsraden. Du kan förhindra " +"effekten genom att hålla nere Skift medan du klickar och drar." + +#. Tag: title +#: index.docbook:2284 +#, no-c-format +msgid "Typing notes with the PC keyboard" +msgstr "Skriva in noter med datorns tangentbord" + +#. Tag: title +#: index.docbook:2287 index.docbook:2822 +#, no-c-format +msgid "Duration" +msgstr "Notvärde" + +#. Tag: para +#: index.docbook:2289 +#, no-c-format +msgid "" +"The durations of notes entered from the keyboard are controlled by the Grid " +"setting on the View menu or toolbar. You can set this using the number keys:" +msgstr "" +"Notvärden för noter som matas in via tangentbordet styrs av " +"rutnätsinställningarna i menyn Visa eller verktygsraden . Du kan ställa " +"in det genom att använda de numeriska tangenterna:" + +#. Tag: para +#: index.docbook:2294 +#, no-c-format +msgid "5 – Whole bar" +msgstr "5 – Hel takt" + +#. Tag: para +#: index.docbook:2295 +#, no-c-format +msgid "1 – Beat" +msgstr "1 – Takt" + +#. Tag: para +#: index.docbook:2296 index.docbook:2831 +#, no-c-format +msgid "2 – Half note (minim)" +msgstr "2 – Halvnot" + +#. Tag: para +#: index.docbook:2297 index.docbook:2832 +#, no-c-format +msgid "4 – Quarter note (crotchet)" +msgstr "4 – Kvartsnot" + +#. Tag: para +#: index.docbook:2298 index.docbook:2833 +#, no-c-format +msgid "8 – Eighth note (quaver)" +msgstr "8 – Åttondedelsnot" + +#. Tag: para +#: index.docbook:2299 index.docbook:2834 +#, no-c-format +msgid "6 – Sixteenth note (semiquaver)" +msgstr "6 – Sextondedelsnot" + +#. Tag: para +#: index.docbook:2300 index.docbook:2835 +#, no-c-format +msgid "3 – Thirty-second note (demisemiquaver)" +msgstr "3 – Trettioandredelsnot" + +#. Tag: para +#: index.docbook:2301 index.docbook:2836 +#, no-c-format +msgid "0 – Sixty-fourth note (hemidemisemiquaver)" +msgstr "0 – Sextifjärdedelsnot" + +#. Tag: title +#: index.docbook:2307 index.docbook:2847 +#, no-c-format +msgid "Pitch" +msgstr "Tonhöjd" + +#. Tag: para +#: index.docbook:2309 +#, no-c-format +msgid "" +"Once the correct duration is selected in the Grid menu, you can insert a " +"note at the current position of the insert " +"cursor by pressing one of the pitch keys:" +msgstr "" +"Så fort rätt notvärde är vald i rutnätsmenyn kan du infoga en not på " +"infogningsmarkörens aktuella position " +"genom att trycka på en av tonhöjdstangenterna:" + +#. Tag: para +#: index.docbook:2315 index.docbook:2855 +#, no-c-format +msgid "" +"A – Do (the tonic of the current key in the current " +"clef)" +msgstr "A – C (Do, tonikan i aktuell tonart för aktuell klav)" + +#. Tag: para +#: index.docbook:2316 index.docbook:2856 +#, no-c-format +msgid "S – Re" +msgstr "S – D (Re)" + +#. Tag: para +#: index.docbook:2317 index.docbook:2857 +#, no-c-format +msgid "D – Mi" +msgstr "D – E (Mi)" + +#. Tag: para +#: index.docbook:2318 index.docbook:2858 +#, no-c-format +msgid "F – Fa" +msgstr "F – F (Fa)" + +#. Tag: para +#: index.docbook:2319 index.docbook:2859 +#, no-c-format +msgid "J – So" +msgstr "J – G (So)" + +#. Tag: para +#: index.docbook:2320 index.docbook:2860 +#, no-c-format +msgid "K – La" +msgstr "K – A (La)" + +#. Tag: para +#: index.docbook:2321 index.docbook:2861 +#, no-c-format +msgid "L – Ti" +msgstr "L – H (Ti)" + +#. Tag: para +#: index.docbook:2324 index.docbook:2867 +#, no-c-format +msgid "" +"Holding Shift while pressing a key will sharpen the note " +"(except for Mi and Ti, which don't have sharpened versions) and holding " +"Shift and Ctrl together will flatten it " +"(except for Fa and Do)." +msgstr "" +"Genom att hålla nere Skift när en tangent trycks, fås en " +"upphöjd not (utom för E och H som inte har upphöjda versioner) och genom " +"att hålla nere Skift och Ctrl tillsammans " +"fås en nersänkt not (utom för F och C)." + +#. Tag: para +#: index.docbook:2330 index.docbook:2873 +#, no-c-format +msgid "" +"To enter notes an octave higher, use the corresponding keys on the next row " +"up: Q, W, E, " +"R, U, I, and " +"O. Likewise to enter notes an octave lower, use " +"Z, X, C, " +"V, B, N and " +"M." +msgstr "" +"För att skriva in noter en oktav högre,använd motsvarande tangenter på " +"nästa rad ovanför: Q, W, " +"E, R, U, " +"I och O. På motsvarande sätt, för att " +"lägga till noter en oktav lägre, använd Z, " +"X, C, V, " +"B, N och M." + +#. Tag: title +#: index.docbook:2342 index.docbook:2930 +#, no-c-format +msgid "Other remarks" +msgstr "Övriga anmärkningar" + +#. Tag: para +#: index.docbook:2344 index.docbook:2932 +#, no-c-format +msgid "" +"All of the insertion commands are also available on a submenu of the Tools " +"menu. It's unlikely you'd ever want to navigate the menus just to insert a " +"single note, but the menus show the keyboard shortcuts and so provide a " +"useful reference in case you forget which key is which." +msgstr "" +"Alla infogningskommandon är också tillgängliga från en undermeny i menyn " +"Verktyg. Det är inte troligt att du någonsin vill navigera i menyn bara " +"för att infoga en enstaka not, men menyerna visar snabbtangenterna och " +"tillhandahåller på så sätt en användbar referens om du skulle glömma " +"vilken tangent som gör vad." + +#. Tag: para +#: index.docbook:2350 +#, no-c-format +msgid "" +"The keyboard shortcuts are currently designed for use with a QWERTY-layout " +"keyboard. There is not yet any way to remap the keys for another layout, " +"short of reassigning each key individually using Settings Configure " +"Shortcuts... ." +msgstr "" +"Snabbtangenterna är för närvarande gjorda för att användas med " +"tangentbord som har QWERTY-organisation. Det finns ännu inte något sätt att " +"ändra snabbtangenter till en annan organisation, förutom att individuellt " +"ändra tilldelning av varje tangent med Inställningar Anpassa " +"genvägar...." + +#. Tag: title +#: index.docbook:2363 index.docbook:2953 +#, no-c-format +msgid "Entering notes using a MIDI keyboard" +msgstr "Skriva in noter genom att använda ett MIDI-keyboard" + +#. Tag: para +#: index.docbook:2365 +#, no-c-format +msgid "" +"You can enter notes into the matrix editor one at a time using a MIDI " +"keyboard or other MIDI control device. The matrix editor uses the pitches " +"you play on the keyboard, but the durations you have selected in the Grid " +"setting of the editor itself. This is known as \"step recording\"." +msgstr "" +"Du kan lägga till noter i matriseditorn en i taget med ett MIDI-keyboard " +"eller en annan MIDI-styrenhet. Matriseditorn använder tonhöjden du spelar " +"på ett keyboard, men de notvärden du har valt i editorns egna " +"rutnätsinställningar. Det är känt som \"stegvis inspelning\"." + +#. Tag: para +#: index.docbook:2373 +#, no-c-format +msgid "" +"To start entering notes from a MIDI keyboard, first make sure the keyboard " +"is configured as your default MIDI record device. Then make sure you have " +"the right Grid setting in the View menu or toolbar, as this controls the " +"note duration. Then press the step recording button on the matrix editor's " +"toolbar, or select Step Recording from the Tools menu. From that point on " +"all notes pressed on the MIDI keyboard will be inserted at the current " +"insertion time in that window, until step recording is switched off again or " +"activated in a different window or the window is closed." +msgstr "" +"För att börja mata in noter från ett MIDI-keyboard, försäkra dig först " +"om att det är inställt som förvald MIDI-inspelningsenhet. Försäkra dig " +"därefter om att du har rätt rutnätsinställning i menyn Visa eller på " +"verktygsraden, eftersom det styr notvärdena. Tryck därefter på " +"knappen för stegvis inspelning i matriseditorns verktygsrad, eller välj " +"Stegvis inspelning i menyn Verktyg. Från detta ögonblick infogas alla " +"toner som du spelar på ditt MIDI-keyboard vid den nuvarande inmatningstiden " +"i fönstret, ända till stegvis inspelning stängs av igen, aktiveras i ett " +"annat fönster eller fönstret stängs." + +#. Tag: para +#: index.docbook:2387 +#, no-c-format +msgid "" +"You can change the Grid setting while step recording is in progress, in " +"order to insert notes of different durations." +msgstr "" +"Du kan ändra rutnätsinställningar medan stegvis inspelning pågår, för " +"att infoga noter med olika notvärden." + +#. Tag: title +#: index.docbook:2395 +#, no-c-format +msgid "Selecting notes" +msgstr "Markera noter" + +#. Tag: para +#: index.docbook:2395 +#, no-c-format +msgid "" +"To select notes in the matrix editor, switch to the Select (arrow) tool and " +"then outline a rectangular area containing the notes you want to select. The " +"selected events will then be highlighted in blue. If you instead click on a " +"single event, just that event will be selected." +msgstr "" +"För att markera noter i matriseditorn, byt till markeringsverktyget (pilen) " +"och rita upp ett rektangulärt område som innehåller noterna du vill " +"markera. Markerade händelser färgläggs då i blått. Om du istället " +"klickar på en enstaka händelse, markeras bara den händelsen." + +#. Tag: para +#: index.docbook:2402 +#, no-c-format +msgid "" +"If you hold Shift while dragging out a rectangle or " +"clicking on a note, the new selection will be added to any existing " +"selection instead of replacing it." +msgstr "" +"Om du håller nere Skift medan du ritar upp en rektangel " +"eller klickar på en not, läggs den nya markeringen till i en eventuell " +"befintlig markering istället för att ersätta den." + +#. Tag: para +#: index.docbook:2407 +#, no-c-format +msgid "" +"To clear a selection, click in an empty space on the matrix editor, or hit " +"the Escape key." +msgstr "" +"För att rensa en markering, klicka på ett tomt område i matriseditorn " +"eller tryck på Esc-tangenten." + +#. Tag: para +#: index.docbook:2411 +#, no-c-format +msgid "" +"You can also select all of the notes of a given pitch, by shift-clicking on " +"a key in the piano keyboard down the left side of the matrix editor. You can " +"also shift-click and drag to select a range of pitches. This selection is " +"added to any existing selection you have, so if you want a clean new " +"selection, clear the old one first." +msgstr "" +"Du kan också markera alla noter av en viss tonhöjd genom att skift-klicka " +"på en tangent på pianoklaviaturen längs vänster sida i matriseditorn. Du " +"kan också skift-klicka och dra för att markera en uppsättning tonhöjder. " +"Markeringen läggs till i en eventuell befintlig markering, så om du vill " +"ha en helt ny markering, avmarkera först den föregående." + +#. Tag: title +#: index.docbook:2421 +#, no-c-format +msgid "Moving and copying notes" +msgstr "Flytta och kopiera noter" + +#. Tag: para +#: index.docbook:2422 +#, no-c-format +msgid "" +"You can move notes in both time and pitch on the matrix editor by either " +"clicking and dragging them with the Move tool, or selecting them and then " +"dragging them with the Select tool." +msgstr "" +"Du kan flytta noter både i tid och tonhöjd i matriseditorn genom att " +"antingen klicka och dra dem med förflyttningsverktyget, eller markera dem " +"och därefter dra dem med markeringsverktyget." + +#. Tag: para +#: index.docbook:2428 +#, no-c-format +msgid "" +"To copy notes, select them and then use the standard copy and paste " +"functions. After the paste the pasted notes will be selected instead, and " +"you can then drag them wherever you need them." +msgstr "" +"För att kopiera noter, markera dem och använd därefter de vanliga " +"funktionerna kopiera och klistra in. Efter de har klistrats in är de " +"inklistrade noterna markerade istället, och du kan dra dem var du än vill " +"ha dem." + +#. Tag: title +#: index.docbook:2439 +#, no-c-format +msgid "The Percussion Matrix editor" +msgstr "Slagverksmatriseditorn" + +#. Tag: para +#: index.docbook:2441 +#, no-c-format +msgid "" +"The Percussion Matrix editor is identical to the Matrix editor, except that it shows pitch " +"names on the vertical scale instead of a piano keyboard, and it does not " +"show the duration for each note. This is intended for use with percussion " +"programs on MIDI instruments, in which each note pitch plays a different " +"percussion sound." +msgstr "" +"Slagverksmatriseditorn är identisk med " +"matriseditorn, förutom att den visar tonhöjdsnamn på den " +"vertikala skalan istället för pianotangenter, och att den inte visar " +"notvärdet för varje not. Den är avsedd för användning med " +"slagverksprogram i MIDI-instrument, där varje tonhöjd spelar ett " +"annorlunda slagverksljud." + +#. Tag: para +#: index.docbook:2448 +#, no-c-format +msgid "See also Percussion Key Mappings" +msgstr "Se också Tonavbildningar för slagverk." + +#. Tag: title +#: index.docbook:2453 +#, no-c-format +msgid "The Notation editor" +msgstr "Notbehandlaren" + +#. Tag: para +#: index.docbook:2460 +#, no-c-format +msgid "" +"The &rosegarden; notation editor enables you to view and edit one or more " +"staffs in traditional score notation." +msgstr "" +"&rosegarden;s notbehandlare gör det möjligt att visa och redigera ett " +"eller flera notsystem med traditionell partiturnotation." + +#. Tag: phrase +#: index.docbook:2473 +#, no-c-format +msgid "&rosegarden;'s notation editor" +msgstr "&rosegarden;s notbehandlare" + +#. Tag: para +#: index.docbook:2478 +#, no-c-format +msgid "" +"&rosegarden; aims to present scores with the best possible layout compatible " +"with its primary focus as a sequencer application. This means that although " +"the editor supports chords, overlapping and nested beamed groups, triplets " +"and arbitrary tuplets, grace notes, dynamics, accents, text and so on, it " +"does not provide as much fine control over layout (especially in " +"contrapuntal music) as a dedicated score editing program might. &rosegarden; " +"does not aim to produce typeset-quality score, although it can export " +"Lilypond files, which may form a good basis for typesetting." +msgstr "" +"&rosegarden; försöker presentera partitur med bästa möjliga utläggning givet " +"dess huvudsakliga fokus som en musikbehandlare. Det betyder att även om " +"editorn stöder ackord, överlappande och nästlade balkgrupper, trioler och " +"godtyckliga annandelningar, prydnadsnoter, dynamik, accenter, text och så " +"vidare, tillhandahåller den inte så mycket detaljkontroll över utläggningen " +"(särskilt i musik med kontrapunkt) som särskilda program för redigering " +"av partitur kan göra. &rosegarden; har inte som mål att skapa partitur av " +"typsättningskvalitet, även om Lilypond-filer kan exporteras, vilka kan " +"utgöra en bra grund för typsättning." + +#. Tag: title +#: index.docbook:2496 +#, no-c-format +msgid "Single and multiple staffs" +msgstr "Enkla och flera notsystem" + +#. Tag: para +#: index.docbook:2498 +#, no-c-format +msgid "" +"There are three ways to open a notation editor from the &rosegarden; main " +"window. (They all require that you have some existing segments in the main " +"window first, so if you're starting a new composition, you should create " +"your segments before you start thinking about how to edit them.)" +msgstr "" +"Det finns tre sätt att öppna en notbehandlare i &rosegarden;s " +"huvudfönster. (Alla kräver att du först har ett befintligt segment i " +"huvudfönstret, så om du påbörjar en ny komposition, bör du skapa dina " +"segment innan du börjar fundera på hur de ska redigeras.)" + +#. Tag: term +#: index.docbook:2509 +#, no-c-format +msgid "Double-clicking on segments" +msgstr "Dubbelklicka på segment" + +#. Tag: para +#: index.docbook:2512 +#, no-c-format +msgid "" +"The most obvious way is just to double-click on a segment in the main " +"canvas. This opens the segment in whatever you have configured as the " +"default editor (notation, matrix, or event list), and by default this is the " +"notation editor. So double-clicking a single segment will open it as a " +"single staff in a Notation editor window." +msgstr "" +"Det mest uppenbara sättet är att dubbelklicka på ett segment på " +"huvudduken. Det öppnar segmentet i den editor som du har ställt in som " +"standardvy (not, matris eller händelselista), som normalt är " +"notbehandlaren. Alltså öppnas ett segment som ett enskilt notsystem i " +"notbehandlarens fönster genom att dubbelklicka på det." + +#. Tag: para +#: index.docbook:2520 +#, no-c-format +msgid "" +"You can also open a multi-staff editor this way: holding down the Shift key, " +"select (with a single mouse click) each of the segments on the main view " +"that you want to open, but double-click on the last one. All of the selected " +"segments will then be opened together in a single notation window." +msgstr "" +"Du kan också öppna en editor med flera notsystem på följande sätt: " +"Håll nere Skift-tangenten, markera (med ett enda musklick) alla segment i " +"huvudvyn som du vill öppna, men dubbelklicka på det sista. Alla markerade " +"segment öppnas då tillsammans i ett enda fönster i notbehandlaren." + +#. Tag: term +#: index.docbook:2531 +#, no-c-format +msgid "The Open in Default Editor menu function (the Return key)" +msgstr "Funktionen Öppna i standardvy (returtangenten)" + +#. Tag: para +#: index.docbook:2534 +#, no-c-format +msgid "" +"The Return key is a shortcut for the Open in Default Editor menu function, " +"which does much the same thing as double-clicking: opens all of the " +"currently selected segments together in a notation editor, or in whichever " +"other editor you have configured as your default." +msgstr "" +"Returtangenten är en snabbtangent för menyfunktionen att öppna i " +"standardvyn, som gör i stort sett samma sak som att dubbelklicka: Den " +"öppnar alla segment som för närvarande är markerade i notbehandlaren, " +"eller i någon annan editor som du har ställt in som standardvy." + +#. Tag: term +#: index.docbook:2544 +#, no-c-format +msgid "The Open in Notation Editor menu functions" +msgstr "Menyfunktionerna Öppna i notbehandlare" + +#. Tag: para +#: index.docbook:2547 +#, no-c-format +msgid "" +"Alternatively, you can use the main window's Open in Notation Editor menu " +"function, either on the Segments menu or on the right-button popup menu on a " +"segment in the canvas. Select the segments you want to edit (by " +"shift-clicking as above, or by using the Select All Segments function) and " +"then select Open in Notation Editor." +msgstr "" +"Som ett alternativ kan du använda huvudfönstrets menyalternativ Öppna i " +"notbehandlare, antingen i menyn Segment eller i menyn som visas med " +"höger musknapp över ett segment på duken. Markera segmenten du vill " +"redigera (genom att skift-klicka som ovan, eller genom att använda " +"alternativet Markera alla segment) och välj därefter Öppna i " +"notbehandlare." + +#. Tag: para +#: index.docbook:2563 +#, no-c-format +msgid "" +"If you have more than one staff (i.e. segment) visible in the notation " +"editor, only one of them can be \"current\" at once. The current staff can " +"be distinguished because it has the insert cursor on it (see Rulers and Cursors), and this is the staff on " +"which any editing operations that use the insert cursor will take place. The " +"topmost staff is the current one by default, but you can switch to a " +"different staff by ctrl-clicking on it or by using the Move Cursor Up Staff " +"and Move Cursor Down Staff menu functions." +msgstr "" +"Om du har mer än ett notsystem (dvs. segment) synligt i notbehandlaren " +"kan bara ett av dem vara \"aktuellt\" på en gång. Det aktuella notsystemet " +"kan urskiljas eftersom infogningsmarkören visas i det (se Linjaler och markörer), och det är " +"notsystemet där alla redigeringsåtgärder som använder " +"infogningsmarkören äger rum. Det översta notsystemet är normalt det " +"aktuella, men du kan byta till ett annat notsystem genom att Ctrl-klicka på " +"det eller genom att använda menyalternativen Markör upp notsystem och " +"Markör ner notsystem." + +#. Tag: title +#: index.docbook:2579 +#, no-c-format +msgid "Linear and page layouts" +msgstr "Horisontell och sidbaserad utläggning" + +#. Tag: para +#: index.docbook:2581 +#, no-c-format +msgid "" +"The usual way the notation editor displays staffs is known as Linear layout: " +"one staff on top of another, with each staff as a single, horizontally " +"scrollable long line. Some of the functions of the editor (such as the Rulers) are only available in Linear layout." +msgstr "" +"Det vanliga sättet som notbehandlaren visar notsystem är känt som " +"horisontell utläggning: Notsystem ovanför varandra, med varje notsystem som " +"en enda, horisontell rullande lång rad. Vissa funktioner i editorn (som " +"linjalerna) är bara tillgängliga med " +"horisontell utläggning." + +#. Tag: para +#: index.docbook:2590 +#, no-c-format +msgid "" +"However, you can also display staffs in two different page-based layouts: " +"Continuous Page and Multiple Page." +msgstr "" +"Du kan dock också visa notsystem med två olika sidbaserade utläggningar: " +"Vertikal utläggning eller Sidutläggning." + +#. Tag: para +#: index.docbook:2594 +#, no-c-format +msgid "" +"In Continuous Page layout, the music is arranged in one infinitely-tall page " +"of the same width as the window. Each staff breaks at the end of a line, " +"starting a new line below the remaining staffs." +msgstr "" +"I vertikal utläggning visas noteringen på en oändligt hög sida med " +"samma bredd som fönstret. Varje notsystem bryts vid radens slut, och " +"påbörjar en ny rad under återstående notsystem." + +#. Tag: para +#: index.docbook:2599 +#, no-c-format +msgid "" +"In Multiple Page layout, the music is divided up into real pages much as it " +"will be when printed. The size of each page is calculated so that " +"approximately the same amount of music will fit on each line as it will when " +"actually printed (according to the point size specified for the printing " +"resolution in the configuration dialog). The printed version is unlikely to " +"be exactly the same, as it depends on the precise paper size and margins in " +"use when printing, but it should be fairly close if you happen to be using " +"A4 paper." +msgstr "" +"I sidutläggning visas noteringen uppdelad på riktiga sidor i stort sett " +"som den ser ut när den skrivs ut. Varje sidas storlek beräknas så att " +"ungefär samma antal noter får plats på varje rad som när det verkligen " +"skrivs ut (enligt punktstorleken som anges för utskriftsupplösningen i " +"inställningsdialogrutan). Den utskrivna versionen är troligen inte precis " +"likadan, eftersom det beror på den exakta pappersstorleken och marginalerna " +"som används vid utskrift, men det bör vara ganska nära om du råkar " +"använda A4-papper." + +#. Tag: phrase +#: index.docbook:2617 +#, no-c-format +msgid "&rosegarden;'s notation editor in Multiple Page layout" +msgstr "&rosegarden;s notbehandlare med sidutläggning" + +#. Tag: para +#: index.docbook:2621 +#, no-c-format +msgid "" +"Most, but not all, of the display and editing functions work in the page " +"layout modes as well as in linear layout." +msgstr "" +"De flesta, men inte alla, av visnings- och redigeringsfunktionerna fungerar " +"lika bra i sidutläggningslägena som i horisontell utläggning." + +#. Tag: para +#: index.docbook:2626 +#, no-c-format +msgid "" +"To switch between these layout modes, use the Linear Layout, Continuous Page " +"Layout and Multiple Page Layout menu functions." +msgstr "" +"För att byta mellan utläggningslägen, använd menyalternativen Horisontell " +"utläggning, Vertikal utläggning och Sidutläggning." + +#. Tag: title +#: index.docbook:2634 +#, no-c-format +msgid "Rulers and cursors" +msgstr "Linjaler och markörer" + +#. Tag: para +#: index.docbook:2636 +#, no-c-format +msgid "" +"The &rosegarden; Notation editor window includes two rulers and two cursors. " +"The rulers are the horizontal strips divided up with tickmarks at top and " +"bottom of the main notation canvas, and the cursors are the coloured " +"vertical lines shown initially at the start of the top staff in the editor." +msgstr "" +"&rosegarden;s notredigeringsfönster innehåller två linjaler och " +"två markörer. Linjalerna är de horisontella raderna uppdelade med " +"graderingar längst upp och längst ner på huvudnoteringsduken, och " +"markörerna är de färgade vertikala linjerna som ursprungligen visas i " +"början av det översta notsystemet i editorn." + +#. Tag: para +#: index.docbook:2645 +#, no-c-format +msgid "" +"The purple cursor is the insert cursor. It shows the point at which " +"operations such as insert and paste will take place. You can reposition the " +"insert cursor by clicking or dragging on the top ruler, or by clicking with " +"the Select tool on an empty part of the staff (avoiding any events), or by " +"clicking anywhere with Ctrl held down." +msgstr "" +"Den violetta markören är infogningsmarkören. Den visar platsen där " +"åtgärder som infoga och klistra in utförs. Du kan flytta " +"infogningsmarkören genom att klicka eller dra på den övre linjalen, eller " +"genom att klicka med markeringsverktyget på en tom del av notsystemet (och " +"undvika alla händelser), eller genom att klicka var som helst med " +"Ctrl intryckt." + +#. Tag: para +#: index.docbook:2654 +#, no-c-format +msgid "" +"You can also use the left and right arrow keys to move the insert cursor one " +"event at a time. If you hold Ctrl while pressing the arrow " +"keys, the cursor will move a whole bar at a time; if you hold Shift, the " +"cursor will select the events " +"as it passes over them." +msgstr "" +"Du kan också använda vänster och höger piltangenter för att flytta " +"infogningsmarkören en händelse i taget. Om du håller nere " +"Ctrl medan piltangenterna trycks, flyttas markören en hel " +"takt åt gången. Om du håller nere Skift, markeras händelserna medan markören " +"rör sig över dem." + +#. Tag: para +#: index.docbook:2662 +#, no-c-format +msgid "" +"The blue cursor is the playback pointer. Just like the similar cursors in " +"the main window and the matrix views, this shows the location of the current " +"playback or record position. It can be repositioned using the bottom ruler." +msgstr "" +"Den blåa markören är uppspelningsmarkören. Precis som liknande markörer " +"i huvudfönstret och matrisvyn, visar den platsen för nuvarande uppspelning " +"eller inspelning. Den kan förflyttas genom att använda linjalen längst " +"ner." + +#. Tag: para +#: index.docbook:2669 +#, no-c-format +msgid "" +"Note that the rulers are only shown in Linear " +"layout mode." +msgstr "" +"Observera att linjalerna bara visas i läget Horisontell utläggning." + +#. Tag: title +#: index.docbook:2682 +#, no-c-format +msgid "Tools and selections" +msgstr "Verktyg och markeringar" + +#. Tag: para +#: index.docbook:2683 +#, no-c-format +msgid "" +"Most of the menu and toolbar editing functions in the &rosegarden; Notation " +"editor fall into one of three categories: tools, " +"functions that operate on selections, and drag " +"operations." +msgstr "" +"De flesta redigeringsfunktioner i menyer och verktygsrader i &rosegarden;s " +"notbehandlare ingår i en av tre kategorier: verktyg, " +"funktioner som arbetar med markeringar och " +"dragåtgärder." + +#. Tag: term +#: index.docbook:2693 +#, no-c-format +msgid "Tools" +msgstr "Verktyg" + +#. Tag: para +#: index.docbook:2695 +#, no-c-format +msgid "" +"The basic tools are the selection tool, the erase tool, and those for " +"inserting notes, rests, text and so on, which are usually accessed from the " +"toolbar buttons. Choosing a tool changes the default behaviour of the mouse " +"buttons on the main notation canvas, at least until another tool is chosen " +"instead. For example, choosing the selection tool allows you to make " +"selections and so to use the selection-based functions (below); choosing an " +"insertion tool (such as one of the notes) switches the " +"GUI's behaviour so as to insert notes by clicking on the " +"canvas; choosing the erase tool allows you to remove events by clicking on " +"them." +msgstr "" +"De grundläggande verktygen är markeringsverktyget, borttagningsverktyget " +"och de som används för att infoga noter, pauser, text och så vidare, " +"vilka oftast väljes med knappar i verktygsraden. Att välja ett verktyg " +"ändrar det normala beteendet hos musknapparna på huvudnoteringsduken, " +"åtminstone till ett annat verktyg väljes istället. Genom att till exempel " +"välja markeringsverktyget kan du göra markeringar och på så sätt " +"använda de markeringsbaserade funktionerna (nedan). Genom att välja ett " +"infogningsverktyg (som en av noterna) ändras det grafiska gränssnittets " +"beteende så att noter infogas genom att klicka på duken. Genom att välja " +"borttagningsverktyget gör att du kan ta bort händelser genom att klicka " +"på dem." + +#. Tag: para +#: index.docbook:2709 +#, no-c-format +msgid "You can also change the current tool using the Tools menu." +msgstr "Du kan också byta aktuellt verktyg med menyn Verktyg." + +#. Tag: term +#: index.docbook:2716 +#, no-c-format +msgid "Functions that operate on selections" +msgstr "Funktioner som arbetar med markeringar" + +#. Tag: para +#: index.docbook:2718 +#, no-c-format +msgid "" +"The majority of the remaining menu functions require a selection to be made " +"on the canvas before they can be used. Some of them (such as " +"Cut or the Note Style " +"functions) will operate on any selected events; others (such as the " +"Grace Notes or Stem " +"Directions functions) will refuse to work unless the selection " +"contains some notes." +msgstr "" +"Flertalet återstående menyalternativen kräver att en markering görs på " +"duken innan de kan användas. Vissa av dem (såsom alternativen " +"Klipp ut eller " +"Notstil) fungerar på alla händelser som " +"markerats. Andra (såsom Prydnadsnot eller " +"Skaftriktning) vägrar fungera om inte " +"markeringen innehåller några noter." + +#. Tag: para +#: index.docbook:2729 +#, no-c-format +msgid "" +"To select some events on the canvas, switch to the Select (arrow) tool and " +"then outline a rectangular area containing the events you want to select. " +"The selected events will then be highlighted in blue. If you click on a " +"single event, just that event will be selected You can " +"also double-click on a single event to open an editing dialog for that " +"event, but that's got nothing to do with selections. )." +msgstr "" +"För att markera några händelser på duken, byt till markeringsverktyget " +"(pilen) och rita därefter upp ett rektangulärt område som innehåller " +"händelserna du vill markera. De markerade händelserna färgläggs då med " +"blått. Om du klickar på en enskild händelse, markeras bara den händelsen " +" Du kan också dubbelklicka på en enskild händelse för " +"att visa en redigeringsdialogruta för händelsen, men det har ingenting att " +"göra med markeringar. )." + +#. Tag: para +#: index.docbook:2738 +#, no-c-format +msgid "" +"If you hold Shift while dragging out a rectangle, its " +"contents will be added to any existing selection instead of replacing it." +msgstr "" +"Om du håller nere Skift medan du ritar upp en rektangel, " +"läggs innehållet till i en eventuell befintlig markering istället för " +"att ersätta den." + +#. Tag: para +#: index.docbook:2743 +#, no-c-format +msgid "" +"To select a whole bar, double-click with the Select tool on some empty space " +"within that bar; to select the whole staff, click three times. The Edit menu " +"carries functions for selecting extended areas based on the location of the " +"insert cursor, and you can also select events around the insert cursor by " +"holding Shift and pressing the left or right arrow keys." +msgstr "" +"För att markera en hel takt, dubbelklicka med markeringsverktyget på ett " +"tomt utrymme i takten. För att markera hela notsystemet, klicka tre " +"gånger. Redigeringsmenyn innehåller alternativ för att markera utökade " +"områden baserat på infogningsmarkörens plats, och du kan också markera " +"händelser omkring infogningsmarkören genom att hålla nere Skift och " +"trycka på vänster eller höger piltangent." + +#. Tag: para +#: index.docbook:2752 +#, no-c-format +msgid "It is not possible to select events from more than one staff at once." +msgstr "" +"Det är inte möjligt att markera händelser i mer än ett notsystem på en " +"gång." + +#. Tag: term +#: index.docbook:2760 +#, no-c-format +msgid "Drag operations" +msgstr "Dragåtgärder" + +#. Tag: para +#: index.docbook:2762 +#, no-c-format +msgid "" +"You can also do a certain amount of editing just by dragging things around. " +"Switch to the Select (arrow) tool, and then you can change the pitch of " +"notes by just click-and-dragging their heads up or down, and change the " +"times of notes and other events by dragging them left or right. (You can't " +"drag rests or time signatures, but you can drag everything else. If you have " +"more than one event selected, the whole selection will be dragged at once.)" +msgstr "" +"Du kan också utföra en viss mängd redigering genom att bara dra omkring " +"saker. Byt till markeringsverktyget (pilen), och därefter kan du ändra " +"tonhöjd på noter genom att bara klicka och dra deras huvuden uppåt eller " +"neråt, och ändra tider för noter och andra händelser genom att dra dem " +"åt vänster eller höger. (Du kan inte dra pauser eller taktarter, " +"men du kan dra allting annat. Om du har markerat mer än en händelse, dras " +"hela markeringen på en gång.)" + +#. Tag: para +#: index.docbook:2773 +#, no-c-format +msgid "" +"Dragging is usually a less accurate way of editing things than using the " +"menu or toolbar functions, but it can be easier." +msgstr "" +"Att dra är oftast ett mindre noggrant sätt att redigera än att använda " +"funktionerna i menyn eller verktygsraden, men det kan vara enklare." + +#. Tag: title +#: index.docbook:2786 +#, no-c-format +msgid "Inserting notes and rests" +msgstr "Infoga noter och pauser" + +#. Tag: para +#: index.docbook:2788 +#, no-c-format +msgid "" +"To insert a note, select one of the note tools by clicking on a particular " +"duration of note on the toolbar, and then click on the staff at the point " +"where you want to add the note." +msgstr "" +"För att infoga en not, välj ett av notverktygen genom att klicka på ett " +"visst notvärde i verktygsraden, och därefter klicka i notsystemet på " +"platsen där du vill lägga till noten." + +#. Tag: para +#: index.docbook:2792 +#, no-c-format +msgid "" +"You can also select one of the accidentals on the toolbar to insert " +"sharpened or flattened notes. If no accidental is selected, the note " +"inserted will follow the key signature. Alternatively, you can select the " +"\"Follow previous accidental\" icon (shown as a note with an arrow pointing " +"back from where the accidental would appear) to make the note follow " +"whatever accidental was last used at the same height on the staff." +msgstr "" +"Du kan också markera en av de tillfälliga förtecknen på verktygsraden " +"för att infoga upphöjda eller nersänkta noter. Om inget tillfälligt " +"förtecken används, följer den infogade noten de fasta förtecknen. Som ett " +"alternativ kan du välja ikonen \"Följ föregående tillfälliga förtecken\" " +"(som visas som en not med en pil som pekar tillbaka från stället där " +"förtecknet skulle visas) för att få noten att följa det tillfälliga " +"förtecken som senast användes på samma plats i notsystemet." + +#. Tag: para +#: index.docbook:2800 +#, no-c-format +msgid "" +"If you add a note at the same time as an existing note of different " +"duration, the editor will generally assume that you want to create chords " +"and will split the existing or new note accordingly so as to create one or " +"more chords with ties. If you really do want to chord two different " +"durations, you can select the tied noteheads and use the Collapse " +"Equal-Pitch Notes function to merge them together. Alternatively, the " +"default behaviour can be changed in the &rosegarden; configuration dialog so " +"as not to do the split at all." +msgstr "" +"Om du lägger till en not på samma tid som en befintlig not med annat " +"notvärde, antar editorn i allmänhet att du vill skapa ackord och delar upp " +"den befintliga eller nya noten på motsvarande sätt för att skapa ett " +"eller flera bundna ackord. Om du verkligen vill skapa ett ackord med två " +"olika notvärden, kan du markera de bundna nothuvudena och använda funktionen " +"Lägg ihop noter med samma tonhöjd för att lägga ihop dem. Som ett " +"alternativ kan det förvalda beteendet ändras in &rosegarden;s " +"inställningsdialogruta, så att uppdelningen inte alls görs." + +#. Tag: para +#: index.docbook:2810 +#, no-c-format +msgid "" +"If you add a note exactly over an existing note of different duration (i.e. " +"at the same pitch), the duration of the existing note will be changed to " +"that of the new one." +msgstr "" +"Om du lägger till en not exakt ovanpå en befintlig not med annorlunda " +"notvärde (dvs. på samma tonhöjd), ändras notvärdet på den befintliga noten " +"till det nya notvärdet." + +#. Tag: para +#: index.docbook:2814 +#, no-c-format +msgid "" +"If you add a rest at the same time as an existing note, the note will be " +"silenced for the duration of the rest, shortening or possibly removing it " +"altogether." +msgstr "" +"Om du lägger till en paus på exakt samma tid som en befintlig not, blir " +"den befintliga noten tyst under pausvärdet, vilket förkortar den eller " +"möjligen tar bort den helt och hållet." + +#. Tag: title +#: index.docbook:2819 +#, no-c-format +msgid "Typing notes and rests with the PC keyboard" +msgstr "Skriva in noter och pauser med datorns tangentbord" + +#. Tag: para +#: index.docbook:2824 +#, no-c-format +msgid "" +"First, ensure a notation tool is selected to indicate the duration of note " +"(or rest) you wish to insert. You can select the various note types using " +"the number keys:" +msgstr "" +"Försäkra dig först om att ett notverktyg är valt för att ange " +"notvärdet (eller pausvärdet) som du vill infoga. Du kan välja de " +"olika nottyperna genom att använda nummertangenterna:" + +#. Tag: para +#: index.docbook:2829 +#, no-c-format +msgid "5 – Breve" +msgstr "5 – Brevis" + +#. Tag: para +#: index.docbook:2830 +#, no-c-format +msgid "1 – Whole note (semibreve)" +msgstr "1 – Helnot" + +#. Tag: para +#: index.docbook:2839 +#, no-c-format +msgid "" +"You can switch to a triplet version of the note duration by pressing the " +"G key. Pressing it again will switch back to the normal " +"duration. The status bar at the bottom of the window will notify you of when " +"a triplet duration is active." +msgstr "" +"Du kan byta till en triolversion av notvärdet genom att trycka på " +"tangenten G. Genom att trycka på den igen byter du " +"tillbaka till normalt notvärde. Statusraden längst ner i fönstret " +"underrättar dig om att ett triolvärde är aktivt." + +#. Tag: para +#: index.docbook:2849 +#, no-c-format +msgid "" +"Once a notation tool is selected, you can insert a note at the current " +"position of the insert cursor by pressing " +"one of the pitch keys:" +msgstr "" +"Så fort ett notverktyg är valt, kan du infoga en not på infogningsmarkörens aktuella position genom " +"att trycka på en av tonhöjdstangenterna:" + +#. Tag: para +#: index.docbook:2864 +#, no-c-format +msgid "Press the \".\" key to togggle between dotted and undotted durations." +msgstr "" +"Tryck på tangenten \".\" för att växla mellan notvärden med eller utan " +"punkt." + +#. Tag: title +#: index.docbook:2885 +#, no-c-format +msgid "Rests" +msgstr "Pauser" + +#. Tag: para +#: index.docbook:2887 +#, no-c-format +msgid "" +"To insert a rest instead of a note, press P. Alternatively, " +"you can use the T and Y keys to switch the " +"current tool to a rest tool and back to a note tool again." +msgstr "" +"För att infoga en paus istället för en not, tryck på P. " +"Som ett alternativ kan du använda tangenterna T och " +"Y för att byta aktuellt verktyg till ett pausverktyg och " +"tillbaka till ett notverktyg igen." + +#. Tag: title +#: index.docbook:2895 +#, no-c-format +msgid "Chords" +msgstr "Ackord" + +#. Tag: para +#: index.docbook:2897 +#, no-c-format +msgid "" +"The default behaviour of the notation editor is to move the insert cursor " +"forward after inserting a note, so as to be ready to insert another note " +"after it in a melody; this can be changed using the H key, " +"which switches to chord mode so that subsequent insertions occur at the same " +"time as the last one. Pressing H again switches back to the " +"melody insertion behaviour." +msgstr "" +"Normalbeteendet i notbehandlaren är att flytta infogningsmarkören " +"framåt efter en not har infogats, så att den är klar att mata in en ny " +"not på efterföljande plats i en melodi. Det kan ändras med tangenten " +"H, som byter till ackordsläge så att efterföljande " +"inmatning sker samtidigt som den senaste. Att trycka på H " +"igen byter tillbaka till inmatningsbeteende för melodi." + +#. Tag: title +#: index.docbook:2909 +#, no-c-format +msgid "Changing note durations" +msgstr "Ändra notvärden" + +#. Tag: para +#: index.docbook:2911 +#, no-c-format +msgid "" +"You can use the keyboard to change the durations of notes that you've " +"already entered. Make sure the notes you want to change are selected, and " +"then press Ctrl plus the number key for the note you want. " +"You can also add or remove dots, by pressing Ctrl plus " +"\".\" — use this repeatedly to select between one dot, two dots and no " +"dots." +msgstr "" +"Du kan använda tangentbordet för att ändra notvärden som du redan " +"har skrivit in. Försäkra dig om att noterna du vill ändra är markerade, " +"och tryck därefter på Ctrl samt nummertangenten för " +"noten som du vill ha. Du kan också lägga till eller ta bort punkter, genom " +"att trycka Ctrl och \".\". Använd det upprepade gånger " +"för att välja mellan en punkt, två punkter eller ingen punkt." + +#. Tag: para +#: index.docbook:2919 +#, no-c-format +msgid "" +"If you also hold Alt as well as Ctrl, you " +"will change the durations of the notes as displayed in the notation editor " +"without changing their performed durations. This can be very useful for " +"tidying up a score: see also notation from " +"performance data." +msgstr "" +"Om du håller nere Alt samt Ctrl, ändrar " +"du notvärden som de visas i notbehandlaren utan att ändra " +"utfört notvärde. Det kan vara mycket användbart för att städa upp ett " +"partitur: Se också Notskrift från " +"utförandedata." + +#. Tag: para +#: index.docbook:2938 +#, no-c-format +msgid "" +"The keyboard shortcuts are currently designed for use with a QWERTY-layout " +"keyboard. There is not yet any way to remap the keys for another layout, " +"short of reassigning each key individually using the \"Configure " +"Shortcuts...\" option on the Settings menu." +msgstr "" +"Snabbtangenterna är för närvarande gjorda för att användas med " +"tangentbord som har QWERTY-organisation. Det finns ännu inte något sätt att " +"ändra snabbtangenter till en annan organisation, förutom att individuellt " +"ändra tilldelning av varje tangent med alternativet \"Anpassa genvägar...\" " +"i menyn Inställningar." + +#. Tag: para +#: index.docbook:2944 +#, no-c-format +msgid "" +"Holding the Ctrl key while pressing a number will select " +"the corresponding dotted-note tool." +msgstr "" +"Genom att hålla nere Ctrl vid tryck på en nummertangent " +"väljes motsvarande verktyg med punkt." + +#. Tag: para +#: index.docbook:2955 +#, no-c-format +msgid "" +"You can enter notes into the notation editor one at a time using a MIDI " +"keyboard or other MIDI control device — a process known as step " +"recording. The notation editor uses the pitches you play on the keyboard, " +"but the durations you have selected in the editor itself." +msgstr "" +"Du kan lägga till noter i notbehandlaren en i taget med ett " +"MIDI-keyboard eller en annan MIDI-styrenhet, en process som är känd som " +"\"stegvis inspelning\". Notbehandlaren använder tonhöjden du spelar på " +"ett keyboard, men de notvärden du har valt i själva editorn." + +#. Tag: para +#: index.docbook:2963 +#, no-c-format +msgid "" +"To start entering notes from a MIDI keyboard, first make sure the keyboard " +"is configured as your default MIDI record device. Then make sure a notation " +"tool is selected to set a duration. Then press the step recording button on " +"the notation editor's toolbar, or select Step Recording from the Tools menu. " +"From that point on all notes pressed on the MIDI keyboard will be inserted " +"at the current insertion time in that notation window, until step recording " +"is switched off again or activated in a different window or the window is " +"closed." +msgstr "" +"För att börja mata in noter från ett MIDI-keyboard, försäkra dig först " +"om att det är inställt som förvald MIDI-inspelningsenhet. Försäkra dig " +"därefter om att ett notverktyg är valt för att ange ett notvärde. " +"Tryck därefter på knappen för stegvis inspelning i notbehandlarens " +"verktygsrad, eller välj Stegvis inspelning i menyn Verktyg. Från detta " +"ögonblick infogas alla toner som du spelar på ditt MIDI-keyboard vid den " +"nuvarande inmatningstiden i noteringsfönstret, ända till stegvis " +"inspelning stängs av igen, aktiveras i ett annat fönster eller fönstret " +"stängs." + +#. Tag: para +#: index.docbook:2977 +#, no-c-format +msgid "" +"You can select another notation tool while step recording is in progress, in " +"order to insert notes of different durations; and you can also switch into " +"Chord mode to insert chords." +msgstr "" +"Du kan välja ett annat notverktyg medan stegvis inspelning pågår " +"för att infoga noter med olika notvärden, och du kan också byta till " +"ackordläge för att infoga ackord." + +#. Tag: title +#: index.docbook:2990 +#, no-c-format +msgid "Clef and key" +msgstr "Klav och tonart" + +#. Tag: para +#: index.docbook:2993 +#, no-c-format +msgid "" +"The first thing to know about the way &rosegarden; handles these is that " +"time-related changes (tempos and time signatures) are treated entirely " +"differently from clefs and keys. In order to simplify managing playback and " +"recording as well as notation, &rosegarden; requires that when the tempo or " +"time signature changes, it does so in all staffs at once. You can't have one " +"staff in 3/4 and another in 4/4 simultaneously, or one staff playing at 120 " +"to the beat and another at 90. This applies only to time: there is no such " +"restriction on the use of clef and key changes." +msgstr "" +"Det första man måste veta om hur &rosegarden; hanterar dessa är att " +"tidsrelaterade ändringar (tempo och taktarter) hanteras helt " +"annorlunda än klaver och tonarter. För att förenkla hantering av " +"uppspelning och inspelning samt notering, kräver &rosegarden; att när " +"tempo eller taktart ändras, görs det i alla notsystem på en " +"gång. Du kan inte låta ett notsystem använda 3/4 medan ett annat " +"samtidigt använder 4/4, eller ha ett notsystem som spelar med 120 taktslag " +"och ett annat med 90. Det gäller bara tid: Det finns inga sådana " +"begränsningar för användning av klav- och tonartsbyten." + +#. Tag: para +#: index.docbook:3004 +#, no-c-format +msgid "" +"To change the clef, key, tempo or time signature within a notation editor " +"window, position the insert cursor at the " +"point where you want the change to happen, and use one of the Edit menu's " +"Add Clef Change..., Add Key Change..., Add Tempo Change... and Add Time " +"Signature Change... functions. You will then see a dialog box in which you " +"can choose the particular clef, key, tempo or time signature setting you " +"want to apply, as follows." +msgstr "" +"För att ändra klav, tonart, tempobeteckning eller taktart inne i ett " +"fönster i notbehandlaren, placera infogningsmarkören på ett ställe där du " +"vill att ändringen ska ske, och använd en av redigeringsmenyns funktioner " +"Lägg till klavbyte..., Lägg till tonartsbyte..., Byt " +"tempo... eller Byt taktart... . Då visas en " +"dialogruta där du kan välja en viss inställning för klav, tonart, " +"tempobeteckning eller taktart som du vill använda, enligt följande." + +#. Tag: title +#: index.docbook:3014 +#, no-c-format +msgid "Clef" +msgstr "Klav" + +#. Tag: phrase +#: index.docbook:3022 +#, no-c-format +msgid "&rosegarden;'s clef dialog" +msgstr "&rosegarden;s klavdialogruta" + +#. Tag: para +#: index.docbook:3028 +#, no-c-format +msgid "" +"The dialog allows you to choose a clef, but also to choose how you want the " +"clef to be applied, in cases where there are already some notes following " +"the point where the clef is to be inserted. You must choose one of the " +"following:" +msgstr "" +"Dialogrutan låter dig välja en klav, och låter dig dessutom välja hur du " +"vill att klaven ska användas, i fall där det redan finns några noter " +"efter punkten där klaven ska infogas. Du måste välja något av följande:" + +#. Tag: term +#: index.docbook:3037 +#, no-c-format +msgid "Maintain current pitches" +msgstr "Behåll nuvarande tonhöjder" + +#. Tag: para +#: index.docbook:3039 +#, no-c-format +msgid "Any notes following the clef will keep their current performance pitches." +msgstr "Alla noter som följer klaven behåller sina nuvarande utförda tonhöjder." + +#. Tag: para +#: index.docbook:3043 +#, no-c-format +msgid "" +"For example, inserting a tenor clef in the middle of a previously " +"treble-clef section will cause the notes following the clef to be moved an " +"octave higher up the staff, because they will still have their treble-clef " +"pitches." +msgstr "" +"Genom att till exempel infoga en c-klav i mitten av ett avsnitt med en " +"tidigare g-klav gör att noterna som kommer efter klaven att flyttas en " +"oktav högre i notsystemet, eftersom de fortfarande har sina tonhöjder " +"enligt g-klaven." + +#. Tag: term +#: index.docbook:3055 +#, no-c-format +msgid "Transpose into appropriate octave" +msgstr "Transponera till lämplig oktav" + +#. Tag: para +#: index.docbook:3057 +#, no-c-format +msgid "" +"Any notes following the clef will retain their pitch within the octave, but " +"may be moved into a different octave to match the new clef, and therefore " +"will play at a new pitch." +msgstr "" +"Alla noter som kommer efter klaven behåller sin tonhöjd inom oktaven, men " +"kan flyttas till en annan oktav för att passa med den nya klaven, och " +"spelas därför med annan tonhöjd." + +#. Tag: para +#: index.docbook:3064 +#, no-c-format +msgid "" +"For example, inserting a tenor clef in the middle of a previously " +"treble-clef section will cause the notes following the clef to move by one " +"staff line only to adjust to the new clef, but to play an octave lower than " +"before." +msgstr "" +"Genom att till exempel infoga en c-klav i mitten av ett avsnitt med en " +"tidigare g-klav gör att noterna som kommer efter klaven bara att flyttas en " +"linje i notsystemet för att justeras enligt den nya klaven, men spelas en " +"oktav lägre än tidigare." + +#. Tag: title +#: index.docbook:3080 +#, no-c-format +msgid "Key" +msgstr "Tonart" + +#. Tag: phrase +#: index.docbook:3088 +#, no-c-format +msgid "&rosegarden;'s key signature dialog" +msgstr "&rosegarden;s dialogruta för fasta förtecken" + +#. Tag: title +#: index.docbook:3100 +#, no-c-format +msgid "Text and lyrics" +msgstr "Text och sångtexter" + +#. Tag: para +#: index.docbook:3102 +#, no-c-format +msgid "" +"A staff can contain various sorts of text, in text events. There are two " +"basic classes of text event: single text items used for point annotations " +"etc., and lyrics. The former can be created (and so associated with a " +"particular time in the staff) using the Text tool, which is available on the " +"button marked with a big T in the toolbar. Lyrics can " +"also be created this way, but are more easily created using the lyric editor." +msgstr "" +"Ett notsystem kan innehålla olika sorters text, i texthändelser. Det finns " +"två grundläggande klasser med texthändelser: Enstaka textobjekt som " +"används för punktnoteringar etc., och sångtexter. De förstnämnda kan " +"skapas (och på så sätt kopplas till en viss tid i notsystemet) med " +"textverktyget, som är tillgängligt från knappen markerad med ett stort " +"T i verktygsraden. Sångtext kan också skapas på " +"detta sätt, men skapas enklare med sångtexteditorn." + +#. Tag: para +#: index.docbook:3111 +#, no-c-format +msgid "" +"To add a piece of text, select the Text tool and click at the point where " +"you want to add it. A dialog box will appear, into which you can type the " +"text and choose its intended purpose. (Rosegarden prefers to store what the " +"text is for, rather than how it should look; this is so that in future we " +"may be able to configure how the various sorts of text are presented for " +"each individual user.) The available purposes (or styles) are:" +msgstr "" +"För att lägga till ett textstycke, välj textverktyget och klicka på " +"stället där du vill lägga till den. En dialogruta visas, där du kan " +"skriva in texten och välja dess tänkta syfte. (Rosegarden föredrar att " +"lagra vad texten är till för, istället för hur. Det görs så att vi i " +"framtiden kan ställa in hur diverse textsorter presenteras för varje " +"individuell användare). Tillgängliga syften (eller stilar) är:" + +#. Tag: term +#: index.docbook:3122 +#, no-c-format +msgid "Dynamic" +msgstr "Dynamik" + +#. Tag: para +#: index.docbook:3122 +#, no-c-format +msgid "" +"Used for minor local indications such as the dynamic marks \"p\", \"mf\" " +"etc. Shown below the staff in small italic type by default." +msgstr "" +"Används för mindre lokala föredragsbeteckningar som dynamikbeteckningarna " +"\"p\", \"mf\" etc. Visas normalt under notsystemet med liten kursiv stil." + +#. Tag: term +#: index.docbook:3127 +#, no-c-format +msgid "Direction" +msgstr "Anvisning" + +#. Tag: para +#: index.docbook:3127 +#, no-c-format +msgid "" +"Used when indicating significant changes in style or mood. Shown above the " +"staff in large roman type by default." +msgstr "" +"Används för att ange väsentliga ändringar i stil eller stämning. Visas " +"normalt ovanför notsystemet med stort romerskt teckensnitt." + +#. Tag: term +#: index.docbook:3132 +#, no-c-format +msgid "Local Direction" +msgstr "Lokal anvisning" + +#. Tag: para +#: index.docbook:3132 +#, no-c-format +msgid "" +"Used to indicate less significant changes in style or mood. Shown below the " +"staff in a smaller bold-italic roman type by default." +msgstr "" +"Används för att ange mindre väsentliga ändringar i stil eller stämning. " +"Visas normalt under notsystemet med mindre romerskt teckensnitt i fetstil." + +#. Tag: term +#: index.docbook:3137 +#, no-c-format +msgid "Tempo" +msgstr "Tempo" + +#. Tag: para +#: index.docbook:3137 +#, no-c-format +msgid "" +"Used to indicate significant changes in tempo. Shown above the staff in " +"large bold roman type by default." +msgstr "" +"Används för att ange väsentliga ändringar av tempo. Visas normalt " +"ovanför notsystemet med stort romerskt teckensnitt i fetstil." + +#. Tag: term +#: index.docbook:3142 +#, no-c-format +msgid "Local Tempo" +msgstr "Lokalt tempo" + +#. Tag: para +#: index.docbook:3142 +#, no-c-format +msgid "" +"Used to indicate more minor or local changes in tempo. Shown above the staff " +"in a small bold roman type by default." +msgstr "" +"Används för att ange mindre viktiga eller lokala ändringar av tempo. " +"Visas normalt ovanför notsystemet med litet romerskt teckensnitt i fetstil." + +#. Tag: term +#: index.docbook:3147 +#, no-c-format +msgid "Lyric" +msgstr "Sångtext" + +#. Tag: para +#: index.docbook:3147 +#, no-c-format +msgid "" +"Although lyrics are usually created in the lyric editor, they can also be entered " +"word by word if necessary using this style. This style is shown below the " +"text in a small roman type by default. (Warning: if you enter lyrics this " +"way and later edit the staff's lyrics using the lyric editor, any lyrics " +"entered this way may be modified or moved if their positioning is not " +"compatible with that expected by the lyric editor.)" +msgstr "" +"Även om sångtext oftast skapas i sångtexteditorn, kan de också skrivas in " +"ord för ord om det behövs genom att använda den här stilen. Normalt " +"visas stilen under texten med litet romerskt teckensnitt. (Varning: Om du " +"skriver in sångtext på detta sätt och senare redigerar notsystemets " +"sångtext med sångtexteditorn, kan all sångtext som skrivs in på detta " +"sätt ändras eller flyttas om positionen inte stämmer med den som " +"sångtexteditorn förväntar sig.)" + +#. Tag: term +#: index.docbook:3158 +#, no-c-format +msgid "Annotation" +msgstr "Anteckning" + +#. Tag: para +#: index.docbook:3158 +#, no-c-format +msgid "" +"Used for helpful text that is not strictly considered part of the score. " +"Shown below the staff, boxed-out in a yellow sticky-label-style box by " +"default." +msgstr "" +"Används för hjälptext som inte strikt anses tillhöra partituret. Visas " +"normalt under notsystemet, i en gul ruta som liknar en klisterlapp." + +#. Tag: para +#: index.docbook:3166 +#, no-c-format +msgid "" +"You can also edit text after creating it, by clicking on the existing text " +"with the text tool." +msgstr "" +"Du kan också redigera text efter den skapats genom att klicka på den " +"befintliga texten med textverktyget." + +#. Tag: title +#: index.docbook:3170 +#, no-c-format +msgid "Editing lyrics" +msgstr "Redigera sångtexter" + +#. Tag: para +#: index.docbook:3172 +#, no-c-format +msgid "" +"The Lyric editor, available from the Open Lyric " +"Editor option of the View menu, allows you " +"to edit all of the lyric events for a single staff at once, using a fairly " +"rudimentary textual editing system. To use it, just activate the menu " +"option, edit the lyric text in the resulting dialog, and then hit OK." +msgstr "" +"Sångtexteditorn, tillgänglig från alternativet Öppna " +"sångtexteditor i menyn Visa, låter dig " +"redigera alla sångtexthändelser för ett enskilt notsystem på en gång, " +"med ett ganska grundläggande textbaserat redigeringssystem. För att " +"använda den, välj bara menyalternativet, redigera sångtexten i " +"dialogrutan som visas, och klicka därefter på Ok." + +#. Tag: para +#: index.docbook:3179 +#, no-c-format +msgid "" +"The lyrics you enter should follow a particular format. Bar lines are vital " +"to avoid the editor getting confused, and are represented with a slash " +"(\"/\"). Within each bar the individual syllables are separated by spaces " +"(at least one space: the editor doesn't care about any extra whitespace). " +"Each syllable in turn will be attached to the next subsequent note or chord " +"within that bar (although at the moment the editor can get quite confused by " +"chords that are not exact, i.e. that require smoothing or quantizing)." +msgstr "" +"Sångtext som du skriver in måste följa ett visst format. Taktstreck är " +"mycket viktiga för att undvika att editorn blir förvirrad, och " +"representeras med ett snedstreck (\"/\"). Inom varje takt skiljs enskilda " +"stavelser åt med mellanslag (åtminstone ett mellanslag: editorn bryr sig " +"inte om extra blanktecken). Varje stavelse kopplas i sin tur till " +"nästföljande not eller ackord i takten (även om editorn för närvarande " +"kan bli riktigt förvirrad av ackord som inte är exakta, dvs. som kräver " +"utjämning eller kvantisering)." + +#. Tag: para +#: index.docbook:3190 +#, no-c-format +msgid "" +"If you want a note to have no syllable attached to it, you need to provide a " +"dot (\".\") as the syllable for that note. (This is why the default lyric " +"text for a segment is usually full of dots.) Remember to separate the dots " +"with spaces, so that they are clearly separate syllables." +msgstr "" +"Om du vill att en not inte ska ha någon tillhörande stavelse, måste du " +"använda en punkt (\".\") som stavelse för noten. (Det är därför " +"standardtexten för ett segment oftast är full med punkter.) Kom ihåg att " +"skilja punkterna åt med mellanslag, så att de tydligt är skilda stavelser." + +#. Tag: para +#: index.docbook:3196 +#, no-c-format +msgid "" +"If you want more than one syllable on the same note, with a space between " +"them, use a tilde (\"~\") instead of the space. It will be shown as a space " +"on the score." +msgstr "" +"Om du vill ha mer än en stavelse för samma not, med ett mellanslag mellan " +"dem, använd tilde (\"~\") istället för mellanslag. Det visas som ett " +"mellanslag i partituret." + +#. Tag: para +#: index.docbook:3200 +#, no-c-format +msgid "" +"If you want to split a syllable across two notes, with a hyphen, you need to " +"enter a space following the hyphen so the editor knows to treat it as two " +"syllables. (Hyphens get no special treatment within syllables.)" +msgstr "" +"Om du vill dela en stavelse mellan två noter med ett bindestreck, måste du " +"skriva in ett mellanslag efter bindestrecket så att editorn vet att det ska " +"behandlas som två stavelser. (Bindestreck hanteras inte speciellt inne i " +"stavelser.)" + +#. Tag: para +#: index.docbook:3205 +#, no-c-format +msgid "" +"Syllables consisting only of numbers surrounded by square brackets (like " +"\"[29]\") will be ignored; this is the format used for the " +"automatically-generated bar numbers shown in the editor." +msgstr "" +"Stavelser som bara består av siffror omgivna av hakparenteser (som " +"\"[29]\") ignoreras. Det är formatet för automatiskt skapade taktnummer " +"som visas i editorn." + +#. Tag: para +#: index.docbook:3210 +#, no-c-format +msgid "" +"You should also be aware that the textual format of lyrics is only used for " +"editing: the lyrics are actually stored as distinct text events (one per " +"syllable). This means that the text format may potentially change in the " +"future to accommodate more advanced editing capabilities, although the event " +"format should not change and so your saved files should continue to be " +"compatible." +msgstr "" +"Du bör också vara medveten om att textformatet för sångtext bara " +"används för redigering: sångtexten lagras i själva verket som distinkta " +"texthändelser (en per stavelse). Det betyder att textformatet potentiellt " +"kan ändras i framtiden för att hantera mer avancerade " +"redigeringsmöjligheter, även om händelseformatet inte bör ändras och " +"sparade filer bör fortsätta att fungera." + +#. Tag: title +#: index.docbook:3225 +#, no-c-format +msgid "Slurs and hairpins" +msgstr "Legatobågar och klykor" + +#. Tag: para +#: index.docbook:3227 +#, no-c-format +msgid "" +"Slur and hairpin dynamic markings are stored as events, just like notes or " +"rests. To create one, select the area you want it to cover (a series of " +"notes or whatever), and then use the Add Slur, " +"Add Crescendo or Add " +"Decrescendo options from the Group menu." +msgstr "" +"Dynamikmarkeringarna legatobågar och klykor lagras som händelser, precis som " +"noter eller pauser. För att skapa en, markera området du vill täcka (en " +"följd av noter eller något annat), och använd därefter alternativen " +"Lägg till legatobåge, Lägg till " +"crescendo eller Lägg till " +"diminuendo i menyn Grupp." + +#. Tag: para +#: index.docbook:3235 +#, no-c-format +msgid "" +"You remove a slur or hairpin in the same way as any other event: either " +"select it with the selection tool and then hit Delete, or " +"click on it with the erase tool active." +msgstr "" +"Du kan ta bort en legatobåge eller klyka på samma sätt som alla andra " +"händelser: Markera den antingen med markeringsverktyget och tryck därefter " +"på Delete, eller klicka på den med borttagningsverktyget " +"aktivt." + +#. Tag: title +#: index.docbook:3244 +#, no-c-format +msgid "Note stems and slashes" +msgstr "Notskaft och tvärbalkar" + +#. Tag: para +#: index.docbook:3246 +#, no-c-format +msgid "" +"You can set the stem direction of any selected notes (provided they are a " +"sort that have stems) using the three Stem Direction options on the Notes " +"menu. The options allow you to either fix the stems up or down, or revert to " +"the stem direction that &rosegarden; would otherwise have chosen. See also " +"Beams." +msgstr "" +"Du kan ställa in skaftriktningen på alla markerade noter (under " +"förutsättning att de är av en sort som har skaft) med de tre " +"skaftriktningsalternativen i menyn Noter. Alternativen låter dig antingen " +"låsa skaften uppåt eller neråt, eller återgå till skaftriktningen som " +"&rosegarden; annars skulle ha valt. Se också Balkar." + +#. Tag: para +#: index.docbook:3253 +#, no-c-format +msgid "" +"The Notes menu also contains options for adding slashes " +"across note stems, for example to indicate short repeated notes or drum " +"rolls. These are currently purely notational; &rosegarden; will not take " +"them into account when playing the staff or generating &MIDI;." +msgstr "" +"Menyn Noter innehåller också alternativ för att lägga " +"till tvärbalkar på notskaft, för att till exempel ange korta upprepade " +"noter eller trumvirvlar. De är för närvarande bara notation. &rosegarden; " +"tar inte hänsyn till dem när notsystemet spelas upp eller när &MIDI; " +"skapas." + +#. Tag: title +#: index.docbook:3263 +#, no-c-format +msgid "Beams" +msgstr "Balkar" + +#. Tag: para +#: index.docbook:3265 +#, no-c-format +msgid "" +"Adding beams to notes is considered a grouping operation in the &rosegarden; " +"Notation editor, available on the Group menu. Select the " +"notes you want to beam, and use the Beam Group menu " +"option. To remove a beam, select the notes and use the " +"Unbeam menu option." +msgstr "" +"Att lägga till balkar till noter anses som en grupperingsåtgärd i " +"&rosegarden;s notbehandlare, tillgänglig i menyn " +"Grupp. Markera noterna du vill lägga till en balk för, " +"och använd menyalternativet Balkar i menyn Grupp. För " +"att ta bort en balk, markera noterna och använd menyalternativet " +"Ta bort balkar." + +#. Tag: para +#: index.docbook:3271 +#, no-c-format +msgid "" +"It is possible to have more than one beamed group happening at the same time " +"— you just select and beam the separate groups one at a time — " +"but Rosegarden is usually not yet clever enough to work out which notes " +"should have stems up and which should have stems down for simultaneous " +"beamed groups, so you will probably have to set the stem directions of the " +"notes in the groups explicitly as well as beaming them." +msgstr "" +"Det är möjligt att ha mer än en balkgrupp som inträffar samtidigt. Du " +"markerar och lägger bara till balkar för enskilda grupper en åt gången. " +"Oftast är Rosegarden inte ännu smart nog för att räkna ut vilka noter " +"som bör ha skaften uppåt och vilka som bör ha skaften neråt för grupper " +"som samtidigt ges balkar, alltså behöver du troligen explicit ange " +"skaftriktningar för noter i grupperna samt ge dem balkar." + +#. Tag: para +#: index.docbook:3279 +#, no-c-format +msgid "" +"&rosegarden; can attempt to guess a sensible beaming for a piece of music, " +"provided it's not too complicated. To invoke this, select the notes you want " +"to calculate the beaming for (for example by triple-clicking to select a " +"whole staff) and then use the Auto-Beam option on " +"the Group menu. Auto-beaming is also done automatically " +"when loading a &MIDI; file, for example, and the editor also does some " +"automatic beaming as you enter notes (this can be disabled by changing the " +"\"Auto-Beam when appropriate\" setting on the configuration dialog or the " +"insertion tool's right-button menu)." +msgstr "" +"&rosegarden; kan försöka att gissa lämpliga balkar för ett musikstycke, " +"under förutsättning att det inte är alltför komplicerat. För att göra " +"det, markera noterna du vill beräkna balkar för (till exempel genom att " +"trippelklicka för att markera ett helt notsystem) och därefter använda " +"alternativet Automatiska balkar i menyn " +"Grupp. Balkar skapas också automatiskt till exempel när " +"en &MIDI;-fil laddas, och editorn skapar också vissa balkar automatiskt " +"när du skriver in noter (det kan stängas av genom att ändra " +"inställningen \"Lägg automatiskt till balkar om lämpligt\" i " +"inställningsdialogrutan eller infogningsverktygets meny som visas med " +"höger musknapp)." + +#. Tag: title +#: index.docbook:3296 +#, no-c-format +msgid "Triplets and other tuplets" +msgstr "Trioler och andra annandelningar" + +#. Tag: para +#: index.docbook:3298 +#, no-c-format +msgid "" +"A triplet group consists of three notes or chords played in the time of two. " +"(More precisely, it consists of notes with a total duration of three " +"arbitrary units played in the time of two of those units.)" +msgstr "" +"En triolgrupp består av tre toner eller ackord som spelas under samma tid " +"som två. (Mer exakt består den av toner med ett totalt notvärde av tre " +"godtyckliga enheter, som spelas under samma tid som två av enheterna.)" + +#. Tag: para +#: index.docbook:3303 +#, no-c-format +msgid "" +"We use the word tuplet to describe the general situation in " +"which notes with a total duration of any given number of units are played in " +"the time of a different number of those units: nine notes in the time of " +"eight, or six in the time of four, or a crotchet and a quaver in the time of " +"a single crotchet, or even two notes in the time of three. (At present " +"&rosegarden; does not support the last example — tuplet groups must " +"always be played with a shorter duration than written.)" +msgstr "" +"Vi använder ordet annandelning för att beskriva det allmänna " +"fallet då toner med ett totalt notvärde av ett givet antal enheter, spelas " +"under en tid som anges av ett annat antal av enheterna: Nio toner under " +"tiden för åtta, eller sex under tiden för fyra, eller en fjärdedelsnot " +"och en åttondedelsnot under tiden för en enda fjärdedelsnot, eller till och " +"med två toner under tiden för tre. (För närvarande stöder inte " +"&rosegarden; det sista exemplet. Annandelningar måste alltid spelas med ett " +"kortare notvärde än det skrivna.)" + +#. Tag: para +#: index.docbook:3313 +#, no-c-format +msgid "" +"The triplet and tuplet menu functions work by taking an existing series of " +"notes or rests and squashing them so they play quicker, filling in the " +"left-over space at the end of the series with a final rest and drawing the " +"whole as a tuplet group. You can therefore create a new series of triplets " +"by entering the first two notes of the series (in their normal form), making " +"them into triplets, and then filling in the rest left over by the triplet " +"operation with the final note of the triplet. Or you can apply the triplet " +"operation before you enter any notes, thus turning the original rest itself " +"into triplet form, and then insert the notes of the triplet on top of it. " +"Some examples may help:" +msgstr "" +"Menyfunktionerna för trioler och annandelningar fungerar genom att ta en " +"befintlig följd av noter eller pauser och trycka ihop dem så att de spelas " +"upp snabbare, och fylla i överblivet utrymme efter följden med en slutgiltig " +"paus och rita upp det hela som en annandelning. Därför kan du skapa en ny " +"följd av trioler genom att mata in de första två noterna i följden (med " +"normal form), göra dem till trioler, och därefter fylla i utrymmet som " +"blivit kvar efter triolåtgärden med den sista noten i triolen. Eller kan " +"du utföra triolåtgärden innan du matar in några noter, och på så sätt " +"omvandla den ursprungliga pausen till triolform, och därefter infoga " +"triolens noter ovanpå den. Några exempel kan vara till hjälp:" + +#. Tag: phrase +#: index.docbook:3337 +#, no-c-format +msgid "&rosegarden;'s general tuplet dialog" +msgstr "&rosegarden;s allmänna dialogruta för annandelningar" + +#. Tag: para +#: index.docbook:3343 +#, no-c-format +msgid "" +"To specify a general tuplet group, we need to know what the base note is " +"(for example, if we play three crotchets in the time of two then the base is " +"a crotchet) and the ratio of the number of base notes written to the number " +"played." +msgstr "" +"För att ange en allmän annandelning, måste man känna till vad grundnoten " +"är (om man till exempel spelar tre fjärdedelsnoter under tiden för två " +"är grundnoten en fjärdedelsnot) och förhållandet mellan antalet " +"grundnoter som skrivs till antalet som spelas." + +#. Tag: title +#: index.docbook:3357 +#, no-c-format +msgid "Paste types" +msgstr "Inklistringstyper" + +#. Tag: para +#: index.docbook:3359 +#, no-c-format +msgid "" +"The meaning of cut and paste is less obvious for a music " +"editing program than it is for something like a word processor in which the " +"letters and words go in a simple linear order. Accordingly, &rosegarden;'s " +"Notation editor offers several different types of Paste operation, as well " +"as separate Cut and Cut and Close functions." +msgstr "" +"Betydelsen av klipp ut och klistra in är inte så uppenbar " +"för musikredigeringsprogram som den är för något som en ordbehandlare, " +"där bokstäverna och orden anges i en enkel linjär ordning. I enlighet med " +"det erbjuder &rosegarden;s notbehandlare flera olika typer av " +"inklistringsåtgärder, samt separata funktioner för Klipp ut eller Klipp " +"ut och stäng." + +#. Tag: phrase +#: index.docbook:3376 +#, no-c-format +msgid "&rosegarden;'s paste-type dialog" +msgstr "&rosegarden;s inklistringstypdialogruta" + +#. Tag: para +#: index.docbook:3378 +#, no-c-format +msgid "The types of Paste operation are:" +msgstr "Typerna av inklistringsåtgärder är:" + +#. Tag: term +#: index.docbook:3386 +#, no-c-format +msgid "Restricted" +msgstr "Begränsat" + +#. Tag: para +#: index.docbook:3388 +#, no-c-format +msgid "" +"Requires an existing gap (containing nothing but rests) of enough duration " +"to completely contain the clipboard's contents. The contents are pasted into " +"the gap. If there is no gap long enough, the paste is not carried out." +msgstr "" +"Kräver ett befintligt gap (som inte innehåller något annat än pauser) " +"med tillräckligt notvärde för att helt omfatta klippbordets innehåll. " +"Innehållet klistras in i gapet. Om det inte finns ett gap som är långt " +"nog, utförs inte inklistringen." + +#. Tag: para +#: index.docbook:3394 +#, no-c-format +msgid "This is the default paste type." +msgstr "Det här är förvald inklistringstyp." + +#. Tag: term +#: index.docbook:3401 +#, no-c-format +msgid "Simple" +msgstr "Enkel" + +#. Tag: para +#: index.docbook:3403 +#, no-c-format +msgid "" +"Erases enough events to make a gap long enough to paste into, and then " +"pastes into that. The pasted events therefore completely replace any " +"existing ones in the time covered by the paste." +msgstr "" +"Raderar tillräckligt med händelser för att skapa ett gap som är långt " +"nog att klistra in i, och klistrar därefter in i det. De inklistrade " +"händelserna ersätter därför fullständigt alla eventuella befintliga i " +"tiden som täcks av inklistringen." + +#. Tag: term +#: index.docbook:3412 +#, no-c-format +msgid "Open and Paste" +msgstr "Öppna och klistra in" + +#. Tag: para +#: index.docbook:3414 +#, no-c-format +msgid "" +"The opposite of Cut and Close. Makes room for the paste by moving all of the " +"subsequent events further towards the end of the composition." +msgstr "" +"Motsatsen till Klipp ut och stäng. Gör rum för det som ska klistras in " +"genom att flytta alla efterföljande händelser längre mot kompositionens " +"slut." + +#. Tag: term +#: index.docbook:3423 +#, no-c-format +msgid "Note Overlay" +msgstr "Överlagring av noter" + +#. Tag: para +#: index.docbook:3425 +#, no-c-format +msgid "" +"Carries out a paste in the way that it would happen if you entered each of " +"the notes in the clipboard yourself using the notation editor: if there are " +"other notes overlapping with them, the new or existing notes will be split " +"into ties appropriately." +msgstr "" +"Utför en inklistring på samma sätt som skulle ske om du skrev in var och " +"en av noterna på klippbordet själv med notbehandlaren: Om det finns " +"andra noter som överlappar med dem, delas nya och befintliga noter i " +"lämpliga bindebågar." + +#. Tag: term +#: index.docbook:3435 +#, no-c-format +msgid "Matrix Overlay" +msgstr "Matrisöverlagring" + +#. Tag: para +#: index.docbook:3437 +#, no-c-format +msgid "" +"Carries out a paste in the way that it would happen if you entered each of " +"the notes in the clipboard yourself using the matrix editor: the notes " +"presently in the way of the paste will be ignored, allowing the new notes to " +"overlap arbitrarily with them." +msgstr "" +"Utför en inklistring på samma sätt som skulle ske om du skrev in var och " +"en av noterna på klippbordet själv med matriseditorn: Noterna som för " +"närvarande är ivägen för inklistringen ignoreras, och de nya noterna " +"får överlappa godtyckligt med dem." + +#. Tag: para +#: index.docbook:3448 +#, no-c-format +msgid "" +"All of these take effect at the current position of the insert cursor on the " +"current staff. To choose between the various paste types, use the Paste... " +"menu option (with dots) on the Edit menu." +msgstr "" +"Alla dessa får effekt på infogningsmarkörens aktuella position i aktuellt " +"notsystem. För att välja mellan de olika typerna av inklistring, använd " +"menyalternativet Klistra in... (med punkter) i menyn Redigera." + +#. Tag: title +#: index.docbook:3457 +#, no-c-format +msgid "Adjusting Notation" +msgstr "Justera notering" + +#. Tag: title +#: index.docbook:3461 +#, no-c-format +msgid "Adjusting note and rest durations" +msgstr "Justera not- och pausvärden" + +#. Tag: title +#: index.docbook:3464 +#, no-c-format +msgid "Normalizing Rests" +msgstr "Normalisera pauser" + +#. Tag: para +#: index.docbook:3466 +#, no-c-format +msgid "" +"Sometimes as a result of editing or quantization operations, a piece of " +"notation can end up with incorrect rest durations for the current time " +"signature. You can use the Normalize Rests " +"function to fix these. This function examines each sequence of consecutive " +"rests found in the selection, and adjusts, splits and merges rests as " +"necessary to ensure that the rests have theoretically correct durations and " +"fall on the correct boundaries." +msgstr "" +"Ibland kan ett notavsnitt råka ut för felaktiga pausvärden för " +"aktuell taktart, som ett resultat av redigering eller " +"kvantiseringsåtgärder. Du kan använda funktionen Normalisera " +"pauser för att fixa dem. Funktionen undersöker varje sekvens " +"av pauser i en följd som hittas i markeringen och justerar, delar och " +"lägger ihop pauser enligt vad som är nödvändigt för att försäkra att " +"pauserna har rätt teoretiskt pausvärde och hamnar på rätt gränser." + +#. Tag: para +#: index.docbook:3477 +#, no-c-format +msgid "" +"For example, a 4/4 bar containing a crotchet (quarter-note), then a minim " +"(half-note) rest and a crotchet rest will be rearranged to place the " +"crotchet rest first, as the minim rest should not cross the central beat " +"boundary of the bar." +msgstr "" +"Om en 4/4-takt innehåller en fjärdedelsnot, arrangeras en halvnotspaus och " +"en fjärdedelspaus om så att fjärdedelspausen placeras först, eftersom " +"halvnotspausen inte ska överlappa den centrala taktgränsen i takten." + +#. Tag: title +#: index.docbook:3560 +#, no-c-format +msgid "Interpreting Performance Cues in Notation" +msgstr "Tolka utförandeantydningar i notskrift" + +#. Tag: para +#: index.docbook:3562 +#, no-c-format +msgid "" +"You can use the Interpret function to modify the velocities and timings of " +"notes according to any written or indicated dynamics found. The selection of " +"interpretations available is as follows:" +msgstr "" +"Du kan använda tolkningsfunktionen för att ändra ljudstyrkor och tider " +"för toner enligt eventuell skriven eller angiven dynamik som hittas. " +"Tillgängliga val av tolkningar är följande:" + +#. Tag: term +#: index.docbook:3570 +#, no-c-format +msgid "Apply text dynamics (p, mf, ff etc)" +msgstr "Tillämpa dynamikbeteckningar (p, mf, ff, etc.)" + +#. Tag: para +#: index.docbook:3572 +#, no-c-format +msgid "" +"Sets a velocity to each note based on the last piece of text of \"Dynamic\" " +"type seen on the same staff (only texts of the form pp, p, mp, mf, f, ff, " +"fff etc are matched)." +msgstr "" +"Anger en ljudstyrka för varje not baserat på senaste texten av typen " +"\"Dynamik\" som observerats i samma notsystem (bara text på formen pp, p, " +"mp, mf, f, ff, fff etc känns igen)." + +#. Tag: term +#: index.docbook:3580 +#, no-c-format +msgid "Apply hairpin dynamics" +msgstr "Använd dynamikklykor" + +#. Tag: para +#: index.docbook:3582 +#, no-c-format +msgid "" +"Makes the notes gradually increase or decrease in velocity during a " +"crescendo or decrescendo hairpin." +msgstr "" +"Gör att noterna gradvis ökar eller minskar ljudstyrka under en klyka som " +"anger crescendo eller diminuendo." + +#. Tag: term +#: index.docbook:3589 +#, no-c-format +msgid "Stress beats" +msgstr "Betona taktslag" + +#. Tag: para +#: index.docbook:3592 +#, no-c-format +msgid "" +"Makes notes that land on bar or beat boundaries slightly louder (greater " +"velocity) than the surrounding notes." +msgstr "" +"Gör noter som hamnar på takt- eller taktslagsgränser något starkare " +"(större ljudstyrka) än omgivande noter." + +#. Tag: term +#: index.docbook:3599 +#, no-c-format +msgid "Articulate slurs, staccato, tenuto etc" +msgstr "Artikulationsbeteckningar" + +#. Tag: para +#: index.docbook:3602 +#, no-c-format +msgid "" +"Shortens unslurred notes, shortens staccato notes more, and gives notes " +"inside slurs and tenuto notes their full length." +msgstr "" +"Avkortar noter utan legatobågar, avkortar staccato-noter ännu mer, och ger " +"noter inne i legatobågar och tenuto-noter sina fulla notvärden." + +#. Tag: title +#: index.docbook:3616 +#, no-c-format +msgid "Notation from performance data" +msgstr "Notskrift från utförandedata" + +#. Tag: para +#: index.docbook:3618 +#, no-c-format +msgid "" +"&rosegarden; is a multi-purpose program: it is a notation editor, but it is " +"primarily a sequencer and editor for performed music. And in performance, of " +"course, the times and durations of notes are rarely as precise as they are " +"on a printed score." +msgstr "" +"&rosegarden; är ett program med flera användningsområden: Det är en " +"notbehandlare, men det är i huvudsak en musikbehandlare och editor för " +"utförd musik, och i utföranden är tonernas tider och notvärden " +"naturligtvis sällan så precisa som de är i ett tryckt partitur." + +#. Tag: para +#: index.docbook:3626 +#, no-c-format +msgid "" +"This means that it's often desirable for &rosegarden; to do a lot of tidying " +"of the basic note times and durations when attempting to make meaningful " +"notes to show in the notation editor. This is a kind of quantization, but a " +"kind that requires a surprising amount of guesswork to do well. &rosegarden; " +"includes a quantizer designed to do a slightly better job of this than the " +"plain grid quantizer." +msgstr "" +"Det betyder att det ofta är önskvärt för &rosegarden; att göra en hel " +"del uppstädning av grundläggande nottider och notvärden vid försök att " +"skapa meningsfulla noter att visa i notbehandlaren. Det är en sorts " +"kvantisering, men en sort som kräver en förvånansvärd mängd gissningar " +"för att göras bra. Det ingår en kvantisering i &rosegarden; som är " +"konstruerad för att göra ett något bättre jobb än den enkla " +"rutnätskvantiseringen." + +#. Tag: para +#: index.docbook:3636 +#, no-c-format +msgid "" +"Applying quantization strictly for notation is rather unimaginatively " +"referred to as notation quantization: it only applies to the " +"notes you see and edit in notation, and doesn't affect the notes that play, " +"or that you edit in other views such as the matrix. This quantization is " +"automatically applied to music imported or recorded from MIDI, although not " +"all of its possible capabilities are enabled by default." +msgstr "" +"Att använda kvantisering enbart för notskrift kallas ganska fantasilöst " +"för kvantisering: Den gäller bara noterna du ser " +"och redigerar i notskrift, och påverkar inte tonerna som spelas, eller det " +"du redigerar i andra vyer som matrisvyn. Kvantiseringen utförs automatiskt " +"för musik som importeras eller spelas in från MIDI, även om inte alla " +"dess möjliga funktioner normalt är aktiverade." + +#. Tag: para +#: index.docbook:3647 +#, no-c-format +msgid "" +"There are two ways to see which notes have been quantized for notation. By " +"default, each notation view contains a Raw Note Ruler (in the group of " +"rulers above the score) showing a rectangular block for each note. This " +"block is positioned so as to represent the time and duration of the note as " +"performed, but with the top and bottom edges of the rectangle extended or " +"shortened to represent the time after notation quantization. If this is too " +"much information for you, you can alternatively choose (in the configuration " +"dialog) to show in a green colour all note heads in the score that have had " +"their timings altered by notation quantization." +msgstr "" +"Det finns två sätt att se vilka noter som har kvantiserats för notskrift. " +"Normalt innehåller varje notvy en linjal för obehandlade noter (i " +"gruppen med linjaler ovanför partituret) som visar ett rektangulärt block " +"för varje not. Blocket är placerat så att det representerar tiden och " +"notvärdet för noten som utfördes, men med rektangelns övre och nedre " +"kant utökade eller avkortade för att representera tiden efter " +"kvantisering. Om det är för mycket information för dig, kan du " +"som ett alternativ välja (i inställningsdialogrutan) att visa alla " +"nothuvuden i partituret som har ändrade tider efter kvantisering " +"med grön färg." + +#. Tag: phrase +#: index.docbook:3670 +#, no-c-format +msgid "&rosegarden;'s notation quantize dialog" +msgstr "&rosegarden;s kvantiseringsdialogruta" + +#. Tag: para +#: index.docbook:3674 +#, no-c-format +msgid "" +"If the quantization &rosegarden; has used is not suitable, either for the " +"entire score or for a selection of notes, you can choose to use a different " +"level of quantization or none at all. To apply a different quantization to " +"some notes, select the notes and use the Quantize... menu function (tick the " +"box labelled Quantize for notation only). The quantization " +"level or type used by default can be changed in the configuration dialog." +msgstr "" +"Om kvantiseringen &rosegarden; har använt inte är lämplig, antingen för " +"hela partituret eller för ett antal markerade noter, kan du välja att " +"använda en annan kvantiseringsnivå eller ingen alls. För att använda en " +"annan kvantisering för vissa noter, markera noterna och använd " +"menyfunktionen Kvantisera... (markera rutan som heter Kvantisera bara " +"för notskrift). Kvantiseringsnivån som normalt används kan " +"ändras i inställningsdialogrutan." + +#. Tag: title +#: index.docbook:3686 +#, no-c-format +msgid "Configurable parameters for the heuristic notation quantizer" +msgstr "Inställningsbara parametrar för den heuristiska kvantiseringen" + +#. Tag: title +#: index.docbook:3689 +#, no-c-format +msgid "Parameters for quantization itself" +msgstr "Parametrar för själva kvantiseringen" + +#. Tag: term +#: index.docbook:3694 +#, no-c-format +msgid "Complexity" +msgstr "Komplexitet" + +#. Tag: para +#: index.docbook:3696 +#, no-c-format +msgid "" +"The \"complexity\" of a notation quantizer is its most fundamental " +"parameter. A \"complex\" quantizer will be more prepared to accept that " +"complex-looking music is in fact intended to be complex, whereas a " +"\"simple\" quantizer is more likely to assume that complex-looking music " +"results from an imprecise performance of simple music." +msgstr "" +"Kvantiseringens \"komplexitet\" är dess mest grundläggande " +"parameter. En \"komplex\" kvantisering är mer redo att acceptera att musik " +"som ser komplex ut i själva verket är avsedd att vara komplex, medan en " +"\"enkel\" kvantisering är mer redo att anta att musik som ser komplex ut " +"orsakas av ett mindre precist utförande av enkel musik." + +#. Tag: para +#: index.docbook:3704 +#, no-c-format +msgid "" +"The default setting is intended to produce reasonable results for a fairly " +"wide range of music." +msgstr "" +"Standardinställningarna är avsedda att skapa rimliga resultat för ett " +"ganska brett musikspektrum." + +#. Tag: para +#: index.docbook:3713 +#, no-c-format +msgid "" +"The base grid unit (set to a note duration value) specifies the absolute " +"minimum unit of note that will be permitted to remain in the score after " +"quantization. For example, if set to a semiquaver, all notes will be placed " +"on boundaries of a multiple of a semiquaver, with durations also a multiple " +"of a semiquaver." +msgstr "" +"Den grundläggande rutnätsenheten (inställd till ett notvärde) " +"anger den absolut minsta notenheten som tillåts bli kvar i partituret efter " +"kvantisering. Om den till exempel är inställd till en sextondedelsnot, " +"placeras alla noter på gränser som är en multipel av sextondedelsnoter, och " +"notvärdena är också multiplar av sextondedelsnoter." + +#. Tag: para +#: index.docbook:3721 +#, no-c-format +msgid "" +"The setting of the base grid unit is not quite as significant for a notation " +"quantizer as it is for a plain grid quantizer, because all it does is impose " +"an absolute limit on the level of precision permitted by the complexity " +"parameter. Mostly, when you find a case in which increasing the grid unit " +"produces better results, you've actually found a case in which the quantizer " +"simply didn't do as good a job as it should have been able to with the " +"smaller unit." +msgstr "" +"Basrutnätsenhetens Inställning är inte riktigt så viktig för " +"kvantisering som den är för den vanliga rutnätskvantiseringen, " +"eftersom allt den gör är att lägga en absolut gräns på precisionsnivån " +"som tillåts av komplexitetsparametern. Oftast när du hittar ett fall där " +"bättre resultat uppnås genom att öka rutnätsenheten, har du i själva " +"verket hittat ett fall där kvantiseringen helt enkelt inte gjorde ett så " +"bra jobb som den skulle ha kunnat göra med den mindre enheten." + +#. Tag: term +#: index.docbook:3735 +#, no-c-format +msgid "Tuplet level" +msgstr "Annandelningsnivå" + +#. Tag: para +#: index.docbook:3737 +#, no-c-format +msgid "" +"The notation quantizer is capable of identifying tuplets (triplets and other " +"time-squashed groups), within reasonable limits. This parameter controls how " +"ambitious it will attempt to be when looking for tuplets, by setting a limit " +"on how many notes per tuplet group it will attempt to identify. If it is set " +"to None, the quantizer will not attempt to identify tuplets " +"at all." +msgstr "" +"Kvantiseringen klarar av att identifiera annandelningar (trioler och andra " +"tidskomprimerade grupper), inom rimliga gränser. Parametern styr hur " +"ambitiös den försöker vara när den letar efter annandelningar, genom att " +"ange en gräns för hur många noter per annandelning som den försöker " +"identifiera. Om den är inställd till Inget, försöker inte " +"kvantiseringen identifiera annandelningar överhuvudtaget." + +#. Tag: title +#: index.docbook:3754 +#, no-c-format +msgid "Parameters that control tidying up after quantization" +msgstr "Parametrar som styr uppstädning efter kvantisering" + +#. Tag: term +#: index.docbook:3759 +#, no-c-format +msgid "Re-beam" +msgstr "Lägg till balkar igen" + +#. Tag: para +#: index.docbook:3761 +#, no-c-format +msgid "" +"Causes the notes to be re-beamed into groups appropriately after " +"quantization. This is usually desirable." +msgstr "" +"Gör att noterna placeras in i balkar med grupper som är passande efter " +"kvantiseringen. Det är ofta önskvärt." + +#. Tag: term +#: index.docbook:3770 +#, no-c-format +msgid "Add articulations (staccato, tenuto, slurs)" +msgstr "Lägg till artikulationsbeteckningar" + +#. Tag: para +#: index.docbook:3773 +#, no-c-format +msgid "" +"Causes the quantizer to attempt to identify, based on the durations of " +"individual and consecutive notes, which notes should be notated with " +"staccato marks (for notes that fall significantly short of the following " +"note, but not apparently short enough to merit a rest), tenuto (for notes " +"that almost or just overlap the following note) and slurs (for series of " +"notes that meet or overlap)." +msgstr "" +"Gör att kvantiseringen försöker identifiera vilka noter som ska markeras " +"som staccato, baserat på notvärdet hos individuella noter och noter i följd " +"(för noter som slutar väsentligt tidigare än den efterföljande " +"noten, men uppenbarligen inte tidigt nog för att vara värda en paus), " +"tenuto (för noter som nästan eller precis överlappar följande not) och " +"legatobågar (för följder av noter som möts eller överlappar)." + +#. Tag: term +#: index.docbook:3787 +#, no-c-format +msgid "Tie notes at barlines etc" +msgstr "Bind noter vid taktstreck etc." + +#. Tag: para +#: index.docbook:3789 +#, no-c-format +msgid "" +"Causes any notes that are still found after quantization to overlap barlines " +"or to have durations not exactly expressible with single note heads to be " +"split into multiple notes appropriately, and tied. This has the same effect " +"as applying the \"Tie Notes at Barlines\" function in the notation view." +msgstr "" +"Gör att alla noter som fortfarande finns kvar efter kvantisering och " +"överlappar taktstreck eller som har notvärden som inte kan uttryckas exakt " +"med enstaka nothuvuden att delas upp i flera noter på lämpligt sätt, och " +"bindas. Det får samma effekt som att utföra funktionen \"Bind noter vid " +"taktstreck\" i notvyn." + +#. Tag: para +#: index.docbook:3797 +#, no-c-format +msgid "" +"This parameter is not set by default because it changes the number of note " +"events, which is undesirable when using &rosegarden; partly or principally " +"as a MIDI sequencer." +msgstr "" +"Den här parametern är normalt inte aktiverad, delvis på grund av att den " +"ändrar antalet tonhändelser, vilket är olämpligt när &rosegarden; " +"delvis eller huvudsakligen används som en MIDI-musikbehandlare." + +#. Tag: term +#: index.docbook:3807 +#, no-c-format +msgid "Split-and-tie overlapping chords" +msgstr "Dela och bind ackordnoter med för stora notvärden" + +#. Tag: para +#: index.docbook:3809 +#, no-c-format +msgid "" +"Causes overlapping notes to be split and tied, so as to make strict chords " +"with individual noteheads tied as necessary. This has the same effect as " +"applying the \"Split-and-Tie Overlapping Chords\" function in the notation " +"view." +msgstr "" +"Gör att överlappande noter delas och binds, så att strikta ackord med " +"individuella nothuvuden bundna efter behov skapas. Det får samma effekt som " +"att utföra funktionen \"Dela och bind ackordnoter med för stora notvärden\" " +"i notvyn." + +#. Tag: para +#: index.docbook:3816 +#, no-c-format +msgid "" +"This parameter is not set by default partly because it changes the number of " +"note events, which is undesirable when using &rosegarden; partly or " +"principally as a MIDI sequencer." +msgstr "" +"Den här parametern är normalt inte aktiverad, delvis på grund av att den " +"ändrar antalet tonhändelser, vilket är olämpligt när &rosegarden; " +"delvis eller huvudsakligen används som en MIDI-musikbehandlare." + +#. Tag: title +#: index.docbook:3831 +#, no-c-format +msgid "Note styles" +msgstr "Notstilar" + +#. Tag: para +#: index.docbook:3833 +#, no-c-format +msgid "" +"&rosegarden; also allows you to change various aspects of the way the " +"various types of notes are drawn, such as the choice of note heads, the " +"number of tails, whether notes are filled or unfilled and so on." +msgstr "" +"&rosegarden; låter dig också ändra diverse aspekter av sättet som olika " +"nottyper ritas upp, som val av nothuvuden, antal flaggor, om noter är " +"ifyllda eller inte och så vidare." + +#. Tag: para +#: index.docbook:3840 +#, no-c-format +msgid "" +"A set of standard styles (Classical, Cross, Triangle and Mensural) is " +"provided, and you can change the style used for individual notes by " +"selecting them and then using the Note Style menu options. Each note " +"remembers which style has been chosen for it, and this information is saved " +"as part of the composition. You can also change the default style for new " +"notes using the Configure Rosegarden... option in " +"the Settings menu." +msgstr "" +"En uppsättning standardstilar (Klassisk, Kors, Triangel och Mensural) " +"tillhandahålls, och du kan ändra stilen som används för enskilda noter " +"genom att markera dem och därefter använda alternativen i menyn Notstil. " +"Varje not kommer ihåg vilken stil som har valts för den, och informationen " +"sparas som en del av kompositionen. Du kan också ändra förvald stil för " +"nya noter genom att använda alternativet Anpassa " +"Rosegarden... i menyn Inställningar." + +#. Tag: para +#: index.docbook:3852 +#, no-c-format +msgid "" +"It is also possible to create your own note styles by describing them in " +"XML files. (Even the standard styles are defined this " +"way: the only reason the editor knows that a Classical semiquaver has a " +"tilted oval filled head, a stem, two flags, etc., is that the description in " +"Classical.xml says so.) See Customising Rosegarden for more " +"information." +msgstr "" +"Det är också möjligt att skapa dina egna notstilar genom att beskriva dem " +"med XML-filer. (Till och med standardstilarna är " +"definierade på detta sätt: Den enda orsaken att editorn vet om att en " +"klassisk sextondedelsnot har ett ovalt lutande ifyllt huvud, ett skaft, två " +"flaggor etc., är att beskrivningen i Classical.xml anger det.) Se Anpassa Rosegarden för mer " +"information." + +#. Tag: title +#: index.docbook:3865 +#, no-c-format +msgid "Note fonts" +msgstr "Notteckensnitt" + +#. Tag: para +#: index.docbook:3866 +#, no-c-format +msgid "" +"&rosegarden; is supplied with a single scalable notation font, the Feta font " +"developed by the Lilypond project. Feta is an extremely high quality font " +"that should be suitable for nearly all classical work." +msgstr "" +"&rosegarden; levereras med ett enda skalbart notteckensnitt, " +"Feta-teckensnittet utvecklat i Lilypond-projektet. Feta är ett teckensnitt " +"med mycket hög kvalitet som bör vara lämpligt för nästan allt klassiskt " +"arbete." + +#. Tag: para +#: index.docbook:3873 +#, no-c-format +msgid "" +"&rosegarden; also includes support as standard for a number of other " +"notation fonts. You will need to provide the fonts themselves in TrueType " +"(.ttf) or PostScript Type-1 (.pfb, .pfa) format, and you will need the " +"relevant permissions to install them to the same place as &rosegarden; was " +"installed. To install a supported notation font, locate the share directory " +"for the &rosegarden; installation (usually a subdirectory of the KDE desktop " +"installation tree, such as /opt/kde/share/apps/rosegarden). You will find " +"that this directory has a subdirectory called \"fonts\": copy the font files " +"into there, and restart &rosegarden;. If your font is supported, it should " +"now appear on the font menu in the notation editor." +msgstr "" +"&rosegarden; innehåller också stöd som standard för ett antal andra " +"notteckensnitt. Du måste själv tillhandahålla teckensnitten på " +"formaten Truetype (.ttf) eller Postscript Typ-1 (.pfb, .pfa), och du måste " +"ha lämpliga rättigheter för att installera dem på samma plats som " +"&rosegarden; installerades. För att installera ett notteckensnitt " +"som stöds, lokalisera katalogen share för &rosegarden;s installation " +"(oftast en underkatalog till KDE-skrivbordets installationsträd, som " +"/opt/kde/share/apps/rosegarden). Du märker att katalogen har en " +"underkatalog som heter \"fonts\". Kopiera teckensnittsfilerna till den, och " +"starta om &rosegarden;. Om teckensnittet stöds, ska det nu synas i " +"teckensnittsmenyn i notbehandlaren." + +#. Tag: para +#: index.docbook:3887 +#, no-c-format +msgid "" +"Complete or partial support is currently provided for the following fonts: " +"Fughetta, by Blake Hodgetts; Petrucci, the \"original\" Finale font; " +"Maestro, the \"new\" Finale font; Opus, the Sibelius font; Inkpen, the " +"Sibelius jazz font; Sonata from Adobe; Steinberg, from the Cubase sequencer; " +"and Xinfonia. (Most of the above font names are registered trademarks of the " +"respective companies.) THE ROSEGARDEN TEAM MAKES NO REPRESENTATION AS TO THE " +"LEGAL STATUS OF ANY USE OF THESE FONTS WITH ROSEGARDEN. It is your " +"responsibility to ensure you are in compliance with the licence (if any) " +"under which a font was provided to you, before attempting to use it. If you " +"are not sure whether you have the right to use a font, don't: apart from " +"anything else, the standard Feta font is better than most of these anyway." +msgstr "" +"Fullständigt eller delvis stöd tillhandahålls för närvarande för " +"följande teckensnitt: Fughetta, av Blake Hodgetts; Petrucci, det " +"\"ursprungliga\" Finale-teckensnittet; Maestro, det \"nya\" " +"Finale-teckensnittet; Opus, Sibelius teckensnitt; Inkpen, Sibelius jazz-" +"teckensnitt; Sonata från Adobe; Steinberg, från Cubase-musikbehandlaren; " +"och Xinfonia. (De flesta av ovanstående teckensnittsnamn är registrerade " +"varumärken av respektive företag.) ROSEGARDEN-GRUPPEN GER INGA " +"UTFÄSTELSER ANGÅENDE JURIDISK STATUS FÖR ANVÄNDNING AV NÅGOT AV DESSA " +"TECKENSNITT MED ROSEGARDEN. Det är ditt ansvar att försäkra dig om att du " +"följer den licens (om det finns någon) som du erhöll teckensnittet med, " +"innan du försöker använda det. Om du inte är säker på att du har " +"rättighet att använda ett teckensnitt, gör då inte det. Förutom alla " +"andra aspekter, så är det vanliga Feta-teckensnittet ändå bättre än de " +"flesta av dem." + +#. Tag: para +#: index.docbook:3902 +#, no-c-format +msgid "" +"It is also possible to provide new mapping files so as to use new fonts. For " +"some fonts that have similar mappings or metrics to fonts in the above list, " +"this may be as simple as editing the name of the font in the mapping file. " +"See Customising Rosegarden " +"for more information." +msgstr "" +"Det är också möjligt att tillhandahålla nya avbildningsfiler för att " +"använda nya teckensnitt. För vissa teckensnitt som har liknande " +"avbildningar eller mått som teckensnitt i listan ovan, kan det vara så " +"enkelt som att redigera teckensnittets namn i avbildningsfilen. Se Anpassa Rosegarden för mer " +"information." + +#. Tag: title +#: index.docbook:3916 +#, no-c-format +msgid "The Event List editor" +msgstr "Händelselisteditorn" + +#. Tag: para +#: index.docbook:3920 +#, no-c-format +msgid "" +"The &rosegarden; Event List editor shows the events in a single segment in a " +"raw form, and enables you to edit the precise properties of those events " +"individually." +msgstr "" +"&rosegarden;s editor för händelselistan visar händelserna i ett enstaka " +"segment i obehandlad form, och gör det möjligt att redigera de exakta " +"egenskaperna för händelserna individuellt." + +#. Tag: phrase +#: index.docbook:3932 +#, no-c-format +msgid "&rosegarden;'s event list editor" +msgstr "&rosegarden;s händelselisteditor" + +#. Tag: title +#: index.docbook:5702 +#, no-c-format +msgid "Customising Rosegarden" +msgstr "Anpassa Rosegarden" + +#. Tag: title +#: index.docbook:5705 +#, no-c-format +msgid "Configuring custom notation fonts" +msgstr "Anpassa egna notteckensnitt" + +#. Tag: para +#: index.docbook:5707 +#, no-c-format +msgid "" +"If you have a notation font installed on your system in a scalable format " +"(TrueType or Type-1) but it is not currently supported by Rosegarden, you " +"can create your own mapping XML file to describe the font's character map " +"and metrics in a way Rosegarden can use. These files are installed in the " +"fonts/mappings subdirectory of the Rosegarden installation directory, and a " +"number of samples are included with the distribution." +msgstr "" +"Om du har ett notteckensnitt installerat på systemet med ett " +"skalbart format (Truetype eller Typ-1) men den för närvarande inte stöds " +"av Rosegarden, kan du skapa din egen XML-avbildningsfil för att beskriva " +"teckensnittets teckenavbildning och mått på ett sätt som Rosegarden kan " +"använda. Filerna installeras i underkatalogen fonts/mappings i Rosegardens " +"installationskatalog, och ett antal exempel ingår i distributionen." + +#. Tag: para +#: index.docbook:5716 +#, no-c-format +msgid "" +"You can also use these mapping files to define new pixmap-based fonts, in " +"which every shape in a particular size is loaded from a separate pixmap " +"file. The two standard notation fonts supplied with Rosegarden-4 are pixmap " +"fonts defined in exactly this way." +msgstr "" +"Du kan också använda avbildningsfilerna för att definiera nya teckensnitt " +"baserade på punktavbildning, där varje form av en viss storlek laddas " +"från en separat punktavbildningsfil. De två standardteckensnitten för " +"notskrift som levereras med Rosegarden-4 är punktavbildade teckensnitt som " +"definierats exakt på detta sätt." + +#. Tag: para +#: index.docbook:5723 +#, no-c-format +msgid "" +"It is even possible to define a notation font as using one or more scalable " +"system fonts, augmented with pixmaps for particular sizes or for characters " +"not found in the scalable fonts. This is because most of the mapping file " +"format is the same for scalable and pixmap fonts, and where there are " +"different elements for the different sorts of fonts, it is usually possible " +"to include both of them. Rosegarden will usually use pixmaps where available " +"and scalable fonts otherwise." +msgstr "" +"Det är till och med möjligt att definiera ett notteckensnitt att " +"använda en eller flera skalbara systemteckensnitt, förbättrade med " +"punktavbildningar för vissa storlekar eller för tecken som inte finns i de " +"skalbara teckensnitten. Det går eftersom det mesta av avbildningsfilernas " +"format är samma för skalbara och punktavbildade teckensnitt, och när det " +"finns olika element för olika sorters teckensnitt är det oftast möjligt " +"att inkludera båda. Rosegarden använder oftast punktavbildningar om de är " +"tillgängliga, och annars skalbara teckensnitt." + +#. Tag: para +#: index.docbook:5734 +#, no-c-format +msgid "" +"You may also wish to edit the mapping files supplied with Rosegarden if you " +"find their measurements for alignment or sizing are not to your liking. (If " +"you believe that any of the supplied files are actually wrong, please let us " +"know.)" +msgstr "" +"Du kanske också vill redigera avbildningsfilerna som levereras med " +"Rosegarden om du tycker att deras mått för justering eller storlek inte " +"passar dig. (Om du tycker att någon av filerna som levereras är felaktig " +"på något sätt, tala gärna om det för oss.)" + +#. Tag: title +#: index.docbook:5741 +#, no-c-format +msgid "Codes and Glyphs" +msgstr "Koder och glyfer" + +#. Tag: title +#: index.docbook:5747 +#, no-c-format +msgid "Notation font mapping XML format" +msgstr "XML-format för avbildning av notteckensnitt" + +#. Tag: para +#: index.docbook:5749 +#, no-c-format +msgid "" +"Here is a summary of the XML elements that may be used in the font mapping " +"file." +msgstr "" +"Här är en översikt över XML-elementen som kan användas i en " +"teckensnittsavbildningsfil." + +#. Tag: title +#: index.docbook:5753 +#, no-c-format +msgid "rosegarden-font-encoding" +msgstr "rosegarden-font-encoding" + +#. Tag: para +#: index.docbook:5755 +#, no-c-format +msgid "" +"This element must exist in every mapping file, and should contain all the " +"other elements. The only attribute is \"name\", which contains the font's " +"name as shown in the font selection dropdown. Although the file format will " +"permit any name to be used here, Rosegarden will only pick up the font " +"corectly if the XML file has the same name as the contents of this attribute " +"(except that the XML file should be named in lower-case and should end in " +"\".xml\")." +msgstr "" +"Elementet måste finnas i varje avbildningsfil, och ska innehålla alla " +"övriga element. Det enda attributet är \"name\" som innehåller " +"teckensnittets namn som visas i kombinationsrutan för teckensnittsval. " +"Även om filformatet tillåter att vilket namn som helst används här, " +"hittar Rosegarden bara teckensnittet på ett riktigt sätt om XML-filen har " +"samma namn som det här attributets innehåll (utom att XML-filen ska " +"namnges med små bokstäver och ska sluta med \".xml\")." + +#. Tag: title +#: index.docbook:5767 +#, no-c-format +msgid "font-information" +msgstr "font-information" + +#. Tag: para +#: index.docbook:5769 +#, no-c-format +msgid "" +"This should normally be the first child element of " +"\"rosegarden-font-encoding\". It may have any of the following attributes, " +"all of which are optional:" +msgstr "" +"Det här ska normalt vara första delelement i \"rosegarden-font-encoding\". " +"Det kan ha vilket som helst av följande attribut, som alla är valfria:" + +#. Tag: term +#: index.docbook:5775 +#, no-c-format +msgid "origin" +msgstr "origin" + +#. Tag: para +#: index.docbook:5777 +#, no-c-format +msgid "" +"A textual description of the likely origin of the mapped font (not the " +"origin of the mapping file)." +msgstr "" +"En textbeskrivning av det avbildade teckensnittets troliga ursprung (inte " +"ursprunget för avbildningsfilen)." + +#. Tag: term +#: index.docbook:5784 +#, no-c-format +msgid "copyright" +msgstr "copyright" + +#. Tag: para +#: index.docbook:5786 +#, no-c-format +msgid "" +"A textual description of the likely copyright status of the mapped font (not " +"the copyright status of the mapping file). Note that because the mapping " +"file contains information such as origin and copyright of the font itself, " +"it is usually advisable to make separate mapping files for separate fonts " +"where practical, even if the fonts share other mapping data." +msgstr "" +"En textbaserad beskrivning av trolig copyright-status för det avbildade " +"teckensnittet (inte copyright-status för avbildningsfilen). Observera att " +"eftersom avbildningsfilen innehåller information som ursprung och copyright " +"för själva teckensnittet, är det oftast lämpligt att göra separata " +"avbildningsfiler för separata teckensnitt när det är praktiskt, även om " +"teckensnitten delar annan avbildningsdata." + +#. Tag: term +#: index.docbook:5798 +#, no-c-format +msgid "mapped-by" +msgstr "mapped-by" + +#. Tag: para +#: index.docbook:5800 +#, no-c-format +msgid "The name of the creator of the mapping file (i.e. you, presumably)." +msgstr "Namnet på skaparen av avbildningsfilen (dvs. antagligen du själv)." + +#. Tag: term +#: index.docbook:5806 index.docbook:6264 +#, no-c-format +msgid "type" +msgstr "type" + +#. Tag: para +#: index.docbook:5808 +#, no-c-format +msgid "" +"The type of the font. This attribute should contain one of the values " +"\"pixmap\" or \"scalable\". Fonts that are loaded into the windowing system " +"and are available to Rosegarden as standard system fonts have type " +"\"scalable\"; fonts that need to be loaded from pixmap files corresponding " +"to individual sizes of pixmap (such as the feta and rg21 fonts included with " +"Rosegarden) have type \"pixmap\"." +msgstr "" +"Teckensnittets typ. Attributet ska innehålla ett av värdena \"pixmap\" " +"eller \"scalable\". Teckensnitt som laddas i fönsterhanteringssystemet och " +"är tillgängliga för Rosegarden som vanliga systemteckensnitt har typen " +"\"scalable\". Teckensnitt som måste laddas från punktavbildningsfiler som " +"motsvarar individuella storlekar på punktavbildningar (som teckensnitten " +"feta och rg21 som ingår i Rosegarden) har typen \"pixmap\"." + +#. Tag: para +#: index.docbook:5817 +#, no-c-format +msgid "" +"This information is only intended for the user reference; it isn't actually " +"used by Rosegarden. It is legitimate in practice for a font to be a mixture " +"of the two, but in general we will assume in this documentation that a font " +"is either scalable or pixmap." +msgstr "" +"Den här informationen är bara avsett som referens för användaren. Den " +"används i själva verket inte av Rosegarden. I praktiken är det legitimt " +"att ett teckensnitt är en blandning av de två, men i allmänhet antar vi i " +"den här dokumentationen att teckensnittet antingen är skalbart eller " +"punktavbildat." + +#. Tag: term +#: index.docbook:5826 +#, no-c-format +msgid "smooth" +msgstr "smooth" + +#. Tag: para +#: index.docbook:5828 +#, no-c-format +msgid "" +"A boolean attribute indicating whether the font is antialiased (smooth) or " +"not. Should have the value \"true\" or \"false\". If the font is smooth, " +"other display elements such as beams and slurs that are not generated from " +"the font will also be antialiased." +msgstr "" +"Ett Booleanskt attribut som anger om teckensnittet är kantutjämnat eller " +"inte. Ska ha värdet \"true\" eller \"false\". Om teckensnittet är " +"utjämnat, kommer andra element som balkar och legatobågar som inte skapas " +"från teckensnittet att vara kantutjämnade." + +#. Tag: term +#: index.docbook:5838 +#, no-c-format +msgid "autocrop" +msgstr "autocrop" + +#. Tag: para +#: index.docbook:5840 +#, no-c-format +msgid "" +"Only relevant for scalable (system) fonts. Rosegarden usually expects the " +"metrics for a font to contain the vertically smallest bounding boxes for " +"elements such as note heads and accents, rather than including empty space " +"above or below these elements for alignment purposes. Most fonts do not do " +"what Rosegarden expects. Therefore for these fonts you should set the " +"autocrop attribute to \"true\"; then Rosegarden will crop any unnecessary " +"space from the top and bottom of these elements when rendering them." +msgstr "" +"Bara relevant för skalbara (system) teckensnitt. Rosegarden förväntar sig " +"oftast att ett teckensnitts mått innehåller de vertikala minsta omgivande " +"rutor för element som nothuvuden och accenter, istället för att omfatta " +"tomt utrymme ovanför eller under elementen av justeringssyfte. De flesta " +"teckensnitt gör inte vad Rosegarden förväntar sig. Därför ska du " +"ställa in attributet för automatisk beskärning till \"true\". Då beskär " +"Rosegarden allt onödigt tomt utrymme längst upp och längst ner i " +"elementen när de ritas upp." + +#. Tag: title +#: index.docbook:5860 +#, no-c-format +msgid "font-requirements" +msgstr "font-requirements" + +#. Tag: para +#: index.docbook:5861 +#, no-c-format +msgid "" +"This element is only relevant for scalable fonts. It is used to specify that " +"this font should only be offered if certain system fonts are available, as " +"well as to associate IDs with those system fonts to refer to in the font-symbol-" +"map element. This scheme is used to decide which notation fonts " +"should be offered to the user, and also allows you to compose a Rosegarden " +"notation font from more than one system font if desired." +msgstr "" +"Det här elementet är bara relevant för skalbara teckensnitt. Det används " +"för att ange att teckensnittet bara ska erbjudas om vissa systemteckensnitt " +"är tillgängliga, samt att koppla identifikationsvärden med " +"systemteckensnitten att kunna hänvisa till i elementet font-symbol-" +"map. Den här metoden används för att bestämma vilka " +"notteckensnitt som användaren ska erbjudas, och dessutom låta dig " +"komponera ett notteckensnitt i Rosegarden från mer än ett " +"systemteckensnitt om du önskar." + +#. Tag: para +#: index.docbook:5873 +#, no-c-format +msgid "" +"The \"font-requirements\" element should contain a list of " +"\"font-requirement\" child elements. Each of these has two attributes: " +"\"font-id\", containing a numerical ID of your choice for reference " +"elsewhere in the file, and either a \"name\" or a \"names\" attribute. If " +"\"name\" is provided, it will be used as the name of a single system font to " +"be associated with the font id; if \"names\" is provided, it will be treated " +"as a comma-separated list of system fonts and the first one found will be " +"associated with the font id." +msgstr "" +"Elementet \"font-requirements\" ska innehålla en lista med delelementen " +"\"font-requirement\". Vart och ett av dessa har två attribut: \"font-id\" " +"som innehåller en numerisk identifikation av ditt val för referenser på " +"andra ställe in filen, och antingen attributet \"name\" eller \"names\". Om " +"\"name\" tillhandahålls, används det som namnet på ett enstaka " +"systemteckensnitt som ska höra ihop med teckensnittsidentifikationen. Om " +"\"names\" tillhandahålls behandlas det som en lista av systemteckensnitt " +"åtskilda med kommatecken, där det första som hittas kopplas ihop med " +"teckensnittsidentifikationen." + +#. Tag: title +#: index.docbook:5886 +#, no-c-format +msgid "font-sizes" +msgstr "font-sizes" + +#. Tag: para +#: index.docbook:5888 +#, no-c-format +msgid "" +"The \"font-sizes\" element specifies which notation font sizes are " +"available, and how the nominal font size relates to the dimensions of " +"non-font elements such as stems, staff lines and beams. The \"size\" of a " +"notation font is assumed to be the distance in pixels between staff lines, " +"or more precisely, the height of a conventional note head that completely " +"fills the space between lines: the size therefore does not include the " +"thickness of either of the neighbouring staff lines." +msgstr "" +"Elementet \"font-sizes\" anger vilka storlekar av notteckensnitt som " +"är tillgängliga, och hur den nominella teckenstorleken förhåller sig " +"till storleken på element som inte ingår i teckensnittet, såsom skaft, " +"notsystemlinjer och balkar. Ett notteckensnitts \"storlek\" antas " +"vara avståndet i bildpunkter mellan notsystemlinjer, eller exaktare, " +"platsen för ett vanligt nothuvud som fullständigt fyller avståndet mellan " +"linjer: Storleken omfattar därför inte tjockleken hos någon av " +"intilliggande notlinjer." + +#. Tag: para +#: index.docbook:5899 +#, no-c-format +msgid "" +"There are two possible child elements of \"font-sizes\": \"font-scale\" and " +"\"font-size\". Their use depends on the type of font being described." +msgstr "" +"Det finns två möjliga delelement till \"font-sizes\": \"font-scale\" och " +"\"font-size\". Deras användning beror på typ av teckensnitt som beskrivs." + +#. Tag: para +#: index.docbook:5905 +#, no-c-format +msgid "" +"For pixmap (non-scalable) fonts, the \"font-sizes\" element should contain a " +"list of \"font-size\" elements, one for each size of pixmaps available. The " +"pixmaps themselves must be installed in the " +"fonts/<font-name>/<font-size> subdirectory of the Rosegarden " +"installation directory, where <font-name> is the name of the font (as " +"specified in the \"rosegarden-font-encoding\" element at the start of the " +"mapping file), or a lower-case version of the name, and <font-size> is " +"the pixel size of the font. A font size will only be made available to the " +"user if it has an entry in the \"font-sizes\" list and the pixmap directory " +"is found." +msgstr "" +"För punktavbildade (inte skalbara) teckensnitt, ska elementet " +"\"font-sizes\" innehålla en lista med element \"font-size\", ett för varje " +"storlek av punktavbilder som är tillgängliga. Punktavbilderna själva " +"måste vara installerade i underkatalogen " +"fonts/<font-name>/<font-size> i Rosegardens " +"installationskatalog, där <font-name> är teckensnittets namn (som " +"det anges i elementet \"rosegarden-font-encoding\" i avbildningsfilens " +"början), eller en version av namnet med små bokstäver, och " +"<font-size> är teckensnittets bildpunktsstorlek. En teckenstorlek " +"görs bara tillgänglig för användaren om den har en post i listan " +"\"font-sizes\" och punktavbildningskatalogen hittas." + +#. Tag: para +#: index.docbook:5921 +#, no-c-format +msgid "" +"For scalable fonts, the \"font-sizes\" element should contain one " +"\"font-scale\" element that defines the relationships between font and " +"non-font elements in a general way, and also defines the relationship " +"between Rosegarden's nominal font size and the size of the corresponding " +"system font. If this \"font-scale\" element is found, then Rosegarden will " +"assume the font is available in any size. You can however still include one " +"or more \"font-size\" elements to define precise proportions for any " +"particular size for which the general proportions do not quite work " +"correctly, for example because of rounding error." +msgstr "" +"För skalbara teckensnitt ska elementet \"font-sizes\" innehålla ett " +"element \"font-scale\" som definierar förhållandet mellan teckensnitt och " +"element som inte hör till teckensnittet på ett allmänt sätt, och också " +"definierar förhållandet mellan Rosegardens nominella teckenstorlek och " +"motsvarande systemteckensnitts storlek. Om elementet \"font-scale\" hittas, " +"antar Rosegarden att teckensnittet är tillgängligt i alla storlekar. Du " +"kan dock fortfarande inkludera ett eller flera element \"font-size\" för " +"att definiera exakta proportioner för en särskild storlek där de " +"allmänna proportionerna inte riktigt fungerar rätt, till exempel på grund " +"av avrundningsfel." + +#. Tag: para +#: index.docbook:5936 +#, no-c-format +msgid "" +"The attributes of \"font-scale\" and \"font-size\" are very similar. The " +"main difference is that all attributes of \"font-scale\" are floating-point " +"values relative to the font size, where 1.0 is the base font size (i.e. the " +"distance between staff lines), whereas attributes of \"font-size\" are " +"integer pixel values. The attributes available are as follows. (Those marked " +"\"optional\" have vaguely sensible defaults, so it's a good idea to try not " +"setting them first.)" +msgstr "" +"Attributen till \"font-scale\" och \"font-size\" är mycket lika. Den " +"huvudsakliga skillnaden är att alla attribut till \"font-scale\" är " +"flyttal i förhållande till teckenstorleken, där 1,0 är basstorleken " +"(dvs. avståndet mellan linjer i notsystemet), medan attributen till " +"\"font-size\" är heltalsvärden av bildpunkter. Tillgängliga attribut är " +"de följande. (De som är markerade som \"valfria\" har i viss mån rimliga " +"standardvärden, så det är en god idé att inte ange dem först.)" + +#. Tag: term +#: index.docbook:5951 +#, no-c-format +msgid "note-height" +msgstr "note-height" + +#. Tag: para +#: index.docbook:5953 +#, no-c-format +msgid "" +"This attribute is only available for the \"font-size\" element, and it is " +"mandatory in that element. It defines the base size of font to which the " +"other attributes in this element apply, and a size that will be offered to " +"the user and used when looking up pixmaps for this font." +msgstr "" +"Det här attributet är bara tillgängligt för elementet \"font-size\", och " +"krävs för elementet. Det definierar teckensnittets grundstorlek som andra " +"attribut i elementet gäller, och en storlek som erbjuds användaren och " +"används vid uppslagning av punktavbildningar för teckensnittet." + +#. Tag: term +#: index.docbook:5963 +#, no-c-format +msgid "font-height" +msgstr "font-height" + +#. Tag: para +#: index.docbook:5965 +#, no-c-format +msgid "" +"May be used in either \"font-size\" or \"font-scale\". This is only relevant " +"for scalable fonts, but is mandatory for them if used in the \"font-scale\" " +"element. This defines the size of the system font used to draw a given size " +"of notation font." +msgstr "" +"Kan antingen användas i \"font-size\" eller \"font-scale\". Det är bara " +"tillämpligt för skalbara teckensnitt, men krävs för dem om det används " +"i elementet \"font-scale\". Det anger storleken på systemteckensnittet som " +"används för att rita en given storlek av notteckensnittet." + +#. Tag: term +#: index.docbook:5974 +#, no-c-format +msgid "beam-thickness" +msgstr "beam-thickness" + +#. Tag: para +#: index.docbook:5976 +#, no-c-format +msgid "Optional. Defines the thickness of a beam." +msgstr "Valfritt. Anger tjockleken på en balk." + +#. Tag: term +#: index.docbook:5981 +#, no-c-format +msgid "staff-line-thickness" +msgstr "staff-line-thickness" + +#. Tag: para +#: index.docbook:5983 +#, no-c-format +msgid "Optional. Defines the thickness of a staff line." +msgstr "Valfritt. Anger tjockleken på en notsystemslinje." + +#. Tag: term +#: index.docbook:5988 +#, no-c-format +msgid "stem-thickness" +msgstr "stem-thickness" + +#. Tag: para +#: index.docbook:5990 +#, no-c-format +msgid "Optional. Defines the thickness of a note stem." +msgstr "Valfritt. Anger tjockleken på ett notskaft." + +#. Tag: term +#: index.docbook:5995 +#, no-c-format +msgid "flag-spacing" +msgstr "flag-spacing" + +#. Tag: para +#: index.docbook:5997 +#, no-c-format +msgid "" +"Optional. Defines the gap between note flags in cases where multiple flags " +"are drawn by drawing a single flag several times." +msgstr "" +"Valfritt. Anger avståndet mellan notflaggor i de fall då flera flaggor " +"ritas genom att upprepa en enstaka flagga flera gånger." + +#. Tag: term +#: index.docbook:6004 +#, no-c-format +msgid "border-x" +msgstr "border-x" + +#. Tag: para +#: index.docbook:6006 +#, no-c-format +msgid "" +"Optional. Specifies that the note head pixmaps have a fixed area to left and " +"right that should not be considered part of the note head. This attribute " +"gives the thickness of that area." +msgstr "" +"Valfritt. Anger att nothuvudets punktavbildning har ett fast område till " +"vänster och höger som inte ska anses vara en del av nothuvudet. Attributet " +"anger områdets tjocklek." + +#. Tag: term +#: index.docbook:6014 +#, no-c-format +msgid "border-y" +msgstr "border-y" + +#. Tag: para +#: index.docbook:6016 +#, no-c-format +msgid "" +"Optional. Specifies that the note head pixmaps have a fixed area to top and " +"bottom that should not be considered part of the note head. This attribute " +"gives the thickness of that area." +msgstr "" +"Valfritt. Anger att nothuvudets punktavbildning har ett fast område " +"ovanför och under som inte ska anses vara en del av nothuvudet. Attributet " +"anger områdets tjocklek." + +#. Tag: title +#: index.docbook:6027 +#, no-c-format +msgid "font-symbol-map" +msgstr "font-symbol-map" + +#. Tag: para +#: index.docbook:6028 +#, no-c-format +msgid "" +"This element lists the symbols available in this notation font, and which " +"pixmap files or system font code points they should be drawn from." +msgstr "" +"Det här elementet listar symbolerna som är tillgängliga i " +"notteckensnittet, och vilka punktavbildningsfiler eller vilka " +"kodpunkter i ett systemteckensnitt som de ska ritas upp med." + +#. Tag: para +#: index.docbook:6033 +#, no-c-format +msgid "" +"It should contain a list of \"symbol\" elements. These have several possible " +"attributes, the choice of which will normally depend on whether the font is " +"based on pixmaps or system fonts:" +msgstr "" +"Det ska innehålla en lista med \"symbol\" element. De har flera möjliga " +"attribut, där valet av vilka normalt beror på om teckensnittet är baserat " +"på punktavbildningar eller systemteckensnitt:" + +#. Tag: term +#: index.docbook:6041 +#, no-c-format +msgid "name" +msgstr "name" + +#. Tag: para +#: index.docbook:6043 +#, no-c-format +msgid "" +"Mandatory. This attribute should contain the name of the notation symbol. If " +"the symbol exists in the Unicode 3.2 " +"standard, the name should be that used to identify the symbol in the " +"standard." +msgstr "" +"Krävs. Det här attributet ska innehålla namnet på notsymbolen. Om " +"symbolen finns i Unicode 3.2 " +"standarden, ska namnet som används för att identifiera symbolen " +"vara det som används i standarden." + +#. Tag: para +#: index.docbook:6050 +#, no-c-format +msgid "" +"Most of the symbols Rosegarden expects to find are in the standard; one " +"exception is that many fonts have a special version of the flag symbol that " +"is intended to be used when composing multiple flags from individual single " +"flags. Rosegarden refers to this as \"MUSICAL SYMBOL COMBINING FLAG-0\", a " +"name not used in the Unicode standard (which has flags 1-5 only)." +msgstr "" +"De flesta symboler som Rosegarden förväntar sig att hitta ingår i " +"standarden. Ett undantag är att många teckensnitt har en specialversion av " +"flaggsymbolen som är avsedd att användas när flera flaggor skapas från " +"individuella enstaga flaggor. Rosegarden kallar den för \"MUSICAL SYMBOL " +"COMBINING FLAG-0\", ett namn som inte används av Unicode-standarden (som " +"bara har flaggorna 1 - 5)." + +#. Tag: para +#: index.docbook:6058 +#, no-c-format +msgid "" +"For a definitive set of the symbol names Rosegarden knows about, see the " +"file \"gui/notecharname.cpp\" in the Rosegarden source distribution. Note " +"however that it is possible to use additional symbol names by introducing " +"them in a notation style." +msgstr "" +"För den fullständiga uppsättningen symbolnamn som Rosegarden känner " +"till, se filen \"gui/notecharname.cpp\" i Rosegardens källkodsdistribution. " +"Observera dock att det är möjligt att använda ytterligare symbolnamn " +"genom att lägga till dem i en notationsstil." + +#. Tag: term +#: index.docbook:6070 +#, no-c-format +msgid "src" +msgstr "src" + +#. Tag: para +#: index.docbook:6072 +#, no-c-format +msgid "" +"The name of the pixmap file from which this symbol should be loaded, without " +"a directory or extension. This is the usual way of describing a symbol in a " +"pixmap font. The file itself should be installed to " +"fonts/<font-name>/<font-size>/<src>.xpm under the " +"Rosegarden installation directory." +msgstr "" +"Namnet på punktavbildningsfilen som ska användas för att ladda symbolen, " +"utan katalog eller filändelse. Det är det vanliga sättet att beskriva en " +"symbol i ett punktavbildat teckensnitt. Själva filen ska installeras i " +"fonts/<teckensnittsnamn>/<teckenstorlek>/<källa>.xpm " +"under Rosegardens installationskatalog." + +#. Tag: term +#: index.docbook:6084 +#, no-c-format +msgid "inversion-src" +msgstr "inversion-src" + +#. Tag: para +#: index.docbook:6086 +#, no-c-format +msgid "" +"The name of a pixmap file from which an inverted version of this symbol may " +"be loaded, without a directory or extension. If this attribute is absent and " +"an inverted version of the symbol is required, it will be generated simply " +"by loading the normal version and reflecting it in a central x-axis." +msgstr "" +"Namnet på en punktavbildningsfil som kan användas för att ladda en " +"inverterad version av symbolen, utan katalog eller filändelse. Om " +"attributet saknas och en inverterad version av symbolen behövs, skapas den " +"helt enkelt genom att ladda den normala versionen och spegla den i den " +"centrala x-axeln." + +#. Tag: term +#: index.docbook:6097 +#, no-c-format +msgid "code" +msgstr "code" + +#. Tag: para +#: index.docbook:6099 +#, no-c-format +msgid "" +"The code point at which this symbol may be found in the relevant system " +"font, as a decimal integer. This is a way of describing a symbol in a " +"scalable font. This attribute will only be referred to if no pixmap file is " +"supplied, or if the pixmap file fails to load." +msgstr "" +"Kodpunkten där symbolen kan hittas i relevant systemteckensnitt, som ett " +"decimalt heltal. Det är ett sätt att beskriva en symbol i ett skalbart " +"teckensnitt. Attributet används bara om ingen punktavbildningsfil " +"tillhandahålls, eller om laddning av punktavbildningsfilen misslyckas." + +#. Tag: term +#: index.docbook:6110 +#, no-c-format +msgid "inversion-code" +msgstr "inversion-code" + +#. Tag: para +#: index.docbook:6112 +#, no-c-format +msgid "" +"The code point at which an inverted version of this symbol may be found in " +"the relevant system font. If this attribute is absent and an inverted " +"version of the symbol is required, it will be generated simply by loading " +"the normal version and reflecting it in a central x-axis." +msgstr "" +"Kodpunkten där en inverterad version av symbolen kan hittas i relevant " +"systemteckensnitt. Om attributet saknas och en inverterad version av " +"symbolen behövs, skapas den helt enkelt genom att ladda den normala " +"versionen och spegla den i den centrala x-axeln." + +#. Tag: term +#: index.docbook:6123 +#, no-c-format +msgid "glyph" +msgstr "glyph" + +#. Tag: para +#: index.docbook:6125 +#, no-c-format +msgid "" +"The raw glyph index at which this symbol may be found in the relevant system " +"font, as a decimal integer. This is a way of describing a symbol in a " +"scalable font. This attribute will only be referred to if no pixmap file is " +"supplied, or if the pixmap file fails to load." +msgstr "" +"Det obehandlade indexet för glyfen där symbolen kan hittas i relevant " +"systemteckensnitt, som ett decimalt heltal. Det är ett sätt att beskriva " +"en symbol i ett skalbart teckensnitt. Attributet används bara om ingen " +"punktavbildningsfil tillhandahålls, eller om laddning av " +"punktavbildningsfilen misslyckas." + +#. Tag: term +#: index.docbook:6136 +#, no-c-format +msgid "inversion-glyph" +msgstr "inversion-glyph" + +#. Tag: para +#: index.docbook:6138 +#, no-c-format +msgid "" +"The raw glyph index at which an inverted version of this symbol may be found " +"in the relevant system font. If this attribute is absent and an inverted " +"version of the symbol is required, it will be generated simply by loading " +"the normal version and reflecting it in a central x-axis." +msgstr "" +"Det obehandlade indexet för glyfen där en inverterad version av symbolen " +"kan hittas i relevant systemteckensnitt. Om attributet saknas och en " +"inverterad version av symbolen behövs, skapas den helt enkelt genom att " +"ladda den normala versionen och spegla den i den centrala x-axeln." + +#. Tag: term +#: index.docbook:6149 +#, no-c-format +msgid "font-id" +msgstr "font-id" + +#. Tag: para +#: index.docbook:6151 +#, no-c-format +msgid "" +"The id of the system font from which this symbol should be loaded, as " +"defined in the font-requi" +"rements element. The default is 0." +msgstr "" +"Identifikationen för systemteckensnittet som den här symbolen ska laddas " +"från, som det är definierat i elementet font-requi" +"rements. Normalvärdet är 0." + +#. Tag: term +#: index.docbook:6160 +#, no-c-format +msgid "codebase" +msgstr "codebase" + +#. Tag: para +#: index.docbook:6162 +#, no-c-format +msgid "" +"This (decimal integer) attribute may be of use if many of the symbols in a " +"scalable font cover a short range of code points starting at a relatively " +"high code page. If supplied, the codebase value will be added to each of the " +"subsequent code and inversion-code values when looking up a symbol." +msgstr "" +"Det här attributet (ett decimalt heltal) kan vara användbart om många av " +"symbolerna i ett skalbart teckensnitt täcker ett kort område med " +"kodpunkter med början på en relativt hög kodsida. Om det anges, läggs " +"värdet codebase till för vart och ett av efterföljande värden på code " +"och inversion-code när en symbol slås upp." + +#. Tag: para +#: index.docbook:6174 +#, no-c-format +msgid "" +"Although none of these attributes is mandatory except for the name, a symbol " +"obviously needs to supply at least one of \"src\", \"inversion-src\", " +"\"code\", \"inversion-code\", \"glyph\", or \"inversion-glyph\" to stand any " +"chance of being rendered at all. It is of course perfectly legitimate to " +"supply several or all of these attributes." +msgstr "" +"Även om inget av attributen krävs, förutom namnet, måste en symbol " +"uppenbarligen tillhandahålla åtminstone en av \"src\", \"inversion-src\", " +"\"code\", \"inversion-code\", \"glyph\" eller \"inversion-glyph\" för att " +"ha någon möjlighet att överhuvudtaget ritas upp. Det är förstås " +"fullständig legitimt att tillhandahålla flera eller alla dessa attribut." + +#. Tag: title +#: index.docbook:6186 +#, no-c-format +msgid "font-hotspots" +msgstr "font-hotspots" + +#. Tag: para +#: index.docbook:6187 +#, no-c-format +msgid " " +msgstr " " + +#. Tag: title +#: index.docbook:6196 +#, no-c-format +msgid "Creating new notation styles" +msgstr "Skapa nya notstilar" + +#. Tag: para +#: index.docbook:6198 +#, no-c-format +msgid "" +"Rosegarden's notation editor has the ability to display and edit notes in " +"various standard styles: classical, diamond heads and so on. These styles " +"are all defined in XML style definition files installed along with the " +"application, and it's possible to create a new one by writing a simple XML " +"file. Rosegarden simply looks at the set of installed files to determine " +"which styles to offer the user. You can refer to the default set of files in " +"the styles subdirectory of the Rosegarden installation directory for " +"examples." +msgstr "" +"Rosegardens notbehandlare har möjlighet att visa och redigera noter med " +"olika standardstilar: klassisk, rombformade huvuden och så vidare. Alla " +"stilar definieras i definitionsfiler på XML-form som installeras " +"tillsammans med programmet, och det är möjligt att skapa en ny genom att " +"skriva en enkel XML-fil. Rosegarden tittar helt enkelt på uppsättningen " +"installerade filer för att avgöra vilka stilar som användaren ska " +"erbjudas. Du kan till exempel hänvisa till standarduppsättningen med filer " +"i underkatalogen för stilar i Rosegardens installationskatalog." + +#. Tag: para +#: index.docbook:6210 +#, no-c-format +msgid "" +"The file format is not yet especially comprehensive; at the moment it has " +"been designed to be powerful enough to describe the standard styles that " +"come with Rosegarden, but not much more. If you should try to create new " +"styles this way, we'd be very interested in your feedback on the Rosegarden " +"mailing-lists." +msgstr "" +"Filformatet är inte ännu särskilt omfattande. För ögonblicket är det " +"konstruerat för att vara kraftfullt nog att beskriva standardstilarna som " +"levereras med Rosegarden, men inte mycket mer. Om du gör ett försök att " +"skapa nya stilar på det här sättet, är vi mycket intresserade av din " +"återmatning via Rosegardens e-postlistor." + +#. Tag: title +#: index.docbook:6220 +#, no-c-format +msgid "Notation style XML format" +msgstr "XML-format för notstil" + +#. Tag: para +#: index.docbook:6222 +#, no-c-format +msgid "" +"Here is a summary of the XML elements that may be used in a style definition " +"file." +msgstr "" +"Här är en översikt över XML-elementen som kan användas i en " +"stildefinitionsfil." + +#. Tag: title +#: index.docbook:6228 +#, no-c-format +msgid "rosegarden-note-style" +msgstr "rosegarden-note-style" + +#. Tag: para +#: index.docbook:6230 +#, no-c-format +msgid "" +"This element must exist in every style file, and should contain all the " +"other elements. It has one optional attribute, \"base-style\", which may be " +"used to name a style from which this style takes the default values for any " +"parameters not specified elsewhere in the present file. It's often good " +"practice to define a style in terms of the minimal difference from a given " +"base style: see the supplied Cross.xml for a particularly simple example." +msgstr "" +"Det här elementet måste finnas i alla stilfiler, och ska innehålla alla " +"övriga element. Det har ett valfritt attribut, \"base-style\", som kan " +"användas för att namnge en stil där den här stilen hämtar " +"standardvärden för alla parametrar som inte anges någon annanstans i den " +"befintliga filen. Det är ofta lämpligt att definiera en stil i form av " +"minsta möjliga skillnader från en given basstil. Se filen Cross.xml som " +"tillhandahålls, för ett särskilt enkelt exempel." + +#. Tag: para +#: index.docbook:6240 +#, no-c-format +msgid "" +"Note that the \"rosegarden-note-style\" element does not give the name of " +"the style being defined, which is instead currently drawn from the name of " +"the file. At some point in the future we may add internationalizable style " +"name attributes to this element." +msgstr "" +"Observera att elementet \"rosegarden-note-style\" inte anger namnet på " +"stilen som definieras, som istället tas från filens namn. Någon gång i " +"framtiden kanske stöd för översättning av stilnamn läggs till i det " +"här elementets attribut." + +#. Tag: title +#: index.docbook:6248 +#, no-c-format +msgid "global, note" +msgstr "global, note" + +#. Tag: para +#: index.docbook:6250 +#, no-c-format +msgid "" +"Within the \"rosegarden-note-style\" element, there may be one \"global\" " +"element and any number of \"note\" elements. We describe these together, as " +"they have almost identical sets of attributes. The \"global\" element simply " +"provides default values for those parameters not specified for a particular " +"note type in any following \"note\" element." +msgstr "" +"I elementet \"rosegarden-note-style\" kan det finnas ett \"global\" element " +"och hur många \"note\" element som helst. De beskrivs tillsammans, eftersom " +"de har nästan identiska uppsättningar attribut. Elementet \"global\" " +"tillhandahåller helt enkelt standardvärden för de parametrar som inte " +"anges för en viss nottyp i något av följande \"note\" element." + +#. Tag: para +#: index.docbook:6258 +#, no-c-format +msgid "" +"The attributes for these elements are as follows. All of these are optional " +"except as described:" +msgstr "" +"Attributen för elementen är följande. Alla är valfria utom enligt " +"beskrivningen:" + +#. Tag: para +#: index.docbook:6266 +#, no-c-format +msgid "" +"Only relevant to the \"note\" element, and mandatory for that element. This " +"attribute specifies which sort of note is being styled. Legal values are " +"textual American or British note names (from \"64th\", \"sixth-fourth " +"note\", \"hemidemisemiquaver\" etc to \"double whole note\")." +msgstr "" +"Gäller bara elementet \"note\", och krävs för det elementet. Det här " +"attributet anger vilken sorts not som stilen gäller för. Giltiga värden " +"är tonnamn på amerikansk eller brittisk engelska (från \"64th\", " +"\"sixth-fourth note\", \"hemidemisemiquaver\" etc till \"double whole " +"note\")." + +#. Tag: term +#: index.docbook:6277 +#, no-c-format +msgid "shape" +msgstr "shape" + +#. Tag: para +#: index.docbook:6279 +#, no-c-format +msgid "" +"Defines a note head shape for this style. Any string is a legal value, but " +"the only values implemented so far are \"angled oval\", \"level oval\", " +"\"breve\", \"cross\", \"triangle up\", \"triangle down\", \"diamond\" and " +"\"rectangle\". The value \"number\" is also recognised but not yet " +"implemented." +msgstr "" +"Definierar en form för nothuvudet i den här stilen. Vilken sträng som " +"helst är ett giltigt värde, men de enda värden som hittills är " +"implementerade är \"angled oval\", \"level oval\", \"breve\", \"cross\", " +"\"triangle up\", \"triangle down\", \"diamond\" och \"rectangle\". Värdet " +"\"number\" känns också igen, men är ännu inte implementerat." + +#. Tag: term +#: index.docbook:6290 +#, no-c-format +msgid "charname" +msgstr "charname" + +#. Tag: para +#: index.docbook:6292 +#, no-c-format +msgid "" +"Defines a note font character name to be used as the note head for this " +"style. An element may supply a \"shape\" or \"charname\" attribute, but not " +"both. The name should be one of those defined in the current notation font's " +"symbol " +"map (in a \"name\" attribute)." +msgstr "" +"Definierar ett teckennamn i notteckensnittet som ska användas som nothuvud " +"för stilen. Ett element kan tillhandahålla attributet \"shape\" eller " +"\"charname\", men inte båda. Namnet ska vara ett av de som definieras i det " +"nuvarande notskriftteckensnittets symbol " +"map (i ett attribut \"name\")." + +#. Tag: term +#: index.docbook:6304 +#, no-c-format +msgid "filled" +msgstr "filled" + +#. Tag: para +#: index.docbook:6306 +#, no-c-format +msgid "" +"Specifies whether this note should have a filled head (where applicable, " +"i.e. where the shape attribute supplies a shape that is available both " +"filled and unfilled). Must be \"true\" or \"false\"." +msgstr "" +"Anger om noten ska ha ett ifyllt huvud (när det är tillämpligt, dvs. när " +"formegenskapen anger en form som både är tillgänglig ifylld och inte). " +"Måste vara \"true\" eller \"false\"." + +#. Tag: term +#: index.docbook:6315 +#, no-c-format +msgid "stem" +msgstr "stem" + +#. Tag: para +#: index.docbook:6317 +#, no-c-format +msgid "" +"Specifies whether this note should have a stem. Must be \"true\" or " +"\"false\"." +msgstr "Anger om noten ska ha ett skaft. Måste vara \"true\" eller \"false\"." + +#. Tag: term +#: index.docbook:6324 +#, no-c-format +msgid "flags" +msgstr "flags" + +#. Tag: para +#: index.docbook:6326 +#, no-c-format +msgid "" +"Defines how many flags or beams this note should have. The valid range is 0 " +"to 4." +msgstr "" +"Anger hur många flaggor eller balkar som noten ska ha. Giltigt intervall " +"är 0 till 4." + +#. Tag: term +#: index.docbook:6333 +#, no-c-format +msgid "slashes" +msgstr "slashes" + +#. Tag: para +#: index.docbook:6335 +#, no-c-format +msgid "Defines how many slashes this note should have across its stem." +msgstr "Anger hur många tvärbalkar noten ska ha över skaftet." + +#. Tag: term +#: index.docbook:6342 +#, no-c-format +msgid "hfixpoint" +msgstr "hfixpoint" + +#. Tag: para +#: index.docbook:6344 +#, no-c-format +msgid "" +"Specifies in which x position the stem fixes to the note head. Acceptable " +"values are \"normal\" (the right side when the stem points up, the left when " +"it points down), \"central\", and \"reversed\" (left side when the stem " +"points up, right when it points down)." +msgstr "" +"Anger på vilken x-position som skaftet ansluts till nothuvudet. Acceptabla " +"värden är \"normal\" (höger sida när skaftet pekar uppåt, vänster sida " +"när det pekar neråt), \"central\" och \"reversed\" (vänster sida när " +"skaftet pekar uppåt, höger sida när det pekar neråt)." + +#. Tag: term +#: index.docbook:6354 +#, no-c-format +msgid "vfixpoint" +msgstr "vfixpoint" + +#. Tag: para +#: index.docbook:6356 +#, no-c-format +msgid "" +"Specifies in which y position the stem fixes to the note head. Acceptable " +"values are \"near\" (the stem fixes to the top when pointing up, the bottom " +"when pointing down), \"middle\", or \"far\"." +msgstr "" +"Anger på vilken y-position som skaftet ansluts till nothuvudet. Acceptabla " +"värden är \"near\" (skaftet ansluts till toppen när det pekar uppåt, " +"till botten när det pekar neråt), \"middle\" eller \"far\"." + +#. Tag: title +#: index.docbook:6517 +#, no-c-format +msgid "Credits and License" +msgstr "Tack till och licens" + +#. Tag: application +#: index.docbook:6520 +#, no-c-format +msgid "Rosegarden" +msgstr "Rosegarden" + +#. Tag: para +#: index.docbook:6525 +#, no-c-format +msgid "" +"Rosegarden-4 is Copyright 2000-2004 Guillaume Laurent, Chris Cannam and " +"Richard Bown. The moral rights of Guillaume Laurent, Chris Cannam and " +"Richard Bown to be identified as the authors of this work have been asserted." +msgstr "" +"Rosegarden-4 är Copyright 2000-2004 Guillaume Laurent, Chris Cannam och " +"Richard Bown. Moralisk rättighet att identifieras som upphovsmän till det " +"här verket hävdas av Guillaume Laurent, Chris Cannam och Richard Bown." + +#. Tag: para +#: index.docbook:6536 +#, no-c-format +msgid "" +"Parts of Rosegarden-4 are derived from Rosegarden 2.1, which is Copyright " +"1994 – 2001 Chris Cannam, Andrew Green, Richard Bown and Guillaume " +"Laurent." +msgstr "" +"Delar av Rosegarden-4 är härledda från Rosegarden 2.1, som är Copyright " +"1994 – 2001 Chris Cannam, Andrew Green, Richard Bown och Guillaume " +"Laurent." + +#. Tag: para +#: index.docbook:6546 +#, no-c-format +msgid "" +"For musical notation display Rosegarden-4 uses pixmaps derived from the Feta " +"font, part of the Lilypond " +"software, which is Copyright 1997 – 2001 Jan Nieuwenhuizen and Han-Wen " +"Nienhuys." +msgstr "" +"För visning av musikalisk notskrift använder Rosegarden-4 " +"punktavbildningar härledda från teckensnittet Feta, som är en del av " +"programvaran Lilypond, som är " +"Copyright 1997 – 2001 Jan Nieuwenhuizen och Han-Wen Nienhuys." + +#. Tag: para +#: index.docbook:6558 +#, no-c-format +msgid "" +"Other major contributors include Randall Farmer, Ron Kuris, Hans Kieserman, " +"and Michael McIntyre." +msgstr "" +"Bland andra väsentliga bidragsgivare finns Randall Farmer, Ron Kuris, Hans " +"Kieserman och Michael McIntyre." + +#. Tag: para +#: index.docbook:6567 +#, no-c-format +msgid "" +"The Rosegarden splash-screen image is from a 1900 postcard of Thornden Park " +"at Syracuse University, Syracuse, NY, used with thanks to the staff of " +"Syracuse University." +msgstr "" +"Rosegardens startskärm kommer från ett vykort av Thornden-parken vid " +"Syracuse-universitetet i Syracuse, New York, tryckt år 1900. Tack till " +"personalen på Syracuse-universitetet för användning av det." + +#. Tag: para +#: index.docbook:6579 +#, no-c-format +msgid "" +"Documentation copyright 2002-2004 Chris Cannam, Richard Bown, Guillaume " +"Laurent" +msgstr "" +"Dokumentation copyright 2002-2004 Chris Cannam, Richard Bown, Guillaume " +"Laurent" + +#. Tag: para +#: index.docbook:6598 +#, no-c-format +msgid "" +"This program is licensed under the terms of the GNU General Public License." +msgstr "" +"Det här programmet distribueras under villkoren i GNU General Public License." + +#. Tag: title +#: index.docbook:6609 +#, no-c-format +msgid "Rosegarden-4 Revision History" +msgstr "Rosegarden-4 utgåvehistorik" + +#. Tag: para +#: index.docbook:6612 +#, no-c-format +msgid "" +"0.9.9 – July 2004: plugin synths, triggered segments, notation " +"improvements" +msgstr "" +"0.9.9 – juli 2004: syntinsticksmoduler, utlösande segment, " +"notationsförbättringar" + +#. Tag: para +#: index.docbook:6615 +#, no-c-format +msgid "0.9.8 – May 2004: better audio subsystem" +msgstr "0.9.8 – maj 2004: bättre ljuddelsystem" + +#. Tag: para +#: index.docbook:6618 +#, no-c-format +msgid "0.9.7 – February 2004:" +msgstr "0.9.7 – februari 2004:" + +#. Tag: para +#: index.docbook:6621 +#, no-c-format +msgid "0.9.6 – December 2003: bug fixes" +msgstr "0.9.6 – december 2003: felrättningar" + +#. Tag: para +#: index.docbook:6624 +#, no-c-format +msgid "0.9.5 – November 2003: a great many stuff" +msgstr "0.9.5 – november 2003: en hel del saker" + +#. Tag: para +#: index.docbook:6627 +#, no-c-format +msgid "0.9.1 – May 2003: step recording, Mup export, many many bug fixes" +msgstr "" +"0.9.1 – maj 2003: stegvis inspelning, MUP-export, många många " +"felrättningar" + +#. Tag: para +#: index.docbook:6630 +#, no-c-format +msgid "" +"0.9 – April 2003: many notation improvements, improved bank editor, " +"audio enhancements and refinements, translations" +msgstr "" +"0.9 – april 2003: många förbättringar av notation, förbättrad " +"bankeditor, ljudförbättringar och förfiningar, översättningar" + +#. Tag: para +#: index.docbook:6633 +#, no-c-format +msgid "0.8.5 – December 2002: bank editor, MIDI filters, panic button" +msgstr "0.8.5 – december 2002: bankeditor, MIDI-filter, panikknapp" + +#. Tag: para +#: index.docbook:6636 +#, no-c-format +msgid "0.8 – October 2002: printing, LADSPA plugins, improved Matrix View" +msgstr "" +"0.8 – oktober 2002: utskrift, LADSPA-insticksmoduler, förbättrad " +"matrisvy" + +#. Tag: para +#: index.docbook:6639 +#, no-c-format +msgid "" +"0.2.0 – August 2002: WAV file support, sweep selections, contrapuntal " +"staves" +msgstr "0.2.0 – augusti 2002: WAV-filstöd, markering med svepning, kontrapunkt" + +#. Tag: para +#: index.docbook:6642 +#, no-c-format +msgid "" +"0.1.6 – June 2002: configuration dialog, Lilypond support, quantize " +"dialog" +msgstr "" +"0.1.6 – juni 2002: inställningsdialogruta, Lilypond-stöd, " +"kvantiseringsdialogruta" + +#. Tag: para +#: index.docbook:6645 +#, no-c-format +msgid "0.1.5 – May 2002: KDE 3, ALSA support, JACK audio support" +msgstr "0.1.5 – maj 2002: KDE 3, ALSA-stöd, JACK-ljudstöd" + +#. Tag: para +#: index.docbook:6648 +#, no-c-format +msgid "0.1.4 – March 2002: more undo, segment editing, audio playback" +msgstr "0.1.4 – mars 2002: mer ångra, segmentredigering, ljuduppspelning" + +#. Tag: para +#: index.docbook:6651 +#, no-c-format +msgid "0.1.3 – January 2002: piano-roll/matrix view, &MIDI; recording" +msgstr "0.1.3 – januari 2002: pianorulle och matrisvy, &MIDI;-inspelning" + +#. Tag: para +#: index.docbook:6654 +#, no-c-format +msgid "" +"0.1.2 – November 2001: notation undo, transport dialog, position " +"pointer" +msgstr "" +"0.1.2 – november 2001: ångra notation, transportdialogruta, " +"positionspekare" + +#. Tag: para +#: index.docbook:6657 +#, no-c-format +msgid "0.1.1 – October 2001: scalable notation" +msgstr "0.1.1 – oktober 2001: skalbar notation" + +#. Tag: para +#: index.docbook:6660 +#, no-c-format +msgid "0.1 – June 2001: first public release of Rosegarden-4" +msgstr "0.1 – juni 2001: första öppna utgåva av Rosegarden-4" + diff --git a/po/CMakeLists.txt b/po/CMakeLists.txt new file mode 100644 index 0000000..a653d59 --- /dev/null +++ b/po/CMakeLists.txt @@ -0,0 +1,25 @@ + +# Automatic discovery of sources +FILE(GLOB PO_FILES *.po) + +# DISABLED: explicit set of source files +# SET(PO_FILES +# ca.po +# cs.po +# cy.po +# de.po +# en_GB.po +# en.po +# es.po +# et.po +# fi.po +# fr.po +# it.po +# ja.po +# nl.po +# ru.po +# sv.po +# zh_CN.po +# ) + +ADD_TRANSLATIONS(rosegarden ${PO_FILES}) diff --git a/po/ca.po b/po/ca.po new file mode 100644 index 0000000..ff5da9d --- /dev/null +++ b/po/ca.po @@ -0,0 +1,12380 @@ +# translation of ca.po to Català +# This file is distributed under the same license as the PACKAGE package. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Quim Perez i Noguer, 2006. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. +# Pedro Lopez-Cabanillas , 2003, 2004. +# D. Michael McIntyre , 2003, 2004. +# Feliu Ferrer , 2005. +# Maria-Rosa Vergés , 2005. +# Quim Perez Noguer , 2005. +# Quim Perez i Noguer, 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: ca\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-04-24 18:19-0400\n" +"PO-Revision-Date: 2006-06-30 23:32+0200\n" +"Last-Translator: Quim Perez i Noguer\n" +"Language-Team: Català \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.10.2\n" + +#: ../src/gui/dialogs/RescaleDialog.cpp:51 rc.cpp:192 rc.cpp:312 +#, no-c-format +msgid "Rescale" +msgstr "Canvia d'escala" + +#: ../src/gui/dialogs/RescaleDialog.cpp:56 +msgid "Duration of selection" +msgstr "Duració de la selecció" + +#: ../src/gui/dialogs/RescaleDialog.cpp:62 +msgid "Adjust times of following events accordingly" +msgstr "Ajusta els temps dels següents esdeveniments" + +#: ../src/gui/dialogs/PitchDialog.cpp:45 +#: ../src/gui/dialogs/RescaleDialog.cpp:72 +#: ../src/gui/dialogs/TimeDialog.cpp:51 ../src/gui/dialogs/TimeDialog.cpp:68 +#: ../src/gui/studio/BankEditorDialog.cpp:109 +msgid "Reset" +msgstr "Reinicia" + +#: ../src/commands/segment/SegmentSplitByPitchCommand.cpp:46 +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:46 +msgid "Split by Pitch" +msgstr "Divideix pel to" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:54 +msgid "Starting split pitch" +msgstr "To d'inici de divisió" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:57 +msgid "Range up and down to follow music" +msgstr "Abast superior i inferior per seguir la música" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:63 +msgid "Duplicate non-note events" +msgstr "Duplica els esdeveniments que no siguin notes" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:66 +msgid "Clef handling:" +msgstr "Gestió de claus:" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:69 +msgid "Leave clefs alone" +msgstr "Deixa les claus tal com estan" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:70 +msgid "Guess new clefs" +msgstr "Suposa noves claus" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:71 +msgid "Use treble and bass clefs" +msgstr "Fes servir claus de soprano i de baix" + +#: ../src/gui/dialogs/DocumentConfigureDialog.cpp:64 +msgid "Document Properties" +msgstr "Propietats del document" + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:45 +#: ../src/gui/editors/notation/NotationView.cpp:6048 +msgid "Make Ornament" +msgstr "Crea l'ornamentació" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:183 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:179 +#: ../src/gui/dialogs/EventEditDialog.cpp:128 +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:49 +#: ../src/gui/studio/DeviceEditorDialog.cpp:74 +#: ../src/gui/studio/NameSetEditor.cpp:72 +#: ../src/gui/widgets/ColourTable.cpp:51 +msgid "Name" +msgstr "Nom" + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:51 +msgid "" +"The name is used to identify both the ornament\n" +"and the triggered segment that stores\n" +"the ornament's notes." +msgstr "" +"El nom s'utilitza per identificar tant l'ornament\n" +"com el fragment activable que conté les notes\n" +"de l'ornamentació." + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:54 +msgid "Name: " +msgstr "Nom: " + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:57 +#: ../src/gui/editors/eventlist/EventView.cpp:717 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:92 +msgid "Base pitch" +msgstr "Altura de la base" + +#: ../src/gui/dialogs/TextEventDialog.cpp:57 +#: ../src/gui/editors/eventlist/EventView.cpp:140 +msgid "Text" +msgstr "Text" + +#: ../src/gui/dialogs/TextEventDialog.cpp:66 +msgid "Specification" +msgstr "Especificació" + +#: ../src/gui/dialogs/TextEventDialog.cpp:68 +msgid "Preview" +msgstr "Visualització prèvia" + +#: ../src/gui/dialogs/TextEventDialog.cpp:72 +msgid "Text: " +msgstr "Text: " + +#: ../src/gui/dialogs/TextEventDialog.cpp:79 +msgid "Style: " +msgstr "Estil: " + +#: ../src/gui/dialogs/TextEventDialog.cpp:90 +msgid "Dynamic" +msgstr "Dinàmica" + +#: ../src/gui/dialogs/TextEventDialog.cpp:93 +msgid "Direction" +msgstr "Direcció" + +#: ../src/gui/dialogs/TextEventDialog.cpp:96 +msgid "Local Direction" +msgstr "Direcció local" + +#: ../src/gui/dialogs/TempoDialog.cpp:63 +#: ../src/gui/dialogs/TextEventDialog.cpp:99 +#: ../src/gui/editors/tempo/TempoView.cpp:91 +msgid "Tempo" +msgstr "Tempo" + +#: ../src/gui/dialogs/TextEventDialog.cpp:102 +msgid "Local Tempo" +msgstr "Tempo local" + +#: ../src/gui/dialogs/TextEventDialog.cpp:105 +msgid "Lyric" +msgstr "Lírica" + +#: ../src/gui/dialogs/TextEventDialog.cpp:108 +#: ../src/gui/editors/notation/NotationView.cpp:4242 +msgid "Chord" +msgstr "Acord" + +#: ../src/gui/dialogs/TextEventDialog.cpp:111 +msgid "Annotation" +msgstr "Anotació" + +#: ../src/gui/dialogs/TextEventDialog.cpp:114 +#, fuzzy +msgid "LilyPond Directive" +msgstr "Fitxers Lilypond" + +#: ../src/gui/dialogs/TextEventDialog.cpp:138 +msgid "Verse: " +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:148 +#, fuzzy +msgid "Dynamic: " +msgstr "Dinàmica" + +#: ../src/gui/dialogs/TextEventDialog.cpp:152 +msgid "ppp" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:153 +msgid "pp" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:154 +msgid "p" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:155 +msgid "mp" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:156 +msgid "mf" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:157 +msgid "f" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:158 +msgid "ff" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:159 +msgid "fff" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:160 +msgid "rfz" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:161 +msgid "sf" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:165 +#, fuzzy +msgid "Direction: " +msgstr "Direcció" + +#: ../src/gui/dialogs/TextEventDialog.cpp:174 +msgid " ," +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:175 +msgid "D.C. al Fine" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:176 +msgid "D.S. al Fine" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:177 +#, fuzzy +msgid "Fine" +msgstr "Digitació" + +#: ../src/gui/dialogs/TextEventDialog.cpp:178 +msgid "D.S. al Coda" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:179 +#, fuzzy +msgid "to Coda" +msgstr " Acord" + +#: ../src/gui/dialogs/TextEventDialog.cpp:180 +#, fuzzy +msgid "Coda" +msgstr "Codis" + +#: ../src/gui/dialogs/TextEventDialog.cpp:184 +#, fuzzy +msgid "Local Direction: " +msgstr "Direcció local" + +#: ../src/gui/dialogs/TextEventDialog.cpp:188 +#, fuzzy +msgid "accel." +msgstr "C&ancel·la" + +#: ../src/gui/dialogs/TextEventDialog.cpp:189 +msgid "ritard." +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:190 +msgid "ralletando" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:191 +#, fuzzy +msgid "a tempo" +msgstr "Nou tempo:" + +#: ../src/gui/dialogs/TextEventDialog.cpp:192 +#, fuzzy +msgid "legato" +msgstr "&Lligat" + +#: ../src/gui/dialogs/TextEventDialog.cpp:193 +#, fuzzy +msgid "simile" +msgstr "Temps" + +#: ../src/gui/dialogs/TextEventDialog.cpp:194 +msgid "pizz." +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:195 +#, fuzzy +msgid "arco" +msgstr "&Marcato" + +#: ../src/gui/dialogs/TextEventDialog.cpp:196 +msgid "non vib." +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:197 +msgid "sul pont." +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:198 +#: ../src/gui/dialogs/TextEventDialog.cpp:200 +msgid "sul tasto" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:199 +msgid "con legno" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:201 +msgid "sul G" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:202 +msgid "ordinario" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:203 +#, fuzzy +msgid "Muta in " +msgstr "Sosté" + +#: ../src/gui/dialogs/TextEventDialog.cpp:204 +msgid "volti subito " +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:205 +msgid "soli" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:206 +msgid "div." +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:210 +#, fuzzy +msgid "Tempo: " +msgstr "Tempo " + +#: ../src/gui/dialogs/TextEventDialog.cpp:214 +#: ../src/gui/dialogs/TextEventDialog.cpp:238 +#, fuzzy +msgid "Grave" +msgstr "Grec" + +#: ../src/gui/dialogs/TextEventDialog.cpp:215 +#: ../src/gui/dialogs/TextEventDialog.cpp:239 +#, fuzzy +msgid "Adagio" +msgstr "Àudio" + +#: ../src/gui/dialogs/TextEventDialog.cpp:216 +#: ../src/gui/dialogs/TextEventDialog.cpp:240 +msgid "Largo" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:217 +#: ../src/gui/dialogs/TextEventDialog.cpp:241 +#, fuzzy +msgid "Lento" +msgstr "&Lligat" + +#: ../src/gui/dialogs/TextEventDialog.cpp:218 +#: ../src/gui/dialogs/TextEventDialog.cpp:242 +#, fuzzy +msgid "Andante" +msgstr "Avançat" + +#: ../src/gui/dialogs/TextEventDialog.cpp:219 +#: ../src/gui/dialogs/TextEventDialog.cpp:243 +#, fuzzy +msgid "Moderato" +msgstr "Mordent" + +#: ../src/gui/dialogs/TextEventDialog.cpp:220 +#: ../src/gui/dialogs/TextEventDialog.cpp:244 +msgid "Allegretto" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:221 +#: ../src/gui/dialogs/TextEventDialog.cpp:245 +msgid "Allegro" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:222 +#: ../src/gui/dialogs/TextEventDialog.cpp:246 +msgid "Vivace" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:223 +#: ../src/gui/dialogs/TextEventDialog.cpp:247 +#, fuzzy +msgid "Presto" +msgstr "silenci" + +#: ../src/gui/dialogs/TextEventDialog.cpp:224 +#: ../src/gui/dialogs/TextEventDialog.cpp:248 +#, fuzzy +msgid "Prestissimo" +msgstr "Presentació" + +#: ../src/gui/dialogs/TextEventDialog.cpp:225 +#: ../src/gui/dialogs/TextEventDialog.cpp:249 +#, fuzzy +msgid "Maestoso" +msgstr "Maestro" + +#: ../src/gui/dialogs/TextEventDialog.cpp:226 +#: ../src/gui/dialogs/TextEventDialog.cpp:250 +#, fuzzy +msgid "Sostenuto" +msgstr "T&enuto" + +#: ../src/gui/dialogs/TextEventDialog.cpp:227 +#: ../src/gui/dialogs/TextEventDialog.cpp:251 +#, fuzzy +msgid "Tempo Primo" +msgstr "Tempo " + +#: ../src/gui/dialogs/TextEventDialog.cpp:234 +#, fuzzy +msgid "Local Tempo: " +msgstr "Tempo local" + +#: ../src/gui/dialogs/TextEventDialog.cpp:255 +#, fuzzy +msgid "Directive: " +msgstr "Direcció" + +#: ../src/gui/dialogs/TextEventDialog.cpp:312 +msgid "Example" +msgstr "Exemple" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:65 +msgid "Event Filter" +msgstr "Filtre d'esdeveniments" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:86 +msgid "Note Events" +msgstr "Esdeveniments de nota" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:90 +msgid "lowest:" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:93 +msgid "highest:" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:96 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:141 +#: ../src/gui/widgets/PitchChooser.cpp:53 +msgid "Pitch:" +msgstr "Altura:" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:99 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:163 +msgid "Velocity:" +msgstr "Velocitat:" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:102 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:129 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:257 +msgid "Duration:" +msgstr "Duració:" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:107 +#: ../src/gui/dialogs/EventFilterDialog.cpp:114 +#: ../src/gui/dialogs/EventFilterDialog.cpp:121 +msgid "include" +msgstr "inclou" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:108 +#: ../src/gui/dialogs/EventFilterDialog.cpp:115 +#: ../src/gui/dialogs/EventFilterDialog.cpp:122 +msgid "exclude" +msgstr "exclou" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:136 +#: ../src/gui/dialogs/EventFilterDialog.cpp:155 +#: ../src/gui/editors/eventlist/EventView.cpp:172 +#: ../src/gui/editors/eventlist/EventView.cpp:179 +#: ../src/gui/editors/eventlist/EventView.cpp:186 +#, fuzzy +msgid "edit" +msgstr "Editor" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:141 +#: ../src/gui/dialogs/EventFilterDialog.cpp:157 +msgid "choose a pitch using a staff" +msgstr "tria una altura de nota fent servir una vara" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:182 +#: ../src/gui/dialogs/EventFilterDialog.cpp:188 +msgid "longest" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:200 +msgid "Include all" +msgstr "Inclou-ho tot" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:203 +msgid "Include entire range of values" +msgstr "Inclou l'abast dels valors complet" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:206 +msgid "Exclude all" +msgstr "Exclou-ho tot" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:209 +msgid "Exclude entire range of values" +msgstr "Exclou l'abast dels valors complet" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:233 +#: ../src/gui/dialogs/EventFilterDialog.cpp:234 +#, fuzzy +msgid "shortest" +msgstr "silenci" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:333 +#, fuzzy +msgid "Lowest pitch" +msgstr "Altura de la nota:" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:343 +#, fuzzy +msgid "Highest pitch" +msgstr "Altura de la clau;" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:56 +#: ../src/gui/editors/notation/NotationView.cpp:1619 +#: ../src/gui/editors/notation/NotationView.cpp:6088 +msgid "Use Ornament" +msgstr "Fes servir l'ornamentació" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:260 +#: ../src/gui/configuration/NotationConfigurationPage.h:64 +#: ../src/gui/configuration/NotationConfigurationPage.h:65 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:63 +msgid "Notation" +msgstr "Partitura" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:68 +msgid "Display as: " +msgstr "Visualitza com: " + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:84 +msgid "Trill" +msgstr "Trinat" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:84 +msgid "Trill with line" +msgstr "Trinat amb línia" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:84 +msgid "Trill line only" +msgstr "Només línia de trinat" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:85 +msgid "Turn" +msgstr "Grupet" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:85 +msgid "Mordent" +msgstr "Mordent" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:85 +msgid "Inverted mordent" +msgstr "Mordent invertit" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:86 +msgid "Long mordent" +msgstr "Mordent llarg" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:86 +msgid "Long inverted mordent" +msgstr "Mordent llarg invertit" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:94 +msgid "Text mark" +msgstr "Marca de text" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:98 +msgid " Text: " +msgstr " Text: " + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:104 +msgid "Performance" +msgstr "Interpretació" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:109 +msgid "Perform using triggered segment: " +msgstr "Interpreta amb el fragment activable: " + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:75 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:123 +msgid "Perform with timing: " +msgstr "Interpreta amb el temps: " + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:81 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:129 +msgid "As stored" +msgstr "Tal com s'emmagatzemà" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:82 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:130 +msgid "Truncate if longer than note" +msgstr "Trunca, si és més llarg que la nota" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:83 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:131 +msgid "End at same time as note" +msgstr "Finalitza al mateix temps que la nota" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:84 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:132 +msgid "Stretch or squash segment to note duration" +msgstr "Estira o comprimeix el fragment a la durada de la nota" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:86 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:134 +msgid "Adjust pitch to note" +msgstr "Ajusta l'altura de la nota" + +#: ../src/gui/dialogs/PitchPickerDialog.cpp:40 +msgid "Pitch Selector" +msgstr "Selector de l'alçada de la nota" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:44 +msgid "Audio Segment Duration" +msgstr "Durada del fragment d'àudio" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:50 +msgid "The selected audio segment contains:" +msgstr "El fragment d'àudio seleccionat conté:" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:59 +msgid "beat(s)" +msgstr "pulsació(ons)" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:60 +msgid "bar(s)" +msgstr "compàs(assos)" + +#: ../src/gui/dialogs/TupletDialog.cpp:51 +msgid "Tuplet" +msgstr "Grup irregular" + +#: ../src/gui/dialogs/TupletDialog.cpp:58 +msgid "New timing for tuplet group" +msgstr "Temps nou per al grup irregular" + +#: ../src/gui/dialogs/TupletDialog.cpp:76 +msgid "Play " +msgstr "Reprodueix " + +#: ../src/gui/dialogs/TupletDialog.cpp:98 +msgid "in the time of " +msgstr "en el temps de " + +#: ../src/gui/dialogs/TupletDialog.cpp:104 +msgid "Timing is already correct: update display only" +msgstr "El temps ja és correcte: s'actualitzarà només la presentació" + +#: ../src/gui/dialogs/TupletDialog.cpp:114 +msgid "Timing calculations" +msgstr "Càlculs de temps" + +#: ../src/gui/dialogs/TupletDialog.cpp:120 +msgid "Selected region:" +msgstr "Regió seleccionada:" + +#: ../src/gui/dialogs/TupletDialog.cpp:129 +msgid "Group with current timing:" +msgstr "Agrupa amb el temps actual:" + +#: ../src/gui/dialogs/TupletDialog.cpp:135 +msgid "Group with new timing:" +msgstr "Agrupa amb el temps nou:" + +#: ../src/gui/dialogs/TupletDialog.cpp:141 +msgid "Gap created by timing change:" +msgstr "Buit creat pel canvi de temps:" + +#: ../src/gui/dialogs/TupletDialog.cpp:149 +msgid "Unchanged at end of selection:" +msgstr "Cap canvi al final de la selecció:" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:63 rc.cpp:372 +#, no-c-format +msgid "Metronome" +msgstr "Metrònom" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:77 +msgid "Metronome Instrument" +msgstr "Instrument del metrònom" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:82 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:150 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:183 +#: ../src/gui/studio/DeviceEditorDialog.cpp:73 +#: ../src/gui/studio/DeviceManagerDialog.cpp:105 +#: ../src/gui/studio/DeviceManagerDialog.cpp:163 +#: ../src/gui/studio/RemapInstrumentDialog.cpp:66 +msgid "Device" +msgstr "Dispositiu" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:101 +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:89 +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:215 +#: ../src/gui/studio/DeviceEditorDialog.cpp:195 +#: ../src/gui/studio/DeviceEditorDialog.cpp:218 +#: ../src/gui/studio/DeviceEditorDialog.cpp:230 +#: ../src/gui/studio/DeviceManagerDialog.cpp:196 +#: ../src/gui/studio/DeviceManagerDialog.cpp:440 +#: ../src/gui/studio/DeviceManagerDialog.cpp:452 +msgid "No connection" +msgstr "Sense connexió" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:112 +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:111 +#: ../src/gui/editors/parameters/InstrumentParameterBox.cpp:53 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1209 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:159 +#: ../src/gui/general/PresetHandlerDialog.cpp:92 +#: ../src/gui/studio/MidiMixerWindow.cpp:204 +#: ../src/gui/studio/RemapInstrumentDialog.cpp:67 +msgid "Instrument" +msgstr "Instrument" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:118 +msgid "Beats" +msgstr "Pulsacions" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:184 +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:123 +msgid "Resolution" +msgstr "Resolució" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:309 +#: ../src/gui/configuration/NotationConfigurationPage.cpp:139 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:205 +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:125 +#: ../src/gui/editors/matrix/MatrixView.cpp:2132 +#: ../src/gui/editors/notation/NotationView.cpp:1582 +#: ../src/gui/widgets/QuantizeParameters.cpp:128 +#: ../src/gui/widgets/QuantizeParameters.cpp:301 +msgid "None" +msgstr "Cap" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:126 +msgid "Bars only" +msgstr "Només els compassos" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:127 +msgid "Bars and beats" +msgstr "Compassos i pulsacions" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:128 +msgid "Bars, beats, and divisions" +msgstr "Compassos, pulsacions i divisions" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:132 +msgid "Bar velocity" +msgstr "Velocitat del compàs" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:139 +msgid "Beat velocity" +msgstr "Velocitat de la pulsació" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:146 +msgid "Sub-beat velocity" +msgstr "Velocitat de la subpulsació" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:155 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:324 +msgid "Pitch" +msgstr "Altura" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:160 +msgid "for Bar" +msgstr "per al compàs" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:161 +msgid "for Beat" +msgstr "Per pulsació" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:162 +msgid "for Sub-beat" +msgstr "Per subpulsació" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:166 +msgid "Metronome Activated" +msgstr "Metrònom activat" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:167 +msgid "Playing" +msgstr "S'està reproduint" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:168 +msgid "Recording" +msgstr "S'està enregistrant" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:46 +msgid "Choose Text Encoding" +msgstr "Selecciona la codificació del text" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:50 +msgid "" +"\n" +"This file contains text in an unknown language encoding.\n" +"\n" +"Please select one of the following estimated text encodings\n" +"for use with the text in this file:\n" +msgstr "" +"\n" +"Aquest fitxer conté text en un codificació desconeguda.\n" +"\n" +"Seleccioneu un de les següents codificacions possibles\n" +"per utilitzar-la amb aquest fitxer:\n" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:61 +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:77 +msgid "Japanese Shift-JIS" +msgstr "Japonès Shift-JIS" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:62 +msgid "Unicode variable-width" +msgstr "Unicode de mida varible" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:63 +msgid "Western Europe" +msgstr "Europa occidental" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:64 +msgid "Western Europe + Euro" +msgstr "Europa occidental + Euro" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:65 +msgid "Eastern Europe" +msgstr "Europa de l'Est" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:66 +msgid "Southern Europe" +msgstr "Sud d'Europa" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:67 +msgid "Northern Europe" +msgstr "Nord d'Europa" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:68 +msgid "Cyrillic" +msgstr "Ciríl·lic" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:69 +msgid "Arabic" +msgstr "Àrab" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:70 +msgid "Greek" +msgstr "Grec" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:71 +msgid "Hebrew" +msgstr "Hebreu" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:72 +msgid "Turkish" +msgstr "Turc" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:73 +msgid "Nordic" +msgstr "Nòrdic" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:74 +msgid "Thai" +msgstr "Tai" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:75 +msgid "Baltic" +msgstr "Bàltic" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:76 +msgid "Celtic" +msgstr "Celta" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:78 +msgid "Traditional Chinese" +msgstr "Xinès tradicional" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:79 +msgid "Simplified Chinese" +msgstr "Xinès simplificat" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:80 +msgid "Russian" +msgstr "Rus" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:81 +msgid "Ukrainian" +msgstr "Ucraïnès" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:82 +msgid "Tamil" +msgstr "Tàmil" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:117 +#, c-format +msgid "Microsoft Code Page %1" +msgstr "Còdi de pàgina Microsoft %1" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:123 +#: ../src/gui/editors/matrix/MatrixView.cpp:1490 +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:142 +msgid "" +"\n" +"Example text from file:" +msgstr "" +"\n" +"Exemple del text del fitxer:" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:59 +#: ../src/gui/editors/tempo/TempoView.cpp:92 +msgid "Time Signature" +msgstr "Indicació de compàs" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:82 +msgid "Time signature" +msgstr "Indicació de compàs" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:116 +msgid "Time where signature takes effect" +msgstr "Temps on l'armadura fa efecte" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:83 +#: ../src/gui/dialogs/TempoDialog.cpp:128 +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:129 +#: ../src/gui/general/PresetHandlerDialog.cpp:101 +msgid "Scope" +msgstr "Àmbit" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:141 +#, c-format +msgid "Insertion point is at start of measure %1." +msgstr "El punt d'inserció és al començament del compàs %1" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:145 +#, c-format +msgid "Insertion point is in the middle of measure %1." +msgstr "El punt d'inserció és al mig del compàs %1." + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:150 +msgid "Insertion point is at start of composition." +msgstr "El punt d'inserció és al començament de la composició" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:155 +msgid "Start measure %1 here" +msgstr "Inicia el compàs %1 aquí" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:159 +#, fuzzy, c-format +msgid "Change time from start of measure %1" +msgstr "Canvia el temps des de l'inici del compàs %1" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:166 +#, c-format +msgid "Time change will take effect at the start of measure %1." +msgstr "El canvi del temps tindrà efecte a l'inici del compàs %1." + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:176 +#, fuzzy +msgid "Hide the time signature" +msgstr "Amaga la indicació de compàs" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:181 +#, fuzzy +msgid "Hide the affected bar lines" +msgstr "Lliga les notes a les barres etc" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:186 +msgid "Show as common time" +msgstr "Mostra com a temps comú" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:191 +msgid "Correct the durations of following measures" +msgstr "Corregeix la durada dels compassos que segueixen" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:280 +msgid "Display as common time" +msgstr "Visualitza com a temps comú" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:284 +msgid "Display as cut common time" +msgstr "Visualitza com a temps comú incomplet" + +#: ../src/gui/dialogs/ConfigureDialog.cpp:66 +msgid "Configure Rosegarden" +msgstr "Configuració del Rosegarden" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:53 +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:61 +msgid "Edit Marker" +msgstr "Edita el marcador" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:78 +msgid "Marker Time" +msgstr "Temps del marcador" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:94 +msgid "Marker Properties" +msgstr "Propietats del marcador" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:100 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:554 +msgid "Text:" +msgstr "Text:" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:104 +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:85 +msgid "Description:" +msgstr "Descripció:" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:46 +msgid "Merge File" +msgstr "Fusiona el fitxer" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:53 +msgid "Merge new file " +msgstr "Fusiona el nou fitxer " + +#: ../src/gui/dialogs/FileMergeDialog.cpp:56 +msgid "At start of existing composition" +msgstr "Al començament d'una composició ja existent" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:57 +msgid "From end of existing composition" +msgstr "Des del final d'una composició ja existent" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:61 +msgid "The file has different time signatures or tempos." +msgstr "El fitxer té diferents indicacions de compàs o tempos." + +#: ../src/gui/dialogs/FileMergeDialog.cpp:62 +msgid "Import these as well" +msgstr "Importa també aquests" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:171 +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:44 +msgid "Sequencer status" +msgstr "Estat del seqüenciador" + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:48 +msgid "Sequencer status:" +msgstr "Estat del seqüenciador:" + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:50 +msgid "Status not available." +msgstr "Estat no disponible." + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:57 +msgid "Sequencer is not running or is not responding." +msgstr "El seqüenciador no s'està executant o bé no respon." + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:64 +msgid "Sequencer is not returning a valid status report." +msgstr "El seqüenciador no respon amb un informe d'estat vàlid." + +#: ../src/gui/dialogs/AddTracksDialog.cpp:46 +#, fuzzy +msgid "Add Tracks" +msgstr "Afegeix una &pista" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:54 +msgid "How many tracks do you want to add?" +msgstr "Quantes pistes voleu afegir?" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:62 +#, fuzzy +msgid "Add tracks" +msgstr "Afegeix vàries pistes" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:64 +msgid "At the top" +msgstr "" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:65 +#, fuzzy +msgid "Above the current selected track" +msgstr "Posa silencia a totes les pistes excepte la seleccionada" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:66 +#, fuzzy +msgid "Below the current selected track" +msgstr "Posa silencia a totes les pistes excepte la seleccionada" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:67 +msgid "At the bottom" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:75 +msgid "Event Properties" +msgstr "Propietats de l'esdeveniment" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:81 +msgid "Event type:" +msgstr "Tipus d'esdeveniment" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:117 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:251 +#: ../src/gui/editors/segment/MarkerEditor.cpp:97 +msgid "Absolute time:" +msgstr "Temps absolut:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:156 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:323 +msgid "Controller name:" +msgstr "Nom del controlador:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:157 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:530 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:562 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:563 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:602 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:631 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:267 +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:269 +#: ../src/gui/editors/segment/MarkerEditor.cpp:279 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:272 +#: ../src/gui/studio/AudioMixerWindow.cpp:388 +#: ../src/gui/studio/AudioMixerWindow.cpp:519 +#: ../src/gui/studio/AudioMixerWindow.cpp:683 +#: ../src/gui/studio/AudioMixerWindow.cpp:722 +#: ../src/gui/studio/AudioMixerWindow.cpp:904 +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:121 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:174 +msgid "Meta string:" +msgstr "Cadena meta:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:179 +msgid "Load data" +msgstr "Carrega les dades" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:181 +msgid "Save data" +msgstr "Desa les dades" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:192 +msgid "Notation Properties" +msgstr "Propietats de la notació" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:198 +msgid "Lock to changes in performed values" +msgstr "Fixa els canvis en els valors executats" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:205 +msgid "Notation time:" +msgstr "Temps de notació:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:217 +msgid "Notation duration:" +msgstr "Duració de la notació:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:283 +msgid "Note pitch:" +msgstr "Altura de la nota:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:291 +msgid "Note velocity:" +msgstr "Velocitat de la nota:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:317 +msgid "Controller number:" +msgstr "Número de controlador:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:326 +msgid "Controller value:" +msgstr "Valor del controlador:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:354 +msgid "Key pitch:" +msgstr "Altura de la clau;" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:362 +msgid "Key pressure:" +msgstr "Pressió de la tecla:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:390 +msgid "Channel pressure:" +msgstr "Pressió del canal:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:418 +msgid "Program change:" +msgstr "Canvio de programa:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:461 +msgid "Data length:" +msgstr "Longitud de les dades:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:462 +msgid "Data:" +msgstr "Dades:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:480 +msgid "Pitchbend MSB:" +msgstr "Inflexió MSB:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:488 +msgid "Pitchbend LSB:" +msgstr "Inflexió LSB:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:523 +msgid "Indication:" +msgstr "Indicació:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:553 +msgid "Text type:" +msgstr "Tipus de text:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:596 +msgid "Clef type:" +msgstr "Tipus de clau:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:625 +msgid "Key name:" +msgstr "Nom de la clau:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:674 +msgid "Unsupported event type:" +msgstr "Tipus d'esdeveniment desconegut:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:931 +msgid "Edit Event Time" +msgstr "Edita el temps de l'esdeveniment" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:943 +msgid "Edit Event Notation Time" +msgstr "Edita el temps de notació de l'esdeveniment" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:955 +msgid "Edit Duration" +msgstr "Edita la duració" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:968 +msgid "Edit Notation Duration" +msgstr "Edita la duració de la notació" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:981 +msgid "Edit Pitch" +msgstr "Edita l'altura" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:991 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:1016 +msgid "*.syx|System exclusive files (*.syx)" +msgstr "*.syx|Fitxers de sistema exclusiu (*.syx)" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:992 +msgid "Load System Exclusive data in File" +msgstr "Carrega les dades del sistema exclusiu en el fitxer" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:1017 +msgid "Save System Exclusive data to..." +msgstr "Desa les dades del sistema exclusiu a..." + +#: ../src/gui/dialogs/FileLocateDialog.cpp:46 +msgid "Locate audio file" +msgstr "Busca el fitxer d'àudio" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:50 +msgid "&Skip" +msgstr "&Omet" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:51 +msgid "Skip &All" +msgstr "O&met tot" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:52 +msgid "&Locate" +msgstr "&Localitza" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:57 +msgid "" +"Can't find file \"%1\".\n" +"Would you like to try and locate this file or skip it?" +msgstr "" +"No es pot trobar el fitxer \"%1\".\n" +"Voleu intentar buscar i localitzar-lo o voleu ometre'l?" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:71 +msgid "" +"%1|Requested file (%2)\n" +"*.wav|WAV files (*.wav)" +msgstr "" +"%1|Fitxer demanat (%2)\n" +"*.wav|fitxers WAV (*.wav)" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:74 +msgid "Select an Audio File" +msgstr "Selecciona un fitxer d'àudio" + +#: ../src/gui/dialogs/ClefDialog.cpp:53 ../src/gui/dialogs/ClefDialog.cpp:62 +#: ../src/gui/dialogs/ClefDialog.cpp:79 ../src/gui/dialogs/ClefDialog.cpp:90 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:278 +msgid "Clef" +msgstr "Clau" + +#: ../src/gui/dialogs/ClefDialog.cpp:65 +msgid "Existing notes following clef change" +msgstr "Hi han notes a continuació del canvi de clau" + +#: ../src/gui/dialogs/ClefDialog.cpp:71 +msgid "Lower clef" +msgstr "Clau més greu" + +#: ../src/gui/dialogs/ClefDialog.cpp:77 +msgid "Up an Octave" +msgstr "Pujar una octava" + +#: ../src/gui/dialogs/ClefDialog.cpp:84 +msgid "Down an Octave" +msgstr "Baixar una octava" + +#: ../src/gui/dialogs/ClefDialog.cpp:88 +msgid "Higher clef" +msgstr "Clau més aguda" + +#: ../src/gui/dialogs/ClefDialog.cpp:96 +#: ../src/gui/dialogs/KeySignatureDialog.cpp:152 +msgid "Maintain current pitches" +msgstr "Manté els tons actuals" + +#: ../src/gui/dialogs/ClefDialog.cpp:99 +msgid "Transpose into appropriate octave" +msgstr "Transposa a l'octava apropiada" + +#: ../src/gui/dialogs/ClefDialog.cpp:231 +msgid "%1 down an octave" +msgstr "%1 una octava avall" + +#: ../src/gui/dialogs/ClefDialog.cpp:234 +msgid "%1 down two octaves" +msgstr "%1 dues octaves avall" + +#: ../src/gui/dialogs/ClefDialog.cpp:237 +msgid "%1 up an octave" +msgstr "%1 una octava amunt" + +#: ../src/gui/dialogs/ClefDialog.cpp:240 +msgid "%1 up two octaves" +msgstr "%1 dues octaves amunt" + +#: ../src/gui/dialogs/ClefDialog.cpp:249 +msgid "Treble" +msgstr "Soprano" + +#: ../src/gui/dialogs/ClefDialog.cpp:251 +#, fuzzy +msgid "French violin" +msgstr "traducció al francès" + +#: ../src/gui/dialogs/ClefDialog.cpp:253 +#, fuzzy +msgid "Soprano" +msgstr "S&forzando" + +#: ../src/gui/dialogs/ClefDialog.cpp:255 +#, fuzzy +msgid "Mezzo-soprano" +msgstr "S&forzando" + +#: ../src/gui/dialogs/ClefDialog.cpp:257 +msgid "Alto" +msgstr "Alto" + +#: ../src/gui/dialogs/ClefDialog.cpp:259 +msgid "Tenor" +msgstr "Tenor" + +#: ../src/gui/dialogs/ClefDialog.cpp:261 +#, fuzzy +msgid "C-baritone" +msgstr "Variació" + +#: ../src/gui/dialogs/ClefDialog.cpp:263 +#, fuzzy +msgid "F-baritone" +msgstr "Variació" + +#: ../src/gui/dialogs/ClefDialog.cpp:265 +msgid "Bass" +msgstr "Baix" + +#: ../src/gui/dialogs/ClefDialog.cpp:267 +#, fuzzy +msgid "Sub-bass" +msgstr "Baix" + +#: ../src/gui/dialogs/CountdownDialog.cpp:52 +msgid "Recording..." +msgstr "S'està enregistrant..." + +#: ../src/gui/dialogs/CountdownDialog.cpp:60 +msgid "Recording time remaining: " +msgstr "Temps restant de l'enregistrament: " + +#: ../src/gui/dialogs/CountdownDialog.cpp:120 +msgid "Just how big is your hard disk?" +msgstr "Quina és la capacitat del vostre disc dur?" + +#: ../src/gui/dialogs/CountdownDialog.cpp:154 +msgid "Recording beyond end of composition: " +msgstr "Grava fins i tot després del final de la composició: " + +#: ../src/gui/dialogs/IntervalDialog.cpp:52 +msgid "Specify Interval" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:58 +msgid "Reference note:" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:59 +#, fuzzy +msgid "Target note:" +msgstr "negra" + +#: ../src/gui/dialogs/IntervalDialog.cpp:68 +#: ../src/gui/dialogs/IntervalDialog.cpp:315 +msgid "a perfect unison" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:76 +msgid "Effect on Key" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:77 +#, fuzzy +msgid "Transpose within key" +msgstr "Transposa a aquesta clau" + +#: ../src/gui/dialogs/IntervalDialog.cpp:79 +#, fuzzy +msgid "Change key for selection" +msgstr "Cap canvi al final de la selecció:" + +#: ../src/gui/dialogs/IntervalDialog.cpp:89 +msgid "" +"Adjust segment transposition in opposite direction (maintain audible pitch)" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:190 +#: ../src/gui/dialogs/IntervalDialog.cpp:220 +msgid "a diminished" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:192 +#: ../src/gui/dialogs/IntervalDialog.cpp:222 +msgid "an augmented" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:194 +#: ../src/gui/dialogs/IntervalDialog.cpp:224 +msgid "a doubly diminished" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:196 +#: ../src/gui/dialogs/IntervalDialog.cpp:226 +msgid "a doubly augmented" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:198 +#: ../src/gui/dialogs/IntervalDialog.cpp:228 +msgid "a triply diminished" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:200 +#: ../src/gui/dialogs/IntervalDialog.cpp:230 +msgid "a triply augmented" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:202 +msgid "a quadruply diminished" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:204 +#: ../src/gui/dialogs/IntervalDialog.cpp:232 +msgid "a quadruply augmented" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:206 +#: ../src/gui/dialogs/IntervalDialog.cpp:234 +msgid "a perfect" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:208 +#: ../src/gui/dialogs/IntervalDialog.cpp:236 +msgid "an (unknown, %1)" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:216 +#, fuzzy +msgid "a minor" +msgstr "Menor" + +#: ../src/gui/dialogs/IntervalDialog.cpp:218 +#, fuzzy +msgid "a major" +msgstr "Major" + +#: ../src/gui/dialogs/IntervalDialog.cpp:239 +#, fuzzy +msgid "an (unknown)" +msgstr "Desconegut/da" + +#: ../src/gui/dialogs/IntervalDialog.cpp:248 +#: ../src/gui/dialogs/IntervalDialog.cpp:251 +#, fuzzy +msgid "%1 octave" +msgstr "%1 una octava amunt" + +#: ../src/gui/dialogs/IntervalDialog.cpp:254 +#, fuzzy +msgid "%1 unison" +msgstr "unitats" + +#: ../src/gui/dialogs/IntervalDialog.cpp:258 +#, fuzzy +msgid "%1 second" +msgstr "Segons:" + +#: ../src/gui/dialogs/IntervalDialog.cpp:261 +#, fuzzy +msgid "%1 third" +msgstr "Altre" + +#: ../src/gui/dialogs/IntervalDialog.cpp:264 +#, fuzzy +msgid "%1 fourth" +msgstr "%1 bemoll" + +#: ../src/gui/dialogs/IntervalDialog.cpp:267 +#, fuzzy +msgid "%1 fifth" +msgstr "Altura" + +#: ../src/gui/dialogs/IntervalDialog.cpp:270 +#, fuzzy +msgid "%1 sixth" +msgstr "Altura" + +#: ../src/gui/dialogs/IntervalDialog.cpp:273 +#, fuzzy +msgid "%1 seventh" +msgstr "Redimensiona l'esdeveniment" + +#: ../src/gui/dialogs/IntervalDialog.cpp:276 +#: ../src/gui/studio/DeviceManagerDialog.cpp:329 +#: ../src/gui/studio/DeviceManagerDialog.cpp:363 +#, c-format +msgid "%1" +msgstr "%1" + +#: ../src/gui/dialogs/IntervalDialog.cpp:287 +msgid "" +"_n: up 1 octave and %1\n" +"up %n octaves and %1" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:291 +#, c-format +msgid "" +"_n: up 1 octave\n" +"up %n octaves" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:295 +#, fuzzy, c-format +msgid "up %1" +msgstr "Sub %1" + +#: ../src/gui/dialogs/IntervalDialog.cpp:303 +msgid "" +"_n: down 1 octave and %1\n" +"down %n octaves and %1" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:307 +#, fuzzy, c-format +msgid "" +"_n: down 1 octave\n" +"down %n octaves" +msgstr "" +"%1 en 1 pista\n" +"%1 en %n pistes" + +#: ../src/gui/dialogs/IntervalDialog.cpp:311 +#, fuzzy, c-format +msgid "down %1" +msgstr "Id: %1" + +#: ../src/gui/dialogs/EventEditDialog.cpp:81 +msgid "Intrinsics" +msgstr "Intrínsecs" + +#: ../src/gui/dialogs/EventEditDialog.cpp:85 +msgid "Event type: " +msgstr "Tipus d'esdeveniment: " + +#: ../src/gui/dialogs/EventEditDialog.cpp:91 +msgid "Absolute time: " +msgstr "Temps absolut: " + +#: ../src/gui/dialogs/EventEditDialog.cpp:101 +msgid "Duration: " +msgstr "Duració: " + +#: ../src/gui/dialogs/EventEditDialog.cpp:114 +msgid "Sub-ordering: " +msgstr "Subordre: " + +#: ../src/gui/dialogs/EventEditDialog.cpp:125 +msgid "Persistent properties" +msgstr "Propietats persistents" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:169 +#: ../src/gui/dialogs/EventEditDialog.cpp:133 +#: ../src/gui/studio/BankEditorDialog.cpp:129 +#: ../src/gui/studio/DeviceEditorDialog.cpp:75 +msgid "Type" +msgstr "Tipus" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:184 +#: ../src/gui/dialogs/EventEditDialog.cpp:135 +#: ../src/gui/dialogs/EventParameterDialog.cpp:89 +#: ../src/gui/dialogs/EventParameterDialog.cpp:93 +#: ../src/gui/dialogs/EventParameterDialog.cpp:115 +msgid "Value" +msgstr "Valor" + +#: ../src/gui/dialogs/EventEditDialog.cpp:155 +msgid "Non-persistent properties" +msgstr "Propietats no persistents" + +#: ../src/gui/dialogs/EventEditDialog.cpp:156 +msgid "These are cached values, lost if the event is modified." +msgstr "" +"Aquests valors estan en la memòria cau i es perdran al modificar la " +"incidència" + +#: ../src/gui/dialogs/EventEditDialog.cpp:170 +msgid "Name " +msgstr "Nom " + +#: ../src/gui/dialogs/EventEditDialog.cpp:172 +msgid "Type " +msgstr "Tipus " + +#: ../src/gui/dialogs/EventEditDialog.cpp:174 +msgid "Value " +msgstr "Valor " + +#: ../src/gui/dialogs/EventEditDialog.cpp:188 +msgid "Make persistent" +msgstr "Fes persistent" + +#: ../src/gui/dialogs/EventEditDialog.cpp:292 +msgid "Delete this property" +msgstr "Suprimeix aquesta propietat" + +#: ../src/gui/dialogs/EventEditDialog.cpp:433 +msgid "" +"Are you sure you want to delete the \"%1\" property?\n" +"\n" +"Removing necessary properties may cause unexpected behavior." +msgstr "" +"Esteu segur de voler suprimir la propietat \"%1\"?\n" +"\n" +"La supressió d'una propietat necessària pot causar un comportament inesperat." + +#: ../src/gui/dialogs/EventEditDialog.cpp:436 +#: ../src/gui/dialogs/EventEditDialog.cpp:469 +msgid "Edit Event" +msgstr "Edita l'esdeveniment" + +#: ../src/gui/dialogs/EventEditDialog.cpp:465 +msgid "" +"Are you sure you want to make the \"%1\" property persistent?\n" +"\n" +"This could cause problems if it overrides a different computed value later " +"on." +msgstr "" +"Esteu segur de voler fer persistent la propietat \"%1\"?\n" +"\n" +"Això pot causar problemes si, més endavant, se substitueix per un valor " +"calculat diferent." + +#: ../src/gui/dialogs/EventEditDialog.cpp:470 +msgid "Make &Persistent" +msgstr "Fer &persistent" + +#: ../src/gui/dialogs/PasteNotationDialog.cpp:52 +msgid "Paste type" +msgstr "Forma d'enganxar" + +#: ../src/gui/dialogs/PasteNotationDialog.cpp:72 +msgid "Make this the default paste type" +msgstr "Enganxa d'aquesta forma a partir d'ara" + +#: ../src/gui/dialogs/LyricEditDialog.cpp:53 +msgid "Edit Lyrics" +msgstr "Edita la lírica" + +#: ../src/gui/dialogs/LyricEditDialog.cpp:62 +msgid "Lyrics for this segment" +msgstr "Lírica per aquest fragment" + +#: ../src/gui/dialogs/LyricEditDialog.cpp:70 +#, fuzzy +msgid "Add Verse" +msgstr "Afegeix un &decrescendo..." + +#: ../src/gui/dialogs/LyricEditDialog.cpp:84 +#: ../src/gui/dialogs/LyricEditDialog.cpp:106 +#, c-format +msgid "Verse %1" +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:59 +msgid "Import from Device..." +msgstr "Importa des del dispositiu..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2163 +#: ../src/gui/application/RosegardenGUIApp.cpp:2229 +#: ../src/gui/application/RosegardenGUIApp.cpp:7780 +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:87 +#: ../src/sound/AudioFileManager.cpp:664 +#, c-format +msgid "Cannot download file %1" +msgstr "No s'ha pogut descarregar el fitxer %1" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:99 +#, c-format +msgid "Cannot open file %1" +msgstr "No s'ha pogut obrir el fitxer %1" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:106 +#, c-format +msgid "No devices found in file %1" +msgstr "No s'han trobat dispositius en el fitxer %1" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:113 +msgid "Source device" +msgstr "Dispositiu d'origen" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:118 +msgid "Import from: " +msgstr "Importa des de: " + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:140 +#: ../src/gui/studio/DeviceEditorDialog.cpp:148 +#, c-format +msgid "Device %1" +msgstr "Dispositiu %1" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:155 +msgid "Import banks" +msgstr "Importa bancs" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:156 +msgid "Import key mappings" +msgstr "Importa dreceres" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:157 +msgid "Import controllers" +msgstr "Importa controladors" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:160 +msgid "Import device name" +msgstr "Nom del dispositiu importat" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:166 +msgid "Bank import behavior" +msgstr "Comportament de la importació de bancs" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:168 +msgid "Merge banks" +msgstr "Fusiona els bancs" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:169 +msgid "Overwrite banks" +msgstr "Sobreescriu els bancs" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:367 +msgid "Bank %1:%2" +msgstr "Banc %1 %2" + +#: ../src/commands/segment/SegmentSplitByRecordingSrcCommand.cpp:42 +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:48 +msgid "Split by Recording Source" +msgstr "Divideix segons l'origen" + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:53 +#, fuzzy +msgid "Recording Source" +msgstr "Origen de l'entrada del registre" + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:57 +#, fuzzy +msgid "Channel:" +msgstr "Canal" + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:64 +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:75 +msgid "any" +msgstr "qualsevol" + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:69 +#, fuzzy +msgid "Device:" +msgstr "Dispositiu" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:46 +msgid "Select Unused Audio Files" +msgstr "Selecciona els fitxers d'àudio en desús" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:53 +#: ../src/gui/editors/segment/PlayListView.cpp:36 +msgid "File name" +msgstr "Nom del fitxer" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:54 +msgid "File size" +msgstr "Mida del fitxer" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:55 +msgid "Last modified date" +msgstr "Data de l'últim canvi" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:60 +msgid " (not found) " +msgstr " (no s'ha trobat) " + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:105 +msgid "Audio File Manager" +msgstr "Gestor de fitxers d'àudio" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:126 +msgid "" +"* Some audio files are encoded at a sample rate different from that of the " +"JACK audio server.\n" +"Rosegarden will play them at the correct speed, but they will sound " +"terrible.\n" +"Please consider resampling such files externally, or adjusting the sample " +"rate of the JACK server." +msgstr "" +"* Alguns fitxers d'àudio estan codificats en un mostreig diferent del del " +"JACK.\n" +"El Rosegarden el reproduirà a la velocitat normal, però sonarà malament.\n" +"Caldria reeditar els fitxers i ajustar el mostreig com el del servidor JACK." + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:132 +msgid "&Add Audio File..." +msgstr "&Afegeix un fitxer d'àudio..." + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:135 +msgid "&Unload Audio File" +msgstr "Descarrega &un fitxer d'àudio" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:140 +msgid "&Play Preview" +msgstr "&Reprodueix una mostra" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:151 +msgid "&Insert into Selected Audio Track" +msgstr "&Insereix dins de la pista d'àudio seleccionada" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:155 +msgid "Unload &all Audio Files" +msgstr "Desc&arrega tots els fitxers d'àudio" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:159 +msgid "Unload all &Unused Audio Files" +msgstr "Descarrega tots els fitxers d'à&udio en desús" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:163 +msgid "&Delete Unused Audio Files..." +msgstr "Esborra tots els fitxers &d'àudio en desús..." + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:167 +msgid "&Export Audio File..." +msgstr "&Exporta un fitxer d'àudio..." + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:173 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:180 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:91 +msgid "Duration" +msgstr "Durada" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:181 +msgid "Envelope" +msgstr "Sobre" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:182 +msgid "Sample rate" +msgstr "Mostreig" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:183 +msgid "Channels" +msgstr "Canals" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:282 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:488 +msgid "*.wav|WAV files (*.wav)" +msgstr "*.wav|fitxers WAV (*.wav)" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:489 +msgid "Choose a name to save this file as" +msgstr "Escolliu un nom per desar el fitxer" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:499 +msgid "Exporting audio file..." +msgstr "S'està exportant el fitxer d'àudio..." + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:609 +msgid "" +"This will unload audio file \"%1\" and remove all associated segments. Are " +"you sure?" +msgstr "" +"Això descarregarà el fitxer d''audio \"%1\" i esborrarà tots els fragments " +"associats. Voleu continuar?" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:692 +#, fuzzy +msgid "" +"*.wav|WAV files (*.wav)\n" +"*.*|All files" +msgstr "*.wav|fitxers WAV (*.wav)" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:697 +msgid "" +"*.wav *.flac *.ogg *.mp3|Audio files (*.wav *.flac *.ogg *.mp3)\n" +"*.wav|WAV files (*.wav)\n" +"*.flac|FLAC files (*.flac)\n" +"*.ogg|Ogg files (*.ogg)\n" +"*.mp3|MP3 files (*.mp3)\n" +"*.*|All files" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:704 +msgid "Select one or more audio files" +msgstr "Selecciona un o més fitxers d'àudio" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:763 +msgid "" +"This will unload all audio files and remove their associated segments.\n" +"This action cannot be undone, and associations with these files will be " +"lost.\n" +"Files will not be removed from your disk.\n" +"Are you sure?" +msgstr "" +"Això descarregarà tots els fitxers d''audio i esborrarà tots els fragments " +"associats. \n" +"Aquesta acció no es pot desfer, i les fitxers associats es perdran.\n" +"Tot i així els fitxers no s'esborraran del disc.\n" +"Voleu continuar?" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:800 +msgid "" +"This will unload all audio files that are not associated with any segments " +"in this composition.\n" +"This action cannot be undone, and associations with these files will be " +"lost.\n" +"Files will not be removed from your disk.\n" +"Are you sure?" +msgstr "" +"Això descarregarà tots els fitxes d'àudio que no estan associats a cap " +"fragment de la composició.\n" +"Aquesta acció no es pot desfer, i els fitxers associats es perdran.\n" +"Tot i així els fitxers no s'esborraran del disc.\n" +"Voleu continuar?" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:865 +msgid "" +"The following audio files are not used in the current composition.\n" +"\n" +"Please select the ones you wish to delete permanently from the hard disk.\n" +msgstr "" +"Els fitxers d'àudio següents no s'utilitzen en la composició.\n" +"\n" +"Seleccioneu els que voleu esborrar permanentment del disc dur.\n" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:875 +#, fuzzy, c-format +msgid "" +"_n: About to delete 1 audio file permanently from the hard disk.
    This " +"action cannot be undone, and there will be no way to recover this file." +"
    Are you sure?
    \n" +"\n" +"About to delete %n audio files permanently from the hard disk.
    This " +"action cannot be undone, and there will be no way to recover these files." +"
    Are you sure?
    " +msgstr "" +"_n: Si esborreu el fitxer d'àudio permanentment del disc dur,\n" +"no podreu desfer aquesta acció i no es podrà recuperar el fitxer.\n" +"Voleu continuar?\n" +"_n: Si esborreu %n fitxers d'àudio permanentment del disc dur,\n" +"no podreu desfer aquesta acció i no es podran recuperar els fitxers.\n" +"Voleu continuar?" + +#: ../src/document/RosegardenGUIDoc.cpp:525 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:888 +msgid "File %1 could not be deleted." +msgstr "No s'ha pogut esborrar el fitxer %1" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:921 +msgid "Change Audio File label" +msgstr "Canvia l'etiqueta del fitxer d'àudio" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6466 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:922 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1099 +msgid "Enter new label" +msgstr "Introduïu una nova etiqueta" + +#: ../src/gui/application/RosegardenGUIView.cpp:1538 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1086 +#, fuzzy +msgid "Adding audio file..." +msgstr "S'està exportant el fitxer d'àudio..." + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1107 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1112 +#, fuzzy +msgid "Failed to add audio file. " +msgstr "El seqüenciador no ha pogut afegir el fitxer d'àduio %1" + +#: ../src/document/RosegardenGUIDoc.cpp:2789 +#: ../src/gui/application/RosegardenGUIApp.cpp:2736 +#: ../src/gui/application/RosegardenGUIView.cpp:1574 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1122 +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:180 +msgid "Generating audio preview..." +msgstr "S'està generant una mostra d'àudio..." + +#: ../src/gui/application/RosegardenGUIView.cpp:1581 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1130 +msgid "" +"Try copying this file to a directory where you have write permission and re-" +"add it" +msgstr "" +"Mireu de copiar aquest fitxer en una carpeta on tingueu permisos i torneu a " +"afegir-lo." + +#: ../src/gui/dialogs/TransportDialog.cpp:90 rc.cpp:357 +#, no-c-format +msgid "Rosegarden Transport" +msgstr "Transport del Rosegarden" + +#: ../src/gui/dialogs/TransportDialog.cpp:925 +#: ../src/gui/dialogs/TransportDialog.cpp:985 +msgid "PITCH WHEEL" +msgstr "PITCH WHEEL" + +#: ../src/gui/dialogs/TransportDialog.cpp:929 +#: ../src/gui/dialogs/TransportDialog.cpp:989 +msgid "CONTROLLER" +msgstr "CONTROLLER" + +#: ../src/gui/dialogs/TransportDialog.cpp:933 +#: ../src/gui/dialogs/TransportDialog.cpp:993 +msgid "PROG CHNGE" +msgstr "PROG CHNGE" + +#: ../src/gui/dialogs/TransportDialog.cpp:938 +#: ../src/gui/dialogs/TransportDialog.cpp:998 +msgid "PRESSURE" +msgstr "PRESSURE" + +#: ../src/gui/dialogs/TransportDialog.cpp:942 +#: ../src/gui/dialogs/TransportDialog.cpp:1002 +msgid "SYS MESSAGE" +msgstr "SYS MESSAGE" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:177 +#: ../src/gui/dialogs/QuantizeDialog.cpp:40 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:127 +msgid "Quantize" +msgstr "Quantificació" + +#: ../src/gui/dialogs/QuantizeDialog.cpp:52 +msgid "Advanced" +msgstr "Avançat" + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:42 +msgid "Export Devices..." +msgstr "Exporta els dispositius..." + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:47 +msgid "Export devices" +msgstr "Exporta els dispositius" + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:49 +msgid "Export all devices" +msgstr "Exporta tots els dispositius" + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:50 +msgid "Export selected device only" +msgstr "Exporta només el dispositiu seleccionat" + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:51 +msgid " (\"%1\")" +msgstr " (\"%1\")" + +#: ../src/gui/dialogs/CompositionLengthDialog.cpp:44 +msgid "Change Composition Length" +msgstr "Canvia la duració de la composició" + +#: ../src/gui/dialogs/CompositionLengthDialog.cpp:50 +msgid "Set the Start and End bar markers for this Composition" +msgstr "" +"Estableix els marcadors dels compassos inicial i final per aquesta composició" + +#: ../src/gui/dialogs/CompositionLengthDialog.cpp:54 +msgid "Start Bar" +msgstr "Compàs inicial" + +#: ../src/gui/dialogs/CompositionLengthDialog.cpp:62 +msgid "End Bar" +msgstr "Compàs final" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:62 +#, fuzzy +msgid "LilyPond Export/Preview" +msgstr "Exporta al Lilypond" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:85 +#, fuzzy +msgid "General options" +msgstr "Configuració general" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:90 +#, fuzzy +msgid "Advanced options" +msgstr "Mostra les opcions avançades" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:112 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:95 +msgid "Headers" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:106 +msgid "Basic options" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:113 +#, fuzzy +msgid "Compatibility level" +msgstr "Nivell de compatibilitat amb el Lilypond" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:117 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:118 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:119 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:120 +#, fuzzy, c-format +msgid "LilyPond %1" +msgstr "Lilypond 2.2" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:125 +#, fuzzy +msgid "Paper size" +msgstr "per fitxer" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:129 +msgid "A3" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:130 +msgid "A4" +msgstr "A4" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:131 +msgid "A5" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:132 +msgid "A6" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:133 +msgid "Legal" +msgstr "Legal" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:134 +msgid "US Letter" +msgstr "Carta estil EEUU" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:135 +msgid "Tabloid" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:136 +msgid "do not specify" +msgstr "no ho especifiquis" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:152 +#, fuzzy +msgid "Font size" +msgstr "Mida del fitxer" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:157 +#, fuzzy +msgid "%1 pt" +msgstr "%1 (partició)" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:169 +#, fuzzy +msgid "Staff level options" +msgstr "Mostra les opcions avançades" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:176 +#, fuzzy +msgid "Export content" +msgstr "Exporta els dispositius" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:179 +#, fuzzy +msgid "All tracks" +msgstr "Afegeix vàries pistes" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:180 +#, fuzzy +msgid "Non-muted tracks" +msgstr "Posa la pista en silenci" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:181 +#, fuzzy +msgid "Selected track" +msgstr "Seleccio&na la pista següent" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:182 +#, fuzzy +msgid "Selected segments" +msgstr "Selecciona &tots els fragments" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:188 +#, fuzzy +msgid "Merge tracks that have the same name" +msgstr "Ajunta les pistes que tinguin el mateix nom (no buit)" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:198 +#, fuzzy +msgid "Notation options" +msgstr "Propietats de la notació" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:206 +#, fuzzy +msgid "First" +msgstr "silenci" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:207 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:538 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:557 +msgid "All" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:211 +msgid "Export tempo marks " +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:215 +#, fuzzy +msgid "Export lyrics" +msgstr "Exporta els blocs \\lírica" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:225 +msgid "Export beamings" +msgstr "Exporta les barres d'agrupació" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:232 +msgid "Export track staff brackets" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:244 +#, fuzzy +msgid "Layout options" +msgstr "Opcions d'exportació al Lilypond" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:257 +#, fuzzy +msgid "Lyrics alignment" +msgstr "Lírica per aquest fragment" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:261 +msgid "Ragged bottom (systems will not be spread vertically across the page)" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:267 +msgid "Miscellaneous options" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:274 +msgid "Enable \"point and click\" debugging" +msgstr "Activa la depuració \"apunta i fes clic\"" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:279 +msgid "Export \\midi block" +msgstr "Exporta el bloc \\MIDI" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:284 +#, fuzzy +msgid "No markers" +msgstr "Cap submaster" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:285 +#, fuzzy +msgid "Rehearsal marks" +msgstr "Suprimeix tots els marcadors" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:286 +#, fuzzy +msgid "Marker text" +msgstr "Temps del marcador " + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:290 +#, fuzzy +msgid "Export markers" +msgstr "Exporta com..." + +#: ../src/gui/dialogs/AudioSplitDialog.cpp:57 +msgid "Autosplit Audio Segment" +msgstr "Divideix automàticament el fragment d'àudio" + +#: ../src/gui/dialogs/AudioSplitDialog.cpp:70 +msgid "AutoSplit Segment \"" +msgstr "Divideix automàticament el fragment \"" + +#: ../src/gui/dialogs/AudioSplitDialog.cpp:84 +msgid "Threshold" +msgstr "Llindar" + +#: ../src/gui/dialogs/AudioSplitDialog.cpp:142 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:70 +msgid "Audio Plugin" +msgstr "Connector d'àudio" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:94 +#: ../src/gui/widgets/AudioFaderBox.cpp:136 +msgid "Editor" +msgstr "Editor" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:100 +msgid "Plugin" +msgstr "Connector" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:105 +msgid "Category:" +msgstr "Categoria:" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:110 +msgid "Plugin:" +msgstr "Connector:" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:114 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:398 +msgid "Select a plugin from this list." +msgstr "Selecciona un \"connector\" d'aquesta llista." + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:119 +msgid "Bypass" +msgstr "Desviació" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:121 +msgid "Bypass this plugin." +msgstr "Deshabilita aquest connector." + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:127 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:390 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:130 +msgid "Input and output port counts." +msgstr "Recompte de ports d'entrada i de sortida." + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:132 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:391 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:135 +msgid "Unique ID of plugin." +msgstr "ID únic del connector." + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:149 +msgid "Copy plugin parameters" +msgstr "Copia els paràmetres del connector" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:155 +msgid "Paste plugin parameters" +msgstr "Enganxa els paràmetres del connector" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:161 +msgid "Set to defaults" +msgstr "Estableix els valors predeterminats" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:225 +msgid "(any)" +msgstr "(qualsevol)" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:226 +msgid "(unclassified)" +msgstr "(sense classificar)" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:247 +msgid "(none)" +msgstr "(cap)" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:389 +#: ../src/gui/editors/parameters/AudioInstrumentParameterPanel.cpp:132 +#: ../src/gui/editors/parameters/AudioInstrumentParameterPanel.cpp:361 +#: ../src/gui/studio/AudioMixerWindow.cpp:685 +#: ../src/gui/studio/AudioMixerWindow.cpp:724 +#: ../src/gui/studio/AudioMixerWindow.cpp:906 +#: ../src/gui/widgets/AudioFaderBox.cpp:79 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:427 +msgid "This plugin has too many controls to edit here." +msgstr "Aquest connector té masses controls per editar." + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:438 +#, c-format +msgid "Id: %1" +msgstr "Id: %1" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:490 +msgid "mono" +msgstr "mono" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:492 +msgid "stereo" +msgstr "estéreo" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:494 +msgid "%1 in, %2 out" +msgstr "%1 entrades, %2 sortides" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:518 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:704 +msgid "Program: " +msgstr "Programa: " + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:522 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:532 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:708 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:716 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:745 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:56 +msgid "Set the %1 property of the event selection:" +msgstr "Defineix la propietat %1 de la selecció de l'esdeveniment:" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:61 +msgid "Pattern" +msgstr "Patró" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:66 +msgid "Flat - set %1 to value" +msgstr "Bemoll - defineix %1 al valor" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:70 +msgid "Alternating - set %1 to max and min on alternate events" +msgstr "" +"Alternant - defineix %1 al màxim i mínim en els esdeveniments alternats" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:74 +msgid "Crescendo - set %1 rising from min to max" +msgstr "Crescendo - defineix %1 creixent des del mínim fins al màxim" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:78 +msgid "Diminuendo - set %1 falling from max to min" +msgstr "Diminuendo - defineix %1 descendent des del màxim fins al mínim" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:82 +msgid "Ringing - set %1 alternating from max to min with both dying to zero" +msgstr "" +"Repic - defineix %1 alternant des del màxim fins al mínim amb ambdós caient " +"cap a zero" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:123 +#: ../src/gui/dialogs/EventParameterDialog.cpp:150 +msgid "First Value" +msgstr "Primer valor" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:124 +#: ../src/gui/dialogs/EventParameterDialog.cpp:151 +msgid "Second Value" +msgstr "Segon valor" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:132 +#: ../src/gui/dialogs/EventParameterDialog.cpp:142 +msgid "Low Value" +msgstr "Valor baix" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:133 +#: ../src/gui/dialogs/EventParameterDialog.cpp:141 +msgid "High Value" +msgstr "Primer alt" + +#: ../src/gui/dialogs/TempoDialog.cpp:56 ../src/gui/rulers/TempoRuler.cpp:127 +msgid "Insert Tempo Change" +msgstr "Afegeix el canvi de tempo" + +#: ../src/gui/dialogs/TempoDialog.cpp:69 +msgid "New tempo:" +msgstr "Nou tempo:" + +#: ../src/gui/dialogs/TempoDialog.cpp:76 +msgid "Tap" +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:81 +msgid "Tempo is fixed until the following tempo change" +msgstr "El tempo no varia fins que canvia el tempo següent" + +#: ../src/gui/dialogs/TempoDialog.cpp:82 +#, fuzzy +msgid "Tempo ramps to the following tempo" +msgstr "El tempo canvia suaument per arribar al tempo següent" + +#: ../src/gui/dialogs/TempoDialog.cpp:83 +#, fuzzy +msgid "Tempo ramps to:" +msgstr "Tempo " + +#: ../src/gui/dialogs/TempoDialog.cpp:120 +msgid "Time of tempo change" +msgstr "Temps del canvi de tempo" + +#: ../src/gui/dialogs/TempoDialog.cpp:138 +msgid "The pointer is currently at " +msgstr "El punter és actualment en el " + +#: ../src/gui/dialogs/TempoDialog.cpp:154 +msgid "Apply this tempo from here onwards" +msgstr "Aplica aquest tempo des d'aquí en endavant" + +#: ../src/gui/dialogs/TempoDialog.cpp:158 +msgid "Replace the last tempo change" +msgstr "Reemplaça l'últim canvi de tempo" + +#: ../src/gui/dialogs/TempoDialog.cpp:164 +msgid "Apply this tempo from the start of this bar" +msgstr "Aplica aquest tempo des de l'inici d'aquest compàs" + +#: ../src/gui/dialogs/TempoDialog.cpp:167 +msgid "Apply this tempo to the whole composition" +msgstr "Aplica aquest tempo a tota la composició" + +#: ../src/gui/dialogs/TempoDialog.cpp:172 +msgid "Also make this the default tempo" +msgstr "A part, posa aquest tempo per defecte a partir d'ara" + +#: ../src/gui/dialogs/TempoDialog.cpp:256 +msgid "%1.%2 s," +msgstr "%1.%2 s," + +#: ../src/gui/dialogs/TempoDialog.cpp:262 +#, c-format +msgid "at the start of measure %1." +msgstr "a l'inici del compàs %1." + +#: ../src/gui/dialogs/TempoDialog.cpp:266 +#, c-format +msgid "in the middle of measure %1." +msgstr "al mig del compàs %1." + +#: ../src/gui/dialogs/TempoDialog.cpp:285 +msgid " (at %1.%2 s, in measure %3)" +msgstr " (a %1.%2 s, en el compàs %3) " + +#: ../src/gui/dialogs/TempoDialog.cpp:302 +msgid "There are no preceding tempo changes." +msgstr "No hi han canvis de tempo precedents." + +#: ../src/gui/dialogs/TempoDialog.cpp:310 +msgid "There are no other tempo changes." +msgstr "No hi han altres canvis de tempo." + +#: ../src/gui/dialogs/TempoDialog.cpp:328 +msgid " bpm" +msgstr " bpm" + +#: ../src/gui/dialogs/AudioPlayingDialog.cpp:42 +msgid "Playing audio file" +msgstr "S'està reproduint el fitxer d'àudio" + +#: ../src/gui/dialogs/AudioPlayingDialog.cpp:47 +msgid "Playing audio file \"%1\"" +msgstr "S'està reproduint el fitxer d'àudio \"%1\"" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:52 +#: ../src/gui/editors/matrix/MatrixView.cpp:2655 +msgid "Trigger Segment" +msgstr "Fragment activable" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:61 +msgid "Trigger segment: " +msgstr "Fragment activable: " + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:59 +msgid "Key Change" +msgstr "Canvi de clau" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:77 +msgid "Key signature" +msgstr "Armadura de la clau" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:80 +#, fuzzy +msgid "Key transposition" +msgstr "traducció al gal·lès" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:86 +msgid "Existing notes following key change" +msgstr "Notes existents a continuació del canvi de clau" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:98 +msgid "Flatten" +msgstr "Altera amb bemoll" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:100 +msgid "Key" +msgstr "Clau" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:105 +msgid "Sharpen" +msgstr "Altera amb diesi" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:109 +msgid "Major" +msgstr "Major" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:110 +#: ../src/gui/dialogs/KeySignatureDialog.cpp:369 +msgid "Minor" +msgstr "Menor" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:123 +msgid "Transpose key according to segment transposition" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:126 +msgid "Use specified key. Do not transpose" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:134 +msgid "Apply to current segment only" +msgstr "Aplica només al fragment actual" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:137 +msgid "Apply to all segments at this time" +msgstr "Aplica a tots els fragments d'aquest moment" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:141 +msgid "Exclude percussion segments" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:155 +msgid "Maintain current accidentals" +msgstr "Manté els accidents actuals" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:158 +msgid "Transpose into this key" +msgstr "Transposa a aquesta clau" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:331 +msgid "No such key" +msgstr "No hi ha aquesta clau" + +#: ../src/gui/dialogs/InterpretDialog.cpp:44 +#: ../src/gui/editors/notation/NotationSelector.cpp:118 +msgid "Interpret" +msgstr "Interpretació" + +#: ../src/gui/dialogs/InterpretDialog.cpp:50 +msgid "Interpretations to apply" +msgstr "Interpretacions per aplicar" + +#: ../src/gui/dialogs/InterpretDialog.cpp:53 +msgid "Apply text dynamics (p, mf, ff etc)" +msgstr "Aplica els matisos de text (p, mf, ff, etc)" + +#: ../src/gui/dialogs/InterpretDialog.cpp:55 +msgid "Apply hairpin dynamics" +msgstr "Aplica les matisacions graduals" + +#: ../src/gui/dialogs/InterpretDialog.cpp:57 +msgid "Stress beats" +msgstr "Estressa les pulsacions" + +#: ../src/gui/dialogs/InterpretDialog.cpp:59 +msgid "Articulate slurs, staccato, tenuto etc" +msgstr "Articula les lligadures, els staccato, els tenuto, etc" + +#: ../src/gui/dialogs/InterpretDialog.cpp:61 +msgid "All available interpretations" +msgstr "Totes les interpretacions disponibles" + +#: ../src/gui/application/RosegardenGUIApp.cpp:316 +#, fuzzy +msgid "" +"Attempted to launch JACK audio daemon failed. Audio will be disabled.\n" +"Please check configuration (Settings -> Configure Rosegarden -> Audio -> " +"Startup)\n" +" and restart." +msgstr "" +"No s'ha pogut iniciar el servei d'àudio JACK. L'àudio no funcionarà.\n" +"Comproveu la configuració (Configuració -> Configuració del Rosegarden \n" +"-> Seqüenciador -> Control del JACK) i torneu a engegar." + +#: ../src/gui/application/RosegardenGUIApp.cpp:325 +msgid "Starting sequencer..." +msgstr "S'està iniciant el seqüenciador..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:333 +msgid "Initializing plugin manager..." +msgstr "S'està iniciant el gestor de connectors..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:338 +msgid "Initializing view..." +msgstr "S'està carregant la vista..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:354 +#, fuzzy +msgid "Special Parameters" +msgstr "Paràmetres del fragment" + +#: ../src/gui/application/RosegardenGUIApp.cpp:430 +msgid "Starting sequence manager..." +msgstr "S'està inicial el gestor del seqüenciador..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:456 +msgid "Clearing studio data..." +msgstr "S'està netejant les dades de l'estudi..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:475 +#: ../src/gui/editors/notation/NotationView.cpp:558 +msgid "Starting..." +msgstr "S'està iniciant..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:556 +msgid "Import Rosegarden &Project file..." +msgstr "Importa el fitxer de &projecte Rosegarden..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:560 +msgid "Import &MIDI file..." +msgstr "Importa el fitxer &MIDI..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:564 +msgid "Import &Rosegarden 2.1 file..." +msgstr "Importa el fitxer &Rosegarden 2.1..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:568 +msgid "Import &Hydrogen file..." +msgstr "Importa el fitxer &Hydrogen..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:572 +msgid "Merge &File..." +msgstr "&Fusiona el fitxer..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:576 +msgid "Merge &MIDI file..." +msgstr "Fusiona el fitxer &MIDI..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:580 +msgid "Merge &Rosegarden 2.1 file..." +msgstr "Fusiona el fitxer &Rosegarden 2.1..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:584 +msgid "Merge &Hydrogen file..." +msgstr "Fusiona el fitxer &Hydrogen..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:588 +msgid "Export Rosegarden &Project file..." +msgstr "Exporta el fitxer de &projecte Rosegarden..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:592 +msgid "Export &MIDI file..." +msgstr "Exporta el fitxer &MIDI..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:596 +#, fuzzy +msgid "Export &LilyPond file..." +msgstr "Exporta el fitxer &Lilypond..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:600 +msgid "Export Music&XML file..." +msgstr "Exporta el fitxer Music&XML..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:604 +msgid "Export &Csound score file..." +msgstr "Exporta el fitxer &Csound score..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:608 +msgid "Export M&up file..." +msgstr "Exporta el fitxer M&up..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:612 +#: ../src/gui/editors/notation/NotationView.cpp:1500 +#, fuzzy +msgid "Print &with LilyPond..." +msgstr "S'està visualitzant el fitxer Lilypond..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:616 +#: ../src/gui/editors/notation/NotationView.cpp:1504 +#, fuzzy +msgid "Preview with Lil&yPond..." +msgstr "S'està visualitzant el fitxer Lilypond..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:620 +msgid "Play&list" +msgstr "&Llista de peces" + +#: ../src/gui/application/RosegardenGUIApp.cpp:627 +msgid "Rosegarden &Tutorial" +msgstr "&Tutorial del Rosegarden" + +#: ../src/gui/application/RosegardenGUIApp.cpp:631 +msgid "&Bug Reporting Guidelines" +msgstr "Guia per enviar &bugs descoberts" + +#: ../src/gui/application/RosegardenGUIApp.cpp:645 +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:348 +#: ../src/gui/editors/segment/MarkerEditor.cpp:378 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:388 +#: ../src/gui/general/EditViewBase.cpp:190 +#: ../src/gui/studio/BankEditorDialog.cpp:318 +#: ../src/gui/studio/DeviceManagerDialog.cpp:227 +msgid "Und&o" +msgstr "&Desfés" + +#: ../src/gui/application/RosegardenGUIApp.cpp:651 +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:354 +#: ../src/gui/editors/segment/MarkerEditor.cpp:384 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:394 +#: ../src/gui/general/EditViewBase.cpp:196 +#: ../src/gui/studio/BankEditorDialog.cpp:324 +#: ../src/gui/studio/DeviceManagerDialog.cpp:233 +msgid "Re&do" +msgstr "&Refés" + +#: ../src/gui/application/RosegardenGUIApp.cpp:665 +#: ../src/gui/editors/notation/NotationView.cpp:2297 +msgid "Show T&ools Toolbar" +msgstr "M&ostra la barra d'eines de les eines" + +#: ../src/gui/application/RosegardenGUIApp.cpp:669 +msgid "Show Trac&ks Toolbar" +msgstr "Mostra la barra de &pistes" + +#: ../src/gui/application/RosegardenGUIApp.cpp:673 +msgid "Show &Editors Toolbar" +msgstr "M&ostra la barra d'&edició" + +#: ../src/gui/application/RosegardenGUIApp.cpp:677 +#: ../src/gui/editors/notation/NotationView.cpp:2309 +msgid "Show Trans&port Toolbar" +msgstr "Mostra la barra d'eines de les &tecles de reproducció" + +#: ../src/gui/application/RosegardenGUIApp.cpp:681 +msgid "Show &Zoom Toolbar" +msgstr "M&ostra la barra de zoom" + +#: ../src/gui/application/RosegardenGUIApp.cpp:688 +msgid "Show Tra&nsport" +msgstr "Mostra la barra de tra&nsport" + +#: ../src/gui/application/RosegardenGUIApp.cpp:693 +msgid "Show Track &Labels" +msgstr "Mostra les eti&quetes de les pistes" + +#: ../src/gui/application/RosegardenGUIApp.cpp:698 +msgid "Show Playback Position R&uler" +msgstr "Mostra el regle del &puntejat" + +#: ../src/gui/application/RosegardenGUIApp.cpp:703 +msgid "Show Te&mpo Ruler" +msgstr "Mostra el regle del te&mpo" + +#: ../src/gui/application/RosegardenGUIApp.cpp:708 +msgid "Show Cho&rd Name Ruler" +msgstr "M&ostra el regle dels acords" + +#: ../src/gui/application/RosegardenGUIApp.cpp:714 +msgid "Show Segment Pre&views" +msgstr "Mostra &maquetes dels fragments" + +#: ../src/gui/application/RosegardenGUIApp.cpp:719 +#, fuzzy +msgid "Show Special &Parameters" +msgstr "Mostra els paràmetres de l'instrument" + +#: ../src/gui/application/RosegardenGUIApp.cpp:753 +#: ../src/gui/editors/matrix/MatrixView.cpp:641 +#: ../src/gui/editors/notation/NotationView.cpp:1772 +#, fuzzy +msgid "&Select and Edit" +msgstr "S&elecciona fins el final" + +#: ../src/gui/application/RosegardenGUIApp.cpp:758 +#: ../src/gui/editors/matrix/MatrixView.cpp:646 +msgid "&Draw" +msgstr "&Dibuixa" + +#: ../src/commands/edit/EraseCommand.h:50 +#: ../src/gui/application/RosegardenGUIApp.cpp:763 +#: ../src/gui/editors/matrix/MatrixView.cpp:651 +#: ../src/gui/editors/notation/NotationView.cpp:1766 +msgid "&Erase" +msgstr "&Esborra" + +#: ../src/gui/application/RosegardenGUIApp.cpp:768 +#: ../src/gui/editors/matrix/MatrixView.cpp:656 +msgid "&Move" +msgstr "&Mou" + +#: ../src/gui/application/RosegardenGUIApp.cpp:775 +msgid "&Resize" +msgstr "&Redimensiona" + +#: ../src/gui/application/RosegardenGUIApp.cpp:782 rc.cpp:87 +#, no-c-format +msgid "&Split" +msgstr "&Divideix" + +#: ../src/commands/segment/SegmentJoinCommand.h:53 +#: ../src/gui/application/RosegardenGUIApp.cpp:789 +msgid "&Join" +msgstr "&Ajunta" + +#: ../src/gui/application/RosegardenGUIApp.cpp:795 +msgid "&Harmonize" +msgstr "&Harmonitza" + +#: ../src/gui/application/RosegardenGUIApp.cpp:806 +#: ../src/gui/rulers/TempoRuler.cpp:157 +msgid "Open Tempo and Time Signature Editor" +msgstr "Obre en l'editor del tempo i de l'indicador del compàs" + +#: ../src/commands/segment/CutRangeCommand.cpp:41 +#: ../src/gui/application/RosegardenGUIApp.cpp:812 +#, fuzzy +msgid "Cut Range" +msgstr "Ret&alla i tanca" + +#: ../src/commands/edit/CopyCommand.cpp:73 +#: ../src/gui/application/RosegardenGUIApp.cpp:816 +#, fuzzy +msgid "Copy Range" +msgstr "Canvi de clau" + +#: ../src/commands/segment/PasteRangeCommand.cpp:45 +#: ../src/gui/application/RosegardenGUIApp.cpp:820 +#, fuzzy +msgid "Paste Range" +msgstr "Forma d'enganxar" + +#: ../src/gui/application/RosegardenGUIApp.cpp:828 +#, fuzzy +msgid "Insert Range..." +msgstr "Afegeix un silenci" + +#: ../src/gui/application/RosegardenGUIApp.cpp:832 +#: ../src/gui/editors/notation/NotationView.cpp:1804 +msgid "De&lete" +msgstr "S&uprimeix" + +#: ../src/gui/application/RosegardenGUIApp.cpp:836 +msgid "Select &All Segments" +msgstr "Selecciona &tots els fragments" + +#: ../src/gui/application/RosegardenGUIApp.cpp:852 +msgid "Edit Mar&kers..." +msgstr "Edita els marcadors..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:856 +msgid "Edit Document P&roperties..." +msgstr "Edita les propietats del document..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:864 +msgid "Open in &Default Editor" +msgstr "Obre en l'editor per &defecte" + +#: ../src/gui/application/RosegardenGUIApp.cpp:870 +#: ../src/gui/general/EditViewBase.cpp:206 +msgid "Open in Matri&x Editor" +msgstr "Obre a l'editor de matri&us" + +#: ../src/gui/application/RosegardenGUIApp.cpp:876 +#: ../src/gui/general/EditViewBase.cpp:212 +msgid "Open in &Percussion Matrix Editor" +msgstr "Obre en l'editor matriu de percussió" + +#: ../src/gui/application/RosegardenGUIApp.cpp:882 +#: ../src/gui/general/EditViewBase.cpp:218 +msgid "Open in &Notation Editor" +msgstr "Obre a l'editor de &partitures" + +#: ../src/gui/application/RosegardenGUIApp.cpp:888 +#: ../src/gui/general/EditViewBase.cpp:224 +msgid "Open in &Event List Editor" +msgstr "Obre a l'editor de la llista d'&esdeveniments" + +#: ../src/commands/edit/EventQuantizeCommand.cpp:120 +#: ../src/commands/edit/EventUnquantizeCommand.cpp:87 +#: ../src/gui/application/RosegardenGUIApp.cpp:894 +msgid "&Quantize..." +msgstr "Quanti&fica..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:908 +#: ../src/gui/editors/matrix/MatrixView.cpp:686 +msgid "Repeat Last Quantize" +msgstr "Repeteix l'última quantificació" + +#: ../src/gui/application/RosegardenGUIApp.cpp:928 +#, fuzzy +msgid "Split at Time..." +msgstr "Defineix el temps d'inici..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:932 +#: ../src/gui/general/EditView.cpp:796 +msgid "Jog &Left" +msgstr "Mou a l'&esquerra" + +#: ../src/gui/application/RosegardenGUIApp.cpp:936 +#: ../src/gui/general/EditView.cpp:800 +msgid "Jog &Right" +msgstr "Mou a la d&reta" + +#: ../src/gui/application/RosegardenGUIApp.cpp:940 +msgid "Set Start Time..." +msgstr "Defineix el temps d'inici..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:944 +msgid "Set Duration..." +msgstr "Defineix la durada..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:953 +msgid "Turn Re&peats into Copies" +msgstr "Transforma les re&peticions en còpies" + +#: ../src/gui/application/RosegardenGUIApp.cpp:958 +#, fuzzy +msgid "Manage Tri&ggered Segments" +msgstr "Gestiona els &fragments activables" + +#: ../src/gui/application/RosegardenGUIApp.cpp:962 +msgid "Set Tempos from &Beat Segment" +msgstr "Agafa el tempo del fragment de &pulsacions" + +#: ../src/gui/application/RosegardenGUIApp.cpp:966 +#, fuzzy +msgid "Set &Tempo to Audio Segment Duration" +msgstr "Posa el &tempo a la durada del fragment d'àudio" + +#: ../src/gui/application/RosegardenGUIApp.cpp:972 +#, fuzzy +msgid "Manage A&udio Files" +msgstr "Canvia l'etiqueta del fitxer d'àudio" + +#: ../src/gui/application/RosegardenGUIApp.cpp:977 +msgid "Show Segment Labels" +msgstr "Mostra les etiquetes del fragment" + +#: ../src/gui/application/RosegardenGUIApp.cpp:986 +msgid "Add &Track" +msgstr "Afegeix una &pista" + +#: ../src/gui/application/RosegardenGUIApp.cpp:990 +#, fuzzy +msgid "&Add Tracks..." +msgstr "Afegeix pistes..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:996 +msgid "D&elete Track" +msgstr "&Suprimeix una pista" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1002 +msgid "Move Track &Down" +msgstr "Mou la pista a&vall" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1008 +msgid "Move Track &Up" +msgstr "Mou la pista am&unt" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1012 +msgid "Select &Next Track" +msgstr "Seleccio&na la pista següent" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1017 +msgid "Select &Previous Track" +msgstr "Selecciona la &pista anterior" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1022 +#, fuzzy +msgid "Mute or Unmute Track" +msgstr "Posa la pista en silenci" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1027 +msgid "Arm or Un-arm Track for Record" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1034 +msgid "&Mute all Tracks" +msgstr "&posa en silenci les pistes" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1040 +msgid "&Unmute all Tracks" +msgstr "&treu el silenci de les pistes" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1044 +msgid "&Remap Instruments..." +msgstr "&Assignació dels instruments...." + +#: ../src/gui/application/RosegardenGUIApp.cpp:1053 +msgid "&Audio Mixer" +msgstr "Mescl&ador d'àudio" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1059 +msgid "Midi Mi&xer" +msgstr "Me&sclador de MIDI" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1065 +msgid "Manage MIDI &Devices" +msgstr "Gestiona els &dispositius MIDI" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1071 +msgid "Manage S&ynth Plugins" +msgstr "Gestiona els s&intetitzadors" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1075 +msgid "Modify MIDI &Filters" +msgstr "Modifica els &filtres MIDI" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1079 +msgid "MIDI Thru Routing" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1085 +msgid "Manage &Metronome" +msgstr "Gestiona el &metrònom" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1089 +msgid "&Save Current Document as Default Studio" +msgstr "&Desa el document actual com a estudi per defecte" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1093 +msgid "&Import Default Studio" +msgstr "&Importa l'estudi per defecte" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1097 +msgid "Im&port Studio from File..." +msgstr "Im&porta l'estudi del fitxer..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:1101 +msgid "&Reset MIDI Network" +msgstr "&Reinicia la xarxa MIDI" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1105 +#, fuzzy +msgid "Set Quick Marker at Playback Position" +msgstr "Afegeix el canvi de tempo" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1109 +msgid "Jump to Quick Marker" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1142 +#: ../src/gui/editors/matrix/MatrixView.cpp:782 +#: ../src/gui/editors/notation/NotationView.cpp:2397 +#: ../src/gui/studio/AudioMixerWindow.cpp:105 +#: ../src/gui/studio/MidiMixerWindow.cpp:81 +msgid "&Play" +msgstr "&Reprodueix" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1153 +#: ../src/gui/editors/matrix/MatrixView.cpp:791 +#: ../src/gui/editors/notation/NotationView.cpp:2406 +#: ../src/gui/studio/AudioMixerWindow.cpp:114 +#: ../src/gui/studio/MidiMixerWindow.cpp:90 +msgid "&Stop" +msgstr "&Atura" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1160 +#: ../src/gui/editors/matrix/MatrixView.cpp:802 +#: ../src/gui/editors/notation/NotationView.cpp:2417 +#: ../src/gui/studio/AudioMixerWindow.cpp:125 +#: ../src/gui/studio/MidiMixerWindow.cpp:101 +msgid "&Fast Forward" +msgstr "Avanç &ràpid" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1168 +#: ../src/gui/editors/matrix/MatrixView.cpp:796 +#: ../src/gui/editors/notation/NotationView.cpp:2411 +#: ../src/gui/studio/AudioMixerWindow.cpp:119 +#: ../src/gui/studio/MidiMixerWindow.cpp:95 +msgid "Re&wind" +msgstr "Re&bobina" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1175 +#, fuzzy +msgid "P&unch in Record" +msgstr "Activa gra&vació" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1182 +#: ../src/gui/studio/AudioMixerWindow.cpp:143 +#: ../src/gui/studio/MidiMixerWindow.cpp:119 +msgid "&Record" +msgstr "En®istra" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1189 +#: ../src/gui/editors/matrix/MatrixView.cpp:808 +#: ../src/gui/editors/notation/NotationView.cpp:2423 +#: ../src/gui/studio/AudioMixerWindow.cpp:131 +#: ../src/gui/studio/MidiMixerWindow.cpp:107 +msgid "Rewind to &Beginning" +msgstr "Re&bobina fins al començament" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1196 +#: ../src/gui/editors/matrix/MatrixView.cpp:814 +#: ../src/gui/editors/notation/NotationView.cpp:2429 +#: ../src/gui/studio/AudioMixerWindow.cpp:137 +#: ../src/gui/studio/MidiMixerWindow.cpp:113 +msgid "Fast Forward to &End" +msgstr "Avanç rà&pid al final" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1203 +#: ../src/gui/editors/matrix/MatrixView.cpp:832 +#: ../src/gui/editors/notation/NotationView.cpp:2447 +msgid "Scro&ll to Follow Playback" +msgstr "&Segueix el punt de reproducció" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1209 +#: ../src/gui/editors/matrix/MatrixView.cpp:838 +#: ../src/gui/editors/notation/NotationView.cpp:2453 +#: ../src/gui/studio/AudioMixerWindow.cpp:149 +#: ../src/gui/studio/MidiMixerWindow.cpp:125 +msgid "Panic" +msgstr "Pànic" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1213 +msgid "Segment Debug Dump " +msgstr "Llista la depuració del fragment " + +#: ../src/gui/application/RosegardenGUIApp.cpp:1283 +msgid " Zoom: " +msgstr " Zoom: " + +#: ../src/gui/application/RosegardenGUIApp.cpp:1719 +msgid "File \"%1\" does not exist" +msgstr "El fitxer \"%1\" no existeix" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1725 +msgid "File \"%1\" is actually a directory" +msgstr "El fitxer \"%1\" és una carpeta" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1734 +msgid "You do not have read permission for \"%1\"" +msgstr "No teniu permisos per llegir \"%1\"" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1802 +msgid "" +"An auto-save file for this document has been found\n" +"Do you want to open it instead ?" +msgstr "" +"S'ha trobat un fitxer desat automàticament per a aquest\n" +"document. El voleu obrir en lloc d'aquest document ?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1896 +msgid "Example Files" +msgstr "Fitxers d'exemple" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2100 +msgid "Opening a new application window..." +msgstr "S'està obrint una nova finestra de l'aplicació..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2110 +msgid "Creating new document..." +msgstr "S'està creant un nou document..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2154 +#, c-format +msgid "" +"Malformed URL\n" +"%1" +msgstr "" +"El URL està mal fet\n" +"%1" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2179 +#: ../src/gui/application/RosegardenGUIApp.cpp:2240 +msgid "Opening file..." +msgstr "S'està obrint el fitxer..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2201 +#: ../src/gui/application/RosegardenGUIApp.cpp:2220 +msgid "Open File" +msgstr "Obre el fitxer" + +#: ../src/document/RosegardenGUIDoc.cpp:1225 +#: ../src/gui/application/RosegardenGUIApp.cpp:2258 +msgid "Saving file..." +msgstr "Desa el fitxer..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2330 +msgid "This is not a valid filename.\n" +msgstr "No és un nom de fitxer vàlid.\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2335 +msgid "This is not a local file.\n" +msgstr "No és un fitxer local.\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2342 +#: ../src/gui/studio/BankEditorDialog.cpp:1640 +#: ../src/gui/studio/DeviceManagerDialog.cpp:787 +msgid "You have specified a directory" +msgstr "Heu especificat una carpeta" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2348 +#: ../src/gui/studio/BankEditorDialog.cpp:1646 +#: ../src/gui/studio/DeviceManagerDialog.cpp:793 +msgid "The specified file exists. Overwrite?" +msgstr "El fitxer especificat ja existeix. Voleu sobreescriure'l?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2362 +msgid "Saving file with a new filename..." +msgstr "S'està desant el fitxer amb un nou nom..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2364 +#, fuzzy +msgid "Rosegarden files" +msgstr "Fitxes del Rosegarden-4" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2365 +#: ../src/gui/application/RosegardenGUIApp.cpp:4860 +#: ../src/gui/application/RosegardenGUIApp.cpp:4904 +#: ../src/gui/application/RosegardenGUIApp.cpp:4942 +#: ../src/gui/application/RosegardenGUIApp.cpp:4975 +#: ../src/gui/application/RosegardenGUIApp.cpp:5009 +#: ../src/gui/application/RosegardenGUIApp.cpp:5116 +msgid "All files" +msgstr "Tots els fitxers" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2366 +msgid "Save as..." +msgstr "Anomena i desa..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2404 +msgid "Closing file..." +msgstr "S'està tancant el fitxer..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2421 +#: ../src/gui/editors/notation/NotationView.cpp:4618 +msgid "Printing..." +msgstr "S'està imprimint..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2433 +#: ../src/gui/editors/notation/NotationView.cpp:4635 +msgid "Previewing..." +msgstr "Visualització prèvia..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2440 +msgid "Exiting..." +msgstr "S'està sortint..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2463 +msgid "Cutting selection..." +msgstr "S'està retallant la selecció..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2474 +#: ../src/gui/editors/matrix/MatrixView.cpp:1614 +#: ../src/gui/editors/notation/NotationView.cpp:4763 +msgid "Copying selection to clipboard..." +msgstr "S'està copiant la selecció al porta-retalls..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2484 +#: ../src/gui/editors/eventlist/EventView.cpp:878 +#: ../src/gui/editors/matrix/MatrixView.cpp:1625 +#: ../src/gui/editors/notation/NotationView.cpp:4796 +#: ../src/gui/editors/notation/NotationView.cpp:4841 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:352 +msgid "Clipboard is empty" +msgstr "El porta-retalls està buit" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2487 +#: ../src/gui/editors/eventlist/EventView.cpp:882 +#: ../src/gui/editors/matrix/MatrixView.cpp:1629 +#: ../src/gui/editors/notation/NotationView.cpp:4804 +#: ../src/gui/editors/notation/NotationView.cpp:4845 +msgid "Inserting clipboard contents..." +msgstr "S'està afegint el contingut del porta-retalls..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2556 +#, fuzzy +msgid "Duration of empty range to insert" +msgstr "Duració de la selecció" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2631 +msgid "This function needs no more than one segment to be selected." +msgstr "Aquesta funció només necessita que se seleccioni un sol fragment." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2654 +msgid "Can't join Audio segments" +msgstr "No es poden ajunar fragments d'àudio" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2707 +#, fuzzy +msgid "rescaling an audio file" +msgstr "S'està reproduint el fitxer d'àudio" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2723 +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:172 +#, fuzzy +msgid "Rescaling audio file..." +msgstr "S'està exportant el fitxer d'àudio..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2767 +#, fuzzy +msgid "" +"The audio file path does not exist or is not writable.\n" +"You must set the audio file path to a valid directory in Document Properties " +"before %1.\n" +"Would you like to set it now?" +msgstr "" +"La ubicació del fitxer d'àudio no existeix o no s'hi pot escriure.\n" +"Seleccioneu una ubicació correcta, en les propietats del document abans de " +"gravar l'àudio.\n" +"Voleu configurar-ho ara?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2769 +#: ../src/gui/application/RosegardenGUIApp.cpp:5291 +#: ../src/gui/application/RosegardenGUIApp.cpp:5339 +#: ../src/gui/editors/segment/TrackButtons.cpp:419 +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:159 +msgid "Set audio file path" +msgstr "Selecciona una ubicació per al fitxer" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2833 +#, fuzzy +msgid "Jog Selection" +msgstr "Toca la selecció" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2978 +#, fuzzy, c-format +msgid "" +"_n: Split Segment at Time\n" +"Split %n Segments at Time" +msgstr "" +"_n: %1 - Fragment - Notació\n" +"%2 - %n Fragments - Notació" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3013 +#: ../src/gui/general/EditViewBase.cpp:619 +msgid "Segment Start Time" +msgstr "Temps d'inici del fragment" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3023 +msgid "Set Segment Start Times" +msgstr "Defineix el temps d'inici del fragment" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3024 +#: ../src/gui/general/EditViewBase.cpp:626 +msgid "Set Segment Start Time" +msgstr "Defineix el temps d'inici del fragment" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3056 +#: ../src/gui/general/EditViewBase.cpp:644 +msgid "Segment Duration" +msgstr "Durada del fragment" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3068 +msgid "Set Segment Durations" +msgstr "Defineix la durada del fragment" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3069 +#: ../src/gui/general/EditViewBase.cpp:652 +msgid "Set Segment Duration" +msgstr "Defineix la durada del fragment" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3176 +#: ../src/gui/application/RosegardenGUIApp.cpp:5875 +msgid "Set Global Tempo" +msgstr "Defineix el tempo global" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3234 +#: ../src/gui/general/EditViewBase.cpp:477 +msgid "Toggle the toolbar..." +msgstr "Commuta la barra d'eines..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3244 +msgid "Toggle the tools toolbar..." +msgstr "Commuta la barra d'eines..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3254 +msgid "Toggle the tracks toolbar..." +msgstr "Commuta la barra de pistes..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3264 +msgid "Toggle the editor toolbar..." +msgstr "Commuta la barra d'edició..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3274 +msgid "Toggle the transport toolbar..." +msgstr "Commuta la barra de transport..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3284 +msgid "Toggle the zoom toolbar..." +msgstr "Commuta la barra de zoom..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3294 +msgid "Toggle the Transport" +msgstr "Commuta el transport..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3377 +#: ../src/gui/general/EditViewBase.cpp:487 +msgid "Toggle the statusbar..." +msgstr "Commuta la barra d'estat..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3434 +#, fuzzy +msgid "" +"The join tool isn't implemented yet. Instead please highlight the segments " +"you want to join and then use the menu option:\n" +"\n" +" Segments->Collapse Segments.\n" +msgstr "" +"L'eina per ajuntar encara no està implementada. En comptes d'això " +"seleccioneu els fragments que voleu ajuntar i feu servir l'opció de menú:\n" +"\n" +" Fragments->Col·lapsa els fragments.\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3437 +msgid "Join tool not yet implemented" +msgstr "L'eina per ajuntar encara no està implementada" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3675 +msgid "Revert modified document to previous saved version?" +msgstr "Voleu recuperar la versió anterior del document modificat?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3691 +msgid "" +"*.rgp|Rosegarden Project files\n" +"*|All files" +msgstr "" +"*.rgp|Fitxers de projecte del Rosegarden\n" +"*|Tots els fitxers" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3692 +msgid "Import Rosegarden Project File" +msgstr "Importa el fitxer de projecte Rosegarden" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3717 +msgid "Failed to import project file \"%1\"" +msgstr "No s'ha pogut importar el fitxer de projecte \"%1\"" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3739 +msgid "Open MIDI File" +msgstr "Obre el fitxer MIDI" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3756 +msgid "Merge MIDI File" +msgstr "Fusiona el fitxer MIDI" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3866 +msgid "Importing MIDI file..." +msgstr "S'està important el fitxer MIDI..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3903 +msgid "Calculating notation..." +msgstr "S'estan calculant els compassos..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3950 +msgid "Calculate Notation" +msgstr "Calcula els compassos" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3991 +#: ../src/gui/application/RosegardenGUIApp.cpp:4008 +msgid "" +"*.rose|Rosegarden-2 files\n" +"*|All files" +msgstr "" +"*.rose|Fitxers del Rosegarden-2\n" +"*|Tots els fitxers" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3992 +#: ../src/gui/application/RosegardenGUIApp.cpp:4009 +msgid "Open Rosegarden 2.1 File" +msgstr "Obre el fitxer Rosegarden 2.1" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4026 +msgid "Importing Rosegarden 2.1 file..." +msgstr "S'està important el fitxer Rosegarden 2.1..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4052 +msgid "Can't load Rosegarden 2.1 file. It appears to be corrupted." +msgstr "" +"No es pot carregar el fitxer Rosegarden 2.1. Sembla que que està malament." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4078 +#: ../src/gui/application/RosegardenGUIApp.cpp:4095 +msgid "" +"*.h2song|Hydrogen files\n" +"*|All files" +msgstr "" +"*.h2song|Fitxers Hydrogen\n" +"*|Tots els fitxers" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4079 +#: ../src/gui/application/RosegardenGUIApp.cpp:4096 +msgid "Open Hydrogen File" +msgstr "Obre el fitxer Hydrogen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4113 +msgid "Importing Hydrogen file..." +msgstr "S'està important el fitxer Hydrogen..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4139 +msgid "Can't load Hydrogen file. It appears to be corrupted." +msgstr "No es pot carregar el fitxer Hydrogen. Sembla que està malament." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4527 +#, fuzzy +msgid "Export and import of Rosegarden Project files" +msgstr "S'està exportant el fitxer de projecte Rosegarden..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4529 +#, fuzzy +msgid "The Rosegarden Project Packager helper script" +msgstr "Fitxers de projecte Rosegarden\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4533 +msgid "%1 - for project file support" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4550 +msgid "The Rosegarden LilyPondView helper script" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4554 +#, fuzzy +msgid "%1 - for LilyPond preview support" +msgstr "Opcions Lilypond de la mostra prèvia " + +#: ../src/gui/application/RosegardenGUIApp.cpp:4570 +msgid "The Rosegarden Audio File Importer helper script" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4574 +#, fuzzy +msgid "%1 - for audio file import" +msgstr "Selecciona una ubicació per al fitxer" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4585 +msgid "" +"

    Helper programs not found

    Rosegarden could not find one or more " +"helper programs which it needs to provide some features. The following " +"features will not be available:

    " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4586 +#: ../src/gui/application/RosegardenGUIApp.cpp:4592 +#, fuzzy +msgid "
      " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4588 +#: ../src/gui/application/RosegardenGUIApp.cpp:4594 +#, fuzzy +msgid "
    • %1
    • " +msgstr "-- %1 (des de %2)\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4590 +#: ../src/gui/application/RosegardenGUIApp.cpp:4596 +msgid "
    " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4591 +msgid "" +"

    To fix this, you should install the following additional programs:

    " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4603 +msgid "Helper programs not found" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4686 +msgid "Starting the sequencer..." +msgstr "S'està iniciant el seqüenciador..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4712 +msgid "Couldn't start the sequencer" +msgstr "No s'ha pogut engegar el seqüenciador" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4789 +msgid "Clearing down jackd..." +msgstr "Netejant el jackd..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4803 +msgid "Starting jackd..." +msgstr "S'està iniciant el jackd..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4842 +msgid "" +"The Rosegarden sequencer process has exited unexpectedly. Sound and " +"recording will no longer be available for this session.\n" +"Please exit and restart Rosegarden to restore sound capability." +msgstr "" +"El procés seqüenciador del Rosegarden ha acabat de forma sobtada. El so i " +"l'enregistrament han deixat de funcionar per aquesta sessió.\n" +"Heu de sortir i tornar a iniciar el Rosegarden per restaurar el sistema de " +"so." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4846 +msgid "" +"The Rosegarden sequencer could not be started, so sound and recording will " +"be unavailable for this session.\n" +"For assistance with correct audio and MIDI configuration, go to http://" +"rosegardenmusic.com." +msgstr "" +"El seqüenciador del Rosegarden no s'ha pogut engegar, per tant el so i " +"l'enregistrament \n" +"no funcionaran. Si necessiteu ajuda en la configuració del so aneu a http://" +"rosegardenmusic.com." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4856 +msgid "Exporting Rosegarden Project file..." +msgstr "S'està exportant el fitxer de projecte Rosegarden..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4859 +msgid "Rosegarden Project files\n" +msgstr "Fitxers de projecte Rosegarden\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4861 +#: ../src/gui/application/RosegardenGUIApp.cpp:4905 +#: ../src/gui/application/RosegardenGUIApp.cpp:4943 +#: ../src/gui/application/RosegardenGUIApp.cpp:4976 +#: ../src/gui/application/RosegardenGUIApp.cpp:5010 +#: ../src/gui/application/RosegardenGUIApp.cpp:5116 +msgid "Export as..." +msgstr "Exporta com..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4875 +#, c-format +msgid "Saving Rosegarden file to package failed: %1" +msgstr "No s'ha pogut desar el fitxer Rosegarden al paquet: %1" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4889 +msgid "Failed to export to project file \"%1\"" +msgstr "No s'ha pogut exportar el fitxer de projecte \"%1\"" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4900 +#: ../src/gui/application/RosegardenGUIApp.cpp:4915 +msgid "Exporting MIDI file..." +msgstr "S'està exportant el fitxer MIDI..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4903 +msgid "Standard MIDI files\n" +msgstr "Fitxers de MIDI estàndars\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4934 +#: ../src/gui/application/RosegardenGUIApp.cpp:4966 +#: ../src/gui/application/RosegardenGUIApp.cpp:4999 +#: ../src/gui/application/RosegardenGUIApp.cpp:5103 +#: ../src/gui/application/RosegardenGUIApp.cpp:5140 +#: ../src/gui/editors/notation/NotationView.cpp:4733 +msgid "Export failed. The file could not be opened for writing." +msgstr "No s'ha pogut exportar. El fitxer no s'ha pogut obrir per escriure'l." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4940 +#: ../src/gui/application/RosegardenGUIApp.cpp:4952 +msgid "Exporting Csound score file..." +msgstr "S'està exportant el fitxer Csound score..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4972 +#: ../src/gui/application/RosegardenGUIApp.cpp:4985 +msgid "Exporting Mup file..." +msgstr "S'està exportant el fitxer Mup..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4975 +msgid "Mup files\n" +msgstr "Fitxers Mup\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5005 +#: ../src/gui/application/RosegardenGUIApp.cpp:5089 +#: ../src/gui/editors/notation/NotationView.cpp:4719 +#, fuzzy +msgid "Exporting LilyPond file..." +msgstr "S'està exportant el fitxer Lilypond..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:5008 +#, fuzzy +msgid "LilyPond files" +msgstr "Fitxers Lilypond" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5023 +#: ../src/gui/editors/notation/NotationView.cpp:4653 +#, fuzzy +msgid "Printing LilyPond file..." +msgstr "S'està visualitzant el fitxer Lilypond..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:5028 +#: ../src/gui/application/RosegardenGUIApp.cpp:5052 +#: ../src/gui/editors/notation/NotationView.cpp:4658 +#: ../src/gui/editors/notation/NotationView.cpp:4682 +#, fuzzy +msgid "Failed to open a temporary file for LilyPond export." +msgstr "No s'ha pogut obrir un fitxer temportal per exportar com a Lilypond." + +#: ../src/gui/application/RosegardenGUIApp.cpp:5047 +#: ../src/gui/editors/notation/NotationView.cpp:4677 +#, fuzzy +msgid "Previewing LilyPond file..." +msgstr "S'està visualitzant el fitxer Lilypond..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:5080 +#: ../src/gui/editors/notation/NotationView.cpp:4710 +#, fuzzy +msgid "LilyPond Preview Options" +msgstr "Opcions Lilypond de la mostra prèvia " + +#: ../src/gui/application/RosegardenGUIApp.cpp:5081 +#: ../src/gui/editors/notation/NotationView.cpp:4711 +#, fuzzy +msgid "LilyPond preview options" +msgstr "Opcions Lilypond de la mostra prèvia " + +#: ../src/gui/application/RosegardenGUIApp.cpp:5112 +#: ../src/gui/application/RosegardenGUIApp.cpp:5126 +msgid "Exporting MusicXML file..." +msgstr "S'està exportant el fitxer MusicXML..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:5115 +msgid "XML files" +msgstr "Fitxers XML" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5289 +#: ../src/gui/editors/segment/TrackButtons.cpp:417 +msgid "" +"The audio file path does not exist or is not writable.\n" +"Please set the audio file path to a valid directory in Document Properties " +"before recording audio.\n" +"Would you like to set it now?" +msgstr "" +"La ubicació del fitxer d'àudio no existeix o no s'hi pot escriure.\n" +"Seleccioneu una ubicació correcta, en les propietats del document abans de " +"gravar l'àudio.\n" +"Voleu configurar-ho ara?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5337 +msgid "" +"The audio file path does not exist or is not writable.\n" +"Please set the audio file path to a valid directory in Document Properties " +"before you start to record audio.\n" +"Would you like to set it now?" +msgstr "" +"La ubicació del fitxer d'àudio no existeix o no s'hi pot escriure.\n" +"Seleccioneu una ubicació correcta, en les propietats del document abans de " +"gravar l'àudio.\n" +"Voleu configurar-ho ara?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5780 +#, fuzzy +msgid "Move playback pointer to time" +msgstr "Punt de reproducció al &cursor" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5793 +#: ../src/gui/editors/matrix/MatrixView.cpp:2240 +msgid "%1%" +msgstr "%1%" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5861 +#, c-format +msgid "Replace Tempo Change at %1" +msgstr "Reemplaça l'últim canvi de tempo a %1" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5891 +msgid "Set Global and Default Tempo" +msgstr "Estableix el tempo global i per defecte" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5914 +#, fuzzy +msgid "Move Tempo Change" +msgstr "Elimina el canvi de &tempo..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:5949 +#, fuzzy +msgid "new marker" +msgstr "Cap submaster" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5950 +#, fuzzy +msgid "no description" +msgstr "Descripció" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6363 +#, c-format +msgid "Sequencer failed to add audio file %1" +msgstr "El seqüenciador no ha pogut afegir el fitxer d'àduio %1" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6388 +#, c-format +msgid "Sequencer failed to remove audio file id %1" +msgstr "El seqüenciador no ha pogut suprimir el fitxer d'àduio %1" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6448 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1086 +msgid "Modify Segment label" +msgstr "Canvia l'etiqueta del fragment" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6450 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1088 +msgid "Modify Segments label" +msgstr "Canvia l'etiqueta dels fragments" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6452 +msgid "Relabelling selection..." +msgstr "S'estan canviant les etiquetes de la selecció..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:7539 +msgid "Play List" +msgstr "Llista de peces" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7567 +msgid "http://rosegarden.sourceforge.net/tutorial/en/chapter-0.html" +msgstr "http://rosegarden.sourceforge.net/tutorial/en/chapter-0.html" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7574 +msgid "http://rosegarden.sourceforge.net/tutorial/bug-guidelines.html" +msgstr "http://rosegarden.sourceforge.net/tutorial/bug-guidelines.html" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7650 +msgid "Queueing MIDI panic events for tranmission..." +msgstr "S'estan encuant els esdeveniments de pànic MIDI per la transmissió..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:7708 +msgid "Are you sure you want to save this as your default studio?" +msgstr "Voleu desar-ho com a estudi per defecte?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7713 +msgid "Saving current document as default studio..." +msgstr "S'està desant el document actual com a estudi per defecte..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:7738 +msgid "" +"Are you sure you want to import your default studio and lose the current one?" +msgstr "Voleu importar el vostre estudi per defecte i perdre l'actual?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7773 +msgid "Import Studio from File" +msgstr "Importa l'estudi des d'un fitxer" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7807 +msgid "Import Studio" +msgstr "Importa l'estudi" + +#: ../src/gui/application/RosegardenGUIApp.cpp:8015 +msgid "" +"

    Newer version available

    A newer version of Rosegarden may be " +"available.
    Please consult the Rosegarden website for more information.

    " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:8016 +#, fuzzy +msgid "Newer version available" +msgstr "Localitzat (quan sigui possible)" + +#: ../src/gui/application/RosegardenApplication.cpp:104 +#, c-format +msgid "Failed to load soundfont %1" +msgstr "No s'ha pogut carregar el fitxer de so %1" + +#: ../src/gui/application/main.cpp:311 +msgid "Rosegarden - A sequencer and musical notation editor" +msgstr "Rosegarden - Un seqüenciador i editor de partitures" + +#: ../src/gui/application/main.cpp:315 +msgid "Don't use the sequencer (support editing only)" +msgstr "No feu servir el seqüenciador (només està permesa l'edició)" + +#: ../src/gui/application/main.cpp:316 +msgid "Don't show the splash screen" +msgstr "No mostris la pantalla de presentació" + +#: ../src/gui/application/main.cpp:317 +msgid "Don't automatically run in the background" +msgstr "No executis automàticament en segon pla" + +#: ../src/gui/application/main.cpp:318 +msgid "Attach to a running sequencer process, if found" +msgstr "Si hi és, adjunta'l a un procés actiu del seqüenciador" + +#: ../src/gui/application/main.cpp:319 +msgid "Ignore installed version - for devs only" +msgstr "Ignora la versió instal·lada - només per devs" + +#: ../src/gui/application/main.cpp:320 +msgid "file to open" +msgstr "fitxer per obrir" + +#: ../src/gui/application/main.cpp:370 +msgid "Installation contains the wrong version of Rosegarden." +msgstr "La instal·lació conté una versió.incorrecta del Rosegarden" + +#: ../src/gui/application/main.cpp:371 +#, fuzzy +msgid "" +" The wrong versions of Rosegarden's data files were\n" +" found in the standard KDE installation directories.\n" +" (I am %1, but the installed files are for version %2.)\n" +"\n" +" This may mean one of the following:\n" +"\n" +" 1. This is a new upgrade of Rosegarden, and it has not yet been\n" +" installed. If you compiled it yourself, check that you have\n" +" run \"make install\" and that the procedure completed\n" +" successfully.\n" +"\n" +" 2. The upgrade was installed in a non-standard directory,\n" +" and an old version was found in a standard directory. If so,\n" +" you will need to add the correct directory to your KDEDIRS\n" +" environment variable before you can run it." +msgstr "" +" Les versions incorrectes dels fitxers de dades del Rosegarden\n" +" s'han trobat en les carpetes normals d'instal·lació de KDE.\n" +" (Aquest programa és %1, però els fitxers instal·lats són\n" +" per a la versió %2.)\n" +"\n" +" Això pot ser degut a una de les raons següents:\n" +"\n" +" 1. Aquesta és una actualització del Rosegarden, que no s'ha\n" +" instal·lat encara. Si l'heu compilada vós mateix, comproveu\n" +" que heu executat \"make install\" i que el procediment s'ha\n" +" completat satisfactòriament.\n" +"\n" +" 2. L'actualització s'ha instal·lat en una carpeta que no és habitual,\n" +" i una versió anterior s'ha trobat en la carpeta habitual.\n" +" Si és així, cal que afegiu la carpeta correcta a la variable\n" +" d'entorn KDEDIRS abans d'executar el programa." + +#: ../src/gui/application/main.cpp:383 ../src/gui/application/main.cpp:401 +msgid "Installation problem" +msgstr "Problema d'instal·lació" + +#: ../src/gui/application/main.cpp:389 +msgid "Rosegarden does not appear to have been installed." +msgstr "Sembla que el Rosegarden no s'ha instal·lat bé." + +#: ../src/gui/application/main.cpp:390 +#, fuzzy +msgid "" +" One or more of Rosegarden's data files could not be\n" +" found in the standard KDE installation directories.\n" +"\n" +" This may mean one of the following:\n" +"\n" +" 1. Rosegarden has not been correctly installed. If you compiled\n" +" it yourself, check that you have run \"make install\" and that\n" +" the procedure completed successfully.\n" +"\n" +" 2. Rosegarden has been installed in a non-standard directory,\n" +" and you need to add this directory to your KDEDIRS environment\n" +" variable before you can run it. This may be the case if you\n" +" installed into $HOME or a local third-party package directory\n" +" like /usr/local or /opt." +msgstr "" +" Un o més fitxers de dades del Rosegarden no s'han trobat\n" +" en les carpetes normals d'instal·lació de KDE.\n" +"\n" +" Això pot ser degut a una de les raons següents:\n" +"\n" +" 1. El Rosegarden no s'ha instal·lat correctament. Si heu\n" +" compilat el programa vós mateix, comproveu que heu executat\n" +" \"make install\" i que el procediment s'ha completat\n" +" satisfactòriament.\n" +"\n" +" 2. El Rosegarden s'ha instal·lat en una carpeta que no és habitual,\n" +" i cal afegir aquesta carpeta a la variable d'entorn KDEDIRS\n" +" abans d'executar el programa. Això pot ser degut a que l'heu\n" +" instal·lat en la carpeta $HOME o en una carpeta local\n" +" de paquets de tercers, com /usr/local o /opt." + +#: ../src/gui/application/main.cpp:414 +msgid "Rosegarden" +msgstr "Rosegarden" + +#: ../src/gui/application/main.cpp:416 +#, fuzzy +msgid "" +"Copyright 2000 - 2008 Guillaume Laurent, Chris Cannam, Richard Bown\n" +"Parts copyright 1994 - 2004 Chris Cannam, Andy Green, Richard Bown, " +"Guillaume Laurent\n" +"LilyPond fonts copyright 1997 - 2005 Han-Wen Nienhuys and Jan Nieuwenhuizen" +msgstr "" +"Copyright: 2000 - 2005 Guillaume Laurent, Chris Cannam, Richard Bown\n" +"Parts del copyright: 1994 - 2004 Chris Cannam, Andy Green, Richard Bown, " +"Guillaume Laurent\n" +"Tipus de lletra de Lilypond: copyright 1997 - 2005 Han-Wen Nienhuys i Jan " +"Nieuwenhuizen" + +#: ../src/gui/application/main.cpp:428 +msgid "Chord labelling code" +msgstr "Codi de l'etiquetat dels acords" + +#: ../src/gui/application/main.cpp:429 +#, fuzzy +msgid "" +"LilyPond output\n" +"assorted other patches\n" +"i18n-ization" +msgstr "" +"exportació a Lilypond\n" +"pedaços diversos\n" +"internacionalització" + +#: ../src/gui/application/main.cpp:430 +msgid "" +"UI improvements\n" +"bug fixes" +msgstr "" +"millores en la interfície de l'usuari\n" +"correccions d'errors" + +#: ../src/gui/application/main.cpp:431 +msgid "" +"Segment colours\n" +"Other UI and bug fixes" +msgstr "" +"Colors del fragment\n" +"Interfície i correcció de bugs" + +#: ../src/gui/application/main.cpp:432 +msgid "" +"Russian translation\n" +"i18n-ization" +msgstr "" +"traducció al rus\n" +"internacionalització" + +#: ../src/gui/application/main.cpp:433 ../src/gui/application/main.cpp:434 +msgid "German translation" +msgstr "traducció a l'alemany" + +#: ../src/gui/application/main.cpp:435 +msgid "Welsh translation" +msgstr "traducció al gal·lès" + +#: ../src/gui/application/main.cpp:436 +msgid "French translation" +msgstr "traducció al francès" + +#: ../src/gui/application/main.cpp:437 +#, fuzzy +msgid "" +"French translation\n" +"Bug fixes" +msgstr "traducció al francès" + +#: ../src/gui/application/main.cpp:438 ../src/gui/application/main.cpp:439 +msgid "Italian translation" +msgstr "traducció a l'italià" + +#: ../src/gui/application/main.cpp:440 ../src/gui/application/main.cpp:441 +msgid "Swedish translation" +msgstr "traducció al suec" + +#: ../src/gui/application/main.cpp:442 +msgid "Estonian translation" +msgstr "traducció a l'estonià" + +#: ../src/gui/application/main.cpp:443 ../src/gui/application/main.cpp:444 +msgid "Dutch translation" +msgstr "traducció a l'holandès" + +#: ../src/gui/application/main.cpp:445 +msgid "HSpinBox class" +msgstr "classe HSpinBox" + +#: ../src/gui/application/main.cpp:446 +msgid "Transposition by interval" +msgstr "" + +#: ../src/gui/application/main.cpp:447 +msgid "Original designs for rotary controllers" +msgstr "dissenys originals per a controls rotatoris" + +#: ../src/gui/application/main.cpp:448 +msgid "Japanese translation" +msgstr "traducció al japonès" + +#: ../src/gui/application/main.cpp:449 +msgid "" +"Auto-scroll deceleration\n" +"Rests outside staves and other bug fixes" +msgstr "" +"Desacceleració dels desplaçaments\n" +"Silencis fora de lloc i altres bugs" + +#: ../src/gui/application/main.cpp:450 +msgid "Simplified Chinese translation" +msgstr "traducció al xinès simplificat" + +#: ../src/gui/application/main.cpp:451 +msgid "LIRC infrared remote-controller support" +msgstr "Connexió a controladors remots d'infrarojos LIRC" + +#: ../src/gui/application/main.cpp:452 +msgid "MTC slave timing implementation" +msgstr "Implementació del temporitzador MTC esclau" + +#: ../src/gui/application/main.cpp:453 +msgid "Czech translation" +msgstr "traducció al txec" + +#: ../src/gui/application/main.cpp:454 +msgid "SCons/bksys building system" +msgstr "Sistema constructor SCons/bksys" + +#: ../src/gui/application/main.cpp:455 +msgid "icons, icons, icons" +msgstr "icones, icones, icones" + +#: ../src/gui/application/main.cpp:456 ../src/gui/application/main.cpp:457 +#: ../src/gui/application/main.cpp:458 ../src/gui/application/main.cpp:459 +msgid "Spanish translation" +msgstr "traducció a l'espanyol" + +#: ../src/gui/application/main.cpp:460 ../src/gui/application/main.cpp:461 +msgid "Catalan translation" +msgstr "traducció al català" + +#: ../src/gui/application/main.cpp:462 +msgid "" +"1.2.3 splash screen photo\n" +"Gave birth to D. Michael McIntyre, bought him a good flute once\n" +"upon a time, and always humored him when he came over to play her\n" +"some new instrument, even though she really hated his playing.\n" +"Born October 19, 1951, died September 21, 2007, R. I. P." +msgstr "" + +#: ../src/gui/application/main.cpp:463 +#, fuzzy +msgid "Initial guitar chord editing code" +msgstr "editor d'acords de guitarra" + +#: ../src/gui/application/main.cpp:464 +#, fuzzy +msgid "Polish translation" +msgstr "traducció al gal·lès" + +#: ../src/gui/application/main.cpp:465 +#, fuzzy +msgid "Basque translation" +msgstr "traducció al japonès" + +#: ../src/gui/application/main.cpp:466 +msgid "Klearlook theme" +msgstr "" + +#: ../src/_translatorinfo.cpp:1 ../src/gui/application/main.cpp:468 +msgid "" +"_: NAME OF TRANSLATORS\n" +"Your names" +msgstr "Feliu Ferrer i Valero, Quim Perez i Noguer" + +#: ../src/_translatorinfo.cpp:3 ../src/gui/application/main.cpp:468 +msgid "" +"_: EMAIL OF TRANSLATORS\n" +"Your emails" +msgstr "mverge2@pie.xtec.es,noguer@osona.com" + +#: ../src/gui/application/main.cpp:719 +msgid "Welcome!" +msgstr "" + +#: ../src/gui/application/main.cpp:731 +msgid "" +"

    Welcome to Rosegarden!

    Welcome to the Rosegarden audio and MIDI " +"sequencer and musical notation editor.

    • If you have not already " +"done so, you may wish to install some DSSI synth plugins, or a separate " +"synth program such as QSynth. Rosegarden does not synthesize sounds from " +"MIDI on its own, so without these you will hear nothing.

    • Rosegarden uses the JACK audio server for recording and " +"playback of audio, and for playback from DSSI synth plugins. These features " +"will only be available if the JACK server is running.

    • Rosegarden has comprehensive documentation: see the Help menu " +"for the handbook, tutorials, and other information!

    Rosegarden " +"was brought to you by a team of volunteers across the world. To learn more, " +"go to http://www.rosegardenmusic." +"com/.

    " +msgstr "" + +#: ../src/gui/application/RosegardenGUIView.cpp:257 +msgid "No non-audio segments in composition" +msgstr "No hi han fragments de no-àudio en la composició" + +#: ../src/gui/application/RosegardenGUIView.cpp:333 +msgid "Selection must contain only audio or non-audio segments" +msgstr "La selecció només pot tenir fragments d'àudio o de no-àudio" + +#: ../src/gui/application/RosegardenGUIView.cpp:431 +#: ../src/gui/application/RosegardenGUIView.cpp:576 +#: ../src/gui/application/RosegardenGUIView.cpp:612 +#: ../src/gui/application/RosegardenGUIView.cpp:776 +msgid "No non-audio segments selected" +msgstr "No s'ha seleccionat cap fragment de no-àudio" + +#: ../src/gui/application/RosegardenGUIView.cpp:851 +#, fuzzy +msgid "" +"You've not yet defined an audio editor for Rosegarden to use.\n" +"See Settings -> Configure Rosegarden -> Audio." +msgstr "" +"Encara no heu definit un editor d'àudio per utilitzar-lo amb el Rosegarden.\n" +"Mireu Configuració -> Configuració del Rosegarden -> General -> Editors " +"externs." + +#: ../src/gui/application/RosegardenGUIView.cpp:1559 +#: ../src/gui/application/RosegardenGUIView.cpp:1564 +msgid "Can't add dropped file. " +msgstr "No s'ha pogut afegir el fitxer deixat. " + +#: ../src/gui/seqmanager/SequenceManager.cpp:1014 +#: ../src/gui/seqmanager/SequenceManager.cpp:1150 +msgid "" +"The JACK Audio subsystem has failed or it has stopped Rosegarden from " +"processing audio.\n" +"Please restart Rosegarden to continue working with audio.\n" +"Quitting other running applications may improve Rosegarden's performance." +msgstr "" +"El subsistema d'àudio del JACK ha fallat o s'ha desconnectat l'àudio del " +"Rosegarden des de la consola JACK.\n" +"Reinicieu el Rosegarden per tornar a tenir l'àudio funcionant.\n" +"Si sortiu de les altres aplicacions que estan corrent, millorareu el " +"rendiment del Rosegarden." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1020 +#: ../src/gui/seqmanager/SequenceManager.cpp:1156 +msgid "" +"The JACK Audio subsystem has stopped Rosegarden from processing audio, " +"probably because of a processing overload.\n" +"An attempt to restart the audio service has been made, but some problems may " +"remain.\n" +"Quitting other running applications may improve Rosegarden's performance." +msgstr "" +"El subsistema d'àudio del JACK ha parat de processar l'àudio del Rosegarden, " +"segurament perquè el sistema està sobrecarregat.\n" +"S'ha provat de reiniciar el Rosegarden però no ha anat bé, encara deu haver-" +"hi algun problema.\n" +"Si sortiu de les altres aplicacions que estan corrent, millorareu el " +"rendiment del Rosegarden." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1031 +msgid "" +"Run out of processor power for real-time audio processing. Cannot continue." +msgstr "" +"No es té prou potència per al processat de l'àudio en temps real. No es pot " +"continuar." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1057 +msgid "" +"A serious error has occurred in the ALSA MIDI subsystem. It may not be " +"possible to continue sequencing. Please check console output for more " +"information." +msgstr "" +"El subsistema ALSA MIDI ha tingut un problema seriós. No es podrà continuar " +"amb la seqüenciació. Si voleu més informació mireu la consola de sortida." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1078 +msgid "JACK Audio subsystem is losing sample frames." +msgstr "El subsitema d'àudio JACK no dóna l'abast." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1096 +msgid "" +"Failed to read audio data from disc in time to service the audio subsystem." +msgstr "" +"No s'ha pogut llegir les dades del disc a temps per servir-les al subsistema " +"d'àudio." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1100 +msgid "" +"Failed to write audio data to disc fast enough to service the audio " +"subsystem." +msgstr "" +"No s'ha pogut escriure les dades del disc a temps per servir-les al " +"subsistema d'àudio." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1104 +msgid "The audio mixing subsystem is failing to keep up." +msgstr "El subsistema mesclador d'àudio no ha pogut continuar" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1108 +msgid "The audio subsystem is failing to keep up." +msgstr "El subsistema d'àudio no ha pogut continuar" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1112 +msgid "Unknown sequencer failure mode!" +msgstr "El seqüenciador té un problema desconegut!" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1170 +#, fuzzy +msgid "" +"

    System timer resolution is too low

    Rosegarden was unable to find " +"a high-resolution timing source for MIDI performance.

    This may mean " +"you are using a Linux system with the kernel timer resolution set too low. " +"Please contact your Linux distributor for more information.

    Some Linux " +"distributors already provide low latency kernels, see http://rosegarden.wiki." +"sourceforge.net/Low+latency+kernels for instructions.

    " +msgstr "" +"

    El rellotge del sistema és massa lent

    El Rosegarden no ha pogut " +"trobar un rellotge d'alta freqüència per millorar l'eficència del MIDI.

    Això vol dir que esteu fent servir un sistema Linux amb el kernel " +"configurat perquè el rellotge del sistema vagi lent. Demaneu ajuda al " +"vostre distribuidor Linux.

    " + +#: ../src/gui/seqmanager/SequenceManager.cpp:1188 +#, fuzzy +msgid "" +"

    System timer resolution is too low

    Rosegarden was unable to find " +"a high-resolution timing source for MIDI performance.

    You may be able " +"to solve this problem by loading the RTC timer kernel module. To do this, " +"try running sudo modprobe snd-rtctimer in a terminal window and then " +"restarting Rosegarden.

    Alternatively, check whether your Linux " +"distributor provides a multimedia-optimized kernel. See http://rosegarden.wiki." +"sourceforge.net/Low+latency+kernels for notes about this.

    " +msgstr "" +"

    El rellotge del sistema és massa lent

    El Rosegarden no ha pogut " +"trobar un rellotge d'alta freqüència per millorar l'eficència del MIDI.

    Això vol dir que esteu fent servir un sistema Linux amb el kernel " +"configurat perquè el rellotge del sistema vagi lent. Demaneu ajuda al " +"vostre distribuidor Linux.

    " + +#: ../src/gui/seqmanager/SequenceManager.cpp:1312 +msgid "" +"

    Both MIDI and Audio subsystems have failed to initialize.

    You may " +"continue without the sequencer, but we suggest closing Rosegarden, running " +"\"alsaconf\" as root, and starting Rosegarden again. If you wish to run " +"with no sequencer by design, then use \"rosegarden --nosequencer\" to avoid " +"seeing this error in the future.

    " +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1314 +msgid "" +"

    The MIDI subsystem has failed to initialize.

    You may continue " +"without the sequencer, but we suggest closing Rosegarden, running \"modprobe " +"snd-seq-midi\" as root, and starting Rosegarden again. If you wish to run " +"with no sequencer by design, then use \"rosegarden --nosequencer\" to avoid " +"seeing this error in the future.

    " +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1316 +msgid "" +"

    The Rosegarden sequencer module version does not match the GUI module " +"version.

    You have probably mixed up files from two different versions " +"of Rosegarden. Please check your installation.

    " +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1322 +#, fuzzy, c-format +msgid "

    Sequencer startup failed

    %1" +msgstr "No s'ha pogut engegar el seqüenciador: %1" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1330 +msgid "" +"

    Failed to connect to JACK audio server.

    Rosegarden could not " +"connect to the JACK audio server. This probably means the JACK server is " +"not running.

    If you want to be able to play or record audio files or " +"use plugins, you should exit Rosegarden and start the JACK server before " +"running Rosegarden again.

    " +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1331 +msgid "Failed to connect to JACK" +msgstr "" + +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:46 +msgid "Modify MIDI filters..." +msgstr "Modifica els filtres MIDI..." + +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:58 +msgid "THRU events to ignore" +msgstr "Esdeveniments THRU per ignorar" + +#: ../src/gui/editors/eventlist/EventView.cpp:131 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:60 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:96 +msgid "Note" +msgstr "Nota" + +#: ../src/gui/editors/eventlist/EventView.cpp:132 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:61 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:97 +msgid "Program Change" +msgstr "Canvi de programa" + +#: ../src/gui/editors/eventlist/EventView.cpp:136 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:62 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:98 +msgid "Key Pressure" +msgstr "Pressió de la tecla" + +#: ../src/gui/editors/eventlist/EventView.cpp:137 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:63 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:99 +msgid "Channel Pressure" +msgstr "Pressió del canal" + +#: ../src/gui/editors/eventlist/EventView.cpp:134 +#: ../src/gui/general/EditView.cpp:899 +#: ../src/gui/rulers/ControllerEventsRuler.cpp:198 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:64 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:100 +msgid "Pitch Bend" +msgstr "Inflexió de to" + +#: ../src/gui/editors/eventlist/EventView.cpp:133 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:65 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:101 +msgid "Controller" +msgstr "Controlador" + +#: ../src/gui/editors/eventlist/EventView.cpp:135 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:66 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:102 +msgid "System Exclusive" +msgstr "Sistema exclusiu" + +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:94 +msgid "RECORD events to ignore" +msgstr "Esdeveniments RECORD per ignorar" + +#: ../src/gui/widgets/TimeWidget.cpp:101 +msgid "Note:" +msgstr "Nota:" + +#: ../src/gui/widgets/TimeWidget.cpp:108 ../src/gui/widgets/TimeWidget.cpp:145 +msgid "" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:151 +msgid "Units:" +msgstr "Unitats:" + +#: ../src/gui/widgets/TimeWidget.cpp:173 +msgid "Time:" +msgstr "Temps:" + +#: ../src/gui/widgets/TimeWidget.cpp:184 +msgid "units" +msgstr "unitats" + +#: ../src/gui/widgets/TimeWidget.cpp:193 +msgid "Measures:" +msgstr "Mesures:" + +#: ../src/gui/widgets/TimeWidget.cpp:193 +msgid "Measure:" +msgstr "Mesura:" + +#: ../src/gui/widgets/TimeWidget.cpp:212 +msgid "beats:" +msgstr "pulsacions:" + +#: ../src/gui/widgets/TimeWidget.cpp:212 +msgid "beat:" +msgstr "pulsació:" + +#: ../src/gui/widgets/TimeWidget.cpp:230 +msgid "%1:" +msgstr "%1:" + +#: ../src/gui/widgets/TimeWidget.cpp:254 +msgid "Seconds:" +msgstr "Segons:" + +#: ../src/gui/widgets/TimeWidget.cpp:273 +msgid "msec:" +msgstr "Milisegons:" + +#: ../src/gui/widgets/TimeWidget.cpp:407 ../src/gui/widgets/TimeWidget.cpp:531 +msgid "(%1/%2 time)" +msgstr "(%1/%2 temps)" + +#: ../src/gui/widgets/TimeWidget.cpp:452 +msgid "(starting %1.%2 qpm, %2.%3 bpm)" +msgstr "(inici %1.%2 qpm, %2.%3 bpm)" + +#: ../src/gui/widgets/TimeWidget.cpp:458 +msgid "(starting %1.%2 bpm)" +msgstr "(inici %1.%2 bpm)" + +#: ../src/gui/widgets/TimeWidget.cpp:464 +msgid "(%1.%2 qpm, %2.%3 bpm)" +msgstr "(%1.%2 qpm, %2.%3 bpm)" + +#: ../src/gui/widgets/TimeWidget.cpp:470 +msgid "(%1.%2 bpm)" +msgstr "(%1.%2 bpm)" + +#: ../src/gui/editors/notation/TrackHeader.cpp:239 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:60 +msgid "C" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:241 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:61 +#, fuzzy +msgid "D" +msgstr "Id" + +#: ../src/gui/editors/notation/TrackHeader.cpp:243 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:62 +msgid "E" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:244 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:63 +msgid "F" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:246 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:64 +msgid "G" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:248 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:65 +#, fuzzy +msgid "A" +msgstr "A4" + +#: ../src/gui/editors/notation/TrackHeader.cpp:250 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:66 +msgid "B" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:70 +msgid "-2" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:71 +msgid "-1" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:72 +msgid "0" +msgstr "0" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:73 +#, fuzzy +msgid "1" +msgstr "%1" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:74 +msgid "2" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:75 +msgid "3" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:76 +#, fuzzy +msgid "4" +msgstr "A4" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:77 +msgid "5" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:78 +msgid "6" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:79 +msgid "7" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:83 +#, fuzzy +msgid "double flat" +msgstr "Doble bemoll" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:84 +#, fuzzy +msgid "flat" +msgstr "Bemoll" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:85 +#, fuzzy +msgid "natural" +msgstr "Becaire" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:86 +#, fuzzy +msgid "sharp" +msgstr "Diesi" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:87 +#, fuzzy +msgid "double sharp" +msgstr "Doble diesi" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:234 +#, c-format +msgid "In %1" +msgstr "Entrada %1" + +#: ../src/gui/studio/AudioMixerWindow.cpp:587 +#: ../src/gui/widgets/AudioRouteMenu.cpp:236 +#: ../src/gui/widgets/AudioRouteMenu.cpp:259 +msgid "Master" +msgstr "Master" + +#: ../src/gui/studio/AudioMixerWindow.cpp:528 +#: ../src/gui/widgets/AudioRouteMenu.cpp:238 +#: ../src/gui/widgets/AudioRouteMenu.cpp:261 +#, c-format +msgid "Sub %1" +msgstr "Sub %1" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:244 +msgid "In %1 R" +msgstr "Entrada %1 D" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:245 +msgid "In %1 L" +msgstr "Entrada %1 E" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:247 +msgid "Master R" +msgstr "Master D" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:248 +msgid "Master L" +msgstr "Master E" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:250 +msgid "Sub %1 R" +msgstr "Sub %1 D" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:251 +msgid "Sub %1 L" +msgstr "Sub %1 E" + +#: ../src/gui/studio/AudioMixerWindow.cpp:391 +#: ../src/gui/studio/AudioMixerWindow.cpp:522 +#: ../src/gui/widgets/AudioFaderBox.cpp:82 +msgid "Audio plugin button" +msgstr "Botó del connector d'àudio" + +#: ../src/gui/editors/parameters/AudioInstrumentParameterPanel.cpp:129 +#: ../src/gui/editors/parameters/AudioInstrumentParameterPanel.cpp:357 +#: ../src/gui/widgets/AudioFaderBox.cpp:91 +msgid "" +msgstr "" + +#: ../src/gui/widgets/AudioFaderBox.cpp:93 +msgid "Synth plugin button" +msgstr "Botó del sintonitzador" + +#: ../src/gui/widgets/AudioFaderBox.cpp:153 +#, fuzzy +msgid "Set the audio pan position in the stereo field" +msgstr "Ubica la posició d'inici de l'àudio en el camp estéreo." + +#: ../src/gui/widgets/AudioFaderBox.cpp:155 +msgid "Open synth plugin's native editor" +msgstr "Obre a l'editor natiu del connector del sintonitzador" + +#: ../src/gui/widgets/AudioFaderBox.cpp:157 +msgid "Mono or Stereo Instrument" +msgstr "Instrument mono o stereo" + +#: ../src/gui/widgets/AudioFaderBox.cpp:159 +msgid "Record level" +msgstr "Volum d'enregistrament" + +#: ../src/gui/widgets/AudioFaderBox.cpp:161 +msgid "Playback level" +msgstr "Volum de reproducció" + +#: ../src/gui/studio/AudioMixerWindow.cpp:345 +#: ../src/gui/studio/AudioMixerWindow.cpp:347 +#: ../src/gui/studio/AudioMixerWindow.cpp:503 +#: ../src/gui/studio/AudioMixerWindow.cpp:505 +#: ../src/gui/widgets/AudioFaderBox.cpp:163 +msgid "Audio level" +msgstr "Nivell d'àudio" + +#: ../src/gui/widgets/AudioFaderBox.cpp:170 +msgid "In:" +msgstr "Entrada:" + +#: ../src/gui/widgets/AudioFaderBox.cpp:173 +msgid "Out:" +msgstr "Sortida:" + +#: ../src/gui/widgets/ProgressDialog.cpp:48 +#: ../src/gui/widgets/ProgressDialog.cpp:53 +#: ../src/gui/widgets/ProgressDialog.cpp:76 +msgid "Processing..." +msgstr "S'està processant..." + +#: ../src/gui/configuration/ColourConfigurationPage.h:60 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:130 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:346 +#: ../src/gui/widgets/ColourTable.cpp:52 +msgid "Color" +msgstr "Color" + +#: ../src/gui/widgets/ColourTable.cpp:68 +msgid "Modify Color Name" +msgstr "Modifica el nom del color" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:129 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:983 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:882 +#: ../src/gui/widgets/ColourTable.cpp:68 +msgid "Enter new name" +msgstr "Introdueix un nom nou" + +#: ../src/gui/widgets/ColourTable.cpp:107 +msgid "Default Color" +msgstr "Color per defecte" + +#: ../src/gui/widgets/Rotary.cpp:108 +msgid "" +"Click and drag up and down or left and right to modify.\n" +"Double click to edit value directly." +msgstr "" +"Clica i arrossega-ho amunt i avall o d'esquerra a dreta per modificar-lo.\n" +"Fes doble clic per editar el valor directament." + +#: ../src/gui/widgets/Rotary.cpp:433 +msgid "Select a new value" +msgstr "Seleccioneu un nou valor" + +#: ../src/gui/widgets/Rotary.cpp:434 +msgid "Enter a new value" +msgstr "Introduïu un nou valor" + +#: ../src/gui/widgets/QuantizeParameters.cpp:80 +msgid "Quantizer" +msgstr "Quantificador" + +#: ../src/gui/widgets/QuantizeParameters.cpp:86 +msgid "Quantizer type:" +msgstr "Tipus de quantificador:" + +#: ../src/gui/widgets/QuantizeParameters.cpp:88 +#, fuzzy +msgid "Grid quantizer" +msgstr "Quantifica graelles" + +#: ../src/gui/widgets/QuantizeParameters.cpp:89 +msgid "Legato quantizer" +msgstr "Quantifica legatos" + +#: ../src/gui/widgets/QuantizeParameters.cpp:90 +msgid "Heuristic notation quantizer" +msgstr "Quantifica compassos heurístics" + +#: ../src/gui/widgets/QuantizeParameters.cpp:94 +msgid "Quantize for notation only (leave performance unchanged)" +msgstr "Només quantifica els compassos (deixa la qualitat sense canvis)" + +#: ../src/gui/widgets/QuantizeParameters.cpp:104 +msgid "Notation parameters" +msgstr "Propietats del compàs" + +#: ../src/gui/widgets/QuantizeParameters.cpp:109 +#: ../src/gui/widgets/QuantizeParameters.cpp:150 +msgid "Base grid unit:" +msgstr "Unitat bàsica de la graella:" + +#: ../src/gui/widgets/QuantizeParameters.cpp:114 +msgid "Complexity:" +msgstr "Complexitat:" + +#: ../src/gui/widgets/QuantizeParameters.cpp:118 +msgid "Very high" +msgstr "Molt alta" + +#: ../src/gui/widgets/QuantizeParameters.cpp:119 +msgid "High" +msgstr "Alta" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:224 +#: ../src/gui/widgets/QuantizeParameters.cpp:120 +msgid "Normal" +msgstr "Normal" + +#: ../src/gui/widgets/QuantizeParameters.cpp:121 +msgid "Low" +msgstr "Baixa" + +#: ../src/gui/widgets/QuantizeParameters.cpp:122 +msgid "Very low" +msgstr "Molt baixa" + +#: ../src/gui/widgets/QuantizeParameters.cpp:125 +#, fuzzy +msgid "Tuplet level:" +msgstr "Nivell de tuplet:" + +#: ../src/gui/widgets/QuantizeParameters.cpp:129 +msgid "2-in-the-time-of-3" +msgstr "2 en el temps de 3" + +#: ../src/gui/editors/notation/NotationView.cpp:4241 +#: ../src/gui/widgets/QuantizeParameters.cpp:130 +msgid "Triplet" +msgstr "Treset" + +#: ../src/gui/widgets/QuantizeParameters.cpp:138 +msgid "Any" +msgstr "Qualsevol" + +#: ../src/gui/widgets/QuantizeParameters.cpp:141 +msgid "Permit counterpoint" +msgstr "Permet contrapnt" + +#: ../src/gui/widgets/QuantizeParameters.cpp:145 +msgid "Grid parameters" +msgstr "Paràmetres de la graella" + +#: ../src/gui/widgets/QuantizeParameters.cpp:154 +#, fuzzy +msgid "Swing:" +msgstr "Swing:" + +#: ../src/gui/widgets/QuantizeParameters.cpp:159 +msgid "Iterative amount:" +msgstr "Quantitat iterativa:" + +#: ../src/gui/widgets/QuantizeParameters.cpp:165 +msgid "Quantize durations as well as start times" +msgstr "Quantifica la duració tant com el temps d'inici" + +#: ../src/gui/widgets/QuantizeParameters.cpp:169 +msgid "After quantization" +msgstr "Després de quantificar" + +#: ../src/gui/widgets/QuantizeParameters.cpp:183 +msgid "Show advanced options" +msgstr "Mostra les opcions avançades" + +#: ../src/gui/widgets/QuantizeParameters.cpp:192 +msgid "Re-beam" +msgstr "Torna a posar les barres d'agrupació" + +#: ../src/gui/widgets/QuantizeParameters.cpp:194 +msgid "Add articulations (staccato, tenuto, slurs)" +msgstr "Afegeix articulacions (staccato, els tenuto, lligats)" + +#: ../src/gui/widgets/QuantizeParameters.cpp:195 +msgid "Tie notes at barlines etc" +msgstr "Lliga les notes a les barres etc" + +#: ../src/gui/widgets/QuantizeParameters.cpp:196 +msgid "Split-and-tie overlapping chords" +msgstr "Divideix-i-lliga els acords encavalcats" + +#: ../src/gui/widgets/QuantizeParameters.cpp:307 +msgid "Full quantize" +msgstr "Quantificació total" + +#: ../src/gui/widgets/QuantizeParameters.cpp:450 +msgid "Show Advanced Options" +msgstr "Mostra les opcions avançades" + +#: ../src/gui/widgets/QuantizeParameters.cpp:454 +msgid "Hide Advanced Options" +msgstr "Oculta les opcions avançades" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:257 +#: ../src/gui/configuration/MatrixConfigurationPage.h:56 +#: ../src/gui/configuration/MatrixConfigurationPage.h:57 +#: ../src/gui/editors/matrix/MatrixView.cpp:2709 +msgid "Matrix" +msgstr "Matriu" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:64 +msgid "Printable headers" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:92 +#, fuzzy +msgid "Dedication" +msgstr "Indicació" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:96 +#: ../src/gui/editors/segment/PlayListView.cpp:35 +msgid "Title" +msgstr "Títol" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:100 +msgid "Subtitle" +msgstr "Subtítol" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:104 +#, fuzzy +msgid "Subsubtitle" +msgstr "Subtítol" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:108 +#, fuzzy +msgid "Poet" +msgstr "silenci" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:116 +msgid "Composer" +msgstr "Compositor" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:120 +#, fuzzy +msgid "Meter" +msgstr "Master" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:124 +msgid "Arranger" +msgstr "Retocs" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:128 +#, fuzzy +msgid "Piece" +msgstr "Altures" + +#: ../data/fonts/mappings/fonts.cpp:26 +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:132 +msgid "Opus" +msgstr "Opus" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:136 +msgid "Copyright" +msgstr "Copyright" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:140 +#, fuzzy +msgid "Tagline" +msgstr "Triangle" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:155 +#, fuzzy +msgid "The composition comes here." +msgstr "Canvia la duració de la composició" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:172 +msgid "Non-printable headers" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:213 +msgid "Add New Property" +msgstr "Afegeix una nova propietat" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:217 +msgid "Delete Property" +msgstr "Suprimeix aquesta propietat" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:236 +msgid "{new property %1}" +msgstr "{nova propietat %1}" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:236 +msgid "{new property}" +msgstr "{nova propietat}" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:243 +msgid "{undefined}" +msgstr "{indefinit}" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:87 +#, fuzzy +msgid "Double-click opens segment in" +msgstr "Editor per defecte (quan es faci doble clic en un fragment)" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:91 +#, fuzzy +msgid "Notation editor" +msgstr "Duració de la notació:" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:92 +#, fuzzy +msgid "Matrix editor" +msgstr "Obre a l'editor de matri&us" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:93 +#, fuzzy +msgid "Event List editor" +msgstr "Obre a l'editor de la llista d'&esdeveniments" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:99 +msgid "Number of count-in measures when recording" +msgstr "Nombre de mesures internet quan s'està gravant" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:109 +#, fuzzy +msgid "Auto-save interval" +msgstr "Cada quan cal desar automàticament (en segons)" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:112 +msgid "Every 30 seconds" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:113 +msgid "Every minute" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:114 +msgid "Every five minutes" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:115 +msgid "Every half an hour" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:116 +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:277 +#: ../src/gui/configuration/NotationConfigurationPage.cpp:157 +msgid "Never" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:140 +#, fuzzy +msgid "Use JACK transport" +msgstr "Ignora el transport del JACK" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:173 +msgid "Unknown" +msgstr "Desconegut/da" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:179 +msgid "No MIDI, audio OK" +msgstr "No hi ha MIDI, l'àudio va bé" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:182 +msgid "MIDI OK, no audio" +msgstr "El MIDI va bé, l'àudio no" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:185 +msgid "MIDI OK, audio OK" +msgstr "El MIDI va bé, l'àudio també" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:188 +msgid "No driver" +msgstr "Sense dispositiu" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:195 +#, fuzzy +msgid "Details..." +msgstr "Esborra les pistes..." + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:204 +msgid "Behavior" +msgstr "Comportament" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:219 +msgid "Side-bar parameter box layout" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:223 +msgid "Vertically stacked" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:225 +msgid "Tabbed" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:233 +msgid "Note name style" +msgstr "Estil del nom de la nota" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:237 +msgid "Always use US names (e.g. quarter, 8th)" +msgstr "Utilitza l'estil americà (p.e. quarter, 8th)" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:238 +msgid "Localized (where available)" +msgstr "Localitzat (quan sigui possible)" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:252 +#, fuzzy +msgid "Show textured background on" +msgstr "Fes servir textures com a fons" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:254 +msgid "Main window" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:275 +msgid "Use bundled Klearlook theme" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:278 +msgid "When not running under KDE" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:279 +#: ../src/gui/configuration/NotationConfigurationPage.cpp:159 +#, fuzzy +msgid "Always" +msgstr "Àlies" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:287 +msgid "Presentation" +msgstr "Presentació" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:423 +msgid "" +"Changes to the textured background in the main window will not take effect " +"until you restart Rosegarden." +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:168 +#: ../src/gui/configuration/GeneralConfigurationPage.h:78 +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:207 +#: ../src/gui/configuration/MatrixConfigurationPage.cpp:59 +msgid "General" +msgstr "General" + +#: ../src/gui/configuration/GeneralConfigurationPage.h:79 +msgid "General Configuration" +msgstr "Configuració general" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:92 +msgid "Base octave number for MIDI pitch display" +msgstr "Número d'octava de referència per al monitor de MIDI" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:107 +msgid "Always use default studio when loading files" +msgstr "Sempre utilitza l'estudi per defecte quan es carreguin fitxers" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:119 +#, fuzzy +msgid "Send all MIDI Controllers at start of each playback" +msgstr "" +"Envia tots els controls MIDI a l'inici de la reproducció\n" +" (pot fer que us hagueu d'esperar més)" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:121 +msgid "" +"Rosegarden can send all MIDI Controllers (Pan, Reverb etc) to all MIDI " +"devices every\n" +"time you hit play if you so wish. Please note that this option will usually " +"incur a\n" +"delay at the start of playback due to the amount of data being transmitted." +msgstr "" +"El Rosegarden pot enviar tots els controladors MIDI (?) a tots els " +"dispositius \n" +"MIDI cada cop que reproduïu una peça, si voleu. Cal tenir en compta que \n" +"això pot provocar un retard degut al volum de dades a transferir als " +"dispositius." + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:138 +#, fuzzy +msgid "Sequencer timing source" +msgstr "Rellotge del seqüenciador" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:163 +msgid "Load SoundFont to SoundBlaster card at startup" +msgstr "Carrega la taula de sons a la targeta SoundBlaster a l'inici" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:164 +msgid "" +"Check this box to enable soundfont loading on EMU10K-based cards when " +"Rosegarden is launched" +msgstr "" +"Marca aquest casella per fer que es carregui la taula de sons en les " +"targetes basades en EMU10K cada cop que el Rosegarden s'iniciï" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:173 +msgid "Path to 'asfxload' or 'sfxload' command" +msgstr "Ubicació de l'ordre 'asfxload' o 'sfxload'" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:180 +msgid "SoundFont" +msgstr "Taula de sons" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:223 +#, fuzzy +msgid "MIDI Clock and System messages" +msgstr "Envia els missatges del sistema i el rellotge MIDI" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:229 +#, fuzzy +msgid "Send MIDI Clock, Start and Stop" +msgstr "Envia els missatges del sistema i el rellotge MIDI" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:230 +msgid "Accept Start, Stop and Continue" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:241 +msgid "MIDI Machine Control mode" +msgstr "Mode de control de la màquina MIDI" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:248 +msgid "MMC Master" +msgstr "Master MMC" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:249 +msgid "MMC Slave" +msgstr "Esclau MMC" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:260 +msgid "MIDI Time Code mode" +msgstr "Mode codificador de temps MIDI" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:267 +msgid "MTC Master" +msgstr "Master MTC" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:268 +msgid "MTC Slave" +msgstr "Esclau MTC" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:281 +msgid "Automatically connect sync output to all devices in use" +msgstr "" +"Automàticament connecta la sortida sincronitzada a tots els dispositius " +"utilitzats" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:292 +#, fuzzy +msgid "MIDI Sync" +msgstr "MIDI" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:308 +msgid "sfxload path" +msgstr "Ubicació sfxload" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:315 +msgid "Soundfont path" +msgstr "Ubicació taula de sons" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:67 +msgid "%1 minutes %2.%3%4 seconds (%5 units, %6 measures)" +msgstr "%1 minuts %2.%3%4 segons (%5 unitats, %6 mesures)" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:133 +msgid "Filename:" +msgstr "Nom del fitxer:" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:136 +msgid "Formal duration (to end marker):" +msgstr "Durada formal (fins la marca de fi):" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:141 +msgid "Playing duration:" +msgstr "Durada de reproducció:" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:146 +msgid "Tracks:" +msgstr "Pistes:" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:147 +msgid "%1 used, %2 total" +msgstr "%1 utilitzats, %2 totals" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:152 +msgid "Segments:" +msgstr "Fragments:" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:153 +msgid "%1 MIDI, %2 audio, %3 total" +msgstr "%1 MIDI, %2 àudio, %3 total" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:161 +msgid "Statistics" +msgstr "Estadístiques" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:170 +#: ../src/gui/editors/parameters/InstrumentParameterBox.cpp:155 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:92 +msgid "Track" +msgstr "Pista" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:171 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:125 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:90 +msgid "Label" +msgstr "Etiqueta" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:172 +msgid "Time" +msgstr "Temps" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:174 +msgid "Events" +msgstr "Esdeveniments" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:175 +msgid "Polyphony" +msgstr "Polifonia" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:176 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:126 +msgid "Repeat" +msgstr "Repeteix" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:178 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:128 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:305 +#: ../src/gui/general/EditView.cpp:1488 +msgid "Transpose" +msgstr "Transposa" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:179 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:129 +msgid "Delay" +msgstr "Retard" + +#: ../src/gui/configuration/AudioConfigurationPage.h:61 +#: ../src/gui/configuration/AudioPropertiesPage.h:58 +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:204 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:523 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:524 +msgid "Audio" +msgstr "Àudio" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:204 +#: ../src/gui/configuration/MIDIConfigurationPage.h:62 +msgid "MIDI" +msgstr "MIDI" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:317 +msgid "Segment Summary" +msgstr "Resum del fragment" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:63 +msgid "Audio file path:" +msgstr "Ubicació del fitxer d'àudio:" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:137 +#: ../src/gui/configuration/AudioPropertiesPage.cpp:68 +msgid "Choose..." +msgstr "Tria... " + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:73 +msgid "Disk space remaining:" +msgstr "Espai de disc lliure:" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:78 +#, fuzzy +msgid "Equivalent minutes of 16-bit stereo:" +msgstr "Minuts que equivalen a 16-bits stereo:" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:90 +msgid "Modify audio path" +msgstr "Canvia l'ubicació de l'àudio" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:113 +msgid "%1 out of %2 (%3% used)" +msgstr "%1 de %2 (%3% utilitzat)" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:144 +msgid "minutes at" +msgstr "minuts a" + +#: ../src/gui/configuration/MIDIConfigurationPage.h:63 +#, fuzzy +msgid "MIDI Settings" +msgstr "Configuració de l'àudio" + +#: ../src/gui/configuration/AudioConfigurationPage.h:62 +#: ../src/gui/configuration/AudioPropertiesPage.h:59 +msgid "Audio Settings" +msgstr "Configuració de l'àudio" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:87 +msgid "Default layout mode" +msgstr "Format per defecte" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:91 +msgid "Linear layout" +msgstr "Format &lineal" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:92 +msgid "Continuous page layout" +msgstr "Format de pàgina continu" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:93 +msgid "Multiple page layout" +msgstr "Format de pàgina múltiple" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:101 +msgid "Default spacing" +msgstr "Espaiat per defecte" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:125 +msgid "Default duration factor" +msgstr "Factor de durada per defecte" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:141 +msgid "Full" +msgstr "Ple" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:152 +msgid "Show track headers (linear layout only)" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:158 +msgid "When needed" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:166 +msgid "" +"\"Always\" and \"Never\" mean what they usually mean\n" +"\"When needed\" means \"when staves are too many to all fit in the current " +"window\"" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:178 +msgid "Show non-notation events as question marks" +msgstr "Mostra els esdeveniments que no siguin del compas com a interrogants" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:188 +msgid "Show notation-quantized notes in a different color" +msgstr "Mostra les notes del compàs quantificables en un altre color" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:198 +msgid "Show \"invisible\" events in grey" +msgstr "Mostra els esdeveniments \"invisibles\" en gris" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:208 +msgid "Show notes outside suggested playable range in red" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:218 +msgid "Highlight superimposed notes with a halo effect" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:231 +msgid "When recording MIDI, split-and-tie long notes at barlines" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:242 +msgid "Layout" +msgstr "Format" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:255 +msgid "Default note style for new notes" +msgstr "Estil de les notes per defecte per a les noves notes" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:287 +msgid "When inserting notes..." +msgstr "Quan s'afegeixi notes..." + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:294 +msgid "Split notes into ties to make durations match" +msgstr "Separa les notes ajuntades per fer quadrar les durades " + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:295 +msgid "Ignore existing durations" +msgstr "Ignora les durades existents" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:305 +msgid "Auto-beam on insert when appropriate" +msgstr "Posa les barres d'agrupació automàticament quan sigui apropiat" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:317 +#: ../src/gui/editors/notation/NotationEraser.cpp:54 +msgid "Collapse rests after erase" +msgstr "Redueix els silencis després d'haver suprimit" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:328 +msgid "Default paste type" +msgstr "Forma d'enganxar per defecte" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:350 +msgid "Editing" +msgstr "S'està editant" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:362 +msgid "Accidentals in one octave..." +msgstr "Accidents en una octava..." + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:364 +msgid "Affect only that octave" +msgstr "Afecta només aquella octava" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:365 +msgid "Require cautionaries in other octaves" +msgstr "Necessita accidents preventius en altres octaves" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:366 +msgid "Affect all subsequent octaves" +msgstr "Afecta totes les octaves que segueixin" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:374 +msgid "Accidentals in one bar..." +msgstr "Accidents en una barra..." + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:376 +msgid "Affect only that bar" +msgstr "Afecta només aquest compàs" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:377 +msgid "Require cautionary resets in following bar" +msgstr "Necessita silencis preventius en els compassos posteriors" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:378 +msgid "Require explicit resets in following bar" +msgstr "Necessita silencis explícits en el compàs posterior" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:386 +#, fuzzy +msgid "Key signature cancellation style" +msgstr "Estil del canvi de clau:" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:388 +msgid "Cancel only when entering C major or A minor" +msgstr "Atura només quan entri un Do major o un La menor" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:389 +msgid "Cancel whenever removing sharps or flats" +msgstr "Atura només quan es suprimeixin sostinguts o bemolls" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:390 +msgid "Cancel always" +msgstr "Atura sempre" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:400 +msgid "Accidentals" +msgstr "Accidents" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:441 +msgid "Notation font" +msgstr "Tipus de notes" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:467 +msgid "Origin:" +msgstr "Origen:" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:471 +msgid "Copyright:" +msgstr "Copyright:" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:475 +msgid "Mapped by:" +msgstr "Mapajat per:" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:479 +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:81 +msgid "Type:" +msgstr "Tipus:" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:508 +msgid "Font size for single-staff views" +msgstr "Mida de lletra quan hi hagi una única vista" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:516 +msgid "Font size for multi-staff views" +msgstr "Mida de lletra quan hi hagi vàries vistes" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:524 +msgid "Font size for printing (pt)" +msgstr "Mida de lletra per a imprimir (pt)" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:541 +msgid "Text font" +msgstr "Tipus de lletra" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:549 +msgid "Sans-serif font" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:664 +msgid "%1 (smooth)" +msgstr "%1 (suau)" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:667 +#, fuzzy +msgid "%1 (jaggy)" +msgstr "%1 (jaggy)" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:58 +msgid "JACK latency" +msgstr "Latència del JACK" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:61 +msgid "" +"Use the \"Fetch JACK latencies\" button to discover the latency values set " +"at\n" +"the sequencer. It's recommended that you use the returned values but it's " +"also\n" +"possible to override them manually using the sliders. Note that if you " +"change\n" +"your JACK server parameters you should always fetch the latency values " +"again.\n" +"The latency values will be stored by Rosegarden for use next time." +msgstr "" +"Fes servir el botó \"Comprova les latències del JACK\" per veure quines \n" +"latències fa servir el seqüenciador. Es recomana que utilitzeu aquests \n" +"valors, tot i que podeu modificar-los. Si canvieu els valors, haureu de " +"tornar \n" +"a comprovar les latències del JACK de nou. Els valors de latències les " +"desa \n" +"el Rosegarden per utilitzar-les la propera vegada." + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:65 +msgid "JACK playback latency (in ms)" +msgstr "Latència de reproducció del JACK (en ms)" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:66 +msgid "JACK record latency (in ms)" +msgstr "Latència de gravació del JACK (en ms)" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:68 +msgid "Fetch JACK latencies" +msgstr "Comprova les latències del JACK" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:121 +msgid "JACK Latency" +msgstr "Latència del JACK" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:92 +#, fuzzy +msgid "Audio preview scale" +msgstr "Nivell d'àudio" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:96 +msgid "Linear - easier to see loud peaks" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:97 +msgid "Meter scaling - easier to see quiet activity" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:105 +#, fuzzy +msgid "Record audio files as" +msgstr "Grava el fitxer d'àudio com a:" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:107 +msgid "16-bit PCM WAV format (smaller files)" +msgstr "Format en 16-bit PCM WAV (fitxers més petits)" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:108 +msgid "32-bit float WAV format (higher quality)" +msgstr "Format en 32-bit decimals WAV (alta qualitat)" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:117 +msgid "External audio editor" +msgstr "Editor d'àudio extern" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:145 +msgid "Create JACK outputs" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:150 +#, fuzzy +msgid "for individual audio instruments" +msgstr "per a cada instrument" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:157 +#, fuzzy +msgid "for submasters" +msgstr "Cap submaster" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:184 +#, fuzzy +msgid "" +"Rosegarden can start the JACK audio daemon (jackd) for you automatically if " +"it isn't already running when Rosegarden starts.\n" +"\n" +"This is recommended for beginners and those who use Rosegarden as their main " +"audio application, but it might not be to the liking of advanced users.\n" +"\n" +"If you want to start JACK automatically, make sure the command includes a " +"full path where necessary as well as any command-line arguments you want to " +"use.\n" +"\n" +"For example: /usr/local/bin/jackd -d alsa -d hw -r44100 -p 2048 -n 2\n" +"\n" +msgstr "" +"El Rosegarden pot iniciar el servei d'àudio JACK (jackd) per tu, \n" +"automàticament, si aquest no es troba en l'inici del Rosegarden.\n" +"\n" +"Aquesta opció és la recomanada pels principiants i aquells qui volen \n" +"fer servir el Rosegarden com a principal aplicació d'àudio, però no per a " +"usuaris avançats.\n" +"\n" +"Si voleu que s'iniciï el JACK automàticament, cal que informeu la " +"correctament \n" +"de quina és la línia d'ordres per engagar-lo.\n" +"\n" +"Per exemple: /usr/local/bin/jackd -d alsa -d hw -r44100 -p 2048 -n 2\n" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:196 +msgid "Start JACK when Rosegarden starts" +msgstr "Inicia el JACK quan s'iniciï el Rosegarden" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:201 +msgid "JACK command" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:214 +#, fuzzy +msgid "JACK Startup" +msgstr "Inici" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:224 +msgid "External audio editor path" +msgstr "Ubicació de l'editor d'àudio extern" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:262 +msgid "External audio editor \"%1\" not found or not executable" +msgstr "" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:70 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:448 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:863 +msgid "Add New Color" +msgstr "Afegeix un nou color" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:74 +msgid "Delete Color" +msgstr "Suprimeix el color" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:93 +msgid "Color Map" +msgstr "Mapa de colors" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:128 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:983 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:882 +msgid "New Color Name" +msgstr "Anomena el color" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:130 +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:59 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:984 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:883 +#: ../src/gui/studio/DeviceManagerDialog.cpp:115 +#: ../src/gui/studio/DeviceManagerDialog.cpp:174 +msgid "New" +msgstr "Nou" + +#: ../src/gui/configuration/LatencyConfigurationPage.h:62 +msgid "Latency" +msgstr "Latència" + +#: ../src/gui/configuration/LatencyConfigurationPage.h:63 +msgid "Sequencer Latency" +msgstr "Latència del seqüenciador" + +#: ../src/gui/configuration/ColourConfigurationPage.h:61 +msgid "Color Settings" +msgstr "Configuració dels colors" + +#: ../src/gui/studio/MidiDeviceListViewItem.cpp:55 +#: ../src/gui/studio/MidiKeyMapListViewItem.cpp:44 +msgid "Key Mapping" +msgstr "Dreceres" + +#: ../src/gui/studio/BankEditorDialog.cpp:97 +msgid "Manage MIDI Banks and Programs" +msgstr "Gestiona els bancs i els programes MIDI" + +#: ../src/gui/studio/BankEditorDialog.cpp:128 +msgid "MIDI Device" +msgstr "Dispositiu MIDI" + +#: ../src/gui/studio/BankEditorDialog.cpp:130 +#: ../src/gui/studio/BankEditorDialog.cpp:219 +msgid "MSB" +msgstr "MSB" + +#: ../src/gui/studio/BankEditorDialog.cpp:131 +#: ../src/gui/studio/BankEditorDialog.cpp:218 +msgid "LSB" +msgstr "LSB" + +#: ../src/gui/studio/BankEditorDialog.cpp:140 +msgid "Add Bank" +msgstr "Afegeix un dispositiu" + +#: ../src/gui/studio/BankEditorDialog.cpp:141 +msgid "Add Key Mapping" +msgstr "Afegeix una drecera" + +#: ../src/gui/studio/BankEditorDialog.cpp:153 +msgid "Add a Bank to the current device" +msgstr "Afegeix un banc al dispositiu actual" + +#: ../src/gui/studio/BankEditorDialog.cpp:157 +msgid "Add a Percussion Key Mapping to the current device" +msgstr "Afegeix una drecera de percussió per al dispositiu actual" + +#: ../src/gui/studio/BankEditorDialog.cpp:161 +msgid "Delete the current Bank or Key Mapping" +msgstr "Suprimeix el banc o drecera actuals" + +#: ../src/gui/studio/BankEditorDialog.cpp:165 +msgid "Delete all Banks and Key Mappings from the current Device" +msgstr "Esborra tots els bancs o dreceres del dispositiu actual" + +#: ../src/gui/studio/BankEditorDialog.cpp:167 +#: ../src/gui/studio/DeviceManagerDialog.cpp:117 +msgid "Import..." +msgstr "Importa..." + +#: ../src/gui/studio/BankEditorDialog.cpp:168 +#: ../src/gui/studio/DeviceManagerDialog.cpp:118 +msgid "Export..." +msgstr "Exporta..." + +#: ../src/gui/studio/BankEditorDialog.cpp:176 +msgid "" +"Import Bank and Program data from a Rosegarden file to the current Device" +msgstr "" +"Importa dades del banc i del programa des d'un fitxer del Rosegarden cap al " +"dispositiu actual" + +#: ../src/gui/studio/BankEditorDialog.cpp:179 +msgid "" +"Export all Device and Bank information to a Rosegarden format interchange " +"file" +msgstr "" +"Exporta tota la informació del dispositiu i del banc a un fitxer del " +"Rosegarden amb format d'intercanvi." + +#: ../src/gui/studio/BankEditorDialog.cpp:190 +msgid "Copy all Program names from current Bank to clipboard" +msgstr "Copia tots els noms de programa del banc actual al porta-retalls" + +#: ../src/gui/studio/BankEditorDialog.cpp:194 +msgid "Paste Program names from clipboard to current Bank" +msgstr "Enganxa els noms de programa del porta-retalls al banc actual" + +#: ../src/gui/studio/BankEditorDialog.cpp:216 +msgid "Show Variation list based on " +msgstr "Mostra la llista de variacions basades en " + +#: ../src/gui/studio/BankEditorDialog.cpp:1010 +msgid "" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1046 +msgid "" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1048 +msgid "" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1089 +msgid "Really delete this bank?" +msgstr "Confirmeu l'eliminació d'aquest banc?" + +#: ../src/gui/studio/BankEditorDialog.cpp:1137 +msgid "Really delete this key mapping?" +msgstr "Voleu suprimir aquest banc?" + +#: ../src/gui/studio/BankEditorDialog.cpp:1187 +msgid "Really delete all banks for " +msgstr "Confirmeu l'eliminació de tots els bancs per a " + +#: ../src/gui/studio/BankEditorDialog.cpp:1476 +msgid "Import Banks from Device in File" +msgstr "Importa bancs" + +#: ../src/gui/studio/BankEditorDialog.cpp:1623 +#: ../src/gui/studio/DeviceManagerDialog.cpp:770 +msgid "Export Device as..." +msgstr "Exporta el dispositiu com..." + +#: ../src/gui/studio/BankEditorDialog.cpp:1694 +msgid "" +"There are unsaved changes.\n" +"Do you want to apply the changes before exiting the Bank Editor or discard " +"the changes ?" +msgstr "" +"Heu fet canvis però no els heu desat.\n" +"Voleu aplicar els canvis abans de sortir de l'editor de bancs, o voleu " +"descartar els canvis?" + +#: ../src/gui/studio/BankEditorDialog.cpp:1697 +msgid "Unsaved Changes" +msgstr "Canvis sense desar" + +#: ../src/gui/studio/NameSetEditor.cpp:68 +msgid "Librarian" +msgstr "Bibliotecari" + +#: ../src/gui/studio/NameSetEditor.cpp:75 +msgid "Email" +msgstr "Correu electrònic" + +#: ../src/gui/studio/NameSetEditor.cpp:80 +msgid "" +"The librarian maintains the Rosegarden device data for this device.\n" +"If you've made modifications to suit your own device, it might be worth\n" +"liaising with the librarian in order to publish your information for the " +"benefit\n" +"of others." +msgstr "" +"El bibliotecari manté la informació la informació del dispositiu.\n" +"Si heu fet modificacions per adequar-la al vostre propi dispositiu, \n" +"pot ser interessant comunicar-ho al bibliotecari per a benefici d'altres." + +#: ../src/gui/studio/MidiBankListViewItem.cpp:51 +#: ../src/gui/studio/MidiDeviceListViewItem.cpp:48 +msgid "Percussion Bank" +msgstr "Banc de percussió" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:84 +#: ../src/gui/studio/MidiBankListViewItem.cpp:51 +#: ../src/gui/studio/MidiDeviceListViewItem.cpp:48 +msgid "Bank" +msgstr "Banc" + +#: ../src/gui/studio/ChangeRecordDeviceCommand.h:39 +msgid "Change Record Device" +msgstr "Canvia el dispositiu de registre" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:61 +#: ../src/gui/studio/DeviceManagerDialog.cpp:96 +msgid "Manage MIDI Devices" +msgstr "Gestiona els dispositius MIDI" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:98 +msgid "Play devices" +msgstr "Dispositius de reproducció" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:76 +#: ../src/gui/studio/DeviceManagerDialog.cpp:106 +#: ../src/gui/studio/DeviceManagerDialog.cpp:165 +msgid "Connection" +msgstr "Connexió" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:119 +msgid "Banks..." +msgstr "Bancs..." + +#: ../src/gui/studio/DeviceManagerDialog.cpp:120 +msgid "Control Events..." +msgstr "Esdeveniments de control..." + +#: ../src/gui/studio/DeviceManagerDialog.cpp:126 +msgid "Create a new Play device" +msgstr "Crea un nou dispositiu de reproducció" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:129 +#: ../src/gui/studio/DeviceManagerDialog.cpp:184 +msgid "Delete the selected device" +msgstr "Suprimeix el dispositiu seleccionat" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:132 +msgid "" +"Import Bank, Program and Controller data from a Rosegarden file to the " +"selected device" +msgstr "" +"Importa les dades del banc, del programa i del controlador des d'un fitxer " +"del Rosegarden per al dispositiu actual" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:135 +msgid "Export Bank and Controller data to a Rosegarden interchange file" +msgstr "" +"Exporta les dades de banc i de controlador a un fitxer de intercanvi del " +"Rosegarden" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:138 +msgid "View and edit Banks and Programs for the selected device" +msgstr "" +"Visualitza i edita els bancs i els programes per al dispositiu seleccionat" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:141 +msgid "" +"View and edit Control Events for the selected device - these are special " +"Event types that you can define against your device and control through " +"Control Rulers or the Instrument Parameter Box " +msgstr "" +"Visualitza i edita els esdeveniments de control del dispositiu seleccionat\n" +"(aquests esdeveniments són d'un tipus especial que podeu definir contra\n" +"el dispositiu, i controlar mitjançant els regles de control i el quadre de\n" +"paràmetres de l'instrument)." + +#: ../src/gui/studio/DeviceManagerDialog.cpp:156 +msgid "Record devices" +msgstr "Dispositius de registre" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:164 +msgid "Current" +msgstr "Actual" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:181 +msgid "Create a new Record device" +msgstr "Crea un nou dispositiu de registre" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:360 +#: ../src/gui/studio/DeviceEditorDialog.cpp:378 +#: ../src/gui/studio/DeviceManagerDialog.cpp:486 +#: ../src/gui/studio/DeviceManagerDialog.cpp:501 +msgid "New Device" +msgstr "Nou dispositiu" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:703 +msgid "Import from Device in File" +msgstr "Importa des del dispositiu en el fitxer" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:55 +msgid "Remap Instrument assigments..." +msgstr "Redefineix l'assignació dels instruments." + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:62 +msgid "Device or Instrument" +msgstr "Dispositiu o instrument" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:65 +msgid "Remap Tracks by all Instruments on a Device or by single Instrument" +msgstr "" +"Redefineix les pistes, per a tots els instruments o bé per a un de sol, en " +"un dispositiu" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:74 +msgid "Choose Source and Destination" +msgstr "Tria l'origen i la destinació" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:77 +msgid "From" +msgstr "Des de" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:78 +msgid "To" +msgstr "Cap a" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:120 +#: ../src/gui/studio/RemapInstrumentDialog.cpp:121 +msgid "" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:155 +msgid "Show Audio &Faders" +msgstr "Mostra els reguladors d'à&udio" + +#: ../src/gui/studio/AudioMixerWindow.cpp:160 +msgid "Show Synth &Faders" +msgstr "Mostra els reguladors del &sintetitzador" + +#: ../src/gui/studio/AudioMixerWindow.cpp:165 +msgid "Show &Submasters" +msgstr "Mostra els &submasters" + +#: ../src/gui/studio/AudioMixerWindow.cpp:170 +msgid "Show &Plugin Buttons" +msgstr "Mostra els botons de &connector" + +#: ../src/gui/studio/AudioMixerWindow.cpp:175 +msgid "Show &Unassigned Faders" +msgstr "Mostra els reguladors de corredora n&o assignats" + +#: ../src/gui/studio/AudioMixerWindow.cpp:184 +#, c-format +msgid "" +"_n: 1 Input\n" +"%n Inputs" +msgstr "" +"_n: 1 entrada\n" +"%n entrades" + +#: ../src/gui/studio/AudioMixerWindow.cpp:194 +msgid "No Submasters" +msgstr "Cap submaster" + +#: ../src/gui/studio/AudioMixerWindow.cpp:203 +#, c-format +msgid "" +"_n: 1 Submaster\n" +"%n Submasters" +msgstr "" +"_n: 1 Submaster\n" +"%n Submasters" + +#: ../src/gui/studio/AudioMixerWindow.cpp:279 +msgid "Audio Mixer" +msgstr "Mesclador d'àudio" + +#: ../src/gui/studio/AudioMixerWindow.cpp:311 +msgid "Record input source" +msgstr "Origen de l'entrada del registre" + +#: ../src/gui/studio/AudioMixerWindow.cpp:322 +msgid "Output destination" +msgstr "Destinació de la sortida" + +#: ../src/gui/studio/AudioMixerWindow.cpp:336 +#: ../src/gui/studio/AudioMixerWindow.cpp:495 +msgid "Pan" +msgstr "Balanç" + +#: ../src/gui/studio/AudioMixerWindow.cpp:355 +msgid "Mono or stereo" +msgstr "Mono o estéreo" + +#: ../src/gui/studio/AudioMixerWindow.cpp:364 +#: ../src/gui/studio/AudioMixerWindow.cpp:513 +msgid "Mute" +msgstr "Silencia" + +#: ../src/gui/studio/AudioMixerWindow.cpp:373 rc.cpp:408 +#, no-c-format +msgid "Solo" +msgstr "Solo" + +#: ../src/gui/studio/AudioMixerWindow.cpp:382 +msgid "Arm recording" +msgstr "Arma l'enregistrament" + +#: ../src/gui/studio/AudioMixerWindow.cpp:400 +#, c-format +msgid "Audio %1" +msgstr "Àudio %1" + +#: ../src/gui/studio/AudioMixerWindow.cpp:404 +#, c-format +msgid "Synth %1" +msgstr "Sint.%1" + +#: ../src/gui/studio/AudioMixerWindow.cpp:578 +#: ../src/gui/studio/AudioMixerWindow.cpp:580 +msgid "Audio master output level" +msgstr "Nivell principal de la sortida d'àudio" + +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:71 +msgid "Manage Synth Plugins" +msgstr "Gestiona els connectors dels sintetitzadors" + +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:78 +msgid "Synth plugins" +msgstr "Connectors de sintetitzadors" + +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:145 +msgid "Controls" +msgstr "Controls" + +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:152 +msgid "Editor >>" +msgstr "Editor >>" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:66 +#: ../src/gui/studio/MidiProgramsEditor.cpp:169 +msgid "Bank and Program details" +msgstr "Detalls del banc i del programa" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:67 +msgid "Programs" +msgstr "Programes" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2711 +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:88 +#: ../src/gui/studio/MidiProgramsEditor.cpp:93 +msgid "Percussion" +msgstr "Percussió" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:99 +msgid "MSB Value" +msgstr "Valor MSB" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:107 +msgid "" +"Selects a MSB controller Bank number (MSB/LSB pairs are always unique for " +"any Device)" +msgstr "" +"Selecciona un número de banc de controlador MSB (les parelles MSB/LSB són " +"sempre úniques per a qualsevol dispositiu)" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:111 +msgid "" +"Selects a LSB controller Bank number (MSB/LSB pairs are always unique for " +"any Device)" +msgstr "" +"Selecciona un número de banc de controlador LSB (les parelles MSB/LSB són " +"sempre úniques per a qualsevol dispositiu)" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:116 +msgid "LSB Value" +msgstr "Valor LSB" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:254 +#: ../src/gui/studio/MidiProgramsEditor.cpp:541 +#, c-format +msgid "Key Mapping: %1" +msgstr "Drecera: %1" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:476 +msgid "" +msgstr "" + +#: ../src/gui/studio/MidiKeyMappingEditor.cpp:57 +#: ../src/gui/studio/MidiKeyMappingEditor.cpp:81 +msgid "Key Mapping details" +msgstr "Detalls de la drecera" + +#: ../src/gui/studio/MidiKeyMappingEditor.cpp:58 +msgid "Pitches" +msgstr "Altures" + +#: ../src/gui/studio/MidiMixerWindow.cpp:152 +msgid "MIDI Mixer" +msgstr "Mesclador de MIDI" + +#: ../src/gui/studio/MidiMixerWindow.cpp:199 +msgid "Volume" +msgstr "Volum" + +#: ../src/gui/studio/AudioPluginOSCGUIManager.cpp:444 +msgid "Rosegarden Plugin" +msgstr "Connector del Rosegarden" + +#: ../src/gui/studio/AudioPluginOSCGUIManager.cpp:447 +#, c-format +msgid "Rosegarden: %1" +msgstr "Rosegarden: %1" + +#: ../src/gui/studio/AudioPluginOSCGUIManager.cpp:449 +msgid "Rosegarden: %1: %2" +msgstr "Rosegarden: %1: %2" + +#: ../src/gui/studio/AudioPluginOSCGUIManager.cpp:450 +#, c-format +msgid "Plugin slot %1" +msgstr "Ranura de connector %1" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:92 +msgid "Add Play Device" +msgstr "Afegeix el dispositiu de reproducció" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:93 +msgid "Add Record Device" +msgstr "Afegeix el dispositiu de registre" + +#: ../src/commands/studio/CreateOrDeleteDeviceCommand.h:68 +#: ../src/gui/studio/DeviceEditorDialog.cpp:94 +msgid "Delete Device" +msgstr "Suprimeix el dispositiu" + +#: ../src/gui/editors/segment/PlayList.cpp:77 +#: ../src/gui/studio/DeviceEditorDialog.cpp:156 +#: ../src/gui/studio/DeviceEditorDialog.cpp:361 +msgid "Play" +msgstr "Reprodueix" + +#: ../src/commands/segment/SegmentRecordCommand.cpp:37 +#: ../src/gui/studio/DeviceEditorDialog.cpp:156 +#: ../src/gui/studio/DeviceEditorDialog.cpp:379 rc.cpp:394 +#, no-c-format +msgid "Record" +msgstr "Registra" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:256 +msgid "Apply pending changes?" +msgstr "Aplica els canvis pendents?" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:359 +#: ../src/gui/studio/DeviceEditorDialog.cpp:377 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentEraser.cpp:82 +msgid "Click on a segment to delete it" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSplitter.cpp:166 +msgid "" +"Click on a segment to split it in two; hold Shift to avoid snapping to beat " +"grid" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSplitter.cpp:168 +msgid "Click on a segment to split it in two" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:81 +#, fuzzy +msgid "Click and drag to select segments" +msgstr "Fes clic per seleccionar un tipus de lletra" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentMover.cpp:154 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:238 +msgid "Move Segment" +msgstr "Mou el fragment" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentMover.cpp:154 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:239 +msgid "Move Segments" +msgstr "Mou els fragments" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:217 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:169 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:141 +#: ../src/gui/editors/segment/segmentcanvas/SegmentMover.cpp:210 +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:255 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:359 +msgid "Hold Shift to avoid snapping to beat grid" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:485 +msgid "" +"Click and drag to select segments; middle-click and drag to draw an empty " +"segment" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:384 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:502 +msgid "" +"Click and drag to resize a segment; hold Ctrl as well to rescale its contents" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:386 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:504 +msgid "Click and drag to rescale segment" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:509 +msgid "Click and drag to move segments; hold Ctrl as well to copy them" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:511 +msgid "Click and drag to copy segments" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:515 +msgid "" +"Click and drag to move segment; hold Ctrl as well to copy it; double-click " +"to edit" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:517 +msgid "Click and drag to copy segment" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:157 +#, fuzzy +msgid "" +"The audio file path does not exist or is not writable.\n" +"You must set the audio file path to a valid directory in Document Properties " +"before rescaling an audio file.\n" +"Would you like to set it now?" +msgstr "" +"La ubicació del fitxer d'àudio no existeix o no s'hi pot escriure.\n" +"Seleccioneu una ubicació correcta, en les propietats del document abans de " +"gravar l'àudio.\n" +"Voleu configurar-ho ara?" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:261 +msgid "" +"Hold Shift to avoid snapping to beat grid; hold Ctrl as well to rescale " +"contents" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentMover.cpp:325 +msgid "Click and drag to move a segment" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentPencil.cpp:225 +msgid "Hold Shift to avoid snapping to bar lines" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentPencil.cpp:283 +#, fuzzy +msgid "Record or drop audio here" +msgstr "Grava o MIDI o àudio" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentPencil.cpp:289 +msgid "" +"Click and drag to draw an empty segment. Control+Alt click and drag to draw " +"in overlap mode." +msgstr "" + +#: ../src/gui/editors/segment/TrackLabel.cpp:77 +msgid "" +"Click and hold with left mouse button to assign this Track to an Instrument." +msgstr "" +"Feu clic durant uns segons amb el botó esquerra per assignar aquesta pista a " +"un instrument." + +#: ../src/gui/editors/segment/TrackLabel.cpp:191 +msgid "Change track name" +msgstr "Canvia el nom de la pista" + +#: ../src/gui/editors/segment/TrackLabel.cpp:192 +msgid "Enter new track name" +msgstr "Introduïu un nom nou per a la pista" + +#: ../src/gui/editors/segment/TrackEditor.cpp:648 +msgid "Turn Repeating Segment into Real Copies" +msgstr "Converteix el fragment repetit en un còpia" + +#: ../src/gui/editors/segment/TrackEditor.cpp:650 +msgid "Turn Repeating Segments into Real Copies" +msgstr "Converteix els fragments repetits en còpies" + +#: ../src/gui/editors/segment/TrackEditor.cpp:814 +msgid "" +"You can't drop files into Rosegarden from this client. Try using Konqueror " +"instead." +msgstr "" +"No podeu arrossegar fitxers cap al Rosegarden des d'aquest client. Proveu-ho " +"de fer amb el Konqueror." + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:85 +msgid "Manage Triggered Segments" +msgstr "Gestiona els fragments activables" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:89 +msgid "ID" +msgstr "Id" + +#: ../src/gui/editors/eventlist/EventView.cpp:735 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:93 +msgid "Base velocity" +msgstr "Velocitat de base" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:94 +msgid "Triggers" +msgstr "Activadors" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:115 +msgid "Add a Triggered Segment" +msgstr "Afegeix un fragment activable" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:119 +msgid "Delete a Triggered Segment" +msgstr "Suprimeix un fragment activable" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:123 +msgid "Delete All Triggered Segments" +msgstr "Suprimeix tots els fragment activables" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:127 +msgid "Close the Triggered Segment Manager" +msgstr "Tanca tots els fragment activables" + +#: ../src/gui/editors/eventlist/EventView.cpp:169 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:245 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:248 +msgid "" +"_n: %1 on 1 track\n" +"%1 on %n tracks" +msgstr "" +"%1 en 1 pista\n" +"%1 en %n pistes" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:284 +msgid "" +"This will remove all triggered segments from the whole composition. Are you " +"sure?" +msgstr "" +"Aquesta acció eliminarà tots els fragments activables de tota la composició. " +"Voleu continuar?" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:288 +msgid "Remove all triggered segments" +msgstr "S'estan suprimint tots els fragment activables" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:313 +msgid "Trigger Segment Duration" +msgstr "Durada del fragment activable" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:336 +#, fuzzy, c-format +msgid "" +"_n: This triggered segment is used 1 time in the current composition. Are " +"you sure you want to remove it?\n" +"This triggered segment is used %n times in the current composition. Are you " +"sure you want to remove it?" +msgstr "" +"_n: Aquest fragment activable només es fa servir un únic cop en tota la " +"composició. Voleu suprimir-lo tot i així?\n" +" Aquest fragment activable es fa servir %n cops en la composició. Voleu " +"suprimir-lo tot i així?" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:400 +msgid "Pa&ste as New Triggered Segment" +msgstr "Enganxa com un nou fragment activable" + +#: ../src/gui/editors/eventlist/EventView.cpp:1169 +#: ../src/gui/editors/segment/MarkerEditor.cpp:399 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:412 +#: ../src/gui/editors/tempo/TempoView.cpp:622 +msgid "&Musical Times" +msgstr "Temps &musical" + +#: ../src/gui/editors/eventlist/EventView.cpp:1179 +#: ../src/gui/editors/segment/MarkerEditor.cpp:409 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:422 +#: ../src/gui/editors/tempo/TempoView.cpp:632 +msgid "&Real Times" +msgstr "Temps &reals" + +#: ../src/gui/editors/eventlist/EventView.cpp:1189 +#: ../src/gui/editors/segment/MarkerEditor.cpp:419 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:432 +#: ../src/gui/editors/tempo/TempoView.cpp:642 +msgid "Ra&w Times" +msgstr "Temps t&otal" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:83 +msgid "Manage Markers" +msgstr "Gestiona els marcadors" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:86 +msgid "Marker time " +msgstr "Temps del marcador " + +#: ../src/gui/editors/segment/MarkerEditor.cpp:87 +#, fuzzy +msgid "Marker text " +msgstr "Temps del marcador " + +#: ../src/gui/editors/segment/MarkerEditor.cpp:88 +msgid "Marker description " +msgstr "Descripció del marcador " + +#: ../src/gui/editors/segment/MarkerEditor.cpp:95 +msgid "Pointer position" +msgstr "Posició del punter" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:100 +msgid "Real time:" +msgstr "Temps real:" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:103 +msgid "In measure:" +msgstr "En el compàs:" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:121 +msgid "Add a Marker" +msgstr "Afegeix un marcador" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:125 +msgid "Delete a Marker" +msgstr "Suprimeix un marcador" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:129 +msgid "Delete All Markers" +msgstr "Suprimeix tots els marcadors" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:133 +msgid "Close the Marker Editor" +msgstr "Tanca l'editor de marcadors" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:296 +msgid "Remove all markers" +msgstr "Suprimeix tots els marcadors" + +#: ../src/gui/editors/segment/PlayList.cpp:76 +msgid "Add..." +msgstr "Afegeix..." + +#: ../src/gui/editors/segment/PlayList.cpp:78 +msgid "Move Up" +msgstr "Mou amunt" + +#: ../src/gui/editors/segment/PlayList.cpp:79 +msgid "Move Down" +msgstr "Mou avall" + +#: ../src/gui/editors/segment/PlayList.cpp:124 +msgid "Select one or more Rosegarden files" +msgstr "Selecciona un o més fitxers del Rosegarden" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:73 +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:55 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:89 +msgid "Manage Control Events" +msgstr "Gestiona els esdeveniments de control" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:91 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:99 +msgid " Control Events for %1 (device %2)" +msgstr " Esdeveniments de control per al %1 (dispositiu %2)" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:104 +msgid "Control Event name " +msgstr "Nom de l'esdeveniment de control " + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:105 +msgid "Control Event type " +msgstr "Tipus d'esdeveniment de control " + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:106 +msgid "Control Event value " +msgstr "Valor de l'esdeveniment de control " + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:107 +msgid "Description " +msgstr "Descripció " + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:108 +msgid "Min " +msgstr "Mín. " + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:109 +msgid "Max " +msgstr "Màx. " + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:110 +msgid "Default " +msgstr "Per omissió " + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:111 +msgid "Color " +msgstr "Color " + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:112 +msgid "Position on instrument panel" +msgstr "Posició en el plafó de l'instrument" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:136 +msgid "Add a Control Parameter to the Studio" +msgstr "Afegeix un paràmetre de control a l'estudi" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:140 +msgid "Delete a Control Parameter from the Studio" +msgstr "Elimina un paràmetre de control de l'estudi" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:144 +msgid "Close the Control Parameter editor" +msgstr "Tanca l'editor de paràmetres de control" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:221 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:62 +msgid "Edit Control Parameter" +msgstr "Edita el paràmetre de control" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:71 +msgid "Control Event Properties" +msgstr "Propietats de l'esdeveniment de control" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:77 +msgid "Name:" +msgstr "Nom:" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:93 +msgid "Control Event value:" +msgstr "Valor de l'esdeveniment de control:" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:97 +msgid "Minimum value:" +msgstr "Valor mínim:" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:101 +msgid "Maximum value:" +msgstr "Valor màxim:" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:105 +msgid "Default value:" +msgstr "Valor per omissió:" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:109 +msgid "Color:" +msgstr "Color:" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:113 +msgid "Instrument Parameter Box position:" +msgstr "Posició de la caixa de paràmetres de l'instrument" + +#: ../src/gui/editors/segment/TrackButtons.cpp:209 +#: ../src/gui/editors/segment/TrackButtons.cpp:585 +#: ../src/gui/editors/segment/TrackButtons.cpp:935 +#: ../src/gui/editors/segment/TrackButtons.cpp:1127 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/TrackButtons.cpp:352 +#: ../src/gui/editors/segment/TrackButtons.cpp:1094 +msgid "" +msgstr "<àudio sense nom>" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:130 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:662 +#: ../src/gui/editors/segment/TrackButtons.cpp:354 +#: ../src/gui/editors/segment/TrackButtons.cpp:1096 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/TrackButtons.cpp:1058 +msgid "Mute track" +msgstr "Posa la pista en silenci" + +#: ../src/gui/editors/segment/TrackButtons.cpp:1063 +msgid "Record on this track" +msgstr "Grava en aquesta pista" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:88 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:1015 +#, fuzzy +msgid "Segment" +msgstr "Fra&gment" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:89 +#, fuzzy +msgid "Segment Parameters" +msgstr "Paràmetres de l'instrument" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:366 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:697 +msgid "%1 ms" +msgstr "%1 ms" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1031 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:910 +msgid "Highest playable note" +msgstr "" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1051 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:930 +msgid "Lowest playable note" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:93 +#, fuzzy +msgid "Track Parameters" +msgstr "Paràmetres de la graella" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:137 +#, fuzzy +msgid "Playback parameters" +msgstr "Volum de reproducció" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:172 +#, fuzzy +msgid "Recording filters" +msgstr "Dispositiu de gravació:" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:191 +msgid "Channel" +msgstr "Canal" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:203 +#, fuzzy +msgid "Staff export options" +msgstr "Mostra les opcions avançades" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:220 +#, fuzzy +msgid "Notation size:" +msgstr "Temps de notació:" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:225 +#, fuzzy +msgid "Small" +msgstr "Correu electrònic" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:226 +msgid "Tiny" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:233 +#, fuzzy +msgid "Bracket type:" +msgstr "Tipus de text:" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:237 +msgid "-----" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:238 +msgid "[----" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:239 +msgid "----]" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:240 +msgid "[---]" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:241 +msgid "{----" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:242 +msgid "----}" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:243 +msgid "{[---" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:244 +msgid "---]}" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:253 +#, fuzzy +msgid "Create segments with" +msgstr "Crea un fragment" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:264 +#, fuzzy +msgid "Preset" +msgstr "silenci" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:272 +#, fuzzy +msgid "Load" +msgstr "Carrega les dades" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:282 +#, fuzzy +msgid "treble" +msgstr "Soprano" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:283 +#, fuzzy +msgid "bass" +msgstr "Baix" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:284 +#, fuzzy +msgid "crotales" +msgstr "&Octaves" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:285 +msgid "xylophone" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:286 +msgid "guitar" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:287 +msgid "contrabass" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:288 +msgid "celesta" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:289 +msgid "old celesta" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:290 +msgid "french" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:291 +msgid "soprano" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:292 +#, fuzzy +msgid "mezzosoprano" +msgstr "S&forzando" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:293 +#, fuzzy +msgid "alto" +msgstr "Alto" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:294 +#, fuzzy +msgid "tenor" +msgstr "Tenor" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:295 +#, fuzzy +msgid "baritone" +msgstr "Variació" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:296 +#, fuzzy +msgid "varbaritone" +msgstr "Variació" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:297 +#, fuzzy +msgid "subbass" +msgstr "Baix" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:327 +#, fuzzy +msgid "Lowest" +msgstr "Baixa" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:329 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:336 +msgid "---" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:331 +msgid "Choose the lowest suggested playable note, using a staff" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:334 +#, fuzzy +msgid "Highest" +msgstr "Alta" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:338 +msgid "Choose the highest suggested playable note, using a staff" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:666 +msgid "[ Track %1 - %2 ]" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:985 +msgid "The instrument preset database is corrupt. Check your installation." +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:173 +#: ../src/gui/editors/parameters/InstrumentParameterBox.cpp:54 +msgid "Instrument Parameters" +msgstr "Paràmetres de l'instrument" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:85 +msgid "Variation" +msgstr "Variació" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:86 +msgid "Program" +msgstr "Programa" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:87 +#, fuzzy +msgid "Channel out" +msgstr "Canal" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:215 +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:221 +msgid "[ %1 ]" +msgstr "[ %1 ]" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:58 +#: ../src/gui/editors/matrix/MatrixMover.cpp:71 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:67 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:77 +msgid "Switch to Draw Tool" +msgstr "Agafa l'eina de dibuixar" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:75 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:69 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:71 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:81 +#: ../src/gui/editors/notation/ClefInserter.cpp:57 +#: ../src/gui/editors/notation/GuitarChordInserter.cpp:63 +#: ../src/gui/editors/notation/NotationSelector.cpp:87 +#: ../src/gui/editors/notation/NoteInserter.cpp:113 +#: ../src/gui/editors/notation/RestInserter.cpp:72 +#: ../src/gui/editors/notation/TextInserter.cpp:61 +msgid "Switch to Erase Tool" +msgstr "Agafa l'eina d'esborrar" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:62 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:73 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:75 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:85 +msgid "Switch to Move Tool" +msgstr "Agafa l'eina de moure" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:68 +#: ../src/gui/editors/matrix/MatrixMover.cpp:81 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:79 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:93 +msgid "Switch to Resize Tool" +msgstr "Agafa l'eina de redimensionar" + +#: ../src/gui/editors/matrix/MatrixSelector.cpp:446 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:579 +msgid "Click and drag to select; middle-click and drag to draw new note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixResizer.cpp:324 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:597 +msgid "Click and drag to resize selected notes" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixSelector.cpp:599 +msgid "Click and drag to resize note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:471 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:604 +msgid "Click and drag to move selected notes; hold Ctrl as well to copy" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:473 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:606 +#, fuzzy +msgid "Click and drag to copy selected notes" +msgstr "Fes clic per seleccionar un tipus de lletra" + +#: ../src/gui/editors/matrix/MatrixSelector.cpp:610 +msgid "Click and drag to move note; hold Ctrl as well to copy" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixSelector.cpp:612 +msgid "Click and drag to copy note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:54 +#: ../src/gui/editors/matrix/MatrixMover.cpp:67 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:65 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:63 +#: ../src/gui/editors/notation/ClefInserter.cpp:53 +#: ../src/gui/editors/notation/GuitarChordInserter.cpp:59 +#: ../src/gui/editors/notation/NotationEraser.cpp:67 +#: ../src/gui/editors/notation/NoteInserter.cpp:109 +#: ../src/gui/editors/notation/RestInserter.cpp:68 +#: ../src/gui/editors/notation/TextInserter.cpp:57 +msgid "Switch to Select Tool" +msgstr "Agafa l'eina de seleccionar" + +#: ../src/gui/editors/matrix/MatrixResizer.cpp:218 +msgid "Resize Event" +msgstr "Redimensiona l'esdeveniment" + +#: ../src/gui/editors/matrix/MatrixResizer.cpp:221 +msgid "Resize Events" +msgstr "Redimensiona els esdeveniments" + +#: ../src/gui/editors/matrix/MatrixResizer.cpp:326 +#, fuzzy +msgid "Click and drag to resize a note" +msgstr "Fes clic per seleccionar un tipus de lletra" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:328 +#, fuzzy +msgid "Copy and Move Event" +msgstr "Mou l'esdeveniment" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:330 +#, fuzzy +msgid "Copy and Move Events" +msgstr "Mou els esdeveniments" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:334 +msgid "Move Event" +msgstr "Mou l'esdeveniment" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:336 +msgid "Move Events" +msgstr "Mou els esdeveniments" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:465 +msgid "Click and drag to move a note; hold Ctrl as well to copy it" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:467 +msgid "Click and drag to copy a note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixPainter.cpp:361 +msgid "Click and drag to draw a note; Shift to avoid snapping to grid" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixPainter.cpp:363 +msgid "Click and drag to draw a note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:437 +#: ../src/gui/editors/matrix/MatrixView.cpp:3053 +msgid "Couldn't apply piano roll layout" +msgstr "No s'ha pogut aplicar el format de rotlle de pianola" + +#: ../src/gui/editors/matrix/MatrixView.cpp:663 +msgid "Resi&ze" +msgstr "Redimensi&ona" + +#: ../src/gui/editors/matrix/MatrixView.cpp:669 +#: ../src/gui/editors/notation/NotationView.cpp:1919 +msgid "C&hord Insert Mode" +msgstr "Mode d'afegit d'&acords" + +#: ../src/gui/editors/matrix/MatrixView.cpp:676 +#: ../src/gui/editors/notation/NotationView.cpp:1778 +msgid "Ste&p Recording" +msgstr "Enregistrament &pas a pas" + +#: ../src/gui/editors/matrix/MatrixView.cpp:694 +msgid "&Legato" +msgstr "&Lligat" + +#: ../src/gui/editors/matrix/MatrixView.cpp:708 +#, fuzzy +msgid "Set to Current Velocity" +msgstr "Velocitat de base" + +#: ../src/gui/editors/matrix/MatrixView.cpp:712 +msgid "Set Event &Velocities..." +msgstr "Estableix la &velocitat dels esdeveniments..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:716 +msgid "Trigger Se&gment..." +msgstr "Activa el &fragment activable..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:720 +msgid "Remove Triggers..." +msgstr "Suprimeix els activadors..." + +#: ../src/gui/editors/eventlist/EventView.cpp:1153 +#: ../src/gui/editors/matrix/MatrixView.cpp:724 +#: ../src/gui/editors/tempo/TempoView.cpp:606 +msgid "Select &All" +msgstr "Selecciona-ho &tot" + +#: ../src/gui/editors/matrix/MatrixView.cpp:732 +#: ../src/gui/editors/notation/NotationView.cpp:2325 +msgid "Cursor &Back" +msgstr "Cursor &enrera" + +#: ../src/gui/editors/matrix/MatrixView.cpp:736 +#: ../src/gui/editors/notation/NotationView.cpp:2329 +msgid "Cursor &Forward" +msgstr "Cursor en&davant" + +#: ../src/gui/editors/matrix/MatrixView.cpp:740 +#: ../src/gui/editors/notation/NotationView.cpp:2333 +msgid "Cursor Ba&ck Bar" +msgstr "&Cursor al compàs anterior" + +#: ../src/gui/editors/matrix/MatrixView.cpp:744 +#: ../src/gui/editors/notation/NotationView.cpp:2337 +msgid "Cursor For&ward Bar" +msgstr "Cursor al &compàs següent" + +#: ../src/gui/editors/matrix/MatrixView.cpp:748 +#: ../src/gui/editors/notation/NotationView.cpp:2341 +msgid "Cursor Back and Se&lect" +msgstr "Cursor enrera i &selecciona" + +#: ../src/gui/editors/matrix/MatrixView.cpp:752 +#: ../src/gui/editors/notation/NotationView.cpp:2345 +msgid "Cursor Forward and &Select" +msgstr "Avança el cursor i &selecciona" + +#: ../src/gui/editors/matrix/MatrixView.cpp:756 +#: ../src/gui/editors/notation/NotationView.cpp:2349 +msgid "Cursor Back Bar and Select" +msgstr "Cursor al compàs anterior i selecciona" + +#: ../src/gui/editors/matrix/MatrixView.cpp:760 +#: ../src/gui/editors/notation/NotationView.cpp:2353 +msgid "Cursor Forward Bar and Select" +msgstr "Cursor al compàs següent i selecciona" + +#: ../src/gui/editors/matrix/MatrixView.cpp:764 +#: ../src/gui/editors/notation/NotationView.cpp:2363 +msgid "Cursor to St&art" +msgstr "Cursor &al començament" + +#: ../src/gui/editors/matrix/MatrixView.cpp:770 +#: ../src/gui/editors/notation/NotationView.cpp:2369 +msgid "Cursor to &End" +msgstr "Cursor al &final" + +#: ../src/gui/editors/matrix/MatrixView.cpp:776 +#: ../src/gui/editors/notation/NotationView.cpp:2391 +msgid "Cursor to &Playback Pointer" +msgstr "Cursor al &punt de reproducció" + +#: ../src/gui/editors/matrix/MatrixView.cpp:820 +#: ../src/gui/editors/notation/NotationView.cpp:2435 +msgid "Playback Pointer to &Cursor" +msgstr "Punt de reproducció al &cursor" + +#: ../src/gui/editors/matrix/MatrixView.cpp:826 +#: ../src/gui/editors/notation/NotationView.cpp:2441 +msgid "&Solo" +msgstr "&Solo" + +#: ../src/gui/editors/matrix/MatrixView.cpp:841 +#: ../src/gui/editors/notation/NotationView.cpp:2456 +msgid "Set Loop to Selection" +msgstr "Defineix la repetició en la selecció" + +#: ../src/gui/editors/matrix/MatrixView.cpp:845 +#: ../src/gui/editors/notation/NotationView.cpp:2460 +msgid "Clear L&oop" +msgstr "Neteja la &repetició" + +#: ../src/gui/editors/eventlist/EventView.cpp:1157 +#: ../src/gui/editors/matrix/MatrixView.cpp:849 +#: ../src/gui/editors/notation/NotationView.cpp:2464 +#: ../src/gui/editors/tempo/TempoView.cpp:610 +msgid "Clear Selection" +msgstr "Neteja la selecció" + +#: ../src/gui/editors/eventlist/EventView.cpp:1149 +#: ../src/gui/editors/matrix/MatrixView.cpp:854 +#: ../src/gui/editors/notation/NotationView.cpp:2471 +msgid "&Filter Selection" +msgstr "&Filtra la selecció" + +#: ../src/gui/editors/matrix/MatrixView.cpp:879 +msgid "&No Snap" +msgstr "&No desplacis" + +#: ../src/gui/editors/matrix/MatrixView.cpp:884 +msgid "Snap to Bea&t" +msgstr "&Quadra amb pulsació" + +#: ../src/gui/editors/matrix/MatrixView.cpp:888 +msgid "Snap to &Bar" +msgstr "Desplaça al &compàs" + +#: ../src/gui/editors/matrix/MatrixView.cpp:908 +#, fuzzy, c-format +msgid "Snap to %1" +msgstr "Desplaça a 1/2" + +#: ../src/gui/editors/matrix/MatrixView.cpp:917 +msgid "Show Instrument Parameters" +msgstr "Mostra els paràmetres de l'instrument" + +#: ../src/gui/editors/matrix/MatrixView.cpp:922 +#: ../src/gui/editors/notation/NotationView.cpp:1850 +msgid "Show Ch&ord Name Ruler" +msgstr "M&ostra el regle de noms d'acord" + +#: ../src/gui/editors/matrix/MatrixView.cpp:926 +#: ../src/gui/editors/notation/NotationView.cpp:1858 +msgid "Show &Tempo Ruler" +msgstr "Mostra el regle del &tempo" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1238 +#: ../src/gui/editors/notation/NotationView.cpp:3245 +#, c-format +msgid "" +"_n: 1 event selected \n" +" %n events selected " +msgstr "" +"_n: 1 esdeveniment seleccionat\n" +" %n esdeveniments seleccionats" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1241 +#: ../src/gui/editors/notation/NotationView.cpp:3247 +msgid " No selection " +msgstr " No hi ha cap selecció " + +#: ../src/gui/editors/matrix/MatrixView.cpp:1348 +#: ../src/gui/editors/matrix/MatrixView.cpp:1360 +#: ../src/gui/editors/matrix/MatrixView.cpp:2079 +#: ../src/gui/editors/notation/NotationView.cpp:5869 +msgid "Quantizing..." +msgstr "S'està quantificant..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:1370 +#: ../src/gui/editors/notation/NotationView.cpp:5407 +msgid "Collapsing notes..." +msgstr "S'està eliminant notes..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:1381 +msgid "Making legato..." +msgstr "S'està fent el legato..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:1476 +#, fuzzy +msgid "Note: %1 (%2.%3s)" +msgstr "Temps: %1 (%2.%3s)" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1531 +#: ../src/gui/editors/notation/NotationView.cpp:7206 +msgid "Time: %1 (%2.%3s)" +msgstr "Temps: %1 (%2.%3s)" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1604 +#: ../src/gui/editors/notation/NotationView.cpp:4744 +#: ../src/gui/editors/notation/NotationView.cpp:4773 +msgid "Cutting selection to clipboard..." +msgstr "S'està tallant la selecció al porta-retalls..." + +#: ../src/gui/editors/eventlist/EventView.cpp:912 +#: ../src/gui/editors/matrix/MatrixView.cpp:1636 +#: ../src/gui/editors/notation/NotationSelectionPaster.cpp:82 +msgid "Couldn't paste at this point" +msgstr "No s'ha pogut enganxar en aquest punt" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1647 +#: ../src/gui/editors/notation/NotationView.cpp:4754 +msgid "Deleting selection..." +msgstr "S'està eliminant la selecció..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:1833 +#: ../src/gui/editors/notation/NotationView.cpp:5617 +#, c-format +msgid "Unknown note insert action %1" +msgstr "Acció d'afegir una nota, desconeguda: %1" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1837 +#: ../src/gui/editors/matrix/MatrixView.cpp:2857 +#: ../src/gui/editors/notation/NotationView.cpp:5621 +msgid "Inserting note" +msgstr "S'està afegint una nota" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2091 +msgid "Unquantizing..." +msgstr "S'està desquantificant..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:2120 +msgid " Grid: " +msgstr " Graella: " + +#: ../src/gui/editors/matrix/MatrixView.cpp:2134 +msgid "Unit" +msgstr "Unitat" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2136 +msgid "Beat" +msgstr "Pulsació" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2138 +msgid "Bar" +msgstr "Compàs" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2159 +#, fuzzy +msgid " Velocity: " +msgstr "Velocitat:" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2170 +msgid " Quantize: " +msgstr " Quantificació: " + +#: ../src/gui/editors/matrix/MatrixView.cpp:2584 +msgid "Raising velocities..." +msgstr "S'està apujant les velocitats..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:2596 +msgid "Lowering velocities..." +msgstr "S'està abaixant les velocitats..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:2611 +msgid "Set Event Velocities" +msgstr "Defineix les velocitats dels esdeveniments" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2616 +msgid "Setting Velocities..." +msgstr "S'està definint les velocitats..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:2665 +msgid "Remove Triggers" +msgstr "Suprimeix els activadors" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2723 +msgid "%1 - Segment Track #%2 - %3" +msgstr "%1 - Fragment de pista #%2 - %3" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2730 +msgid "%1 - All Segments - %2" +msgstr "%1 - Tots els fragments - %2" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2737 +msgid "" +"_n: %1 - 1 Segment - %2\n" +"%1 - %n Segments - %2" +msgstr "" +"_n: %1 - 1 fragment - %2\n" +"%1 - %n fragments - %2" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2885 +msgid "Can't insert note: No grid duration selected" +msgstr "" +"No s'ha pogut afegir una nota: No hi ha seleccionada una durada de graella." + +#: ../src/gui/editors/matrix/MatrixView.cpp:2935 +#, fuzzy +msgid " Chord " +msgstr " Acord" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:105 +#, fuzzy +msgid "Click on a note to delete it" +msgstr "Fes clic per seleccionar un tipus de lletra" + +#: ../src/gui/editors/tempo/TempoView.cpp:89 +msgid "Filter" +msgstr "Filtre" + +#: ../src/gui/editors/eventlist/EventView.cpp:245 +#: ../src/gui/editors/tempo/TempoView.cpp:117 +msgid "Time " +msgstr "Temps " + +#: ../src/gui/editors/tempo/TempoView.cpp:118 +msgid "Type " +msgstr "Tipus" + +#: ../src/gui/editors/tempo/TempoView.cpp:119 +msgid "Value " +msgstr "Valor" + +#: ../src/gui/editors/tempo/TempoView.cpp:120 +msgid "Properties " +msgstr "Propietats" + +#: ../src/gui/editors/tempo/TempoView.cpp:208 +msgid "Common, hidden" +msgstr "Comú, ocult" + +#: ../src/gui/editors/tempo/TempoView.cpp:210 +msgid "Hidden" +msgstr "Ocult" + +#: ../src/gui/editors/tempo/TempoView.cpp:213 +msgid "Common" +msgstr "Comú" + +#: ../src/gui/editors/tempo/TempoView.cpp:220 +msgid "Time Signature " +msgstr "Indicació del compàs" + +#: ../src/gui/editors/tempo/TempoView.cpp:245 +msgid "%1.%2%3" +msgstr "%1.%2%3" + +#: ../src/gui/editors/tempo/TempoView.cpp:255 +msgid "%1.%2%3 qpm (%4.%5%6 bpm) " +msgstr "%1.%2%3 qpm (%4.%5%6 bpm) " + +#: ../src/gui/editors/tempo/TempoView.cpp:264 +msgid "Tempo " +msgstr "Tempo " + +#: ../src/gui/editors/tempo/TempoView.cpp:271 +msgid "" +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:463 +msgid "Delete Tempo or Time Signature" +msgstr "Suprimeix el tempo i la indicació del compàs" + +#: ../src/gui/editors/tempo/TempoView.cpp:602 +msgid "&Edit Item" +msgstr "&Edita" + +#: ../src/gui/editors/tempo/TempoView.cpp:834 +msgid "%1 - Tempo and Time Signature Editor" +msgstr "%1 - Editor del tempo i de la indicació del compàs" + +#: ../src/gui/editors/guitar/GuitarChordEditorDialog.cpp:43 +#, fuzzy +msgid "Guitar Chord Editor" +msgstr "editor d'acords de guitarra" + +#: ../src/gui/editors/guitar/GuitarChordEditorDialog.cpp:51 +#, fuzzy +msgid "Start fret" +msgstr "Compàs inicial" + +#: ../src/gui/editors/guitar/GuitarChordEditorDialog.cpp:58 +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:51 +msgid "Root" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordEditorDialog.cpp:62 +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:55 +#, fuzzy +msgid "Extension" +msgstr "Versió" + +#: ../src/gui/editors/guitar/Fingering.cpp:118 +msgid "couldn't parse fingering '%1' in '%2'" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:45 +#, fuzzy +msgid "Guitar Chord Selector" +msgstr "Selector d'acords" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:64 +msgid "beginner" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:65 +#, fuzzy +msgid "common" +msgstr "Comú" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:66 +msgid "all" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:86 +#, fuzzy +msgid "Fingerings" +msgstr "&Digitacions" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:419 +#, fuzzy +msgid "couldn't open file '%1'" +msgstr "No s'ha pogut obrir el fitxer '%1'" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:428 +#, c-format +msgid "couldn't parse chord dictionnary : %1" +msgstr "" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:87 +#, c-format +msgid "Note Font Viewer: %1" +msgstr "Visualitzador de font de notes: %1" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:93 +msgid " Component: " +msgstr " Component: " + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:101 +msgid " View: " +msgstr " Visualitza: " + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:104 +#, fuzzy +msgid "Glyphs" +msgstr "Figures" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:105 +msgid "Codes" +msgstr "Codis" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:107 +msgid " Page: " +msgstr " Pàgina: " + +#: ../src/gui/editors/notation/ClefInserter.cpp:64 +#: ../src/gui/editors/notation/GuitarChordInserter.cpp:71 +#: ../src/gui/editors/notation/RestInserter.cpp:79 +#: ../src/gui/editors/notation/TextInserter.cpp:68 +msgid "Switch to Inserting Notes" +msgstr "Agafa l'eina per a afegir notes" + +#: ../src/gui/editors/notation/NotationView.cpp:522 +#, fuzzy +msgid "Close track headers" +msgstr "Canvia el nom de la pista" + +#: ../src/gui/editors/notation/NotationView.cpp:917 +msgid "Preparing to print..." +msgstr "S'està preparant per imprimir..." + +#: ../src/gui/editors/notation/NotationView.cpp:1516 +msgid "Note &Font" +msgstr "&Font de notes" + +#: ../src/gui/editors/notation/NotationView.cpp:1539 +msgid "Si&ze" +msgstr "&Mida" + +#: ../src/gui/editors/notation/NotationView.cpp:1545 +#, fuzzy +msgid "Show Track Headers" +msgstr "Mostra les eti&quetes de les pistes" + +#: ../src/gui/editors/notation/NotationView.cpp:1550 +msgid "S&pacing" +msgstr "Espa&iat" + +#: ../src/gui/editors/notation/NotationView.cpp:1572 +msgid "Du&ration Factor" +msgstr "Factor de du&ració" + +#: ../src/gui/editors/notation/NotationView.cpp:1598 +msgid "Note &Style" +msgstr "&Estil de la nota" + +#: ../src/gui/editors/notation/NotationView.cpp:1624 +msgid "Insert Rest" +msgstr "Afegeix un silenci" + +#: ../src/gui/editors/notation/NotationView.cpp:1628 +msgid "Switch from Note to Rest" +msgstr "Canvia una nota per un silenci" + +#: ../src/gui/editors/notation/NotationView.cpp:1633 +msgid "Switch from Rest to Note" +msgstr "Canvia un silenci per una nota" + +#: ../src/gui/editors/notation/NotationView.cpp:1690 +msgid "No accidental" +msgstr "Sense accidents" + +#: ../src/gui/editors/notation/NotationView.cpp:1691 +msgid "Follow previous accidental" +msgstr "Segueix l'accident anterior" + +#: ../src/gui/editors/notation/NotationView.cpp:1692 +msgid "Sharp" +msgstr "Diesi" + +#: ../src/gui/editors/notation/NotationView.cpp:1693 +msgid "Flat" +msgstr "Bemoll" + +#: ../src/gui/editors/notation/NotationView.cpp:1694 +msgid "Natural" +msgstr "Becaire" + +#: ../src/gui/editors/notation/NotationView.cpp:1695 +msgid "Double sharp" +msgstr "Doble diesi" + +#: ../src/gui/editors/notation/NotationView.cpp:1696 +msgid "Double flat" +msgstr "Doble bemoll" + +#: ../src/gui/editors/notation/NotationView.cpp:1717 +msgid "&Treble Clef" +msgstr "Clau de &soprano" + +#: ../src/gui/editors/notation/NotationView.cpp:1724 +msgid "&Alto Clef" +msgstr "Clau de &contralt" + +#: ../src/gui/editors/notation/NotationView.cpp:1731 +msgid "Te&nor Clef" +msgstr "Clau de &tenor" + +#: ../src/gui/editors/notation/NotationView.cpp:1738 +msgid "&Bass Clef" +msgstr "Clau de &baix" + +#: ../src/gui/editors/notation/NotationView.cpp:1745 +msgid "&Text" +msgstr "&Text" + +#: ../src/gui/editors/notation/NotationView.cpp:1751 +#, fuzzy +msgid "&Guitar Chord" +msgstr "editor d'acords de guitarra" + +#: ../src/gui/editors/notation/NotationView.cpp:1784 +msgid "Select from Sta&rt" +msgstr "Seleccion&a des de l'inici" + +#: ../src/gui/editors/notation/NotationView.cpp:1788 +msgid "Select to &End" +msgstr "S&elecciona fins el final" + +#: ../src/gui/editors/notation/NotationView.cpp:1792 +msgid "Select Whole St&aff" +msgstr "Seleccio&na tot el pentagrama" + +#: ../src/commands/edit/CutAndCloseCommand.h:53 +#: ../src/gui/editors/notation/NotationView.cpp:1796 +msgid "C&ut and Close" +msgstr "Ret&alla i tanca" + +#: ../src/gui/editors/notation/NotationView.cpp:1800 +msgid "Pa&ste..." +msgstr "&Enganxa..." + +#: ../src/gui/editors/notation/NotationSelector.cpp:122 +#: ../src/gui/editors/notation/NotationView.cpp:1808 +msgid "Move to Staff Above" +msgstr "" + +#: ../src/gui/editors/notation/NotationSelector.cpp:126 +#: ../src/gui/editors/notation/NotationView.cpp:1812 +msgid "Move to Staff Below" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1826 +msgid "&Linear Layout" +msgstr "Format &lineal" + +#: ../src/gui/editors/notation/NotationView.cpp:1835 +msgid "&Continuous Page Layout" +msgstr "Format de pàgina &continu" + +#: ../src/gui/editors/notation/NotationView.cpp:1844 +msgid "&Multiple Page Layout" +msgstr "Format de pàgina &múltiple" + +#: ../src/gui/editors/notation/NotationView.cpp:1854 +msgid "Show Ra&w Note Ruler" +msgstr "Mostra el ®le de la nota crua" + +#: ../src/gui/editors/notation/NotationView.cpp:1862 +msgid "Show &Annotations" +msgstr "Mostra les &anotacions" + +#: ../src/gui/editors/notation/NotationView.cpp:1866 +msgid "Show Lily&Pond Directives" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1870 +msgid "Open L&yric Editor" +msgstr "Obre l'editor de la &lírica" + +#: ../src/gui/editors/notation/NotationView.cpp:1912 +msgid "Trip&let Insert Mode" +msgstr "Mode d'inserció de &tresets" + +#: ../src/gui/editors/notation/NotationView.cpp:1926 +#, fuzzy +msgid "Grace Insert Mode" +msgstr "Mode d'inserció de &tresets" + +#: ../src/gui/editors/notation/NotationView.cpp:2180 +msgid "&Dump selected events to stderr" +msgstr "&Llença els esdeveniments seleccionats al stderr" + +#: ../src/gui/editors/notation/NotationView.cpp:2248 +msgid "Ma&ke Ornament..." +msgstr "&Fes l'ornamentació..." + +#: ../src/gui/editors/notation/NotationView.cpp:2252 +msgid "Trigger &Ornament..." +msgstr "&Ornament activador..." + +#: ../src/gui/editors/notation/NotationView.cpp:2256 +msgid "Remove Ornament..." +msgstr "Suprimeix l'ornament..." + +#: ../src/gui/editors/notation/NotationView.cpp:2261 +msgid "&None" +msgstr "&Res" + +#: ../src/gui/editors/notation/NotationView.cpp:2289 +#, fuzzy +msgid "Convert Notation For..." +msgstr "S'està exportant el fitxer d'àudio..." + +#: ../src/gui/editors/notation/NotationView.cpp:2298 +msgid "Show &Notes Toolbar" +msgstr "Mostra la barra d'eines de les¬es" + +#: ../src/gui/editors/notation/NotationView.cpp:2299 +msgid "Show &Rests Toolbar" +msgstr "Mostra la barra d'eines dels &silencis" + +#: ../src/gui/editors/notation/NotationView.cpp:2300 +msgid "Show &Accidentals Toolbar" +msgstr "Mostra la barra d'eines d'&accidents" + +#: ../src/gui/editors/notation/NotationView.cpp:2301 +msgid "Show Cle&fs Toolbar" +msgstr "Mostra la barra d'eines de les cla&us" + +#: ../src/gui/editors/notation/NotationView.cpp:2303 +msgid "Show &Marks Toolbar" +msgstr "Mostra la barra d'eines dels &marcadors" + +#: ../src/gui/editors/notation/NotationView.cpp:2305 +msgid "Show &Group Toolbar" +msgstr "Mostra la barra d'eines del &grup" + +#: ../src/gui/editors/notation/NotationView.cpp:2307 +msgid "Show &Layout Toolbar" +msgstr "Mostra la barra d'eines del &format" + +#: ../src/gui/editors/notation/NotationView.cpp:2311 +msgid "Show M&eta Toolbar" +msgstr "Mostra la barra d'eines M&eta" + +#: ../src/gui/editors/notation/NotationView.cpp:2373 +msgid "Cursor &Up Staff" +msgstr "Apuja el c&ursor un pentagrama" + +#: ../src/gui/editors/notation/NotationView.cpp:2377 +msgid "Cursor &Down Staff" +msgstr "Abaixa el cursor un &pentagrama" + +#: ../src/gui/editors/notation/NotationView.cpp:2381 +msgid "Cursor Pre&vious Segment" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2385 +#, fuzzy +msgid "Cursor Ne&xt Segment" +msgstr "Crea un fragment" + +#: ../src/gui/editors/notation/NotationView.cpp:2475 +msgid "Push &Left" +msgstr "Empeny cap a l'&esquerra" + +#: ../src/gui/editors/notation/NotationView.cpp:2479 +msgid "Push &Right" +msgstr "Empeny cap a la d&reta" + +#: ../src/gui/editors/notation/NotationView.cpp:2483 +msgid "Push &Up" +msgstr "Empeny cap &amunt" + +#: ../src/gui/editors/notation/NotationView.cpp:2487 +msgid "Push &Down" +msgstr "Empeny cap a&vall" + +#: ../src/gui/editors/notation/NotationView.cpp:2491 +#, fuzzy +msgid "&Restore Positions" +msgstr "Restaura les posicions calculades" + +#: ../src/gui/editors/notation/NotationView.cpp:2495 +msgid "Make &Invisible" +msgstr "Fes &invisible" + +#: ../src/gui/editors/notation/NotationView.cpp:2499 +msgid "Make &Visible" +msgstr "Fes &visible" + +#: ../src/gui/editors/notation/NotationView.cpp:2503 +msgid "Toggle Dot" +msgstr "Commuta el punt" + +#: ../src/gui/editors/notation/NotationView.cpp:2507 +#: ../src/gui/editors/notation/NotationView.cpp:2511 +msgid "Add Dot" +msgstr "Afegeix un punt" + +#: ../src/gui/editors/notation/NotationView.cpp:2570 +#, c-format +msgid "" +"_n: 1 pixel\n" +"%n pixels" +msgstr "" +"_n: 1 píxel\n" +"%n píxels" + +#: ../src/gui/editors/notation/NotationView.cpp:2619 +msgid " Font: " +msgstr " Font: " + +#: ../src/gui/editors/notation/NotationView.cpp:2647 +msgid "Unknown font \"%1\", using default" +msgstr "No s'ha trobat la font \"%1\" i es farà servir la predeterminada" + +#: ../src/gui/editors/notation/NotationView.cpp:2655 +msgid " Size: " +msgstr " Mida: " + +#: ../src/gui/editors/notation/NotationView.cpp:2677 +msgid " Spacing: " +msgstr " Espaiat: " + +#: ../src/gui/editors/notation/NotationView.cpp:2993 +#: ../src/gui/editors/notation/NotationView.cpp:3818 +msgid " Ready." +msgstr " A punt." + +#: ../src/gui/editors/notation/NotationView.cpp:2998 +msgid "Laying out score..." +msgstr "S'està donant format a la partitura..." + +#: ../src/gui/editors/notation/NotationView.cpp:3011 +msgid "Laying out staff %1..." +msgstr "S'està donant format al pentagrama %1..." + +#: ../src/gui/editors/notation/NotationView.cpp:3020 +msgid "Reconciling staffs..." +msgstr "S'està reconciliant els pentagrames..." + +#: ../src/gui/editors/notation/NotationView.cpp:3885 +msgid "Sizing and allocating canvas..." +msgstr "S'està ubicant i dimensionant el full..." + +#: ../src/gui/editors/notation/NotationView.cpp:4050 +msgid "note" +msgstr "nota" + +#: ../src/gui/editors/notation/NotationView.cpp:4050 +msgid "rest" +msgstr "silenci" + +#: ../src/gui/editors/notation/NotationView.cpp:4211 +msgid "%1 - Segment Track #%2 - Notation" +msgstr "%1 - Fragment de la pista #%2 - Partitura" + +#: ../src/gui/editors/notation/NotationView.cpp:4217 +msgid "%1 - All Segments - Notation" +msgstr "%1 - Tots els fragments - Partitura" + +#: ../src/gui/editors/notation/NotationView.cpp:4222 +msgid "" +"_n: %1 - Segment - Notation\n" +"%1 - %n Segments - Notation" +msgstr "" +"_n: %1 - Fragment - Notació\n" +"%2 - %n Fragments - Notació" + +#: ../src/gui/editors/notation/NotationView.cpp:4243 +#, fuzzy +msgid "Grace" +msgstr "Grec" + +#: ../src/gui/editors/notation/NotationView.cpp:4247 +#: ../src/gui/editors/notation/NotationView.cpp:4251 +#: ../src/gui/editors/notation/NotationView.cpp:4255 +#, fuzzy +msgid "%1 %2" +msgstr "%1 (%2)" + +#: ../src/gui/editors/notation/NotationView.cpp:4271 +msgid "Hidden annotations" +msgstr "Anotacions ocultes" + +#: ../src/gui/editors/notation/NotationView.cpp:4293 +msgid "Hidden LilyPond directives" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4326 +#, c-format +msgid "Unknown spacing action %1" +msgstr "Es desconeix l'acció d'espaiat %1" + +#: ../src/gui/editors/notation/NotationView.cpp:4384 +#, c-format +msgid "Unknown proportion action %1" +msgstr "Es desconeix l'acció de proporcionalitat %1" + +#: ../src/gui/editors/notation/NotationView.cpp:4431 +#, c-format +msgid "Unknown font action %1" +msgstr "Es desconeix l'acció %1" + +#: ../src/gui/editors/notation/NotationView.cpp:4449 +#, c-format +msgid "Unknown font size %1" +msgstr "No s'ha trobat la mida %1 per aquesta font" + +#: ../src/gui/editors/notation/NotationView.cpp:4453 +#, c-format +msgid "Unknown font size action %1" +msgstr "Es desconeix l'acció de canvi de mida %1" + +#: ../src/gui/editors/notation/NotationView.cpp:4780 +#, fuzzy +msgid "" +"The Restricted paste type requires enough empty space (containing only " +"rests) at the paste position to hold all of the events to be pasted.\n" +"Not enough space was found.\n" +"If you want to paste anyway, consider using one of the other paste types " +"from the \"Paste...\" option on the Edit menu. You can also change the " +"default paste type to something other than Restricted if you wish." +msgstr "" +"El tipus d'enganxat restringit requereix que hi hagi un espai\n" +" buit suficient (espai en silenci) per\n" +"fer-hi quebre tots els esdeveniments que es volen posar.\n" +"Però no hi ha prou espai.\n" +"Si, de totes maneres, voleu enganxar-ho, teniu\n" +"tipus d'enganxat en l'opció \"Enganxa\"\n" +"del menú Edita. Per altra banda també podeu canviar\n" +" el tipus d'enganxatper defecte per un altre de diferent." + +#: ../src/gui/editors/notation/NotationView.cpp:4800 +msgid "Can't paste multiple Segments into one" +msgstr "No s'han pogut enganxar múltiples fragments en un de sol" + +#: ../src/gui/editors/notation/NotationView.cpp:4828 +#: ../src/gui/editors/notation/NotationView.cpp:4877 +msgid "Couldn't paste at this point." +msgstr "No s'ha pogut enganxar en aquest punt." + +#: ../src/gui/editors/notation/NotationView.cpp:4896 +#, fuzzy +msgid "Move Events to Staff Above" +msgstr "&Mou els esdeveniments a un altre fragment" + +#: ../src/gui/editors/notation/NotationView.cpp:4924 +#, fuzzy +msgid "Move Events to Staff Below" +msgstr "&Mou els esdeveniments a un altre fragment" + +#: ../src/gui/editors/notation/NotationView.cpp:5036 +msgid "Pushing selection left..." +msgstr "S'està empenyent la selecció cap a l'esquerra..." + +#: ../src/gui/editors/notation/NotationView.cpp:5047 +msgid "Pushing selection right..." +msgstr "S'està empenyent la selecció cap a la dreta..." + +#: ../src/gui/editors/notation/NotationView.cpp:5058 +msgid "Pushing selection up..." +msgstr "S'està empenyent la selecció cap amunt..." + +#: ../src/gui/editors/notation/NotationView.cpp:5069 +msgid "Pushing selection down..." +msgstr "S'està empenyent la selecció cap avall..." + +#: ../src/gui/editors/notation/NotationView.cpp:5080 +msgid "Restoring computed positions..." +msgstr "S'està restaurant les posicions calculades..." + +#: ../src/gui/editors/notation/NotationView.cpp:5089 +msgid "Making visible..." +msgstr "S'està fent visible..." + +#: ../src/gui/editors/notation/NotationView.cpp:5098 +msgid "Making invisible..." +msgstr "S'està fent invisible..." + +#: ../src/gui/editors/notation/NotationView.cpp:5185 +msgid "Beaming group..." +msgstr "S'està posant una barra al grup..." + +#: ../src/gui/editors/notation/NotationView.cpp:5195 +msgid "Auto-beaming selection..." +msgstr "S'està posant les barres automàticament a la selecció..." + +#: ../src/gui/editors/notation/NotationView.cpp:5205 +msgid "Breaking groups..." +msgstr "S'està separant els grups" + +#: ../src/gui/editors/notation/NotationView.cpp:5293 +#, fuzzy +msgid "Untupleting..." +msgstr "&Divideix els grups irregulars..." + +#: ../src/gui/editors/notation/NotationView.cpp:5301 +msgid "Adding slur..." +msgstr "S'està afegint el lligat..." + +#: ../src/gui/editors/notation/NotationView.cpp:5302 +msgid "slur" +msgstr "lligat" + +#: ../src/gui/editors/notation/NotationView.cpp:5307 +msgid "Adding phrasing slur..." +msgstr "S'està afegeixint el lligat de la frase..." + +#: ../src/gui/editors/notation/NotationView.cpp:5308 +msgid "phrasing slur" +msgstr "lligat de frase" + +#: ../src/gui/editors/notation/NotationView.cpp:5313 +msgid "Adding glissando..." +msgstr "S'està afegint el glissando..." + +#: ../src/gui/editors/notation/NotationView.cpp:5314 +msgid "glissando" +msgstr "glissando" + +#: ../src/gui/editors/notation/NotationView.cpp:5319 +msgid "Adding crescendo..." +msgstr "S'està afegint el crescendo..." + +#: ../src/gui/editors/notation/NotationView.cpp:5320 +#: ../src/gui/editors/notation/NotationView.cpp:5326 +msgid "dynamic" +msgstr "Dinàmica" + +#: ../src/gui/editors/notation/NotationView.cpp:5325 +msgid "Adding decrescendo..." +msgstr "S'està afegint el decrescendo..." + +#: ../src/gui/editors/notation/NotationView.cpp:5331 +#: ../src/gui/editors/notation/NotationView.cpp:5337 +#: ../src/gui/editors/notation/NotationView.cpp:5343 +#: ../src/gui/editors/notation/NotationView.cpp:5349 +msgid "Adding octave..." +msgstr "S'està afegint una octava" + +#: ../src/gui/editors/notation/NotationView.cpp:5332 +#: ../src/gui/editors/notation/NotationView.cpp:5338 +#: ../src/gui/editors/notation/NotationView.cpp:5344 +#: ../src/gui/editors/notation/NotationView.cpp:5350 +msgid "ottava" +msgstr "octava" + +#: ../src/gui/editors/notation/NotationView.cpp:5366 +msgid "Can't add overlapping %1 indications" +msgstr "No es poden afegir les %1 indicacions solapades" + +#: ../src/gui/editors/notation/NotationView.cpp:5375 +msgid "Making chord..." +msgstr "S'està creant l'acord..." + +#: ../src/gui/editors/notation/NotationView.cpp:5387 +msgid "Normalizing rests..." +msgstr "S'estan normalitzant els silencis..." + +#: ../src/gui/editors/notation/NotationView.cpp:5397 +msgid "Collapsing rests..." +msgstr "S'estan eliminant els sinlencis..." + +#: ../src/gui/editors/notation/NotationView.cpp:5417 +msgid "Tying notes..." +msgstr "S'estan eliminant notes..." + +#: ../src/gui/editors/notation/NotationView.cpp:5427 +msgid "Untying notes..." +msgstr "S'estan deslligant les notes..." + +#: ../src/gui/editors/notation/NotationView.cpp:5437 +msgid "Making notes viable..." +msgstr "S'estan fent les notes viables..." + +#: ../src/gui/editors/notation/NotationView.cpp:5447 +msgid "Removing counterpoint..." +msgstr "S'està eliminant el contrapunt..." + +#: ../src/gui/editors/notation/NotationView.cpp:5457 +msgid "Pointing stems up..." +msgstr "S'estan dibuixant les vírgules cap amunt..." + +#: ../src/gui/editors/notation/NotationView.cpp:5467 +msgid "Pointing stems down..." +msgstr "S'estan dibuixant les vírgules cap avall..." + +#: ../src/gui/editors/notation/NotationView.cpp:5478 +msgid "Restoring computed stem directions..." +msgstr "S'està restaurant l'orientació de les vírgules..." + +#: ../src/gui/editors/notation/NotationView.cpp:5488 +#: ../src/gui/editors/notation/NotationView.cpp:5498 +msgid "Positioning slurs..." +msgstr "S'estan dibuixant els lligats..." + +#: ../src/gui/editors/notation/NotationView.cpp:5509 +msgid "Restoring slur positions..." +msgstr "S'està restaurant les posicions dels lligats..." + +#: ../src/gui/editors/notation/NotationView.cpp:5519 +#: ../src/gui/editors/notation/NotationView.cpp:5529 +#, fuzzy +msgid "Positioning ties..." +msgstr "S'estan dibuixant els lligats..." + +#: ../src/gui/editors/notation/NotationView.cpp:5540 +#, fuzzy +msgid "Restoring tie positions..." +msgstr "S'està restaurant les posicions calculades..." + +#: ../src/gui/editors/notation/NotationView.cpp:5550 +msgid "Fixing notation quantization..." +msgstr "S'està quantificant la notació..." + +#: ../src/gui/editors/notation/NotationView.cpp:5560 +msgid "Removing notation quantization..." +msgstr "S'està suprimeix la quantificació de la partitura..." + +#: ../src/gui/editors/notation/NotationView.cpp:5577 +msgid "Changing to %1 style..." +msgstr "S'està canviant a l'estil %1..." + +#: ../src/gui/editors/notation/NotationView.cpp:5585 +#, c-format +msgid "Unknown style action %1" +msgstr "Es desconeix l'acció d'estil %1" + +#: ../src/gui/editors/notation/NotationView.cpp:5598 +#: ../src/gui/editors/notation/NotationView.cpp:5639 +#: ../src/gui/editors/notation/NotationView.cpp:5695 +msgid "No note duration selected" +msgstr "No s'ha seleccionat cap durada de nota" + +#: ../src/gui/editors/notation/NotationView.cpp:5660 +msgid "No rest duration selected" +msgstr "No s'ha seleccionat cap durada de silenci" + +#: ../src/gui/editors/notation/NotationView.cpp:5746 +msgid "No note or rest duration selected" +msgstr "No s'ha seleccionat cap durada ni de nota ni de silenci" + +#: ../src/gui/editors/notation/NotationView.cpp:5757 +#: ../src/gui/editors/notation/NotationView.cpp:5768 +#: ../src/gui/editors/notation/NotationView.cpp:5779 +#: ../src/gui/editors/notation/NotationView.cpp:5790 +#: ../src/gui/editors/notation/NotationView.cpp:5801 +#: ../src/gui/editors/notation/NotationView.cpp:5812 +#: ../src/gui/editors/notation/NotationView.cpp:5823 +msgid "Forcing accidentals..." +msgstr "S'estan forçant els accidents..." + +#: ../src/gui/editors/notation/NotationView.cpp:5834 +msgid "Restoring accidentals..." +msgstr "S'estan recuperant els accidents..." + +#: ../src/gui/editors/notation/NotationView.cpp:5845 +#, fuzzy +msgid "Showing cautionary accidentals..." +msgstr "S'estan mostrant els accidents de pre&caució..." + +#: ../src/gui/editors/notation/NotationView.cpp:5855 +msgid "Cancelling cautionary accidentals..." +msgstr "S'estan cancel·lant els accidents de precaució..." + +#: ../src/gui/editors/notation/NotationView.cpp:5884 +msgid "Interpreting selection..." +msgstr "S'està interpretant la selecció..." + +#: ../src/gui/editors/notation/NotationView.cpp:5896 +msgid "Setting note durations..." +msgstr "S'està definint la durada de les notes..." + +#: ../src/gui/editors/notation/NotationView.cpp:5904 +#: ../src/gui/editors/notation/NotationView.cpp:5912 +msgid "Adding dot..." +msgstr "S'està afegeix un punt..." + +#: ../src/gui/editors/notation/NotationView.cpp:5934 +msgid "Text: " +msgstr "Text: " + +#: ../src/gui/editors/notation/NotationView.cpp:5948 +msgid "Fingering: " +msgstr "Digitació: " + +#: ../src/gui/editors/notation/NotationView.cpp:6036 +msgid "Ornament track %1 bar %2" +msgstr "Ornament a la pista %1 compàs %2" + +#: ../src/gui/editors/notation/NotationView.cpp:6038 +#, c-format +msgid "Ornament bar %1" +msgstr "Ornament al compàs %1" + +#: ../src/gui/editors/notation/NotationView.cpp:6098 +msgid "Remove Ornaments" +msgstr "Suprimeix els ornaments" + +#: ../src/gui/editors/notation/NotationView.cpp:6145 +msgid "Estimated key signature shown" +msgstr "Mostra la clau recomanada" + +#: ../src/gui/editors/notation/NotationStaff.cpp:1249 +#: ../src/gui/editors/notation/NotationView.cpp:6202 +msgid "Sustain" +msgstr "Sosté" + +#: ../src/gui/editors/notation/NotationView.cpp:6218 +msgid "" +"There is no sustain controller defined for this device.\n" +"Please ensure the device is configured correctly in the Manage MIDI Devices " +"dialog in the main window." +msgstr "" +"No hi ha cap controlador definit per aquest dispositiu.\n" +"Mireu si el dispositiu està ben configurat en el gestor de dispositius MIDI" + +#: ../src/gui/editors/notation/NotationView.cpp:7250 +msgid "Can't insert note: No note duration selected" +msgstr "" +"No s'ha pogut afegir una nota: No hi ha seleccionada s'ha seleccionat cap " +"durada" + +#: ../src/gui/editors/notation/NotationEraser.cpp:61 +#: ../src/gui/editors/notation/NotationSelector.cpp:83 +msgid "Switch to Insert Tool" +msgstr "Agafa l'eina per a afegir" + +#: ../src/gui/editors/notation/NotePixmapFactory.cpp:2303 +#: ../src/gui/editors/notation/NotePixmapFactory.cpp:2347 +msgid "..." +msgstr "..." + +#: ../src/gui/editors/notation/NoteFontFactory.cpp:200 +msgid "Can't obtain a default font -- no fonts found" +msgstr "" +"No s'ha trobat el tipus de lletre per defecte -- no hi ha cap tipus de lletra" + +#: ../src/gui/editors/notation/NoteFontMap.cpp:52 +#: ../src/gui/general/PresetGroup.cpp:49 +msgid "unknown error" +msgstr "error desconegut" + +#: ../src/gui/editors/notation/NoteFontMap.cpp:78 +#, fuzzy +msgid "Can't open font mapping file %1 or %2" +msgstr "No s'ha pogut obrir el fitxer de tipus de lletra %1 o %2" + +#: ../src/gui/editors/notation/NoteFontMap.cpp:82 +#, fuzzy, c-format +msgid "Can't open font mapping file %1" +msgstr "No s'ha pogut obrir el fitxer de tipus de lletra %1" + +#: ../src/gui/editors/notation/NotationStrings.cpp:52 +msgid "%1-dotted-%2" +msgstr "%1-amb punt-%2" + +#: ../src/gui/editors/notation/NotationStrings.cpp:54 +msgid "%1-dotted %2" +msgstr "%1-amb punt %2" + +#: ../src/gui/editors/notation/NotationStrings.cpp:57 +#, c-format +msgid "dotted-%1" +msgstr "%1-amb punt" + +#: ../src/gui/editors/notation/NotationStrings.cpp:59 +#, c-format +msgid "dotted %1" +msgstr "%1 amb punt" + +#: ../src/gui/editors/notation/NotationStrings.cpp:83 +msgid "sixty-fourth note" +msgstr "semifusa" + +#: ../src/gui/editors/notation/NotationStrings.cpp:83 +msgid "thirty-second note" +msgstr "fusa" + +#: ../src/gui/editors/notation/NotationStrings.cpp:84 +msgid "sixteenth note" +msgstr "semicorxera" + +#: ../src/gui/editors/notation/NotationStrings.cpp:84 +msgid "eighth note" +msgstr "corxera" + +#: ../src/gui/editors/notation/NotationStrings.cpp:85 +msgid "quarter note" +msgstr "negra" + +#: ../src/gui/editors/notation/NotationStrings.cpp:85 +msgid "half note" +msgstr "blanca" + +#: ../src/gui/editors/notation/NotationStrings.cpp:86 +msgid "whole note" +msgstr "rodona" + +#: ../src/gui/editors/notation/NotationStrings.cpp:86 +msgid "double whole note" +msgstr "quadrada" + +#: ../src/gui/editors/notation/NotationStrings.cpp:89 +msgid "sixty-fourth notes" +msgstr "semifuses" + +#: ../src/gui/editors/notation/NotationStrings.cpp:89 +msgid "thirty-second notes" +msgstr "fuses" + +#: ../src/gui/editors/notation/NotationStrings.cpp:90 +msgid "sixteenth notes" +msgstr "semicorxeres" + +#: ../src/gui/editors/notation/NotationStrings.cpp:90 +msgid "eighth notes" +msgstr "corxeres" + +#: ../src/gui/editors/notation/NotationStrings.cpp:91 +msgid "quarter notes" +msgstr "negres" + +#: ../src/gui/editors/notation/NotationStrings.cpp:91 +msgid "half notes" +msgstr "blanques" + +#: ../src/gui/editors/notation/NotationStrings.cpp:92 +msgid "whole notes" +msgstr "rodones" + +#: ../src/gui/editors/notation/NotationStrings.cpp:92 +msgid "double whole notes" +msgstr "quadrades" + +#: ../src/gui/editors/notation/NotationStrings.cpp:96 +#: ../src/gui/editors/notation/NotationStrings.cpp:154 +msgid "%1 triplets" +msgstr "%1 tresets" + +#: ../src/gui/editors/notation/NotationStrings.cpp:100 +#: ../src/gui/editors/notation/NotationStrings.cpp:158 +msgid "%1 triplet" +msgstr "treset de %1" + +#: ../src/gui/editors/notation/NotationStrings.cpp:143 +msgid "64th" +msgstr "semifusa" + +#: ../src/gui/editors/notation/NotationStrings.cpp:143 +msgid "32nd" +msgstr "fusa" + +#: ../src/gui/editors/notation/NotationStrings.cpp:143 +msgid "16th" +msgstr "semicorxera" + +#: ../src/gui/editors/notation/NotationStrings.cpp:143 +msgid "8th" +msgstr "corxera" + +#: ../src/gui/editors/notation/NotationStrings.cpp:144 +msgid "quarter" +msgstr "negra" + +#: ../src/gui/editors/notation/NotationStrings.cpp:144 +msgid "half" +msgstr "blanca" + +#: ../src/gui/editors/notation/NotationStrings.cpp:144 +msgid "whole" +msgstr "rodona" + +#: ../src/gui/editors/notation/NotationStrings.cpp:145 +msgid "double whole" +msgstr "quadrada" + +#: ../src/gui/editors/notation/NotationStrings.cpp:148 +msgid "64ths" +msgstr "semifuses" + +#: ../src/gui/editors/notation/NotationStrings.cpp:148 +msgid "32nds" +msgstr "fuses" + +#: ../src/gui/editors/notation/NotationStrings.cpp:148 +msgid "16ths" +msgstr "semicorxeres" + +#: ../src/gui/editors/notation/NotationStrings.cpp:148 +msgid "8ths" +msgstr "corxeres" + +#: ../src/gui/editors/notation/NotationStrings.cpp:149 +msgid "quarters" +msgstr "negres" + +#: ../src/gui/editors/notation/NotationStrings.cpp:149 +msgid "halves" +msgstr "blanques" + +#: ../src/gui/editors/notation/NotationStrings.cpp:149 +msgid "wholes" +msgstr "rodones" + +#: ../src/gui/editors/notation/NotationStrings.cpp:150 +msgid "double wholes" +msgstr "quadrades" + +#: ../src/gui/editors/notation/NotationStrings.cpp:278 +msgid "%1 ticks" +msgstr "%1 batecs" + +#: ../src/gui/editors/notation/FontViewFrame.cpp:100 +#, c-format +msgid "Error: Unable to match font name %1" +msgstr "Error: no s'ha pogut trobar el tipus de lletra %1" + +#: ../src/gui/editors/notation/FontViewFrame.cpp:108 +msgid "Warning: No good match for font name %1 (best is %2)" +msgstr "Avís: no s'ha trobat el tipus de lletra %1 (però es ferà servir %2) " + +#: ../src/gui/editors/notation/FontViewFrame.cpp:116 +#, c-format +msgid "Error: Unable to open best-match font %1" +msgstr "Error: no s'ha pogut obrir el tipus de lletra alternatiu %1" + +#: ../src/gui/editors/notation/TrackHeader.cpp:113 +#, fuzzy +msgid "Track %1 : \"%2\"" +msgstr "Banc %1 %2" + +#: ../src/gui/editors/notation/TrackHeader.cpp:119 +#, fuzzy, c-format +msgid "" +"\n" +"Notate for: %1" +msgstr "Visualitzador de font de notes: %1" + +#: ../src/gui/editors/notation/TrackHeader.cpp:121 +#, fuzzy +msgid "normal" +msgstr "Normal" + +#: ../src/gui/editors/notation/TrackHeader.cpp:124 +#, fuzzy +msgid "small" +msgstr "escalable" + +#: ../src/gui/editors/notation/TrackHeader.cpp:127 +msgid "tiny" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:131 +msgid "--" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:156 +msgid "" +"\n" +"Size: %1, Bracket: %2 " +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:183 +msgid "" +"\n" +"bars [%1-%2] in %3 (tr=%4) : \"%5\"" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:190 +msgid "" +"\n" +"bars [%1-%2] (tr=%3) : \"%4\"" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:240 +#, fuzzy +msgid "C#" +msgstr "Do#%1" + +#: ../src/gui/editors/notation/TrackHeader.cpp:242 +msgid "Eb" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:245 +#, fuzzy +msgid "F#" +msgstr "Fa#%1" + +#: ../src/gui/editors/notation/TrackHeader.cpp:247 +#, fuzzy +msgid "G#" +msgstr "Sol#%1" + +#: ../src/gui/editors/notation/TrackHeader.cpp:249 +msgid "Bb" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:352 +#, fuzzy +msgid "%1: %2" +msgstr "%1 (%2)" + +#: ../src/gui/editors/notation/TrackHeader.cpp:355 +#, fuzzy, c-format +msgid " in %1" +msgstr "Entrada %1" + +#: ../src/gui/editors/notation/NotationStaff.cpp:452 +msgid "Rendering staff %1..." +msgstr "S'està dibuixant el pentagrama %1..." + +#: ../src/gui/editors/notation/NotationStaff.cpp:515 +msgid "Rendering notes on staff %1..." +msgstr "S'estan dibuixant les notes en el pentagrama %1..." + +#: ../src/gui/editors/notation/NotationStaff.cpp:583 +msgid "Positioning staff %1..." +msgstr "S'està ubicant %1..." + +#: ../src/gui/editors/notation/NotationSelectionPaster.cpp:85 +msgid "Ready." +msgstr "Preparat." + +#: ../src/gui/editors/notation/RestInserter.cpp:62 +msgid "Dotted rest" +msgstr "Nota amb punt" + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:57 +#, c-format +msgid "Can't open style file %1" +msgstr "No s'ha pogut obrir el fitxer d'estil %1" + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:92 +msgid "type is a required attribute of note" +msgstr "el tipus és un atribut obligatori de la nota" + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:101 +#, c-format +msgid "Unrecognised note name %1" +msgstr "No s'ha reconegut el nom de la nota %1" + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:108 +msgid "global element must precede note elements" +msgstr "l'element global ha de precedir els elements de la nota" + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:137 +msgid "" +"global and note elements may have shape or charname attribute, but not both" +msgstr "" +"els elements globals i de la nota han de tenir una forma o un atribut nom-" +"del-caràcter, però no els dos " + +#: ../src/gui/editors/notation/NotationVLayout.cpp:493 +msgid "" +"Spanned note at %1 has no HEIGHT_ON_STAFF property!\n" +"This is a bug (the program would previously have crashed by now)" +msgstr "" +"La nota de %1 no té la propietat HEIGHT_ON_STAFF!\n" +"Això és un bug del programa (el programa es pot haver penjat)" + +#: ../src/gui/editors/notation/NoteInserter.cpp:82 +msgid "Auto-Beam when appropriate" +msgstr "Posa les barres d'agrupació automàticament on sigui apropiat" + +#: ../src/gui/editors/notation/NoteInserter.cpp:103 +msgid "Dotted note" +msgstr "Nota amb punt" + +#: ../src/gui/editors/notation/NoteInserter.cpp:120 +msgid "Switch to Inserting Rests" +msgstr "Agafa l'eina per a afegir silencis" + +#: ../src/gui/editors/notation/NotationSelector.cpp:98 +msgid "Collapse Rests" +msgstr "Redueix els silencis" + +#: ../src/gui/editors/notation/NotationSelector.cpp:102 +msgid "Respell as Flat" +msgstr "Reescriu en bemoll" + +#: ../src/gui/editors/notation/NotationSelector.cpp:106 +msgid "Respell as Sharp" +msgstr "Reescriu en sostingut" + +#: ../src/gui/editors/notation/NotationSelector.cpp:110 +msgid "Respell as Natural" +msgstr "Reescriu de la forma natural" + +#: ../src/gui/editors/notation/NotationSelector.cpp:114 +msgid "Collapse Notes" +msgstr "Redueix les notes" + +#: ../src/gui/editors/notation/NotationSelector.cpp:130 +msgid "Make Invisible" +msgstr "Fes invisible" + +#: ../src/gui/editors/notation/NotationSelector.cpp:134 +msgid "Make Visible" +msgstr "Fes visible" + +#: ../src/gui/editors/eventlist/EventView.cpp:129 +msgid "Event filters" +msgstr "Filtres de l'esdeveniment" + +#: ../src/gui/editors/eventlist/EventView.cpp:138 +msgid "Rest" +msgstr "Silenci" + +#: ../src/gui/editors/eventlist/EventView.cpp:139 +msgid "Indication" +msgstr "Indicació" + +#: ../src/gui/editors/eventlist/EventView.cpp:141 +msgid "Other" +msgstr "Altre" + +#: ../src/gui/editors/eventlist/EventView.cpp:161 +msgid "Triggered Segment Properties" +msgstr "Propietats del fragment activable" + +#: ../src/gui/editors/eventlist/EventView.cpp:166 +msgid "Label: " +msgstr "Etiqueta: " + +#: ../src/gui/editors/eventlist/EventView.cpp:176 +msgid "Base pitch: " +msgstr "Altura de base: " + +#: ../src/gui/editors/eventlist/EventView.cpp:183 +msgid "Base velocity: " +msgstr "Velocitat de base: " + +#: ../src/gui/editors/eventlist/EventView.cpp:246 +msgid "Duration " +msgstr "Durada " + +#: ../src/gui/editors/eventlist/EventView.cpp:247 +msgid "Event Type " +msgstr "Tipus d'esdeveniment " + +#: ../src/gui/editors/eventlist/EventView.cpp:248 +msgid "Pitch " +msgstr "Altura " + +#: ../src/gui/editors/eventlist/EventView.cpp:249 +msgid "Velocity " +msgstr "Velocitat " + +#: ../src/gui/editors/eventlist/EventView.cpp:250 +msgid "Type (Data1) " +msgstr "Tipus (Dada 1) " + +#: ../src/gui/editors/eventlist/EventView.cpp:251 +msgid "Value (Data2) " +msgstr "Valor (Dada 2) " + +#: ../src/gui/editors/eventlist/EventView.cpp:461 +msgid "(group %1) " +msgstr "(grup %1) " + +#: ../src/gui/editors/eventlist/EventView.cpp:519 +msgid "" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:521 +msgid "" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:696 +msgid "Segment label" +msgstr "Etiqueta del fragment" + +#: ../src/gui/editors/eventlist/EventView.cpp:696 +msgid "Label:" +msgstr "Etiqueta:" + +#: ../src/gui/editors/eventlist/EventView.cpp:1123 +msgid "&Insert Event" +msgstr "&Afegeix un esdeveniment" + +#: ../src/gui/editors/eventlist/EventView.cpp:1130 +msgid "&Delete Event" +msgstr "&Suprimeix l'esdeveniment" + +#: ../src/gui/editors/eventlist/EventView.cpp:1137 +msgid "&Edit Event" +msgstr "&Edita l'esdeveniment" + +#: ../src/gui/editors/eventlist/EventView.cpp:1144 +msgid "&Advanced Event Editor" +msgstr "Editor &avançat d'esdeveniments" + +#: ../src/gui/editors/eventlist/EventView.cpp:1518 +msgid "Open in Event Editor" +msgstr "Obre en l'editor d'esdeveniments" + +#: ../src/gui/editors/eventlist/EventView.cpp:1519 +msgid "Open in Expert Event Editor" +msgstr "Obre en l'editor avançat d'esdeveniments" + +#: ../src/gui/editors/eventlist/EventView.cpp:1577 +msgid "%1 - Triggered Segment: %2" +msgstr "%1 - Fragment activable: %2" + +#: ../src/gui/editors/eventlist/EventView.cpp:1592 +msgid "%1 - Segment Track #%2 - Event List" +msgstr "%1 - Fragment de la pista #%2 - Llista d'esdeveniments" + +#: ../src/gui/editors/eventlist/EventView.cpp:1598 +msgid "%1 - %2 Segments - Event List" +msgstr "%1 - %2 Fragments - Llista d'esdeveniments" + +#: ../src/gui/rulers/TempoRuler.cpp:131 +#, fuzzy +msgid "Insert Tempo Change at Playback Position" +msgstr "Afegeix el canvi de tempo" + +#: ../src/gui/rulers/TempoRuler.cpp:136 +#, fuzzy +msgid "Delete Tempo Change" +msgstr "Afegeix el canvi de tempo" + +#: ../src/gui/rulers/TempoRuler.cpp:140 +msgid "Ramp Tempo to Next Tempo" +msgstr "" + +#: ../src/gui/rulers/TempoRuler.cpp:144 +msgid "Un-Ramp Tempo" +msgstr "" + +#: ../src/gui/rulers/TempoRuler.cpp:149 +#, fuzzy +msgid "Edit Tempo..." +msgstr "Modifica el tempo per &defecte..." + +#: ../src/gui/rulers/TempoRuler.cpp:153 +#, fuzzy +msgid "Edit Time Signature..." +msgstr "Indicació de compàs" + +#: ../src/gui/rulers/TempoRuler.cpp:588 +#, fuzzy +msgid "%1.%2%3 (%4.%5%6 bpm)" +msgstr "%1.%2%3 qpm (%4.%5%6 bpm) " + +#: ../src/gui/rulers/TempoRuler.cpp:596 +#, fuzzy +msgid "%1.%2%3 bpm" +msgstr "(%1.%2 bpm)" + +#: ../src/gui/rulers/TempoRuler.cpp:604 +#, fuzzy +msgid "%1 - %2.%3%4" +msgstr "%1.%2%3" + +#: ../src/gui/rulers/ControlRulerEventInsertCommand.cpp:36 +msgid "Insert Controller Event" +msgstr "Afegeix un controlador d'esdeveniments" + +#: ../src/gui/rulers/ControlChangeCommand.cpp:35 +msgid "Control Change" +msgstr "Canvi de control" + +#: ../src/gui/rulers/PropertyViewRuler.cpp:72 +msgid "%1 controller" +msgstr "controlador %1" + +#: ../src/gui/rulers/RawNoteRuler.cpp:453 +msgid "Track #%1, Segment \"%2\" (runtime id %3)" +msgstr "" + +#: ../src/gui/rulers/MarkerRuler.cpp:100 +#, fuzzy +msgid "Insert Marker" +msgstr "Afegeix un silenci" + +#: ../src/gui/rulers/MarkerRuler.cpp:104 +#, fuzzy +msgid "Insert Marker at Playback Position" +msgstr "Afegeix el canvi de tempo" + +#: ../src/gui/rulers/MarkerRuler.cpp:109 +#, fuzzy +msgid "Delete Marker" +msgstr "Suprimeix un marcador" + +#: ../src/gui/rulers/MarkerRuler.cpp:114 +#, fuzzy +msgid "Edit Marker..." +msgstr "Edita els marcadors..." + +#: ../src/gui/rulers/MarkerRuler.cpp:119 +msgid "" +"Click on a marker to move the playback pointer.\n" +"Shift-click to set a range between markers.\n" +"Double-click to open the marker editor." +msgstr "" + +#: ../src/gui/rulers/ChordNameRuler.cpp:97 +msgid "" +"Chord name ruler.\n" +"Turn it on and off from the Settings->Rulers menu." +msgstr "" +"Regle pels noms dels acords.\n" +"Activa'l i desactiva'l des del menú preferències->regles." + +#: ../src/gui/rulers/ControlRulerEventEraseCommand.cpp:37 +msgid "Erase Controller Event(s)" +msgstr "Suprimeix el controlador d'esdeveniments" + +#: ../src/gui/general/EditView.cpp:901 +#: ../src/gui/rulers/ControllerEventsRuler.cpp:188 +msgid "Unsupported Event Type" +msgstr "Tipus d'esdeveniment desconegut" + +#: ../src/gui/rulers/ControllerEventsRuler.cpp:203 +msgid "Controller Events" +msgstr "Controlador d'esdeveniments" + +#: ../src/gui/rulers/ControllerEventsRuler.cpp:278 +msgid "Controller Event Number" +msgstr "Número de controlador d'esdeveniments" + +#: ../src/gui/rulers/ControllerEventsRuler.cpp:471 +msgid "Add line of controllers" +msgstr "Afegeix la línia de controladors" + +#: ../src/gui/rulers/LoopRuler.cpp:89 +#, fuzzy +msgid "" +"Click and drag to move the playback pointer.\n" +"Shift-click and drag to set a range for looping or editing.\n" +"Shift-click to clear the loop or range.\n" +"Double-click to start playback." +msgstr "" +"Feu clic en les marques per establir el punt de reproducció.\n" +"Majúscules + clic esquerre + arrossegueu per marcar un bucle.\n" +"Majúscules + clic esquerre per desfer el bucle (o desmarcar el botó en el " +"Control)." + +#: ../src/gui/general/EditViewBase.cpp:228 +msgid "Set Segment Start Time..." +msgstr "Defineix el temps d'inici del fragment..." + +#: ../src/gui/general/EditViewBase.cpp:232 +msgid "Set Segment Duration..." +msgstr "Defineix la duració del fragment..." + +#: ../src/gui/general/PresetHandlerDialog.cpp:56 +msgid "Load track parameters preset" +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:62 +#, fuzzy +msgid "Convert notation for..." +msgstr "S'està exportant el fitxer d'àudio..." + +#: ../src/gui/general/PresetHandlerDialog.cpp:86 +msgid "Select preset track parameters for:" +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:87 +msgid "Create appropriate notation for:" +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:89 +#, fuzzy +msgid "Category" +msgstr "Categoria:" + +#: ../src/gui/general/PresetHandlerDialog.cpp:95 +#, fuzzy +msgid "Player Ability" +msgstr "&Llista de peces" + +#: ../src/gui/general/PresetHandlerDialog.cpp:97 +#, fuzzy +msgid "Amateur" +msgstr "Master" + +#: ../src/gui/general/PresetHandlerDialog.cpp:98 +#, fuzzy +msgid "Professional" +msgstr "S'està processant..." + +#: ../src/gui/general/PresetHandlerDialog.cpp:104 +#, fuzzy +msgid "Only selected segments" +msgstr "Selecciona &tots els fragments" + +#: ../src/gui/general/PresetHandlerDialog.cpp:106 +#, fuzzy +msgid "All segments in this track" +msgstr "Aplica a tots els fragments d'aquest moment" + +#: ../src/gui/general/PresetHandlerDialog.cpp:111 +#, fuzzy +msgid "Only for new segments" +msgstr "Lírica per aquest fragment" + +#: ../src/gui/general/PresetHandlerDialog.cpp:113 +#, fuzzy +msgid "Convert existing segments" +msgstr "Crea un fragment" + +#: ../src/gui/general/MidiPitchLabel.cpp:39 +#, c-format +msgid "C%1" +msgstr "Do%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:39 +#, c-format +msgid "C#%1" +msgstr "Do#%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:39 +#, c-format +msgid "D%1" +msgstr "Re%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:39 +#, c-format +msgid "D#%1" +msgstr "Re#%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:40 +#, c-format +msgid "E%1" +msgstr "Mi%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:40 +#, c-format +msgid "F%1" +msgstr "Fa%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:40 +#, c-format +msgid "F#%1" +msgstr "Fa#%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:40 +#, c-format +msgid "G%1" +msgstr "Sol%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:41 +#, c-format +msgid "G#%1" +msgstr "Sol#%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:41 +#, c-format +msgid "A%1" +msgstr "La%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:41 +#, c-format +msgid "A#%1" +msgstr "La#%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:41 +#, c-format +msgid "B%1" +msgstr "Si%1" + +#: ../src/gui/general/PresetGroup.cpp:95 +#, fuzzy, c-format +msgid "Can't open preset file %1" +msgstr "No s'ha pogut obrir el fitxer d'estil %1" + +#: ../src/gui/general/EditView.cpp:744 +#, fuzzy +msgid "&Halve Durations" +msgstr "Durada" + +#: ../src/gui/general/EditView.cpp:748 +#, fuzzy +msgid "&Double Durations" +msgstr "Doble bemoll" + +#: ../src/gui/general/EditView.cpp:806 +msgid "Show Velocity Property Ruler" +msgstr "Mostra el regle de propietat de la velocitat" + +#: ../src/gui/general/EditView.cpp:825 +msgid "Insert item" +msgstr "Afegeix l'element" + +#: ../src/gui/general/EditView.cpp:831 +msgid "Erase selected items" +msgstr "Esborra els elements seleccionats" + +#: ../src/gui/general/EditView.cpp:835 +msgid "Clear ruler" +msgstr "Neteja el regle" + +#: ../src/gui/general/EditView.cpp:839 +msgid "Insert line of controllers" +msgstr "Afegeix una línia de controladors" + +#: ../src/gui/general/EditView.cpp:843 +msgid "Flip forward" +msgstr "Invertir endavant" + +#: ../src/gui/general/EditView.cpp:847 +msgid "Flip backwards" +msgstr "Invertir enrere" + +#: ../src/gui/general/EditView.cpp:851 +msgid "Draw property line" +msgstr "Dibuixa una línia de propietat" + +#: ../src/gui/general/EditView.cpp:855 +msgid "Select all property values" +msgstr "Selecciona tots els valors de propietat" + +#: ../src/gui/general/EditView.cpp:894 +msgid "%1 Controller %2 %3" +msgstr "%1 controlador %2 %3" + +#: ../src/gui/general/EditView.cpp:1066 +msgid "I" +msgstr "I" + +#: ../src/gui/general/EditView.cpp:1066 +msgid "II" +msgstr "II" + +#: ../src/gui/general/EditView.cpp:1066 +msgid "III" +msgstr "III" + +#: ../src/gui/general/EditView.cpp:1066 +msgid "IV" +msgstr "IV" + +#: ../src/gui/general/EditView.cpp:1067 +msgid "V" +msgstr "V" + +#: ../src/gui/general/EditView.cpp:1067 +msgid "VI" +msgstr "VI" + +#: ../src/gui/general/EditView.cpp:1067 +msgid "VII" +msgstr "VII" + +#: ../src/gui/general/EditView.cpp:1067 +msgid "VIII" +msgstr "VIII" + +#: ../src/gui/general/EditView.cpp:1069 +msgid "%1 flat" +msgstr "%1 bemoll" + +#: ../src/gui/general/EditView.cpp:1070 +msgid "%1 sharp" +msgstr "%1 diesi" + +#: ../src/gui/general/EditView.cpp:1085 +msgid "&Insert Note" +msgstr "&Afegeix una nota" + +#: ../src/gui/general/EditView.cpp:1091 +msgid "&Upper Octave" +msgstr "Octava s&uperior" + +#: ../src/gui/general/EditView.cpp:1096 +msgid "&Lower Octave" +msgstr "Octava &inferior" + +#: ../src/gui/general/EditView.cpp:1268 +msgid "Estimated time signature shown" +msgstr "Es mostra la indicació de compàs estimada" + +#: ../src/gui/general/EditView.cpp:1431 +#, fuzzy +msgid "Halving durations..." +msgstr "S'està definint la durada de les notes..." + +#: ../src/gui/general/EditView.cpp:1445 +#, fuzzy +msgid "Doubling durations..." +msgstr "S'està definint la durada de les notes..." + +#: ../src/gui/general/EditView.cpp:1469 +msgid "Rescaling..." +msgstr "S'està canviant la mida..." + +#: ../src/gui/general/EditView.cpp:1489 +#, fuzzy +msgid "By number of semitones: " +msgstr "Introdueix el número de semitons a transposar:" + +#: ../src/gui/general/EditView.cpp:1496 ../src/gui/general/EditView.cpp:1518 +msgid "Transposing..." +msgstr "S'està transposant..." + +#: ../src/gui/general/EditView.cpp:1536 +msgid "Transposing up one semitone..." +msgstr "S'està transposant un semitò cap amunt..." + +#: ../src/gui/general/EditView.cpp:1545 +msgid "Transposing up one octave..." +msgstr "S'està transposant una octava cap amunt..." + +#: ../src/gui/general/EditView.cpp:1554 +msgid "Transposing down one semitone..." +msgstr "S'està transposant un semitò cap avall..." + +#: ../src/gui/general/EditView.cpp:1563 +msgid "Transposing down one octave..." +msgstr "S'està transposant una octava cap avall..." + +#: ../src/gui/general/EditView.cpp:1575 +#, fuzzy +msgid "Inverting..." +msgstr "S'està iniciant..." + +#: ../src/gui/general/EditView.cpp:1587 +#, fuzzy +msgid "Retrograding..." +msgstr "S'està enregistrant..." + +#: ../src/gui/general/EditView.cpp:1599 +#, fuzzy +msgid "Retrograde inverting..." +msgstr "S'està enregistrant..." + +#: ../src/gui/general/EditView.cpp:1608 +msgid "Jogging left..." +msgstr "Mou a l'esquerra..." + +#: ../src/gui/general/EditView.cpp:1623 +msgid "Jogging right..." +msgstr "Mou a la dreta..." + +#: ../src/sound/AudioFileManager.cpp:660 +#, fuzzy, c-format +msgid "Downloading file %1" +msgstr "No s'ha pogut descarregar el fitxer %1" + +#: ../src/sound/AudioFileManager.cpp:735 +#, fuzzy +msgid "Converting audio file..." +msgstr "S'està exportant el fitxer d'àudio..." + +#: ../src/sound/AudioFileManager.cpp:737 +#, fuzzy +msgid "Resampling audio file..." +msgstr "S'està exportant el fitxer d'àudio..." + +#: ../src/sound/AudioFileManager.cpp:739 +#, fuzzy +msgid "Converting and resampling audio file..." +msgstr "S'està exportant el fitxer d'àudio..." + +#: ../src/sound/AudioFileManager.cpp:741 +#, fuzzy +msgid "Importing audio file..." +msgstr "S'està exportant el fitxer d'àudio..." + +#: ../src/sound/AudioFileManager.cpp:794 +#, fuzzy +msgid "Failed to convert or resample audio file on import" +msgstr "No s'ha pogut obrir un fitxer temportal per exportar com a Lilypond." + +#: ../src/sequencer/main.cpp:46 ../src/sequencer/main.cpp:86 +#, fuzzy +msgid "RosegardenSequencer" +msgstr "Rosegarden" + +#: ../src/sequencer/main.cpp:54 +#, fuzzy +msgid "JACK playback and capture ports" +msgstr "Latència de reproducció del JACK (en ms)" + +#: ../src/commands/segment/SegmentSyncCommand.cpp:38 +#: ../src/commands/segment/SegmentSyncCommand.cpp:44 +#: ../src/commands/segment/SegmentSyncCommand.cpp:55 +#: ../src/commands/segment/SegmentSyncCommand.cpp:63 +#, fuzzy +msgid "Sync segment parameters" +msgstr "Paràmetres de l'instrument" + +#: ../src/commands/segment/RenameTrackCommand.h:52 +msgid "Rename Track" +msgstr "Canvia el nom de la pista" + +#: ../src/commands/segment/SegmentRepeatToCopyCommand.cpp:39 +msgid "Turn Repeats into Copies" +msgstr "Converteix les repeticions en còpies" + +#: ../src/commands/segment/SegmentTransposeCommand.cpp:36 +#: ../src/commands/segment/SegmentTransposeCommand.cpp:42 +#, fuzzy +msgid "Change segment transposition" +msgstr "Canvia el color del fragment" + +#: ../src/commands/edit/RescaleCommand.h:50 +#: ../src/commands/segment/AudioSegmentRescaleCommand.h:62 +#: ../src/commands/segment/SegmentRescaleCommand.h:58 +msgid "Stretch or S&quash..." +msgstr "Estira o encon&geix..." + +#: ../src/commands/segment/SegmentLabelCommand.h:52 +msgid "Re&label..." +msgstr "Canvia &l'etiqueta..." + +#: ../src/commands/segment/AudioSegmentResizeFromStartCommand.cpp:39 +#: ../src/commands/segment/SegmentResizeFromStartCommand.cpp:39 +msgid "Resize Segment" +msgstr "Redimensiona el fragment" + +#: ../src/commands/segment/RemoveTempoChangeCommand.h:58 +msgid "Remove &Tempo Change..." +msgstr "Elimina el canvi de &tempo..." + +#: ../src/commands/segment/SegmentEraseCommand.cpp:40 +#: ../src/commands/segment/SegmentEraseCommand.cpp:52 +msgid "Erase Segment" +msgstr "Esborra el fragment" + +#: ../src/commands/segment/AudioSegmentRescaleCommand.cpp:126 +#: ../src/commands/segment/SegmentRescaleCommand.cpp:102 +#, fuzzy +msgid "(rescaled)" +msgstr "%1 (escalat)" + +#: ../src/commands/segment/AudioSegmentRescaleCommand.cpp:127 +#: ../src/commands/segment/SegmentRescaleCommand.cpp:105 +msgid "%1 (rescaled)" +msgstr "%1 (escalat)" + +#: ../src/commands/segment/PasteToTriggerSegmentCommand.cpp:47 +#, fuzzy +msgid "Paste as New Triggered Segment" +msgstr "Enganxa com un nou fragment activable" + +#: ../src/commands/segment/SegmentColourMapCommand.h:52 +msgid "Change Segment Color Map..." +msgstr "Canvia el mapa de colors del fragment..." + +#: ../src/commands/segment/SegmentQuickCopyCommand.h:55 +msgid "Quick-Copy Segment" +msgstr "Copia ràpidament el fragment" + +#: ../src/commands/segment/AudioSegmentSplitCommand.cpp:42 +msgid "Split Audio Segment" +msgstr "Divideix el fragment d'àudio" + +#: ../src/commands/segment/AudioSegmentSplitCommand.cpp:103 +#: ../src/commands/segment/SegmentSplitCommand.cpp:135 +#, fuzzy +msgid " (split)" +msgstr "%1 (dividit)" + +#: ../src/commands/segment/AudioSegmentSplitCommand.cpp:104 +#: ../src/commands/segment/SegmentSplitByRecordingSrcCommand.cpp:120 +#: ../src/commands/segment/SegmentSplitByRecordingSrcCommand.cpp:122 +#: ../src/commands/segment/SegmentSplitCommand.cpp:136 +msgid "%1 (split)" +msgstr "%1 (dividit)" + +#: ../src/commands/segment/SegmentLabelCommand.cpp:40 +msgid "Label Segments" +msgstr "Fragments activables" + +#: ../src/commands/segment/OpenOrCloseRangeCommand.cpp:43 +msgid "Open or Close Range" +msgstr "" + +#: ../src/commands/edit/TransposeCommand.h:55 +#: ../src/commands/segment/SegmentTransposeCommand.h:54 +#, fuzzy +msgid "Transpose by &Interval..." +msgstr "&Transposa..." + +#: ../src/commands/segment/SegmentAutoSplitCommand.cpp:148 +msgid "%1 (part)" +msgstr "%1 (partició)" + +#: ../src/commands/segment/AudioSegmentInsertCommand.cpp:51 +#: ../src/commands/segment/SegmentInsertCommand.cpp:43 +#: ../src/commands/segment/SegmentInsertCommand.cpp:56 +msgid "Create Segment" +msgstr "Crea un fragment" + +#: ../src/commands/segment/AudioSegmentInsertCommand.cpp:114 +msgid "%1 (inserted)" +msgstr "%1 (inserit)" + +#: ../src/commands/segment/AudioSegmentInsertCommand.cpp:117 +msgid "unknown audio file" +msgstr "Fitxer d'àudio desconegut" + +#: ../src/commands/segment/CreateTempoMapFromSegmentCommand.cpp:40 +msgid "Set Tempos from Beat Segment" +msgstr "Extreu el Tempo del fragment de pulsacions" + +#: ../src/commands/segment/SegmentSplitByRecordingSrcCommand.h:52 +msgid "Split by &Recording Source..." +msgstr "Divideix segons l'&origen..." + +#: ../src/commands/segment/SegmentColourMapCommand.cpp:40 +msgid "Change Segment Color Map" +msgstr "Canvia el mapa de colors del fragment" + +#: ../src/commands/edit/CopyCommand.cpp:64 +#: ../src/commands/segment/SegmentQuickCopyCommand.cpp:57 +msgid "%1 (copied)" +msgstr "%1 (copiat)" + +#: ../src/commands/segment/SegmentColourCommand.h:52 +msgid "Change Segment Color..." +msgstr "Canvia el color del fragment..." + +#: ../src/commands/segment/SegmentSplitByPitchCommand.cpp:170 +msgid "%1 (upper)" +msgstr "%1 (augmentat)" + +#: ../src/commands/segment/SegmentSplitByPitchCommand.cpp:172 +msgid "%1 (lower)" +msgstr "%1 (disminuït)" + +#: ../src/commands/segment/SegmentSingleRepeatToCopyCommand.cpp:39 +msgid "Turn Single Repeat into Copy" +msgstr "Converteix les repeticions d'un sol cop en còpies" + +#: ../src/commands/segment/AddTempoChangeCommand.h:58 +msgid "Add Te&mpo Change..." +msgstr "Afegeix un ca&nvi de tempo..." + +#: ../src/commands/segment/AudioSegmentAutoSplitCommand.h:57 +#: ../src/commands/segment/SegmentAutoSplitCommand.h:53 +msgid "&Split on Silence" +msgstr "Divideix el &silenci" + +#: ../src/commands/segment/SetTriggerSegmentBaseVelocityCommand.cpp:39 +msgid "Set Base Velocity" +msgstr "Velocitat de base" + +#: ../src/commands/segment/DeleteRangeCommand.cpp:43 +#: ../src/commands/segment/EraseSegmentsStartingInRangeCommand.cpp:39 +#, fuzzy +msgid "Delete Range" +msgstr "Suprimeix un marcador" + +#: ../src/commands/segment/ChangeCompositionLengthCommand.h:53 +msgid "Change &Composition Start and End..." +msgstr "&Canvia l'inici i el final de la composició..." + +#: ../src/commands/segment/MoveTracksCommand.h:51 +msgid "Move Tracks..." +msgstr "Mou les pistes..." + +#: ../src/commands/segment/SegmentColourCommand.cpp:39 +msgid "Change Segment Color" +msgstr "Canvia el color del fragment" + +#: ../src/commands/segment/AudioSegmentDistributeCommand.h:66 +msgid "Distribute Audio Segments over MIDI" +msgstr "Envia els fragments d'àudio al dispositiu MIDI" + +#: ../src/commands/segment/AudioSegmentAutoSplitCommand.cpp:147 +msgid "%1 (autosplit %2)" +msgstr "%1 (dividit automàtic %2)" + +#: ../src/commands/segment/SetTriggerSegmentDefaultRetuneCommand.cpp:39 +#, fuzzy +msgid "Set Default Retune" +msgstr "Defineix un to per defecte" + +#: ../src/commands/segment/AddTimeSignatureCommand.h:52 +msgid "Add Time Si&gnature Change..." +msgstr "&Canvia d'indicació de compàs..." + +#: ../src/commands/segment/AddTriggerSegmentCommand.cpp:42 +#, fuzzy +msgid "Add Triggered Segment" +msgstr "Afegeix un fragment activable" + +#: ../src/commands/segment/SetTriggerSegmentDefaultTimeAdjustCommand.cpp:39 +msgid "Set Default Time Adjust" +msgstr "Ajust de temps per defecte" + +#: ../src/commands/segment/RemoveTimeSignatureCommand.h:58 +msgid "Remove &Time Signature Change..." +msgstr "&Elimina el canvi d'indicació de compàs..." + +#: ../src/commands/segment/SegmentCommandRepeat.cpp:39 +msgid "Repeat Segments" +msgstr "Repeteix el fragment" + +#: ../src/commands/segment/AddTracksCommand.h:55 +msgid "Add Tracks..." +msgstr "Afegeix pistes..." + +#: ../src/commands/segment/ModifyDefaultTempoCommand.h:51 +msgid "Modify &Default Tempo..." +msgstr "Modifica el tempo per &defecte..." + +#: ../src/commands/segment/SegmentSplitByPitchCommand.h:61 +msgid "Split by &Pitch..." +msgstr "Divideix se&gons to..." + +#: ../src/commands/segment/DeleteTriggerSegmentCommand.cpp:40 +#, fuzzy +msgid "Delete Triggered Segment" +msgstr "Suprimeix el fragment activable" + +#: ../src/commands/segment/SegmentSplitCommand.cpp:42 +msgid "Split Segment" +msgstr "Divideix el fragment" + +#: ../src/commands/segment/DeleteTracksCommand.h:51 +msgid "Delete Tracks..." +msgstr "Esborra les pistes..." + +#: ../src/commands/segment/InsertRangeCommand.cpp:42 +#, fuzzy +msgid "Insert Range" +msgstr "Afegeix un silenci" + +#: ../src/commands/segment/DeleteRangeCommand.h:62 +msgid "Rejoin Command" +msgstr "" + +#: ../src/commands/segment/SetTriggerSegmentBasePitchCommand.cpp:39 +msgid "Set Base Pitch" +msgstr "Altura de base" + +#: ../src/commands/segment/PasteConductorDataCommand.cpp:41 +#, fuzzy +msgid "Paste Tempos and Time Signatures" +msgstr "&Tempo i indicació de compàs" + +#: ../src/commands/segment/SegmentSyncClefCommand.cpp:34 +#, fuzzy +msgid "Sync segment clef" +msgstr "Etiqueta del fragment" + +#: ../src/commands/matrix/MatrixInsertionCommand.cpp:46 +#: ../src/commands/notation/NoteInsertionCommand.cpp:54 +msgid "Insert Note" +msgstr "Afegeix una nota" + +#: ../src/commands/matrix/MatrixEraseCommand.cpp:41 +msgid "Erase Note" +msgstr "Esborra la nota" + +#: ../src/commands/matrix/MatrixPercussionInsertionCommand.cpp:47 +msgid "Insert Percussion Note" +msgstr "Afegeix una nota de percusió" + +#: ../src/commands/matrix/MatrixModifyCommand.cpp:43 +msgid "Move Note" +msgstr "Mou la nota" + +#: ../src/commands/matrix/MatrixModifyCommand.cpp:43 +msgid "Modify Note" +msgstr "Modifica la nota" + +#: ../src/commands/edit/PasteEventsCommand.cpp:98 +msgid "Paste into an existing gap [\"restricted\"]" +msgstr "Enganxa a una ranura existent [\"restringit\"]" + +#: ../src/commands/edit/PasteEventsCommand.cpp:100 +msgid "Erase existing events to make room [\"simple\"]" +msgstr "" +"Esborra els esdeveniments existents, per tenir espai lliure [\"simple\"]" + +#: ../src/commands/edit/PasteEventsCommand.cpp:102 +msgid "Move existing events out of the way [\"open-n-paste\"]" +msgstr "Mou els esdeveniments existents fora del seu lloc [\"obre-i-enganxa\"]" + +#: ../src/commands/edit/PasteEventsCommand.cpp:104 +msgid "Overlay notes, tying against present notes [\"note-overlay\"]" +msgstr "" +"Sobreposa les notes, enllaçant-les amb les que ja existeixen [\"sobreposa\"]" + +#: ../src/commands/edit/PasteEventsCommand.cpp:106 +msgid "Overlay notes, ignoring present notes [\"matrix-overlay\"]" +msgstr "" +"Sobreposa les notes, ignorant les que ja existeixen [\"sobreposa en matriu\"]" + +#: ../src/commands/edit/AddDotCommand.h:52 +msgid "&Add Dot" +msgstr "&Afegeix el punt" + +#: ../src/commands/edit/RemoveMarkerCommand.h:55 +msgid "&Remove Marker" +msgstr "&Suprimeix el marcador" + +#: ../src/commands/edit/EventUnquantizeCommand.cpp:43 +#: ../src/commands/edit/EventUnquantizeCommand.cpp:54 +msgid "Unquantize Events" +msgstr "Desquantifica els esdeveniments" + +#: ../src/commands/edit/ChangeVelocityCommand.h:53 +msgid "&Increase Velocity" +msgstr "&Incrementa la velocitat" + +#: ../src/commands/edit/ChangeVelocityCommand.h:54 +msgid "&Reduce Velocity" +msgstr "&Redueix la velocitat" + +#: ../src/commands/edit/CopyCommand.cpp:46 +msgid "(excerpt)" +msgstr "(extracte)" + +#: ../src/commands/edit/CopyCommand.cpp:60 +msgid "(copied)" +msgstr "(copiat)" + +#: ../src/commands/edit/EventInsertionCommand.cpp:39 +msgid "Insert Event" +msgstr "Afegeix l'esdeveniment" + +#: ../src/commands/edit/InsertTriggerNoteCommand.cpp:55 +msgid "Insert Trigger Note" +msgstr "Afegeix una nota activadora" + +#: ../src/commands/edit/CollapseNotesCommand.h:50 +msgid "Collapse &Equal-Pitch Notes" +msgstr "Redueix les notes d&e la mateixa altura" + +#: ../src/commands/edit/TransposeCommand.h:61 +msgid "&Up a Semitone" +msgstr "Ap&uja un semitò" + +#: ../src/commands/edit/TransposeCommand.h:62 +msgid "&Down a Semitone" +msgstr "A&baixa un semitò" + +#: ../src/commands/edit/TransposeCommand.h:63 +msgid "Up an &Octave" +msgstr "Apuja una &octava" + +#: ../src/commands/edit/TransposeCommand.h:64 +msgid "Down an Octa&ve" +msgstr "Abaixa una octa&va" + +#: ../src/commands/edit/TransposeCommand.h:65 +#, fuzzy +msgid "&Transpose by Semitones..." +msgstr "S'està transposant un semitò cap amunt..." + +#: ../src/commands/edit/SetNoteTypeCommand.h:56 +msgid "&Set Note Type" +msgstr "E&stableix el tipus de nota" + +#: ../src/commands/edit/EventEditCommand.h:55 +msgid "Edit E&vent" +msgstr "Edita l'esde&veniment" + +#: ../src/commands/edit/AddMarkerCommand.h:54 +msgid "&Add Marker" +msgstr "&Afegeix el marcador" + +#: ../src/commands/edit/SelectionPropertyCommand.h:66 +msgid "Set &Property" +msgstr "Defineix la &propietat" + +#: ../src/commands/edit/CutCommand.h:55 +msgid "Cu&t" +msgstr "Re&talla" + +#: ../src/commands/edit/EventQuantizeCommand.cpp:114 +msgid "Heuristic Notation &Quantize" +msgstr "&Quantificació heurística" + +#: ../src/commands/edit/EventQuantizeCommand.cpp:116 +msgid "Grid &Quantize" +msgstr "Graella de &Quantificació" + +#: ../src/commands/edit/ClearTriggersCommand.h:52 +msgid "&Clear Triggers" +msgstr "&Neteja els activadors" + +#: ../src/commands/edit/RetrogradeCommand.h:51 +#, fuzzy +msgid "&Retrograde" +msgstr "En®istra" + +#: ../src/commands/edit/InvertCommand.h:51 +#, fuzzy +msgid "&Invert" +msgstr "&Afegeix una nota" + +#: ../src/commands/edit/SetTriggerCommand.h:64 +msgid "Tri&gger Segment" +msgstr "Acti&va el fragment activable" + +#: ../src/commands/edit/SetLyricsCommand.h:50 +msgid "Edit L&yrics" +msgstr "Edita la &lírica" + +#: ../src/commands/edit/MoveAcrossSegmentsCommand.cpp:73 +msgid "&Move Events to Other Segment" +msgstr "&Mou els esdeveniments a un altre fragment" + +#: ../src/commands/edit/RetrogradeInvertCommand.h:51 +msgid "Re&trograde Invert" +msgstr "" + +#: ../src/commands/edit/ModifyMarkerCommand.h:55 +msgid "&Modify Marker" +msgstr "&Modifica el marcador" + +#: ../src/commands/studio/AddControlParameterCommand.h:61 +msgid "&Add Control Parameter" +msgstr "&Afegeix un paràmetre de control" + +#: ../src/commands/studio/ModifyInstrumentMappingCommand.h:55 +msgid "Modify &Instrument Mapping" +msgstr "Modifica el mapa d'&instruments" + +#: ../src/commands/studio/RemoveControlParameterCommand.h:60 +msgid "&Remove Control Parameter" +msgstr "&Suprimeix un paràmetre de control" + +#: ../src/commands/studio/ReconnectDeviceCommand.h:55 +msgid "Reconnect Device" +msgstr "Torna a connectar el dispositiu" + +#: ../src/commands/studio/ModifyDeviceCommand.h:68 +msgid "Modify &MIDI Bank" +msgstr "Modifica el banc &MIDI" + +#: ../src/commands/studio/CreateOrDeleteDeviceCommand.h:68 +msgid "Create Device" +msgstr "Crea un dispositiu" + +#: ../src/commands/studio/ModifyDeviceMappingCommand.h:55 +msgid "Modify &Device Mapping" +msgstr "Modifica el mapa de &dispositius" + +#: ../src/commands/studio/RenameDeviceCommand.h:55 +msgid "Rename Device" +msgstr "Canvia el nom del dispositiu" + +#: ../src/commands/studio/ModifyControlParameterCommand.h:61 +msgid "&Modify Control Parameter" +msgstr "&Modifica el paràmetre de control" + +#: ../src/commands/notation/TieNotesCommand.h:49 +msgid "&Tie" +msgstr "Ll&igats" + +#: ../src/commands/notation/ClefInsertionCommand.cpp:74 +msgid "Add Cle&f Change..." +msgstr "Afegeix el ca&nvi de clau..." + +#: ../src/commands/notation/GuitarChordInsertionCommand.cpp:40 +#, fuzzy +msgid "Insert Guitar Chord" +msgstr "editor d'acords de guitarra" + +#: ../src/commands/notation/RespellCommand.cpp:47 +#, c-format +msgid "Respell with %1" +msgstr "Força les alteracions amb %1" + +#: ../src/commands/notation/RespellCommand.cpp:50 +msgid "Do&uble Sharp" +msgstr "Doble die&si" + +#: ../src/commands/notation/RespellCommand.cpp:52 +msgid "&Sharp" +msgstr "&Diesi" + +#: ../src/commands/notation/RespellCommand.cpp:54 +msgid "&Flat" +msgstr "&Bemoll" + +#: ../src/commands/notation/RespellCommand.cpp:56 +msgid "Dou&ble Flat" +msgstr "Do&ble bemoll" + +#: ../src/commands/notation/RespellCommand.cpp:58 +msgid "&Natural" +msgstr "B&ecaire" + +#: ../src/commands/notation/RespellCommand.cpp:60 +msgid "N&one" +msgstr "Ca&p" + +#: ../src/commands/notation/RespellCommand.cpp:66 +msgid "Respell Accidentals &Upward" +msgstr "Força els accidents &cap amunt" + +#: ../src/commands/notation/RespellCommand.cpp:69 +msgid "Respell Accidentals &Downward" +msgstr "Força els accidents cap a&vall" + +#: ../src/commands/notation/RespellCommand.cpp:72 +#, fuzzy +msgid "&Restore Accidentals" +msgstr "Reescriu els accidents" + +#: ../src/commands/notation/RespellCommand.cpp:75 +msgid "Respell Accidentals" +msgstr "Reescriu els accidents" + +#: ../src/commands/notation/DeCounterpointCommand.h:55 +msgid "Split-and-Tie Overlapping &Chords" +msgstr "Divideix-i-lliga els a&cords encavalcats" + +#: ../src/commands/notation/BeamCommand.h:49 +msgid "&Beam Group" +msgstr "&Barra d'agrupació" + +#: ../src/commands/notation/AddTextMarkCommand.h:51 +msgid "Add Te&xt Mark..." +msgstr "Afegeix la marca de te&xt..." + +#: ../src/commands/notation/RestoreSlursCommand.h:49 +#, fuzzy +msgid "&Restore Slur Positions" +msgstr "&Restaura la direcció calculada dels lligats" + +#: ../src/commands/notation/SustainInsertionCommand.h:56 +msgid "Add Pedal &Press" +msgstr "Afegeix el pedal &premut" + +#: ../src/commands/notation/SustainInsertionCommand.h:58 +msgid "Add Pedal &Release" +msgstr "Afegeix el pedal lliu&re" + +#: ../src/commands/notation/FixNotationQuantizeCommand.h:49 +msgid "Fi&x Notation Quantization" +msgstr "Fi&xa la quantificació de la partitura" + +#: ../src/commands/notation/ChangeStemsCommand.h:51 +msgid "Stems &Up" +msgstr "Vírgules cap &amunt" + +#: ../src/commands/notation/ChangeStemsCommand.h:51 +msgid "Stems &Down" +msgstr "Vírgules cap a&vall" + +#: ../src/commands/notation/MakeAccidentalsCautionaryCommand.cpp:43 +#, fuzzy +msgid "Use &Cautionary Accidentals" +msgstr "Fes servir els accidents de pre&caució" + +#: ../src/commands/notation/MakeAccidentalsCautionaryCommand.cpp:45 +#, fuzzy +msgid "Cancel C&autionary Accidentals" +msgstr "Cancel·la els &accidents de precaució" + +#: ../src/commands/notation/SetVisibilityCommand.h:50 +msgid "Set Visibility" +msgstr "Estableix la visibilitat" + +#: ../src/commands/notation/ChangeStyleCommand.h:53 +msgid "Change &Note Style" +msgstr "Canvia l'estil de la ¬a" + +#: ../src/commands/notation/TextInsertionCommand.cpp:41 +msgid "Insert Text" +msgstr "Afegeix el text" + +#: ../src/commands/notation/InterpretCommand.h:70 +msgid "&Interpret..." +msgstr "&Interpreta..." + +#: ../src/commands/notation/TupletCommand.h:53 +msgid "&Triplet" +msgstr "&Treset" + +#: ../src/commands/notation/TupletCommand.h:54 +msgid "Tu&plet..." +msgstr "Grup &irregular..." + +#: ../src/commands/notation/UnTupletCommand.h:50 +msgid "&Untuplet" +msgstr "&Divideix els grups irregulars..." + +#: ../src/commands/notation/CollapseRestsCommand.h:54 +msgid "&Collapse Rests" +msgstr "&Redueix els silencis" + +#: ../src/commands/notation/AddIndicationCommand.cpp:145 +msgid "Add S&lur" +msgstr "Afegeix el &lligat" + +#: ../src/commands/notation/AddIndicationCommand.cpp:147 +msgid "Add &Phrasing Slur" +msgstr "Afegeix el lligat de &fraseig" + +#: ../src/commands/notation/AddIndicationCommand.cpp:149 +msgid "Add Double-Octave Up" +msgstr "Afegeix una doble-octava superior" + +#: ../src/commands/notation/AddIndicationCommand.cpp:151 +msgid "Add Octave &Up" +msgstr "Afegeix una octava s&uperior" + +#: ../src/commands/notation/AddIndicationCommand.cpp:153 +msgid "Add Octave &Down" +msgstr "Afegeix una octava &inferior" + +#: ../src/commands/notation/AddIndicationCommand.cpp:155 +msgid "Add Double Octave Down" +msgstr "Afegeix una doble-octava inferior" + +#: ../src/commands/notation/AddIndicationCommand.cpp:160 +msgid "Add &Crescendo" +msgstr "Afegeix un &crescendo" + +#: ../src/commands/notation/AddIndicationCommand.cpp:162 +msgid "Add &Decrescendo" +msgstr "Afegeix un &decrescendo..." + +#: ../src/commands/notation/AddIndicationCommand.cpp:164 +msgid "Add &Glissando" +msgstr "Afegeix el &glissando" + +#: ../src/commands/notation/AddIndicationCommand.cpp:167 +msgid "Add &%1%2" +msgstr "Afegeix &%1%2" + +#: ../src/commands/notation/RemoveNotationQuantizeCommand.h:49 +msgid "Remo&ve Notation Quantization" +msgstr "Suprimeix la &quantificació de la partitura" + +#: ../src/commands/notation/MakeChordCommand.h:50 +msgid "Make &Chord" +msgstr "Crea l'a&cord" + +#: ../src/commands/notation/MultiKeyInsertionCommand.h:63 +msgid "Change all to &Key %1..." +msgstr "Canvia-ho tot al &to %1..." + +#: ../src/commands/notation/KeyInsertionCommand.h:67 +#: ../src/commands/notation/MultiKeyInsertionCommand.h:65 +msgid "Add &Key Change..." +msgstr "Afegeix el canvi de &to..." + +#: ../src/commands/notation/RestoreStemsCommand.h:49 +#, fuzzy +msgid "&Restore Stems" +msgstr "&Restaura la direcció calculada de les vírgules" + +#: ../src/commands/notation/MakeNotesViableCommand.h:55 +#: ../src/commands/notation/MakeRegionViableCommand.h:52 +msgid "Tie Notes at &Barlines" +msgstr "Lliga les notes a les &barres de compàs" + +#: ../src/commands/notation/AddSlashesCommand.h:46 +msgid "Slashes" +msgstr "Barres inverses" + +#: ../src/commands/notation/ChangeSlurPositionCommand.h:51 +msgid "Slur &Above" +msgstr "Lligat &amunt" + +#: ../src/commands/notation/ChangeSlurPositionCommand.h:51 +msgid "Slur &Below" +msgstr "Lligat a&vall" + +#: ../src/commands/notation/NormalizeRestsCommand.h:54 +msgid "&Normalize Rests" +msgstr "&Normalitza els silencis" + +#: ../src/commands/notation/TextChangeCommand.cpp:41 +msgid "Edit Text" +msgstr "Edita el text" + +#: ../src/commands/notation/RemoveMarksCommand.h:49 +msgid "&Remove All Marks" +msgstr "&Suprimeix totes les marques" + +#: ../src/commands/notation/AutoBeamCommand.h:52 +msgid "&Auto-Beam" +msgstr "Barres d'agrupació &automàtiques" + +#: ../src/commands/notation/UntieNotesCommand.h:49 +msgid "&Untie" +msgstr "&Deslliga les notes" + +#: ../src/commands/notation/AddMarkCommand.cpp:48 +msgid "S&forzando" +msgstr "S&forzando" + +#: ../src/commands/notation/AddMarkCommand.cpp:50 +msgid "Sta&ccato" +msgstr "Sta&ccato" + +#: ../src/commands/notation/AddMarkCommand.cpp:52 +msgid "R&inforzando" +msgstr "R&inforzando" + +#: ../src/commands/notation/AddMarkCommand.cpp:54 +msgid "T&enuto" +msgstr "T&enuto" + +#: ../src/commands/notation/AddMarkCommand.cpp:56 +msgid "Tri&ll" +msgstr "Tri&nat" + +#: ../src/commands/notation/AddMarkCommand.cpp:58 +msgid "Trill &with Line" +msgstr "Trinat &amb línia" + +#: ../src/commands/notation/AddMarkCommand.cpp:60 +msgid "Trill Line" +msgstr "Línia de trinat" + +#: ../src/commands/notation/AddMarkCommand.cpp:62 +msgid "&Turn" +msgstr "&Gira" + +#: ../src/commands/notation/AddMarkCommand.cpp:64 +msgid "&Accent" +msgstr "&Accent" + +#: ../src/commands/notation/AddMarkCommand.cpp:66 +msgid "&Staccatissimo" +msgstr "&Staccatissimo" + +#: ../src/commands/notation/AddMarkCommand.cpp:68 +msgid "&Marcato" +msgstr "&Marcato" + +#: ../src/commands/notation/AddMarkCommand.cpp:70 +msgid "&Pause" +msgstr "&Calderó" + +#: ../src/commands/notation/AddMarkCommand.cpp:72 +msgid "&Up-Bow" +msgstr "P&unta" + +#: ../src/commands/notation/AddMarkCommand.cpp:74 +msgid "&Down-Bow" +msgstr "&Taló" + +#: ../src/commands/notation/AddMarkCommand.cpp:76 +msgid "Mo&rdent" +msgstr "Mo&rdent" + +#: ../src/commands/notation/AddMarkCommand.cpp:78 +msgid "Inverted Mordent" +msgstr "Mordent invertit" + +#: ../src/commands/notation/AddMarkCommand.cpp:80 +msgid "Long Mordent" +msgstr "Mordent llarg" + +#: ../src/commands/notation/AddMarkCommand.cpp:82 +msgid "Lon&g Inverted Mordent" +msgstr "Mordent llar&g invertit" + +#: ../src/commands/notation/AddMarkCommand.cpp:84 +msgid "&%1%2" +msgstr "&%1%2" + +#: ../src/commands/notation/AddMarkCommand.cpp:89 +#, c-format +msgid "Add %1" +msgstr "Afegeix %1" + +#: ../src/commands/notation/ResetDisplacementsCommand.h:49 +#, fuzzy +msgid "Restore Positions" +msgstr "Restaura les posicions calculades" + +#: ../src/commands/notation/IncrementDisplacementsCommand.h:52 +msgid "Fine Reposition" +msgstr "Reubicació precisa" + +#: ../src/commands/notation/RestoreTiesCommand.h:49 +#, fuzzy +msgid "&Restore Tie Positions" +msgstr "Restaura les posicions calculades" + +#: ../src/commands/notation/ChangeTiePositionCommand.h:47 +#, fuzzy +msgid "Tie &Above" +msgstr "Lligat &amunt" + +#: ../src/commands/notation/ChangeTiePositionCommand.h:47 +#, fuzzy +msgid "Tie &Below" +msgstr "Lligat a&vall" + +#: ../src/commands/notation/KeyInsertionCommand.h:65 +msgid "Change to &Key %1..." +msgstr "Canvia al &to %1..." + +#: ../src/commands/notation/RemoveFingeringMarksCommand.h:49 +msgid "&Remove Fingerings" +msgstr "Suprimeix les&digitacions" + +#: ../src/commands/notation/BreakCommand.h:49 +msgid "&Unbeam" +msgstr "Tre&u les barres d'agrupació" + +#: ../src/commands/notation/UnGraceCommand.h:48 +msgid "Ung&race" +msgstr "&Suprimeix les notes d'ornament" + +#: ../src/commands/notation/AddFingeringMarkCommand.cpp:45 +msgid "Add Other &Fingering..." +msgstr "Afegeix una altra &digitació..." + +#: ../src/commands/notation/AddFingeringMarkCommand.cpp:47 +msgid "Add Fingering &0 (Thumb)" +msgstr "Afegeix la digitació &0 (polze)..." + +#: ../src/commands/notation/AddFingeringMarkCommand.cpp:49 +#, c-format +msgid "Add Fingering &%1" +msgstr "Afegeix la digitació &%1" + +#: ../src/document/io/HydrogenXMLHandler.cpp:277 +msgid " imported from Hydrogen " +msgstr " importat de l'Hydrogen " + +#: ../src/document/io/LilyPondExporter.cpp:404 +#, fuzzy +msgid "" +"LilyPond does not allow spaces or backslashes in filenames.\n" +"\n" +"Would you like to use\n" +"\n" +" %1\n" +"\n" +" instead?" +msgstr "" +"Lilypond no permet espais o barres invertides en els noms de fitxers.\n" +"\n" +"Voleu fer servir\n" +"\n" +" %1\n" +"\n" +"en comptes seu ?" + +#: ../src/document/io/LilyPondExporter.cpp:2054 +msgid "warning: overlong bar truncated here" +msgstr "atenció: compàs massa llarg, truncat aquí" + +#: ../src/document/io/LilyPondExporter.cpp:2060 +msgid "warning: bar too short, padding with rests" +msgstr "atenció: compàs massa curt, completat amb silencis" + +#: ../src/document/MultiViewCommandHistory.cpp:318 +msgid "Nothing to undo" +msgstr "No hi ha res per desfer" + +#: ../src/document/MultiViewCommandHistory.cpp:320 +msgid "Nothing to redo" +msgstr "No hi ha res per refer" + +#: ../src/document/MultiViewCommandHistory.cpp:328 +#: ../src/document/MultiViewCommandHistory.cpp:372 +#, c-format +msgid "Und&o %1" +msgstr "&Desfer %1" + +#: ../src/document/MultiViewCommandHistory.cpp:330 +#: ../src/document/MultiViewCommandHistory.cpp:374 +#, c-format +msgid "Re&do %1" +msgstr "Re&fer %1" + +#: ../src/document/RosegardenGUIDoc.cpp:328 +msgid "" +"The current file has been modified.\n" +"Do you want to save it?" +msgstr "" +"El fitxer actual s'ha modificat.\n" +"Voleu desar-lo?" + +#: ../src/document/RosegardenGUIDoc.cpp:480 +#, fuzzy, c-format +msgid "" +"_n: Delete the 1 audio file recorded during the unsaved session?\n" +"Delete the %n audio files recorded during the unsaved session?" +msgstr "" +"_n: Voleu esborrar el fitxer d'àudio enregistrat durant la sessió sense " +"desar?\n" +"Voleu esborrar els %n fitxers d'àudio enregistrats durant la sessió sense " +"desar?" + +#: ../src/document/RosegardenGUIDoc.cpp:501 +msgid "" +"The following audio files were recorded during this session but have been " +"unloaded\n" +"from the audio file manager, and so are no longer in use in the document you " +"are saving.\n" +"\n" +"You may want to clean up these files to save disk space.\n" +"\n" +"Please select any you wish to delete permanently from the hard disk.\n" +msgstr "" +"Els següents fitxers d'àudio s'han enregistrat durant aquesta sessió,però no " +"consten \n" +"en el gestor de fitxers d'àudio, i per tant no tenen utilitat en el document " +"que voleu desar.\n" +"\n" +"Pot ser voleu suprimir aquests fitxers.\n" +"\n" +"Seleccioneu de la llista els fitxers que voleu esborrar del disc dur.\n" + +#: ../src/document/RosegardenGUIDoc.cpp:517 +#, fuzzy, c-format +msgid "" +"_n: About to delete 1 audio file permanently from the hard disk." +"
    There will be no way to recover this file.
    Are you sure?
    \n" +"\n" +"About to delete %n audio files permanently from the hard disk.
    There " +"will be no way to recover these files.
    Are you sure?
    " +msgstr "" +"_n: Si esborreu el fitxer d'àudio permanentment del disc dur,\n" +"no podreu desfer aquesta acció i no es podrà recuperar el fitxer.\n" +"Voleu continuar?\n" +"_n: Si esborreu %n fitxers d'àudio permanentment del disc dur,\n" +"no podreu desfer aquesta acció i no es podran recuperar els fitxers.\n" +"Voleu continuar?" + +#: ../src/document/RosegardenGUIDoc.cpp:580 +msgid "Can't open file '%1'" +msgstr "No s'ha pogut obrir el fitxer '%1'" + +#: ../src/document/RosegardenGUIDoc.cpp:585 +msgid "Reading file..." +msgstr "S'està llegint el fitxer..." + +#: ../src/document/RosegardenGUIDoc.cpp:603 +#, fuzzy +msgid "Could not open Rosegarden file" +msgstr "No s'ha pogut obrir el fitxer Rosegarden-4" + +#: ../src/document/RosegardenGUIDoc.cpp:641 +msgid "Error when parsing file '%1': \"%2\"" +msgstr "No s'ha pogut processar el fitxer '%1: \"%2\"" + +#: ../src/document/RosegardenGUIDoc.cpp:689 +msgid "Generating audio previews..." +msgstr "S'estan generant mostres d'àudio..." + +#: ../src/document/RosegardenGUIDoc.cpp:721 +msgid "Merge" +msgstr "Fusiona" + +#: ../src/document/RosegardenGUIDoc.cpp:1605 +msgid "File load cancelled" +msgstr "S'ha avortat la càrrega del fitxer" + +#: ../src/document/RosegardenGUIDoc.cpp:1625 +msgid "" +"

    Audio and plugins not available

    This composition uses audio files " +"or plugins, but Rosegarden is currently running without audio because the " +"JACK audio server was not available on startup.

    Please exit " +"Rosegarden, start the JACK audio server and re-start Rosegarden if you wish " +"to load this complete composition.

    WARNING: If you re-save this " +"composition, all audio and plugin data and settings in it will be lost.

    " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1628 +msgid "" +"

    Audio and plugins not available

    This composition uses audio files " +"or plugins, but you are running a version of Rosegarden that was compiled " +"without audio support.

    WARNING: If you re-save this composition " +"from this version of Rosegarden, all audio and plugin data and settings in " +"it will be lost.

    " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1665 +msgid "" +"

    Incorrect audio sample rate

    This composition contains audio files " +"that were recorded or imported with the audio server running at a different " +"sample rate (%1 Hz) from the current JACK server sample rate (%2 Hz).

    Rosegarden will play this composition at the correct speed, but any " +"audio files in it will probably sound awful.

    Please consider re-" +"starting the JACK server at the correct rate (%3 Hz) and re-loading this " +"composition before you do any more work with it.

    " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1675 +msgid "" +"

    Inconsistent audio sample rates

    This composition contains audio " +"files at more than one sample rate.

    Rosegarden will play them at the " +"correct speed, but any audio files that were recorded or imported at rates " +"different from the current JACK server sample rate (%1 Hz) will probably " +"sound awful.

    Please see the audio file manager dialog for more " +"details, and consider resampling any files that are at the wrong rate.

    " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1676 +#, fuzzy +msgid "Inconsistent sample rates" +msgstr "Propietats no persistents" + +#: ../src/document/RosegardenGUIDoc.cpp:1690 +#, fuzzy +msgid "" +"

    Plugins not found

    The following audio plugins could not be loaded:" +"

      " +msgstr "" +"Els connectors següents no s'han pogut carregar:\n" +"\n" + +#: ../src/document/RosegardenGUIDoc.cpp:1698 +#, fuzzy +msgid "
    • %1 (from %2)
    • " +msgstr "-- %1 (des de %2)\n" + +#: ../src/document/RosegardenGUIDoc.cpp:1712 +msgid "" +"This file contains one or more old element types that are now deprecated.\n" +"Support for these elements may disappear in future versions of Rosegarden.\n" +"We recommend you re-save this file from this version of Rosegarden to ensure " +"that it can still be re-loaded in future versions." +msgstr "" +"Aquest fitxer conté un o més tipus d'elements anticuats i que ara estan " +"desaconsellats.\n" +"En properes versions del Rosegarden aquests elements desapareixeran.\n" +"Es recomana que ho torneu desar amb aquesta versió del Rosegarden per així " +"estar segurs que funcionarà en properes versions. " + +#: ../src/document/RosegardenGUIDoc.cpp:2207 +msgid "Insert Recorded MIDI" +msgstr "Insereix el MIDI enregistrat" + +#: ../src/document/RosegardenGUIDoc.cpp:2560 +msgid "%1 (recorded)" +msgstr "%1 (enregistrat)" + +#: ../src/document/RoseXmlHandler.cpp:442 +msgid "" +"This file was written by Rosegarden %1, and it uses\n" +"a different file format that cannot be read by this version." +msgstr "" +"Aquest fitxer s'ha escrit amb el Rosegarden %1, i fa servir \n" +"un format diferent que no es pot llegir amb aquesta versió." + +#: ../src/document/RoseXmlHandler.cpp:452 +msgid "" +"This file was written by Rosegarden %1, which is more recent than this " +"version.\n" +"There may be some incompatibilities with the file format." +msgstr "" +"Aquest fitxer s'ha escrit amb el Rosegarden %1, que és una versió més nova " +"que aquesta.\n" +"Poden haver-hi algunes incompatibilitats amb el format del fitxer." + +#: ../src/document/RoseXmlHandler.cpp:1687 +msgid "Loading plugins..." +msgstr "S'estan carregant els connectors..." + +#: rc.cpp:6 rc.cpp:144 +#, no-c-format +msgid "Se&gment" +msgstr "Fra&gment" + +#: rc.cpp:9 rc.cpp:84 rc.cpp:147 rc.cpp:303 +#, no-c-format +msgid "Edit &With" +msgstr "Edita &amb" + +#: rc.cpp:12 rc.cpp:21 rc.cpp:30 rc.cpp:39 rc.cpp:345 +#, no-c-format +msgid "Actions Toolbar" +msgstr "Barra d'accions" + +#: rc.cpp:15 rc.cpp:33 rc.cpp:129 rc.cpp:285 +#, no-c-format +msgid "Time Toolbar" +msgstr "Barra del temps" + +#: rc.cpp:18 rc.cpp:36 rc.cpp:57 rc.cpp:63 rc.cpp:120 rc.cpp:243 rc.cpp:342 +#, no-c-format +msgid "Transport Toolbar" +msgstr "Barra de transport" + +#: rc.cpp:24 rc.cpp:42 rc.cpp:123 rc.cpp:348 +#, fuzzy, no-c-format +msgid "Zoom Toolbar" +msgstr "Barra de zoom" + +#: rc.cpp:45 rc.cpp:60 rc.cpp:99 rc.cpp:228 rc.cpp:327 +#, no-c-format +msgid "T&ransport" +msgstr "T&ransport" + +#: rc.cpp:51 +#, no-c-format +msgid "Number of Stereo &Inputs" +msgstr "Nombre d'&entrades d'estéreo" + +#: rc.cpp:54 +#, no-c-format +msgid "&Number of Submasters" +msgstr "&Nombre de submasters" + +#: rc.cpp:66 +#, no-c-format +msgid "&Import" +msgstr "&Importa" + +#: rc.cpp:69 +#, no-c-format +msgid "&Merge" +msgstr "&Fusiona" + +#: rc.cpp:72 +#, no-c-format +msgid "&Export" +msgstr "&Exporta" + +#: rc.cpp:75 rc.cpp:141 rc.cpp:297 +#, no-c-format +msgid "&Composition" +msgstr "&Composició" + +#: rc.cpp:78 +#, no-c-format +msgid "&Studio" +msgstr "E&studi" + +#: rc.cpp:81 +#, no-c-format +msgid "Se&gments" +msgstr "Fra&gments" + +#: rc.cpp:90 +#, no-c-format +msgid "Trac&ks" +msgstr "&Pistes" + +#: rc.cpp:93 +#, no-c-format +msgid "Set &Instrument" +msgstr "Posa un &instrument" + +#: rc.cpp:102 rc.cpp:234 rc.cpp:333 +#, no-c-format +msgid "&Toolbars" +msgstr "B&arra d'eines" + +#: rc.cpp:105 rc.cpp:237 rc.cpp:336 +#, no-c-format +msgid "&Rulers" +msgstr "&Regles" + +#: rc.cpp:111 rc.cpp:240 rc.cpp:339 +#, no-c-format +msgid "Tools Toolbar" +msgstr "Barra d'eines" + +#: rc.cpp:114 +#, no-c-format +msgid "Tracks Toolbar" +msgstr "Barra d'eines de les pistes" + +#: rc.cpp:117 +#, no-c-format +msgid "Editors Toolbar" +msgstr "Barra d'editors" + +#: rc.cpp:135 +#, no-c-format +msgid "&Layout Mode" +msgstr "&Format" + +#: rc.cpp:138 rc.cpp:294 +#, no-c-format +msgid "Add Event Ruler" +msgstr "Afegeix un regle d'esdeveniments" + +#: rc.cpp:150 +#, fuzzy, no-c-format +msgid "N&ote" +msgstr "N&otes" + +#: rc.cpp:153 +#, no-c-format +msgid "Mar&ks" +msgstr "Mar&ques" + +#: rc.cpp:156 +#, no-c-format +msgid "&Ornaments" +msgstr "&Ornaments" + +#: rc.cpp:159 +#, no-c-format +msgid "&Fingerings" +msgstr "&Digitacions" + +#: rc.cpp:162 +#, no-c-format +msgid "S&lashes" +msgstr "S&lash" + +#: rc.cpp:165 rc.cpp:219 +#, no-c-format +msgid "&Accidentals" +msgstr "&Accidents" + +#: rc.cpp:168 +#, fuzzy, no-c-format +msgid "&Phrase" +msgstr "&Esborra" + +#: rc.cpp:171 +#, no-c-format +msgid "Slur &Position" +msgstr "&Posició del lligat" + +#: rc.cpp:174 +#, fuzzy, no-c-format +msgid "Tie &Position" +msgstr "&Posició del lligat" + +#: rc.cpp:177 +#, no-c-format +msgid "&Octaves" +msgstr "&Octaves" + +#: rc.cpp:180 rc.cpp:306 +#, no-c-format +msgid "Ad&just" +msgstr "A&justa" + +#: rc.cpp:183 +#, no-c-format +msgid "R&ests" +msgstr "Sil&encis" + +#: rc.cpp:186 rc.cpp:213 +#, no-c-format +msgid "&Notes" +msgstr "&Notes" + +#: rc.cpp:189 rc.cpp:309 +#, no-c-format +msgid "&Quantize" +msgstr "&Quantifica" + +#: rc.cpp:195 rc.cpp:315 +#, no-c-format +msgid "Trans&pose" +msgstr "Trans&posa" + +#: rc.cpp:198 rc.cpp:318 +#, no-c-format +msgid "Convert" +msgstr "" + +#: rc.cpp:201 +#, no-c-format +msgid "&Fine Positioning" +msgstr "&Ubicació precisa" + +#: rc.cpp:204 +#, no-c-format +msgid "Fine Ti&ming" +msgstr "Te&mps precís" + +#: rc.cpp:207 +#, no-c-format +msgid "&Visibility" +msgstr "&Visibilitat" + +#: rc.cpp:216 +#, no-c-format +msgid "&Rests" +msgstr "&Silencis" + +#: rc.cpp:222 +#, no-c-format +msgid "&Clefs" +msgstr "&Clau" + +#: rc.cpp:225 rc.cpp:324 +#, fuzzy, no-c-format +msgid "Local &Cursor" +msgstr "&Cursor local" + +#: rc.cpp:246 +#, no-c-format +msgid "Notes Toolbar" +msgstr "Barra de ¬es" + +#: rc.cpp:249 +#, no-c-format +msgid "Rests Toolbar" +msgstr "Barra de silencis" + +#: rc.cpp:252 +#, no-c-format +msgid "Clefs Toolbar" +msgstr "Barra de claus" + +#: rc.cpp:255 +#, no-c-format +msgid "Accidentals Toolbar" +msgstr "Barra d'accidents" + +#: rc.cpp:258 +#, no-c-format +msgid "Group Toolbar" +msgstr "Barra de grups" + +#: rc.cpp:261 +#, no-c-format +msgid "Marks Toolbar" +msgstr "Barra de màrques" + +#: rc.cpp:264 +#, no-c-format +msgid "Meta Toolbar" +msgstr "Barra d'eines Meta" + +#: rc.cpp:267 +#, no-c-format +msgid "Layout Toolbar" +msgstr "Barra de formats" + +#: rc.cpp:270 rc.cpp:351 +#, no-c-format +msgid "Control Ruler actions" +msgstr "Accions del regle de control" + +#: rc.cpp:273 rc.cpp:354 +#, no-c-format +msgid "Property Ruler actions" +msgstr "Accions del regle de propietats" + +#: rc.cpp:276 +#, no-c-format +msgid "&Action" +msgstr "&Acció" + +#: rc.cpp:279 +#, no-c-format +msgid "General Toolbar" +msgstr "Barra d'eines general" + +#: rc.cpp:291 +#, no-c-format +msgid "&Grid" +msgstr "&Graella" + +#: rc.cpp:300 +#, no-c-format +msgid "&Segment" +msgstr "&Fragment" + +#: rc.cpp:361 +#, no-c-format +msgid "Hide additional controls" +msgstr "Amaga els controls addicionals" + +#: rc.cpp:365 +#, no-c-format +msgid "Panic Button" +msgstr "Botó de pànic" + +#: rc.cpp:368 +#, no-c-format +msgid "Resets all MIDI devices if you've got stuck notes" +msgstr "Fa callar tots els dispositius MIDI si teniu cap nota clavada" + +#: rc.cpp:375 +#, no-c-format +msgid "Provides a metronome click for you to play along with" +msgstr "Us dóna un tic-tac de metrònom per ajudar-vos a tocar conjutament" + +#: rc.cpp:378 +#, no-c-format +msgid "Shows MIDI activity in and out of Rosegarden" +msgstr "Mostra l'activiatat d'entrada i sortida del MIDI del Rosegarden " + +#: rc.cpp:381 +#, no-c-format +msgid "IN" +msgstr "Entrada" + +#: rc.cpp:384 +#, no-c-format +msgid "OUT" +msgstr "Sortida" + +#: rc.cpp:387 rc.cpp:390 +#, no-c-format +msgid "NO EVENTS" +msgstr "Sense esdeveniments" + +#: rc.cpp:397 +#, no-c-format +msgid "Record either MIDI or audio" +msgstr "Grava o MIDI o àudio" + +#: rc.cpp:401 +#, no-c-format +msgid "Loop" +msgstr "Bucle de repetició" + +#: rc.cpp:404 +#, no-c-format +msgid "Turn on and off the loop markers (if set)" +msgstr "Commuta les marques dels bucles (si n'hi ha)" + +#: rc.cpp:411 +#, no-c-format +msgid "Mutes all but the currently selected track" +msgstr "Posa silencia a totes les pistes excepte la seleccionada" + +#: rc.cpp:415 +#, no-c-format +msgid "Start loop or range here" +msgstr "" + +#: rc.cpp:419 +#, no-c-format +msgid "End loop or range here" +msgstr "" + +#: rc.cpp:422 +#, no-c-format +msgid "SIG" +msgstr "SIG" + +#: rc.cpp:425 +#, no-c-format +msgid "DIV" +msgstr "DIV" + +#: rc.cpp:428 +#, no-c-format +msgid "/16" +msgstr "/16" + +#: rc.cpp:431 +#, no-c-format +msgid "TEMPO" +msgstr "TEMPO" + +#: rc.cpp:434 +#, no-c-format +msgid "END" +msgstr "END" + +#: rc.cpp:437 +#, no-c-format +msgid "BAR" +msgstr "BAR" + +#: rc.cpp:441 +#, no-c-format +msgid "Switch between real time, musical time, and frame count" +msgstr "Commuta entre temps real, temps musical i comptador de trams" + +#: rc.cpp:445 +#, no-c-format +msgid "Show additional controls" +msgstr "Mostra els controls addicionals" + +#: rc.cpp:449 +#, no-c-format +msgid "Rewind" +msgstr "Rebobina" + +#: rc.cpp:452 +#, no-c-format +msgid "Moves the current pointer position back one bar." +msgstr "Mou la posició una compàs enrere." + +#: rc.cpp:456 +#, no-c-format +msgid "Rewind to beginning" +msgstr "Rebobina fins al començament" + +#: rc.cpp:459 +#, no-c-format +msgid "" +"Moves the pointer position to the start of the composition. (This may mean " +"going forwards if the pointer is currently before the start.)" +msgstr "" +"Torna al principi de la composició. (Això pot voler dir que es mou endavant, " +"en cas que la posició actual era més enrere del principi.)" + +#: rc.cpp:463 +#, no-c-format +msgid "Play/Pause" +msgstr "Reprodueix/pausa" + +#: rc.cpp:466 +#, no-c-format +msgid "" +"Plays from the current pointer position, or pauses playback if already in " +"progress." +msgstr "Toca des de la posició actual, o para de reproduir si estava en marxa." + +#: rc.cpp:473 +#, no-c-format +msgid "Stops playback or recording." +msgstr "Para de reproduir o de gravar." + +#: rc.cpp:477 +#, no-c-format +msgid "Fast forward" +msgstr "Avança ràpidament" + +#: rc.cpp:480 +#, no-c-format +msgid "Moves the current pointer position forwards one bar." +msgstr "Mou la posició una compàs endavant." + +#: rc.cpp:484 +#, no-c-format +msgid "Fast forward to end" +msgstr "Avança ràpidament fins al final" + +#: rc.cpp:487 +#, no-c-format +msgid "" +"Moves the pointer position to the end of the composition. (This may mean " +"going backwards if the pointer is already beyond the end.)" +msgstr "" +"Va al final de la composició. (Això pot voler dir que es mou endarrere, en " +"cas que la posició actual sigui més enllà del final.)" + +#: rc.cpp:491 +#, no-c-format +msgid "Display time to end" +msgstr "Mostra el temps que queda" + +#: ../docs/en/tips.cpp:3 +msgid "" +"

      To configure a track to play using a particular instrument:

      \n" +"  * click on the track label and hold a moment
      \n" +"  * select an output device
      \n" +"  * select one of that device's available instruments (#1 - #16)" +"
      \n" +"  * adjust that instrument's output channel, program, bank, and\n" +"controllers via the instrument parameters box\n" +msgstr "" +"

      Per configurar una pista per tocar amb un instrument determinat:

      \n" +"  * feu clic en l'etiqueta de la pista i manteniu premut el botó " +"un moment
      \n" +"  * seleccioneu un dispositiu de sortida
      \n" +"  * seleccioneu un dels instruments disponibles del dispositiu (#1 " +"- #16)
      \n" +"  * ajusteu el canal, el banc, el programa, i els controladors de " +"l'instrument \n" +"fent servir els controls del quadre de paràmetres de l'instrument\n" + +#: ../docs/en/tips.cpp:13 +msgid "" +"

      ...that Rosegarden has an autosave feature?

      \n" +"You can select your autosave interval from Settings->Configure\n" +"Rosegarden.

      \n" +"When something goes awry, such as a power outage or a Rosegarden crash\n" +"(unfortunately, it happens...) simply load the file you were working on, and " +"you'll be given the\n" +"option to load the autosaved version, or the unmodified original.

      \n" +msgstr "" +"

      ...que el Rosegarden té una característica d'auto-desat?

      \n" +"Podeu seleccionar l'interval de temps a Preferències->Configura el\n" +"Rosegarden

      \n" +"Quan alguna cosa va malament, com una tallada del corrent o una fallada del " +"Rosegarden \n" +"(desgraciadament, això passa...) simplement, recupereu el fitxer amb el qual " +"estàveu treballant, \n" +"i se us presentarà l'opció d'obrir la versió auto-desada, o be l'original " +"sense modificar.

      \n" + +#: ../docs/en/tips.cpp:23 +#, fuzzy +msgid "" +"

      \n" +"...that you can save the current document as your default studio by using\n" +"Composition -> Studio -> Save Current Document as Default Studio?\n" +msgstr "" +"

      \n" +"Podeu desar el document actual com a l'estudi per defecte fent servir\n" +"Composició -> Estudi -> Desa el document actual com a l'estudi per " +"defecte.

      \n" + +#: ../docs/en/tips.cpp:30 +msgid "" +"

      ...that your default studio is a complete Rosegarden composition that " +"gets\n" +"loaded every time you create a new document or import a MIDI file?

      \n" +msgstr "" +"

      ...que el vostre estudi per defecte és una composició completa del " +"Rosegarden, que es\n" +"carrega cada vegada que creeu un document nou o importeu un fitxer MIDI?\n" + +#: ../docs/en/tips.cpp:36 +#, fuzzy +msgid "" +"

      ...that your default studio can contain instrument assignments, document " +"properties, LilyPond headers,\n" +"and many other things?

      The default studio is a complete Rosegarden " +"composition, so it can contain anything that you may wish to have available " +"in each\n" +"new document you create.

      \n" +msgstr "" +"

      Com que el vostre estudi per defecte és una composició completa del\n" +" Rosegarden, pot contenir assignacions d'instruments per defecte, " +"propietats\n" +"del document, capçaleres del Lilypond, i moltes altres coses que podeu\n" +"tenir disponibles per defecte en cada document nou que creeu.

      \n" + +#: ../docs/en/tips.cpp:43 +#, fuzzy +msgid "" +"

      ...that Rosegarden will detect and create a default connection for ALSA " +"soft\n" +"synth applications that are started after Rosegarden is already running?\n" +msgstr "" +"

      ...que el Rosegarden detectarà i crearà una connexió per defecte per als\n" +"sintetitzadors de software d'ALSA, que s'iniciïn després de què el " +"Rosegarden ja\n" +" estigui en execució?

      \n" + +#: ../docs/en/tips.cpp:49 +#, fuzzy +msgid "" +"

      ...that you can make your default studio override that in every " +"Rosegarden composition you load?

      If your studio setup does not change " +"very often, and you would prefer for\n" +"the settings in your default studio to take precedence over whatever\n" +"studio is saved with any files you happen to load, you can make your studio " +"the default for everything using Settings -> Configure Rosegarden ->\n" +"MIDI -> Always use default studio when loading files.

      \n" +msgstr "" +"

      Si la configuració del teu estudi no el canvies mai, i prefereixes que \n" +" el teu estudi sigui el primer a carregar de tots els estudis de autoload." +"rg,\n" +"podeu configurar el teu autoload perquè sigui el predeterminat dins \n" +"Configuració -> Configura el Rosegarden -> Comportament ->\n" +" Sempre utilitza l'estudi per defecte quan carreguis fitxers.

      \n" + +#: ../docs/en/tips.cpp:57 +#, fuzzy +msgid "" +"

      If you have accidentally recorded a segment so short that it does not\n" +"appear on the canvas, which you can only hear during subsequent recording\n" +"sessions, you can gain access to it by using Composition -> Change\n" +"Composition Start and End and then setting the composition to start at a " +"negative number.

      \n" +msgstr "" +"

      Si, accidentalment, heu gravat un fragment tant curt que ni tan sols \n" +"es veu, però que el sentiu igualment, podeu seleccionar-lo anant a\n" +" Composició -> Canvia la durada del document i posant un número\n" +" negatiu en el punt d'inici de la composició.

      \n" + +#: ../docs/en/tips.cpp:65 +#, fuzzy +msgid "" +"

      ...that if you place a note at the wrong pitch using the notation or " +"matrix editor, you can move it one semitone at a time with the up and down " +"arrow keys on your keyboard?

      \n" +msgstr "" +"

      ...que si col·loqueu una nota a una altura incorrecta fent servir " +"l'editor de\n" +"partitures, podeu moure-la un semitò cada vegada, amb les tecles de " +"desplaçament, amunt i avall?

      \n" + +#: ../docs/en/tips.cpp:70 +msgid "" +"

      ...that you can toggle stem directions in the notation editor by " +"selecting\n" +"one or more notes and using Ctrl-PageUp and Ctrl-PageDown?

      \n" +msgstr "" +"

      ...que podeu canviar la direcció de les vírgules en l'editor de " +"partitures seleccionant\n" +"una o més notes i fent servir Ctrl-RePàg i Ctrl-AvPàg?

      \n" + +#: ../docs/en/tips.cpp:76 +msgid "" +"

      ...that you can change the accidental used for a note in the notation " +"editor (without changing the pitch of the note) by selecting\n" +"it and using the up and down arrow keys with both Ctrl and Shift pressed?\n" +msgstr "" +"

      ...que podeu canviar l'accident d'una nota en l'editor de partitures\n" +" (sense canviar l'altura de la nota) seleccionant-la i fent servir les " +"tecles\n" +"de desplaçament, amunt i avall amb Ctrl i majúscules premudes simultàniament?" +"

      \n" + +#: ../docs/en/tips.cpp:82 ../docs/en/tips.cpp:93 +msgid "" +"

      ...that you can hold down the Shift key while repositioning segments on " +"the\n" +"segment canvas in order to avoid the \"snap-to\" effect and exert finer " +"control?

      \n" +msgstr "" +"

      ...que podeu mantenir la tecla de les majúscules premuda mentre " +"recol·loqueu els fragments en el\n" +"fragment per tal d'evitar l'efecte d'\"auto-posicionament\" i poder fer un " +"control més fi?

      \n" + +#: ../docs/en/tips.cpp:88 +msgid "" +"

      ...that you can use the arrow tool to draw, move, and resize segments and " +"events as well as to select them?

      Drag a segment or event block to " +"move it, drag the right edge of a block to resize it, and drag with the " +"middle mouse button pressed to draw a new segment or event.

      (Of " +"course, the dedicated draw, move and resize tools are still quicker for " +"repeated operations.)

      \n" +msgstr "" + +#: ../docs/en/tips.cpp:99 +msgid "" +"

      ...that you can hold down the Shift key while repositioning or resizing " +"events in the\n" +"matrix view in order to avoid the \"snap-to\" effect and exert finer control?" +"

      \n" +msgstr "" +"

      ...que podeu mantenir premuda la tecla de les majúscules mentre\n" +" recol·loqueu o redimensioneu els esdeveniments en la vista de l'editor de " +"matrius, \n" +"per evitar l'efecte d'\"auto-posicionament\" i poder fer un control més fi?\n" + +#: ../docs/en/tips.cpp:105 +msgid "" +"

      ...that you can edit multiple segments on multiple tracks simultaneously " +"in\n" +"the notation editor? Simply select the segments, then use Edit -> Open " +"in Notation Editor.

      \n" +msgstr "" +"

      ...que podeu editar múltiples fragments en múltiples pistes " +"simultàniament en\n" +"l'editor de partitures? Simplement seleccioneu els fragments, després feu " +"servir Edita->Obre a l'editor de partitures

      \n" + +#: ../docs/en/tips.cpp:111 +#, fuzzy +msgid "" +"

      ...that Rosegarden can export files for use by LilyPond, the high-quality " +"score typesetting system?

      \n" +"From the File menu, navigate to Export -> Export LilyPond File

      \n" +msgstr "" +"

      ...que el Rosegarden pot exportar fitxers per a ser usat amb el Lilypond, " +"el sistema\n" +"d'edició de partitures d'alta qualitat?

      \n" +"Des del menú Fitxer, navega a Exporta -> Exporta a fitxer del " +"Lilypond

      \n" + +#: ../docs/en/tips.cpp:117 +#, fuzzy +msgid "" +"

      ...that Rosegarden can print via LilyPond, the high-quality score " +"typesetting system?

      \n" +"From the File menu, navigate to Preview with LilyPond. The " +"file\n" +"will be exported, rendered, and a preview will appear in KPDF, or one of\n" +"several other PDF viewers, where it can then be printed as well.

      \n" +msgstr "" +"

      ...que el Rosegarden pot exportar fitxers per a ser usat amb el Lilypond, " +"el sistema\n" +"d'edició de partitures d'alta qualitat?

      \n" +"Des del menú Fitxer, navega a Exporta -> Exporta a fitxer del " +"Lilypond

      \n" + +#: ../docs/en/tips.cpp:125 +msgid "" +"

      ...that if you use the quantizer from within the notation view, you can " +"tell it to quantize only the timing used for notation -- making it possible " +"to have good looking notation and a human MIDI performance?

      \n" +msgstr "" +"

      ...que si feu servir la quantificació des de la vista d'edició de " +"partitures, podeu dir-li que quantifiqui només els temps utilitzats per a la " +"notació de la partitura -- fent possible obtenir una partitura elegant i, " +"a la vegada, una interpretació MIDI humana?

      \n" + +#: ../docs/en/tips.cpp:130 +msgid "" +"

      ...that you can change segment labels using the controls on the Segment " +"Parameters box\n" +"in the main window?

      \n" +msgstr "" +"

      ...que podeu canviar les etiquetes dels fragments fent servir els " +"controls en la caixa Paràmetres del fragment de la finestra principal?

      \n" + +#: ../docs/en/tips.cpp:136 +msgid "" +"

      ...that the number of tracks in new documents is based on the contents " +"of\n" +"your autoload.rg file?\n" +"

      \n" +"Whether you prefer to start with three tracks or 43, create a document that\n" +"contains the desired number of tracks, plus any other studio or document " +"properties settings\n" +"you wish to configure, and use Composition -> Studio -> Save Current " +"Document as Default\n" +"Studio to make this your new default.

      \n" +msgstr "" +"

      ...que el número de pistes en els documents nous està basat en el \n" +"contingut del seu fitxer autoload.rg?\n" +"

      \n" +"Si preferiu començar amb 3 o amb 43 pistes, creeu un document que contingui\n" +" el número de pistes desitjat, a més de qualssevol altres preferències " +"d'estudi\n" +"o de document que desitgeu configurar, i feu servir Composició -> Estudi -" +">\n" +" Desa el document actual com estudi per defecte perquè aquesta " +"configuració\n" +"s'activi per defecte.

      \n" + +#: ../docs/en/tips.cpp:147 +msgid "" +"

      ...that you can change the name of a track by double clicking on the " +"label? (The\n" +"label must be visible for this to work.)

      \n" +msgstr "" +"

      ...que podeu canviar el nom d'una pista fent doble clic a la seva " +"etiqueta \n" +"(L'etiqueta ha de ser visible perquè això funcioni.)

      \n" + +#: ../docs/en/tips.cpp:153 +#, fuzzy +msgid "" +"

      ...that you can configure what happens when you double-click on a segment?" +"

      Go to Settings -> Configure Rosegarden and choose your " +"preferred editing window under the Behaviour tab.

      \n" +msgstr "" +"

      ...que podeu configurar el que està passant quan feu doble clic en un \n" +"fragment? Seleccioneu Preferències -> Configura el Rosegarden i " +"trieu\n" +"l'opció que preferiu, sota la pestanya Comportament.

      \n" + +#: ../docs/en/tips.cpp:158 +#, fuzzy +msgid "" +"

      ...that Rosegarden is being developed as a community effort with\n" +"contributions from around the world?

      \n" +"The four most active developers live in London (England), Cannes, " +"Barcelona,\n" +"and... Christiansburg? (Christiansburg is a town of about 50,000 in\n" +"southwestern Virginia, USA.)

      \n" +"We have had contributors from elsewhere in the US, UK, Spain, Mexico, " +"Argentina, Germany,\n" +"Sweden, Russia, Japan, Finland, and Italy, just to name a few...

      \n" +msgstr "" +"

      ...que el Rosegarden s'està desenvolupant, amb un esforç comunitari, amb\n" +"contribucions procedents de totes les parts del món?

      \n" +"Els desenvolupadors principals viuen al Regne Unit i a França, i hem tingut\n" +"col·laboradors dels EEUU, Espanya, Alemanya, Rússia, Eslovènia i d'altres\n" +" països...

      \n" + +#: ../docs/en/tips.cpp:169 +#, fuzzy +msgid "" +"

      ...that Rosegarden is available in Spanish, French, German, Russian, " +"Welsh, Swedish, Italian and Estonian\n" +"translations? (Just to name a few.)

      \n" +"If you're interested in translating Rosegarden to another language, drop us " +"a\n" +"line at rosegarden-devel@lists.sourceforge.net.

      \n" +msgstr "" +"

      ...que el Rosegarden té disponibles traduccions a l'espanyol, al " +"francès,\n" +"a l'alemany, al rus, al gal·lès, al suec,a l' italià i a l'estonià?

      \n" +"Si esteu interessat en traduir el Rosegarden a un altre idioma, envieu-nos " +"un missatge a\n" +"rosegarden-devel@lists.sourceforge.net.

      \n" + +#: ../docs/en/tips.cpp:177 +#, fuzzy +msgid "" +"

      ...that you can change the total number of bars in the composition via\n" +"Composition -> Change Composition Start and End?

      \n" +msgstr "" +"

      ...que es pot canviar el número total de compassos de la composició " +"mitjançant\n" +"Edita -> Canvia la durada de la composició?

      \n" + +#: ../docs/en/tips.cpp:183 +msgid "" +"

      ...that you can see the difference between performance and display " +"duration\n" +"of duration-quantized notes in the notation editor?

      \n" +"Use Settings -> Show Raw Note Ruler to turn on this handy\n" +"feature.

      \n" +"Note that this feature does not work in page layout view.

      \n" +msgstr "" +"

      ...que podeu veure la diferència entre la interpretació i la durada " +"representada\n" +"de les notes, la durada de les quals ha estat quantificada en l'editor de " +"partitures?

      \n" +"Feu servir Preferències -> Mostra el regle de la Nota crua per " +"activar aquesta\n" +" pràctica característica.

      \n" +"Fixeu-vos que aquesta característica no funciona en la vista de format de " +"pàgina.

      \n" + +#: ../docs/en/tips.cpp:192 +msgid "" +"

      ...that you can add tempo and time-signature changes by double-clicking " +"on the values displayed in the transport window or tempo rulers?

      \n" +msgstr "" +"

      ...que podeu afegir canvis de tempo i d'indicació de compàs fent doble " +"clic\n" +" en els valors mostrats a la finestra de control o en el regle del tempo?\n" + +#: ../docs/en/tips.cpp:197 +#, fuzzy +msgid "" +"

      ...that the transport window can display musical time, sample frame " +"count, and a visual metronome as well as real time?

      Just click on the " +"small button at the extreme top left of the window.

      \n" +msgstr "" +"

      ...que la finestra de control pot mostrar el temps musical, el comptador\n" +" de mostres i un metrònom visual? Feu un clic sobre el botonet de l'angle\n" +" superior esquerra de la finestra.

      \n" + +#: ../docs/en/tips.cpp:202 +#, fuzzy +msgid "" +"

      ...that you can select all notes of a particular pitch in the matrix " +"view, by shift-clicking on that pitch on the piano keyboard at the left?" +"

      If you shift-click-drag, you can select whole ranges too.

      \n" +msgstr "" +"

      ...que podeu seleccionar totes les notes d'una determinada altura en la\n" +" vista de matrius, prement la tecla de les majúscules i fent un clic a la " +"nota, del\n" +" teclat del piano, de l'esquerra? També podeu arrossegar el ratolí per " +"seleccionar\n" +" abasts complets.

      \n" + +#: ../docs/en/tips.cpp:207 +#, fuzzy +msgid "" +"

      ...that you can set a loop in the main window by clicking-and-dragging on " +"the time ruler with Shift pressed?

      (If the ruler isn't visible, use " +"Settings -> Show Rulers.)

      \n" +msgstr "" +"

      ...que podeu definir una repetició a la finestra principal, fent clic i " +"arrossegant\n" +" en el regle del temps amb la tecla de les majúscules premuda? (si el regle " +"no és\n" +" visible, utilitzeu Preferències -> Mostra els regles.)

      \n" + +#: ../docs/en/tips.cpp:212 +#, fuzzy +msgid "" +"

      ...that if you're editing a section in the matrix or notation view, you " +"can\n" +"set that section to loop while you edit it?

      Select it and use " +"Tools ->\n" +"Local Cursor -> Set Loop to Selection, then hit Play.



      \n" +"This feature does not work quite as well for compositions that include " +"sampled\n" +"audio.\n" +msgstr "" +"

      ...que si esteu editant una secció en les vistes de matrius o de " +"partitures,\n" +" podeu definir aquesta secció com a repetició, mentre l'esteu editant? " +"Seleccioneu\n" +"i feu servir Eines -> Cursor local -> Defineix la repetició en la " +"selecció, i després feu clic sobre Reprodueix.

      \n" + +#: ../docs/en/tips.cpp:221 +msgid "" +"

      ...if you have more than one note or controller event at the same time, " +"you\n" +"can use the [ and ] keys to flip the stack of events around on the " +"controller\n" +"and velocity rulers in order to bring the item you wish to adjust into\n" +"focus.

      \n" +msgstr "" +"

      ...si teniu vàries notes o esdeveniments de controlador en el mateix " +"instant, podeu fer servir\n" +"les tecles [ i ] per tal de visualitzar millor l'element que desitgeu " +"ajustar.

      \n" + +#: ../docs/en/tips.cpp:229 +msgid "" +"

      ...that the notation view shows you notes using their display duration, " +"while the\n" +"matrix allows you to edit their performance duration?

      \n" +"Be careful with tied notes in the matrix. It is not apparent that they " +"are\n" +"tied, and if you split up a pair of tied notes, subsequent notation views " +"will\n" +"be confused and unhappy. This is an old bug that has been on our TODO list\n" +"for years. Sorry about that, folks. Patches welcome.\n" +"

      \n" +msgstr "" + +#: ../docs/en/tips.cpp:240 +#, fuzzy +msgid "" +"

      If you're working with a human performance and you need to insert some " +"new\n" +"notes, these new notes will sound for their entire written duration. To " +"blend\n" +"these new notes into a human performance, select them, then use Adjust -> " +"Interpret... \n" +"from the notation view to interpret any marks and massage their " +"performance\n" +"durations to something less mechanical.

      \n" +msgstr "" +"

      si esteu treballant amb una interpretació humana i necessiteu inserir " +"algunes\n" +"notes noves, aquestes sonaran durant tant de temps com indiqui la seva " +"durada\n" +"escrita. Per fusionar aquestes notes amb una interpretació humana, " +"seleccioneu-les\n" +"i feu servir Ajust -> Notes -> Interpreta... des de la finestra de " +"l'editor de partitures,\n" +"per interpretar qualsevol marcadors i fer que la seva interpretació sigui " +"alguna cosa\n" +"menys mecànica

      \n" + +#: ../docs/en/tips.cpp:249 +msgid "" +"

      ...that Rosegarden can export certain things to LilyPond that it cannot " +"yet\n" +"display within its own native interface?

      These new directives can be " +"inserted\n" +"via the T text insert tool in the notation view.

      \n" +"Load the example files\n" +"lilypond-alternative-endings.rg and lilypond-directives.rg for " +"a\n" +"demonstration of how to use the new exportable directives.

      \n" +"Use File -> Preview with\n" +"LilyPond to see what they look like on the exported page.

      \n" +"Be sure to turn on\n" +"Settings -> Show LilyPond Directives and Show Annotations " +"within\n" +"the notation view.

      \n" +msgstr "" + +#: ../docs/en/tips.cpp:264 +msgid "" +"

      ...that Rosegarden has track parameters allowing you to Create " +"segments with: certain\n" +"properties by default?

      You can pre-select the clef, transposition, " +"colour, and specify\n" +"the highest and lowest playable notes (notes outside this range display in\n" +"red by default). Then draw a segment with the pencil, or record one, and " +"any\n" +"new segments created on this track will take these properties as segment\n" +"parameters.

      \n" +"These parameters do not apply to audio tracks.

      \n" +msgstr "" + +#: ../docs/en/tips.cpp:275 +msgid "" +"

      ...that Rosegarden has a database of preset parameters describing more " +"than 300\n" +"musical instruments from the real world, grouped into several convenient\n" +"categories?

      Each preset contains a clef, transposition, and playable " +"range\n" +"suggestions for both amateur and professional players.

      Click the\n" +"Load button in the new track parameters box to get started! (If " +"you\n" +"do not see a Load button, be sure your parameter panel is set for\n" +"tabbed mode, rather than stacked mode.)

      (Special thanks to " +"Magnus\n" +"Johansson for assembling this extraordinary database.)

      \n" +msgstr "" + +#: ../docs/en/tips.cpp:287 +msgid "" +"

      ...that when exporting to Lilypond, you can merge tracks that have the " +"same name onto a single staff?

      For example, if there are three voices " +"in a single part, write each\n" +"voice as an independent segment/staff, each on a separate track. Give all\n" +"three tracks the same name, and select [x] Merge tracks that have the " +"same\n" +"name from the options dialog that appears when you export to, or " +"preview\n" +"with LilyPond.

      \n" +"The tracks must have a non-default name for this to work.

      \n" +msgstr "" + +#: ../docs/en/tips.cpp:297 +msgid "" +" \t \n" +"

      ...that you can use the mouse wheel to scroll up and down, scroll left " +"and right, and zoom in and out?

      Just roll the wheel to scroll up or " +"down. Hold Alt as well to scroll left or right, or hold Ctrl to zoom in and " +"out.

      \t \n" +msgstr "" + +#: ../docs/en/tips.cpp:303 +msgid "" +" \t \n" +"

      ...that you can time-stretch an audio segment -- stretching or squashing " +"a\n" +"sample to a different duration without changing its pitch -- just by\n" +"dragging its right edge with the Ctrl key pressed?

      \n" +msgstr "" + +#: ../docs/en/tips.cpp:311 +msgid "" +" \t \n" +"

      ...that you can add audio to your Rosegarden composition just by dragging " +"an audio file from your file manager and dropping it on the Rosegarden " +"segment canvas? (Make sure you drop it on an audio track!)

      You can " +"also drop audio files from Rosegarden's audio file manager window onto the " +"segment canvas, and from other programs onto the audio file manager.

      \n" +msgstr "" + +#: ../docs/en/tips.cpp:317 +msgid "" +" \t \n" +"

      ...that you can set the tempo to match the duration of an audio segment " +"if you know it's an exact number of bars or beats long?

      Just select " +"the audio segment and use Composition -> Tempo and Time Signature -> Set " +"Tempo to Audio Segment Duration.

      \n" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:1 +msgid "Feta Pixmaps" +msgstr "Imatges Feta" + +#: ../data/fonts/mappings/fonts.cpp:2 ../data/fonts/mappings/fonts.cpp:7 +msgid "GNU Lilypond" +msgstr "GNU Lilypond" + +#: ../data/fonts/mappings/fonts.cpp:3 ../data/fonts/mappings/fonts.cpp:8 +msgid "Copyright (c) 1997--2003 Han-Wen Nienhuys and Jan Nieuwenhuizen" +msgstr "Copyright (c) 1997--2003 Han-Wen Nienhuys and Jan Nieuwenhuizen" + +#: ../data/fonts/mappings/fonts.cpp:4 ../data/fonts/mappings/fonts.cpp:9 +#: ../data/fonts/mappings/fonts.cpp:14 ../data/fonts/mappings/fonts.cpp:19 +#: ../data/fonts/mappings/fonts.cpp:24 ../data/fonts/mappings/fonts.cpp:29 +#: ../data/fonts/mappings/fonts.cpp:34 ../data/fonts/mappings/fonts.cpp:39 +#: ../data/fonts/mappings/fonts.cpp:44 ../data/fonts/mappings/fonts.cpp:49 +#: ../data/fonts/mappings/fonts.cpp:54 +msgid "Chris Cannam" +msgstr "Chris Cannam" + +#: ../data/fonts/mappings/fonts.cpp:5 ../data/fonts/mappings/fonts.cpp:40 +msgid "pixmap" +msgstr "imatge" + +#: ../data/fonts/mappings/fonts.cpp:6 +msgid "Feta" +msgstr "Feta" + +#: ../data/fonts/mappings/fonts.cpp:10 ../data/fonts/mappings/fonts.cpp:15 +#: ../data/fonts/mappings/fonts.cpp:20 ../data/fonts/mappings/fonts.cpp:25 +#: ../data/fonts/mappings/fonts.cpp:30 ../data/fonts/mappings/fonts.cpp:35 +#: ../data/fonts/mappings/fonts.cpp:45 ../data/fonts/mappings/fonts.cpp:50 +#: ../data/fonts/mappings/fonts.cpp:55 +msgid "scalable" +msgstr "escalable" + +#: ../data/fonts/mappings/fonts.cpp:11 +msgid "Fughetta" +msgstr "Fughetta" + +#: ../data/fonts/mappings/fonts.cpp:12 +#, fuzzy +msgid "" +"Created by Blake Hodgetts; freely redistributable. See http://www.efn.org/" +"~bch/aboutfonts.html" +msgstr "" +"Creat per en Blake Hodgetts; Es pot distribuir lliurement. Consulteu http://" +"www.efh.org/~bch/aboutfonts.html" + +#: ../data/fonts/mappings/fonts.cpp:13 +msgid "Copyright 1995-1999 Blake Hodgetts" +msgstr "Copyright 1995-1999 Blake Hodgetts" + +#: ../data/fonts/mappings/fonts.cpp:16 +msgid "Inkpen" +msgstr "Inkpen" + +#: ../data/fonts/mappings/fonts.cpp:17 +msgid "Inkpen is part of Sibelius, but other fonts may use the same mappings." +msgstr "" +"Inkpen és part del Sibelius, però aquesta codificació també pot ser " +"utilitzada en altres fonts." + +#: ../data/fonts/mappings/fonts.cpp:18 ../data/fonts/mappings/fonts.cpp:28 +msgid "Copyright Sibelius Software Ltd" +msgstr "Copyright Sibelius Software Ltd" + +#: ../data/fonts/mappings/fonts.cpp:21 +msgid "Maestro" +msgstr "Maestro" + +#: ../data/fonts/mappings/fonts.cpp:22 +msgid "Maestro is part of Finale, but other fonts use the same mappings." +msgstr "" +"Maestro és part del Finale, però aquesta codificació també pot ser " +"utilitzada en altres fonts." + +#: ../data/fonts/mappings/fonts.cpp:23 ../data/fonts/mappings/fonts.cpp:33 +msgid "Copyright Coda Inc" +msgstr "Copyright Coda Inc" + +#: ../data/fonts/mappings/fonts.cpp:27 +msgid "Opus is part of Sibelius, but other fonts may use the same mappings." +msgstr "" +"Opus és una part del Sibelius, però aquesta codificació també pot ser " +"utilitzada en altres fonts." + +#: ../data/fonts/mappings/fonts.cpp:31 +msgid "Petrucci" +msgstr "Petrucci" + +#: ../data/fonts/mappings/fonts.cpp:32 +msgid "Petrucci is part of Finale, but other fonts use the same mappings." +msgstr "" +"Petrucci és part del Finale, però aquesta codificació també pot ser " +"utilitzada en altres fonts." + +#: ../data/fonts/mappings/fonts.cpp:36 +msgid "RG21" +msgstr "RG21" + +#: ../data/fonts/mappings/fonts.cpp:37 +msgid "Rosegarden 2.1" +msgstr "Rosegarden 2.1" + +#: ../data/fonts/mappings/fonts.cpp:38 +msgid "Copyright (c) 1994--2001 Chris Cannam" +msgstr "Copyright (c) 1994--2001 Chris Cannam" + +#: ../data/fonts/mappings/fonts.cpp:41 +msgid "Sonata" +msgstr "Sonata" + +#: ../data/fonts/mappings/fonts.cpp:42 +msgid "Adobe" +msgstr "Adobe" + +#: ../data/fonts/mappings/fonts.cpp:43 +msgid "Copyright Adobe Inc" +msgstr "Copyright Adobe Inc" + +#: ../data/fonts/mappings/fonts.cpp:46 +msgid "Steinberg" +msgstr "Steinberg" + +#: ../data/fonts/mappings/fonts.cpp:47 +msgid "The Steinberg Notation font is part of Cubase." +msgstr "La notació Steinberg és part del Cubase." + +#: ../data/fonts/mappings/fonts.cpp:48 +msgid "Copyright Steinberg Inc" +msgstr "Copyright Steinberg Inc" + +#: ../data/fonts/mappings/fonts.cpp:51 +msgid "Xinfonia" +msgstr "Xinfonia" + +#: ../data/fonts/mappings/fonts.cpp:52 +msgid "xemo.org" +msgstr "xemo.org" + +#: ../data/fonts/mappings/fonts.cpp:53 +msgid "Copyright 2001-2003 Xemus Software LLC" +msgstr "Copyright 2001-2003 Xemus Software LLC" + +#: ../data/styles/styles.cpp:1 +msgid "Classical" +msgstr "Clàssica" + +#: ../data/styles/styles.cpp:2 +msgid "Cross" +msgstr "Creu" + +#: ../data/styles/styles.cpp:3 +msgid "Mensural" +msgstr "Mensural" + +#: ../data/styles/styles.cpp:4 +msgid "Triangle" +msgstr "Triangle" + +#, fuzzy +#~ msgid "Set Quick Marker" +#~ msgstr "Suprimeix un marcador" + +#, fuzzy +#~ msgid "LilyPond previews not available" +#~ msgstr "Opcions Lilypond de la mostra prèvia " + +#, fuzzy +#~ msgid "Audio file importer not available" +#~ msgstr "Memòria per l'escriptura de fitxers d'àudio" + +#~ msgid " Triplet Chord" +#~ msgstr " Tríada" + +#~ msgid " Chord" +#~ msgstr " Acord" + +#~ msgid " Triplet" +#~ msgstr " Treset" + +#~ msgid "Making grace notes..." +#~ msgstr "S'està posant notes d'adornament..." + +#~ msgid "Making non-grace notes..." +#~ msgstr "S'està posant demés notes..." + +#~ msgid "Marker name " +#~ msgstr "Nom del marcador " + +#~ msgid "Time Signature font" +#~ msgstr "Estil de l'indicació de compàs" + +#~ msgid "&Halve Speed" +#~ msgstr "Mitja &velocitat" + +#~ msgid "&Double Speed" +#~ msgstr "&Doble velocitat" + +#~ msgid "Halving speed..." +#~ msgstr "S'està reduint la velocitat a la meitat..." + +#~ msgid "Doubling speed..." +#~ msgstr "S'està doblant la velocitat..." + +#~ msgid "Add staff group bracket" +#~ msgstr "Afegeix " + +#~ msgid "Make subsequent bar lines hidden" +#~ msgstr "Amaga les línies de compàs que segueixen" + +#~ msgid "Make &Grace Notes" +#~ msgstr "&Crea notes d'ornament" + +#, fuzzy +#~ msgid "Change Te&mpo..." +#~ msgstr "Canvia el color del fragment..." + +#, fuzzy +#~ msgid "Insert Fretboard" +#~ msgstr "Afegeix un tabulat" + +#~ msgid "&Restore Computed Accidentals" +#~ msgstr "&Restaura els accidents calculats" + +#, fuzzy +#~ msgid "LilyPond export/preview options" +#~ msgstr "Opcions Lilypond de la mostra prèvia " + +#, fuzzy +#~ msgid "LilyPond 2.6" +#~ msgstr "Lilypond 2.6" + +#, fuzzy +#~ msgid "LilyPond 2.8" +#~ msgstr "Lilypond 2.8" + +#, fuzzy +#~ msgid "LilyPond 2.12" +#~ msgstr "Lilypond 2.2" + +#~ msgid "Export Document Properties as \\header block" +#~ msgstr "Exporta les propietats del document com a bloc \\header" + +#, fuzzy +#~ msgid "prime" +#~ msgstr "Temps" + +#, fuzzy +#~ msgid " and 1 octave" +#~ msgstr "Pujar una octava" + +#, fuzzy +#~ msgid " and %1 octaves" +#~ msgstr "%1 una octava amunt" + +#, fuzzy +#~ msgid "Transpose by Interval" +#~ msgstr "Transposa" + +#~ msgid "Manage Files Associated with A&udio Segments" +#~ msgstr "Gestiona els fitxers associats amb el fragmetn d'àudio" + +#~ msgid "&Add Multiple Tracks..." +#~ msgstr "&Afageix vàries pistes..." + +#, fuzzy +#~ msgid "Split Segments at Time" +#~ msgstr "Defineix el temps d'inici del fragment" + +#, fuzzy +#~ msgid "Split Segment at Time" +#~ msgstr "Defineix el temps d'inici del fragment" + +#~ msgid "Add Multiple Tracks" +#~ msgstr "Afegeix vàries pistes" + +#~ msgid "" +#~ "1.2.3 splash screen photo (of Michael's rose garden)\n" +#~ "new splash screen photo (of Michael McIntyre's\n" +#~ "instruments along with a rose from the garden of Hassell Arnold Hale, " +#~ "1916-2006,\n" +#~ "may he rest in peace)" +#~ msgstr "" +#~ "1.2.3 foto en la pantalla flaix (del jardi de roses d'en Michael)\n" +#~ "nova foto en la pantalla flaix (dels instrumetns d'en Michael McIntyre\n" +#~ "junt amb una rosa del jardí d'en Hassell Arnold Hale, 1916-2006,\n" +#~ "ara descansa en pau) " + +#~ msgid "Event List" +#~ msgstr "Llista d'esdeveniments" + +#~ msgid "External Editors" +#~ msgstr "Editors externs" + +#~ msgid "Enable auto-save" +#~ msgstr "Desa automàticament" + +#~ msgid "Auto-save" +#~ msgstr "Desa automàticament" + +#~ msgid "Show detailed status" +#~ msgstr "Mostra l'estat detalladament" + +#~ msgid "JACK command (including path as necessary)" +#~ msgstr "Línia d'ordres del JACK (amb la ubicació i tot si cal) " + +#~ msgid "" +#~ "Longer buffers usually improve playback quality, but use more memory and " +#~ "slow response." +#~ msgstr "" +#~ "Si utilitzeu una memòria intermèdia gran millorareu la qualitat del so, " +#~ "però en canvi gastareu més memòria i la resposta serà més lenta." + +#~ msgid "Event read-ahead" +#~ msgstr "Llegeix els esdeveniments previsorament" + +#~ msgid "Audio mix buffer" +#~ msgstr "Memòria per al mesclador d'àudio" + +#~ msgid "Audio file read buffer" +#~ msgstr "Memòria per la lectura de fitxers d'àudio" + +#~ msgid "Audio file write buffer" +#~ msgstr "Memòria per l'escriptura de fitxers d'àudio" + +#~ msgid "Per-file limit for cacheable audio files" +#~ msgstr "Límit de cada fitxer en la memòria cau" + +#~ msgid "20 msec" +#~ msgstr "20 ms" + +#~ msgid "5 sec" +#~ msgstr "5 s" + +#~ msgid "per file" +#~ msgstr "per fitxer" + +#~ msgid "32KB" +#~ msgstr "32KB" + +#~ msgid "32MB" +#~ msgstr "32MB" + +#~ msgid "Audio mix and monitor mode:" +#~ msgstr "Mode mesclador i monitor:" + +#~ msgid "Low latency" +#~ msgstr "Latència baixa" + +#~ msgid "Buffered" +#~ msgstr "En memòria intermèdia" + +#~ msgid "Create post-fader outputs for audio instruments" +#~ msgstr "Crea sortides progressives per als instruments d'àudio" + +#~ msgid "Create post-fader outputs for submasters" +#~ msgstr "Crea sortides d'acabada per als submasters" + +#~ msgid "Record and Mix" +#~ msgstr "Grava i mescla" + +#~ msgid "JACK transport mode" +#~ msgstr "Mode de transport JACK" + +#~ msgid "Sync" +#~ msgstr "Sincronitza" + +#~ msgid "Synchronisation" +#~ msgstr "Sincronització" + +#~ msgid "%1 msec / %2 KB %3" +#~ msgstr "%1 ms / %2 KB %3" + +#~ msgid "%1 msec / %2 MB %3" +#~ msgstr "%1 ms / %2 MB %3" + +#~ msgid "%1 sec / %2 KB %3" +#~ msgstr "%1 s / %2 KB %3" + +#~ msgid "%1 sec / %2 MB %3" +#~ msgstr "%1 s / %2 MB %3" + +#~ msgid "%1 msec" +#~ msgstr "%1 ms" + +#~ msgid "%1 sec" +#~ msgstr "%1 s" + +#~ msgid "%1 KB" +#~ msgstr "%1 KB" + +#~ msgid "%1 MB" +#~ msgstr "%1 MB" + +#~ msgid "Other fonts" +#~ msgstr "Altres tipus de notes" + +#~ msgid "Rescan available fonts" +#~ msgstr "Recarrega els tipus de lletra" + +#~ msgid "" +#~ "Rosegarden can apply automatic quantization to recorded or imported MIDI " +#~ "data for notation purposes only. This does not affect playback, and does " +#~ "not affect editing in any of the views except notation." +#~ msgstr "" +#~ "El Rosegarden pot quantificar automàticament les dades MIDI gravades o " +#~ "importades, amb el propòsit d'arreglar la notació. Això no afecta la " +#~ "reproducció de la peça ni l'editor." + +#~ msgid "Sequencer" +#~ msgstr "Seqüenciador" + +#~ msgid "Sequencer Settings" +#~ msgstr "Configuració del seqüenciador" + +#, fuzzy +#~ msgid "Audio auto-fade" +#~ msgstr "Entrada o sortida progressiva (auto)" + +#~ msgid "Fade in" +#~ msgstr "Entrada progressiva" + +#~ msgid "Fade out" +#~ msgstr "Sortida regressiva" + +#, fuzzy +#~ msgid "Range" +#~ msgstr "Triangle" + +#, fuzzy +#~ msgid "High: ---" +#~ msgstr "Alta" + +#~ msgid " ms" +#~ msgstr " ms" + +#, fuzzy +#~ msgid "&Fretboard" +#~ msgstr "&Tabulat" + +#~ msgid "Restore &Computed Positions" +#~ msgstr "Restaura les posicions &calculades" + +#~ msgid "" +#~ "You encountered an enharmonic resolution bug somewhere during this " +#~ "operation. You may wish to save a copy of your current composition and " +#~ "email it to dmmcintyr@users.sourceforge.net for analysis.\n" +#~ "\n" +#~ "In the meantime, you will probably need to make manual adjustments to the " +#~ "file you've just exported." +#~ msgstr "" +#~ "Heu trobat un error en la resolució anharmònica en algun punt, d'aquesta " +#~ "operació. Si ho desitgeu, podeu desar una còpia de la composició actual i " +#~ "enviar-la, per correu electrònic, a dmmcintyr@users.sourceforge.net per a " +#~ "la seva anàlisi\n" +#~ "\n" +#~ "Mentrestant, probablement haureu de fer ajustaments manualment al fitxer " +#~ "que acabeu d'exportar." + +#~ msgid "&Tempo and Time Signature" +#~ msgstr "&Tempo i indicació de compàs" + +#, fuzzy +#~ msgid "&Split..." +#~ msgstr "&Divideix" + +#~ msgid "&Editor Tools" +#~ msgstr "&Eines de l'editor" + +#~ msgid "&Beams" +#~ msgstr "&Barres d'agrupació" + +#~ msgid "&Indications" +#~ msgstr "&Indicacions" + +#~ msgid "Trip&lets and Tuplets" +#~ msgstr "Tresets i &grups irregulars" + +#~ msgid "S&tem Direction" +#~ msgstr "Direcció de la &vírgula" + +#~ msgid "&Clear" +#~ msgstr "&Neteja" + +#~ msgid "A&dd Alias" +#~ msgstr "A&fegeix un àlies" + +#~ msgid "C&ancel" +#~ msgstr "C&ancel·la" + +#~ msgid "&Ok" +#~ msgstr "D'ac&ord" + +#~ msgid "Toggle &Mode" +#~ msgstr "Canvia el &mode" + +#~ msgid "Scale" +#~ msgstr "Escala" + +#~ msgid "Modifier" +#~ msgstr "Alteració" + +#~ msgid "Suffix" +#~ msgstr "Sufix" + +#~ msgid "&New" +#~ msgstr "&Nou" + +#, fuzzy +#~ msgid "Additivies" +#~ msgstr "Aditius" + +#~ msgid "Fingering" +#~ msgstr "Digitació" + +#, fuzzy +#~ msgid "LilyPond 2.4" +#~ msgstr "Lilypond 2.4" + +#~ msgid "Paper size to use in \\paper block" +#~ msgstr "Mida del paper a utilitzar en el \\bloc de paper" + +#, fuzzy +#~ msgid "LilyPond font size" +#~ msgstr "Mida de la lletra Lilypond" + +#~ msgid "Do not export muted tracks" +#~ msgstr "No exportis les pistes silenciades" + +#~ msgid "Write bar checks at end of measures" +#~ msgstr "Grava la barra de comprovació al final dels compassos" + +#~ msgid "Half Speed" +#~ msgstr "Mitja velocitat" + +#~ msgid "Double Speed" +#~ msgstr "Doble velocitat" + +#~ msgid " (takes effect only from next restart)" +#~ msgstr " (tindrà efecte quan es torni a engegar)" + +#~ msgid "&Select" +#~ msgstr "&Selecciona" + +#~ msgid "Snap to 1/64" +#~ msgstr "Desplaça a 1/64" + +#~ msgid "Snap to 1/48" +#~ msgstr "Desplaça a 1/48" + +#~ msgid "Snap to 1/32" +#~ msgstr "Desplaça a 1/32" + +#~ msgid "Snap to 1/24" +#~ msgstr "Desplaça a 1/24" + +#~ msgid "Snap to 1/16" +#~ msgstr "Desplaça a 1/16" + +#~ msgid "Snap to 1/12" +#~ msgstr "Desplaça a 1/12" + +#~ msgid "Snap to 1/8" +#~ msgstr "Desplaça a 1/8" + +#~ msgid "Snap to 1/6" +#~ msgstr "Desplaça a 1/6" + +#~ msgid "Snap to 1/4" +#~ msgstr "Desplaça a 1/4" + +#~ msgid "Snap to &Unit" +#~ msgstr "Desplaça a la &unitat" + +#, fuzzy +#~ msgid "%1 (%2.%3s)" +#~ msgstr "Temps: %1 (%2.%3s)" + +#, fuzzy +#~ msgid "%1 (%2): %3" +#~ msgstr "%1 (%2)" + +#~ msgid "Add Fretboard" +#~ msgstr "Afegeix un tabulat" + +#~ msgid "Getting sound driver status..." +#~ msgstr "S'està obtenint l'estat del dispositiu de so..." + +#~ msgid "Distribute Audio on &MIDI" +#~ msgstr "Envia l'àudio al MIDI" + +#~ msgid "Cannot add file %1: %2" +#~ msgstr "No s'ha pogut afegir el fitxer %1: %2" + +#~ msgid "Enable" +#~ msgstr "Habilita" + +#~ msgid "from:" +#~ msgstr "des de:" + +#~ msgid "to:" +#~ msgstr "fins:" + +#~ msgid "unlimited" +#~ msgstr "il·limitada" + +#~ msgid "Number:" +#~ msgstr "Número:" + +#~ msgid "Value:" +#~ msgstr "Valor:" + +#~ msgid "Wheel Events" +#~ msgstr "Esdeveniments de roda" + +#~ msgid "Amount:" +#~ msgstr "Quantitat:" + +#, fuzzy +#~ msgid "Pitch from" +#~ msgstr "Altura " + +#, fuzzy +#~ msgid "Pitch to" +#~ msgstr "Altura " + +#, fuzzy +#~ msgid "High: %1" +#~ msgstr "Alta" + +#~ msgid "&Velocity" +#~ msgstr "&Velocitat" + +#, fuzzy +#~ msgid "Advanced Event Edit" +#~ msgstr "Editor &avançat d'esdeveniments" + +#~ msgid "Advanced Event Viewer" +#~ msgstr "Vista &avançada d'esdeveniments" + +#, fuzzy +#~ msgid "" +#~ "About to delete 1 audio file permanently from the hard disk.\n" +#~ "There will be no way to recover this file.\n" +#~ "Are you sure?" +#~ msgstr "" +#~ "_n: S'esborrarà el fitxer d'àudio permanentment.\n" +#~ "No es podrà recuperar.\n" +#~ "Voleu continuar?\n" +#~ "S'esborraran els %n fitxers d'àudio permanentment.\n" +#~ "No es podran recuperar.\n" +#~ "Voleu continuar?" + +#, fuzzy +#~ msgid "%1 on 1 track" +#~ msgstr "Grava en aquesta pista" + +#~ msgid "1 Input" +#~ msgstr "1 Entrada" + +#~ msgid "1 Submaster" +#~ msgstr "Cap submaster" + +#, fuzzy +#~ msgid " 1 event selected " +#~ msgstr "No s'ha seleccionat cap fragment de no-àudio" + +#~ msgid "%1 - 1 Segment - %2" +#~ msgstr "%1 - 1 fragment - %2" + +#~ msgid "1 pixel" +#~ msgstr "1 píxel" + +#~ msgid "%1 - Segment - Notation" +#~ msgstr "%1 - Fragment - Partitura" + +#, fuzzy +#~ msgid "" +#~ "About to delete 1 audio file permanently from the hard disk.\n" +#~ "This action cannot be undone, and there will be no way to recover this " +#~ "file.\n" +#~ "Are you sure?" +#~ msgstr "" +#~ "_n: S'esborrarà el fitxer d'àudio permanentment.\n" +#~ "No es podrà recuperar.\n" +#~ "Voleu continuar?\n" +#~ "S'esborraran els %n fitxers d'àudio permanentment.\n" +#~ "No es podran recuperar.\n" +#~ "Voleu continuar?" + +#~ msgid "Time: %1" +#~ msgstr "Temps: %1" + +#~ msgid "" +#~ "

      A Rosegarden composition is not infinite, and does not automatically " +#~ "expand\n" +#~ "if you attempt to insert events beyond the end of it. While recording, " +#~ "you will see a\n" +#~ "countdown showing you how much time you have remaining. In order to " +#~ "extend\n" +#~ "this, use Composition -> Change Composition Duration

      \n" +#~ msgstr "" +#~ "

      Una composició del Rosegarden no és infinita, i no s'expandeix " +#~ "automàticament a\n" +#~ "l'intentar inserir esdeveniments més enllà del final. Durant " +#~ "l'enregistrament, veureu un compte\n" +#~ "enrere que mostra el temps que queda. Si voleu allargar aquest temps, feu " +#~ "servir Composició -> \n" +#~ "Canvia la durada de la composició

      \n" + +#~ msgid "" +#~ "

      The notation view shows you notes using their display duration, while " +#~ "the\n" +#~ "matrix allows you to edit their performance duration.

      \n" +#~ msgstr "" +#~ "

      La vista de l'editor de partitures mostra les notes fent servir la " +#~ "seva durada de la notació, \n" +#~ "mentre que l'editor de matrius permet editar la seva durada d'execució.\n" + +#~ msgid "Tempo changes smoothly to:" +#~ msgstr "El tempo canvia suaument per:" + +#~ msgid "Recording Channel:" +#~ msgstr "Canal de gravació:" + +#~ msgid "" +#~ "Spanish translation\n" +#~ "ALSA hacking and bug fixes\n" +#~ "multi-input MIDI recording" +#~ msgstr "" +#~ "traducció a l'espanyol\n" +#~ "hacking amb ALSA i correccions d'errors\n" +#~ "enregistrament MIDI des de múltiples entrades" + +#~ msgid "Finnish translation" +#~ msgstr "traducció al finès" + +#~ msgid "Close this tab" +#~ msgstr "Tanca aquesta pestanya" + +#~ msgid "Preview of the selected font" +#~ msgstr "Mostra un exemple del tipus de lletra seleccionat" + +#~ msgid "" +#~ "This is a preview of the selected font. You can change it by clicking the " +#~ "\"Choose...\" button." +#~ msgstr "" +#~ "Això és un exemple del tipus de lletra seleccionat. Per canviar cliqueu " +#~ "el botó \"Tria...\"." + +#~ msgid "Preview of the \"%1\" font" +#~ msgstr "Exemple del tipus de lletra \"%1\"" + +#~ msgid "" +#~ "This is a preview of the \"%1\" font. You can change it by clicking the " +#~ "\"Choose...\" button." +#~ msgstr "" +#~ "Això és un exemple del tipus de lletra seleccionat \"%1\". Per canviar " +#~ "cliqueu el botó \"Tria...\"." + +#~ msgid "Segment & Instrument Parameters" +#~ msgstr "Paràmetres de l'instrument i el fragment" + +#~ msgid "Pre&view Lilypond file..." +#~ msgstr "&Visualització prèvia del fitxer Lilypond..." + +#~ msgid "Show Se&gment and Instrument Parameters" +#~ msgstr "Mostra els paràmetres de l'instrument i del fragment" + +#~ msgid "%1 Pitch" +#~ msgstr "Altura %1" + +#~ msgid "&Split or Join" +#~ msgstr "&Divideix i ajunta" + +#~ msgid "Lilypond 1.6 or 1.8" +#~ msgstr "Lilypond 1.6 o 1.8" + +#~ msgid "Lilypond 2.0" +#~ msgstr "Lilypond 2.0" + +#~ msgid "" +#~ msgstr "" diff --git a/po/cs.po b/po/cs.po new file mode 100644 index 0000000..e38ddae --- /dev/null +++ b/po/cs.po @@ -0,0 +1,11518 @@ +# translation of cs.po to +# This file is put in the public domain. +# +# Jan Bína , 2005. +# Jan Bina , 2006, 2007. +# Jan Bína , 2008. +msgid "" +msgstr "" +"Project-Id-Version: cs\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-04-24 18:19-0400\n" +"PO-Revision-Date: 2008-04-20 12:41+0200\n" +"Last-Translator: Jan Bína \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#: ../src/gui/dialogs/RescaleDialog.cpp:51 rc.cpp:192 rc.cpp:312 +#, no-c-format +msgid "Rescale" +msgstr "Změnit délku" + +#: ../src/gui/dialogs/RescaleDialog.cpp:56 +msgid "Duration of selection" +msgstr "Doba trvání výběru" + +#: ../src/gui/dialogs/RescaleDialog.cpp:62 +msgid "Adjust times of following events accordingly" +msgstr "Přizpůsobit adekvátně časy následujících událostí" + +#: ../src/gui/dialogs/PitchDialog.cpp:45 +#: ../src/gui/dialogs/RescaleDialog.cpp:72 +#: ../src/gui/dialogs/TimeDialog.cpp:51 ../src/gui/dialogs/TimeDialog.cpp:68 +#: ../src/gui/studio/BankEditorDialog.cpp:109 +msgid "Reset" +msgstr "Reset" + +#: ../src/commands/segment/SegmentSplitByPitchCommand.cpp:46 +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:46 +msgid "Split by Pitch" +msgstr "Rozdělit podle výšky tónu" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:54 +msgid "Starting split pitch" +msgstr "Začíná dělení výšky tónu" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:57 +msgid "Range up and down to follow music" +msgstr "Rozsah nahoru nebo dolů podle melodie" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:63 +msgid "Duplicate non-note events" +msgstr "Duplikovat ne-notové události" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:66 +msgid "Clef handling:" +msgstr "Zacházení s notový klíčem:" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:69 +msgid "Leave clefs alone" +msgstr "Ponechat notové klíče samostatně" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:70 +msgid "Guess new clefs" +msgstr "Odhadnout nové notové klíče" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:71 +msgid "Use treble and bass clefs" +msgstr "Použít houslové a basové klíče" + +#: ../src/gui/dialogs/DocumentConfigureDialog.cpp:64 +msgid "Document Properties" +msgstr "Vlastnosti dokumentu" + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:45 +#: ../src/gui/editors/notation/NotationView.cpp:6048 +msgid "Make Ornament" +msgstr "Vytvořit melodickou ozdobu" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:183 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:179 +#: ../src/gui/dialogs/EventEditDialog.cpp:128 +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:49 +#: ../src/gui/studio/DeviceEditorDialog.cpp:74 +#: ../src/gui/studio/NameSetEditor.cpp:72 +#: ../src/gui/widgets/ColourTable.cpp:51 +msgid "Name" +msgstr "Jméno" + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:51 +msgid "" +"The name is used to identify both the ornament\n" +"and the triggered segment that stores\n" +"the ornament's notes." +msgstr "" +"Název se používá k identifikaci melodické ozdoby\n" +"i spouštěného segmentu, ve kterém jsou\n" +"noty s melodickými ozdobami uloženy." + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:54 +msgid "Name: " +msgstr "Název: " + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:57 +#: ../src/gui/editors/eventlist/EventView.cpp:717 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:92 +msgid "Base pitch" +msgstr "Základní výška tónu" + +#: ../src/gui/dialogs/TextEventDialog.cpp:57 +#: ../src/gui/editors/eventlist/EventView.cpp:140 +msgid "Text" +msgstr "Text" + +#: ../src/gui/dialogs/TextEventDialog.cpp:66 +msgid "Specification" +msgstr "Specifikace" + +#: ../src/gui/dialogs/TextEventDialog.cpp:68 +msgid "Preview" +msgstr "Náhled" + +#: ../src/gui/dialogs/TextEventDialog.cpp:72 +msgid "Text: " +msgstr "Text: " + +#: ../src/gui/dialogs/TextEventDialog.cpp:79 +msgid "Style: " +msgstr "Styl: " + +#: ../src/gui/dialogs/TextEventDialog.cpp:90 +msgid "Dynamic" +msgstr "Dynamika" + +#: ../src/gui/dialogs/TextEventDialog.cpp:93 +msgid "Direction" +msgstr "Směr" + +#: ../src/gui/dialogs/TextEventDialog.cpp:96 +msgid "Local Direction" +msgstr "Lokální směr" + +#: ../src/gui/dialogs/TempoDialog.cpp:63 +#: ../src/gui/dialogs/TextEventDialog.cpp:99 +#: ../src/gui/editors/tempo/TempoView.cpp:91 +msgid "Tempo" +msgstr "Tempo" + +#: ../src/gui/dialogs/TextEventDialog.cpp:102 +msgid "Local Tempo" +msgstr "Lokální tempo" + +#: ../src/gui/dialogs/TextEventDialog.cpp:105 +msgid "Lyric" +msgstr "Text melodie" + +#: ../src/gui/dialogs/TextEventDialog.cpp:108 +#: ../src/gui/editors/notation/NotationView.cpp:4242 +msgid "Chord" +msgstr "Akord" + +#: ../src/gui/dialogs/TextEventDialog.cpp:111 +msgid "Annotation" +msgstr "Anotace" + +#: ../src/gui/dialogs/TextEventDialog.cpp:114 +msgid "LilyPond Directive" +msgstr "Direktiva aplikace Lilypond" + +#: ../src/gui/dialogs/TextEventDialog.cpp:138 +msgid "Verse: " +msgstr "Sloka:" + +#: ../src/gui/dialogs/TextEventDialog.cpp:148 +msgid "Dynamic: " +msgstr "Dynamika:" + +#: ../src/gui/dialogs/TextEventDialog.cpp:152 +msgid "ppp" +msgstr "ppp" + +#: ../src/gui/dialogs/TextEventDialog.cpp:153 +msgid "pp" +msgstr "pp" + +#: ../src/gui/dialogs/TextEventDialog.cpp:154 +msgid "p" +msgstr "p" + +#: ../src/gui/dialogs/TextEventDialog.cpp:155 +msgid "mp" +msgstr "mp" + +#: ../src/gui/dialogs/TextEventDialog.cpp:156 +msgid "mf" +msgstr "mf" + +#: ../src/gui/dialogs/TextEventDialog.cpp:157 +msgid "f" +msgstr "f" + +#: ../src/gui/dialogs/TextEventDialog.cpp:158 +msgid "ff" +msgstr "ff" + +#: ../src/gui/dialogs/TextEventDialog.cpp:159 +msgid "fff" +msgstr "fff" + +#: ../src/gui/dialogs/TextEventDialog.cpp:160 +msgid "rfz" +msgstr "rfz" + +#: ../src/gui/dialogs/TextEventDialog.cpp:161 +msgid "sf" +msgstr "sf" + +#: ../src/gui/dialogs/TextEventDialog.cpp:165 +msgid "Direction: " +msgstr "Směr:" + +#: ../src/gui/dialogs/TextEventDialog.cpp:174 +msgid " ," +msgstr " ," + +#: ../src/gui/dialogs/TextEventDialog.cpp:175 +msgid "D.C. al Fine" +msgstr "D.C. al Fine" + +#: ../src/gui/dialogs/TextEventDialog.cpp:176 +msgid "D.S. al Fine" +msgstr "D.S. al Fine" + +#: ../src/gui/dialogs/TextEventDialog.cpp:177 +msgid "Fine" +msgstr "Fine" + +#: ../src/gui/dialogs/TextEventDialog.cpp:178 +msgid "D.S. al Coda" +msgstr "D.S. al Coda" + +#: ../src/gui/dialogs/TextEventDialog.cpp:179 +msgid "to Coda" +msgstr "k označení Coda" + +#: ../src/gui/dialogs/TextEventDialog.cpp:180 +msgid "Coda" +msgstr "Coda" + +#: ../src/gui/dialogs/TextEventDialog.cpp:184 +msgid "Local Direction: " +msgstr "Lokální směr:" + +#: ../src/gui/dialogs/TextEventDialog.cpp:188 +msgid "accel." +msgstr "accel." + +#: ../src/gui/dialogs/TextEventDialog.cpp:189 +msgid "ritard." +msgstr "ritard." + +#: ../src/gui/dialogs/TextEventDialog.cpp:190 +msgid "ralletando" +msgstr "ralletando" + +#: ../src/gui/dialogs/TextEventDialog.cpp:191 +msgid "a tempo" +msgstr "a tempo" + +#: ../src/gui/dialogs/TextEventDialog.cpp:192 +msgid "legato" +msgstr "legato" + +#: ../src/gui/dialogs/TextEventDialog.cpp:193 +msgid "simile" +msgstr "simile" + +#: ../src/gui/dialogs/TextEventDialog.cpp:194 +msgid "pizz." +msgstr "pizz." + +#: ../src/gui/dialogs/TextEventDialog.cpp:195 +msgid "arco" +msgstr "arco" + +#: ../src/gui/dialogs/TextEventDialog.cpp:196 +msgid "non vib." +msgstr "non vib." + +#: ../src/gui/dialogs/TextEventDialog.cpp:197 +msgid "sul pont." +msgstr "sul pont." + +#: ../src/gui/dialogs/TextEventDialog.cpp:198 +#: ../src/gui/dialogs/TextEventDialog.cpp:200 +msgid "sul tasto" +msgstr "sul tasto" + +#: ../src/gui/dialogs/TextEventDialog.cpp:199 +msgid "con legno" +msgstr "con legno" + +#: ../src/gui/dialogs/TextEventDialog.cpp:201 +msgid "sul G" +msgstr "sul G" + +#: ../src/gui/dialogs/TextEventDialog.cpp:202 +msgid "ordinario" +msgstr "ordinario" + +#: ../src/gui/dialogs/TextEventDialog.cpp:203 +msgid "Muta in " +msgstr "Muta in " + +#: ../src/gui/dialogs/TextEventDialog.cpp:204 +msgid "volti subito " +msgstr "volti subito " + +#: ../src/gui/dialogs/TextEventDialog.cpp:205 +msgid "soli" +msgstr "soli" + +#: ../src/gui/dialogs/TextEventDialog.cpp:206 +msgid "div." +msgstr "div." + +#: ../src/gui/dialogs/TextEventDialog.cpp:210 +msgid "Tempo: " +msgstr "Tempo:" + +#: ../src/gui/dialogs/TextEventDialog.cpp:214 +#: ../src/gui/dialogs/TextEventDialog.cpp:238 +msgid "Grave" +msgstr "Grave" + +#: ../src/gui/dialogs/TextEventDialog.cpp:215 +#: ../src/gui/dialogs/TextEventDialog.cpp:239 +msgid "Adagio" +msgstr "Adagio" + +#: ../src/gui/dialogs/TextEventDialog.cpp:216 +#: ../src/gui/dialogs/TextEventDialog.cpp:240 +msgid "Largo" +msgstr "Largo" + +#: ../src/gui/dialogs/TextEventDialog.cpp:217 +#: ../src/gui/dialogs/TextEventDialog.cpp:241 +msgid "Lento" +msgstr "Lento" + +#: ../src/gui/dialogs/TextEventDialog.cpp:218 +#: ../src/gui/dialogs/TextEventDialog.cpp:242 +msgid "Andante" +msgstr "Andante" + +#: ../src/gui/dialogs/TextEventDialog.cpp:219 +#: ../src/gui/dialogs/TextEventDialog.cpp:243 +msgid "Moderato" +msgstr "Moderato" + +#: ../src/gui/dialogs/TextEventDialog.cpp:220 +#: ../src/gui/dialogs/TextEventDialog.cpp:244 +msgid "Allegretto" +msgstr "Allegretto" + +#: ../src/gui/dialogs/TextEventDialog.cpp:221 +#: ../src/gui/dialogs/TextEventDialog.cpp:245 +msgid "Allegro" +msgstr "Allegro" + +#: ../src/gui/dialogs/TextEventDialog.cpp:222 +#: ../src/gui/dialogs/TextEventDialog.cpp:246 +msgid "Vivace" +msgstr "Vivace" + +#: ../src/gui/dialogs/TextEventDialog.cpp:223 +#: ../src/gui/dialogs/TextEventDialog.cpp:247 +msgid "Presto" +msgstr "Presto" + +#: ../src/gui/dialogs/TextEventDialog.cpp:224 +#: ../src/gui/dialogs/TextEventDialog.cpp:248 +msgid "Prestissimo" +msgstr "Prestissimo" + +#: ../src/gui/dialogs/TextEventDialog.cpp:225 +#: ../src/gui/dialogs/TextEventDialog.cpp:249 +msgid "Maestoso" +msgstr "Maestoso" + +#: ../src/gui/dialogs/TextEventDialog.cpp:226 +#: ../src/gui/dialogs/TextEventDialog.cpp:250 +msgid "Sostenuto" +msgstr "Sostenuto" + +#: ../src/gui/dialogs/TextEventDialog.cpp:227 +#: ../src/gui/dialogs/TextEventDialog.cpp:251 +msgid "Tempo Primo" +msgstr "Tempo Primo" + +#: ../src/gui/dialogs/TextEventDialog.cpp:234 +msgid "Local Tempo: " +msgstr "Lokální tempo:" + +#: ../src/gui/dialogs/TextEventDialog.cpp:255 +msgid "Directive: " +msgstr "Direktiva:" + +#: ../src/gui/dialogs/TextEventDialog.cpp:312 +msgid "Example" +msgstr "Příklad" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:65 +msgid "Event Filter" +msgstr "Filtr událostí" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:86 +msgid "Note Events" +msgstr "Notové události" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:90 +msgid "lowest:" +msgstr "nejnižší:" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:93 +msgid "highest:" +msgstr "nejvyšší:" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:96 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:141 +#: ../src/gui/widgets/PitchChooser.cpp:53 +msgid "Pitch:" +msgstr "Výška tónu:" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:99 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:163 +msgid "Velocity:" +msgstr "Rychlost:" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:102 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:129 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:257 +msgid "Duration:" +msgstr "Doba trvání:" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:107 +#: ../src/gui/dialogs/EventFilterDialog.cpp:114 +#: ../src/gui/dialogs/EventFilterDialog.cpp:121 +msgid "include" +msgstr "zahrnout" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:108 +#: ../src/gui/dialogs/EventFilterDialog.cpp:115 +#: ../src/gui/dialogs/EventFilterDialog.cpp:122 +msgid "exclude" +msgstr "vyřadit" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:136 +#: ../src/gui/dialogs/EventFilterDialog.cpp:155 +#: ../src/gui/editors/eventlist/EventView.cpp:172 +#: ../src/gui/editors/eventlist/EventView.cpp:179 +#: ../src/gui/editors/eventlist/EventView.cpp:186 +msgid "edit" +msgstr "upravit" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:141 +#: ../src/gui/dialogs/EventFilterDialog.cpp:157 +msgid "choose a pitch using a staff" +msgstr "vybrat výšku tónu pomocí osnovy" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:182 +#: ../src/gui/dialogs/EventFilterDialog.cpp:188 +msgid "longest" +msgstr "nejdelší" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:200 +msgid "Include all" +msgstr "Zahrnout vše" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:203 +msgid "Include entire range of values" +msgstr "Zahrnout celý rozsah hodnot" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:206 +msgid "Exclude all" +msgstr "Vyřadit vše" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:209 +msgid "Exclude entire range of values" +msgstr "Vyřadit celý rozsah hodnot" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:233 +#: ../src/gui/dialogs/EventFilterDialog.cpp:234 +msgid "shortest" +msgstr "nejkratší" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:333 +msgid "Lowest pitch" +msgstr "Nejnižší výška tónu" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:343 +msgid "Highest pitch" +msgstr "Nejvyšší výška tónu" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:56 +#: ../src/gui/editors/notation/NotationView.cpp:1619 +#: ../src/gui/editors/notation/NotationView.cpp:6088 +msgid "Use Ornament" +msgstr "Použít melodickou ozdobu" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:260 +#: ../src/gui/configuration/NotationConfigurationPage.h:64 +#: ../src/gui/configuration/NotationConfigurationPage.h:65 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:63 +msgid "Notation" +msgstr "Notace" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:68 +msgid "Display as: " +msgstr "Zobrazit jako: " + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:84 +msgid "Trill" +msgstr "Trylek" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:84 +msgid "Trill with line" +msgstr "Trylek s linkou" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:84 +msgid "Trill line only" +msgstr "Pouze trylková linka" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:85 +msgid "Turn" +msgstr "Obal" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:85 +msgid "Mordent" +msgstr "Mordent" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:85 +msgid "Inverted mordent" +msgstr "Invertovaný mordent" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:86 +msgid "Long mordent" +msgstr "Dlouhý mordent" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:86 +msgid "Long inverted mordent" +msgstr "Dlouhý invertovaný mordent" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:94 +msgid "Text mark" +msgstr "Textová značka" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:98 +msgid " Text: " +msgstr " Text: " + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:104 +msgid "Performance" +msgstr "Provedení" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:109 +msgid "Perform using triggered segment: " +msgstr "Provést s použitím spouštěného segmentu: " + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:75 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:123 +msgid "Perform with timing: " +msgstr "Provést s dělením dob: " + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:81 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:129 +msgid "As stored" +msgstr "Jako uložené" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:82 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:130 +msgid "Truncate if longer than note" +msgstr "Zkrátit, je-li delší než nota" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:83 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:131 +msgid "End at same time as note" +msgstr "Skončit zároveň s notou" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:84 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:132 +msgid "Stretch or squash segment to note duration" +msgstr "Prodloužit nebo zkrátit segment podle doby trvání noty" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:86 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:134 +msgid "Adjust pitch to note" +msgstr "Přizpůsobit výšku tónu notě" + +#: ../src/gui/dialogs/PitchPickerDialog.cpp:40 +msgid "Pitch Selector" +msgstr "Selektor výšky tónu" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:44 +msgid "Audio Segment Duration" +msgstr "Doba trvání zvukového segmentu" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:50 +msgid "The selected audio segment contains:" +msgstr "Vybraný zvukový segment obsahuje:" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:59 +msgid "beat(s)" +msgstr "doba(y)" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:60 +msgid "bar(s)" +msgstr "taktová čára(y)" + +#: ../src/gui/dialogs/TupletDialog.cpp:51 +msgid "Tuplet" +msgstr "Rytmická notová skupina" + +#: ../src/gui/dialogs/TupletDialog.cpp:58 +msgid "New timing for tuplet group" +msgstr "Nové dělení dob pro rytmickou notovou skupinu" + +#: ../src/gui/dialogs/TupletDialog.cpp:76 +msgid "Play " +msgstr "Hrát " + +#: ../src/gui/dialogs/TupletDialog.cpp:98 +msgid "in the time of " +msgstr "za dobu" + +#: ../src/gui/dialogs/TupletDialog.cpp:104 +msgid "Timing is already correct: update display only" +msgstr "Dělení dob je již správné: pouze aktualizovat zobrazení" + +#: ../src/gui/dialogs/TupletDialog.cpp:114 +msgid "Timing calculations" +msgstr "Výpočty dělení dob" + +#: ../src/gui/dialogs/TupletDialog.cpp:120 +msgid "Selected region:" +msgstr "Vybraná oblast:" + +#: ../src/gui/dialogs/TupletDialog.cpp:129 +msgid "Group with current timing:" +msgstr "Seskupit s použitím aktuálního dělení dob:" + +#: ../src/gui/dialogs/TupletDialog.cpp:135 +msgid "Group with new timing:" +msgstr "Seskupit s použitím nového dělení dob:" + +#: ../src/gui/dialogs/TupletDialog.cpp:141 +msgid "Gap created by timing change:" +msgstr "Rozdíl způsobený změnou dělení dob:" + +#: ../src/gui/dialogs/TupletDialog.cpp:149 +msgid "Unchanged at end of selection:" +msgstr "Nezměněno na konci výběru:" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:63 rc.cpp:372 +#, no-c-format +msgid "Metronome" +msgstr "Metronom" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:77 +msgid "Metronome Instrument" +msgstr "Nástroj metronomu" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:82 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:150 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:183 +#: ../src/gui/studio/DeviceEditorDialog.cpp:73 +#: ../src/gui/studio/DeviceManagerDialog.cpp:105 +#: ../src/gui/studio/DeviceManagerDialog.cpp:163 +#: ../src/gui/studio/RemapInstrumentDialog.cpp:66 +msgid "Device" +msgstr "Zařízení" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:101 +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:89 +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:215 +#: ../src/gui/studio/DeviceEditorDialog.cpp:195 +#: ../src/gui/studio/DeviceEditorDialog.cpp:218 +#: ../src/gui/studio/DeviceEditorDialog.cpp:230 +#: ../src/gui/studio/DeviceManagerDialog.cpp:196 +#: ../src/gui/studio/DeviceManagerDialog.cpp:440 +#: ../src/gui/studio/DeviceManagerDialog.cpp:452 +msgid "No connection" +msgstr "Není připojení" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:112 +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:111 +#: ../src/gui/editors/parameters/InstrumentParameterBox.cpp:53 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1209 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:159 +#: ../src/gui/general/PresetHandlerDialog.cpp:92 +#: ../src/gui/studio/MidiMixerWindow.cpp:204 +#: ../src/gui/studio/RemapInstrumentDialog.cpp:67 +msgid "Instrument" +msgstr "Nástroj" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:118 +msgid "Beats" +msgstr "Doby" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:184 +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:123 +msgid "Resolution" +msgstr "Rozlišení" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:309 +#: ../src/gui/configuration/NotationConfigurationPage.cpp:139 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:205 +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:125 +#: ../src/gui/editors/matrix/MatrixView.cpp:2132 +#: ../src/gui/editors/notation/NotationView.cpp:1582 +#: ../src/gui/widgets/QuantizeParameters.cpp:128 +#: ../src/gui/widgets/QuantizeParameters.cpp:301 +msgid "None" +msgstr "Žádný" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:126 +msgid "Bars only" +msgstr "Pouze taktové čáry" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:127 +msgid "Bars and beats" +msgstr "Taktové čáry a doby" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:128 +msgid "Bars, beats, and divisions" +msgstr "Taktové čáry, doby a figurace" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:132 +msgid "Bar velocity" +msgstr "Rychlost taktových čar" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:139 +msgid "Beat velocity" +msgstr "Rychlost dob" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:146 +msgid "Sub-beat velocity" +msgstr "Rychlost vedlejších dob" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:155 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:324 +msgid "Pitch" +msgstr "Výška tónu" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:160 +msgid "for Bar" +msgstr "na taktovou čáru" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:161 +msgid "for Beat" +msgstr "na dobu" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:162 +msgid "for Sub-beat" +msgstr "na vedlejší dobu" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:166 +msgid "Metronome Activated" +msgstr "Metronom je aktivován" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:167 +msgid "Playing" +msgstr "Probíhá přehrávání" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:168 +msgid "Recording" +msgstr "Probíhá záznam" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:46 +msgid "Choose Text Encoding" +msgstr "Vybrat kódování textu" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:50 +msgid "" +"\n" +"This file contains text in an unknown language encoding.\n" +"\n" +"Please select one of the following estimated text encodings\n" +"for use with the text in this file:\n" +msgstr "" +"\n" +"Tento soubor obsahuje text v neznámém jazykovém kódování.\n" +"\n" +"Zvolte jedno z následujících předpokládaných kódování textu,\n" +"které bude použito na text v tomto souboru:\n" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:61 +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:77 +msgid "Japanese Shift-JIS" +msgstr "Japonština Shift-JIS" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:62 +msgid "Unicode variable-width" +msgstr "Unicode, proměnná šířka" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:63 +msgid "Western Europe" +msgstr "Západní Evropa" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:64 +msgid "Western Europe + Euro" +msgstr "Západní Evropa + Euro" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:65 +msgid "Eastern Europe" +msgstr "Východní Evropa" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:66 +msgid "Southern Europe" +msgstr "Jižní Evropa" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:67 +msgid "Northern Europe" +msgstr "Severní Evropa" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:68 +msgid "Cyrillic" +msgstr "Cyrilice" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:69 +msgid "Arabic" +msgstr "Arabština" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:70 +msgid "Greek" +msgstr "Řečtina" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:71 +msgid "Hebrew" +msgstr "Hebrejština" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:72 +msgid "Turkish" +msgstr "Turečtina" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:73 +msgid "Nordic" +msgstr "Skandinávské jazyky" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:74 +msgid "Thai" +msgstr "Thajština" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:75 +msgid "Baltic" +msgstr "Baltské jazyky" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:76 +msgid "Celtic" +msgstr "Keltské jazyky" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:78 +msgid "Traditional Chinese" +msgstr "Tradiční čínština" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:79 +msgid "Simplified Chinese" +msgstr "Zjednodušená čínština" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:80 +msgid "Russian" +msgstr "Ruština" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:81 +msgid "Ukrainian" +msgstr "Ukrajinština" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:82 +msgid "Tamil" +msgstr "Tamilština" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:117 +#, c-format +msgid "Microsoft Code Page %1" +msgstr "Kódová stránka Microsoft %1" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:123 +#: ../src/gui/editors/matrix/MatrixView.cpp:1490 +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:142 +msgid "" +"\n" +"Example text from file:" +msgstr "" +"\n" +"Vzor textu ze souboru:" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:59 +#: ../src/gui/editors/tempo/TempoView.cpp:92 +msgid "Time Signature" +msgstr "Taktové označení" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:82 +msgid "Time signature" +msgstr "Taktové označení" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:116 +msgid "Time where signature takes effect" +msgstr "Takt, ve kterém se označení uplatňuje" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:83 +#: ../src/gui/dialogs/TempoDialog.cpp:128 +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:129 +#: ../src/gui/general/PresetHandlerDialog.cpp:101 +msgid "Scope" +msgstr "Oblast" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:141 +#, c-format +msgid "Insertion point is at start of measure %1." +msgstr "Bod vložení je na začátku %1 taktu." + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:145 +#, c-format +msgid "Insertion point is in the middle of measure %1." +msgstr "Bod vložení je uprostřed %1 taktu." + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:150 +msgid "Insertion point is at start of composition." +msgstr "Bod vložení je na začátku skladby." + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:155 +msgid "Start measure %1 here" +msgstr "Takt %1 začít zde" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:159 +#, c-format +msgid "Change time from start of measure %1" +msgstr "Změnit taktové označení od začátku taktu %1" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:166 +#, c-format +msgid "Time change will take effect at the start of measure %1." +msgstr "Změna taktového označení se uplatní od začátku taktu %1." + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:176 +msgid "Hide the time signature" +msgstr "Skrýt taktové označení" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:181 +msgid "Hide the affected bar lines" +msgstr "Skrýt odpovídající taktové čáry" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:186 +msgid "Show as common time" +msgstr "Zobrazit jako 4/4 takt" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:191 +msgid "Correct the durations of following measures" +msgstr "Opravit dobu trvání následujících taktů" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:280 +msgid "Display as common time" +msgstr "Zobrazit jako 4/4 takt" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:284 +msgid "Display as cut common time" +msgstr "Zobrazit jako alla breve" + +#: ../src/gui/dialogs/ConfigureDialog.cpp:66 +msgid "Configure Rosegarden" +msgstr "Konfigurace aplikace Rosegarden" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:53 +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:61 +msgid "Edit Marker" +msgstr "Upravit záložku" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:78 +msgid "Marker Time" +msgstr "Čas záložky" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:94 +msgid "Marker Properties" +msgstr "Vlastnosti záložky" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:100 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:554 +msgid "Text:" +msgstr "Text:" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:104 +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:85 +msgid "Description:" +msgstr "Popis:" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:46 +msgid "Merge File" +msgstr "Připojit soubor" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:53 +msgid "Merge new file " +msgstr "Připojit nový soubor " + +#: ../src/gui/dialogs/FileMergeDialog.cpp:56 +msgid "At start of existing composition" +msgstr "Na začátek existující skladby" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:57 +msgid "From end of existing composition" +msgstr "Od konce existující skladby" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:61 +msgid "The file has different time signatures or tempos." +msgstr "Soubor má jiná taktová označení nebo jiná tempa." + +#: ../src/gui/dialogs/FileMergeDialog.cpp:62 +msgid "Import these as well" +msgstr "Importovat také toto" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:171 +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:44 +msgid "Sequencer status" +msgstr "Stav sekvenceru" + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:48 +msgid "Sequencer status:" +msgstr "Stav sekvenceru:" + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:50 +msgid "Status not available." +msgstr "Stav není dostupný." + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:57 +msgid "Sequencer is not running or is not responding." +msgstr "Sekvencer není spuštěný nebo neodpovídá." + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:64 +msgid "Sequencer is not returning a valid status report." +msgstr "Sekvencer nevrací platnou zprávu o svém stavu." + +#: ../src/gui/dialogs/AddTracksDialog.cpp:46 +msgid "Add Tracks" +msgstr "Přidat stopy" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:54 +msgid "How many tracks do you want to add?" +msgstr "Kolik stop chcete přidat?" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:62 +msgid "Add tracks" +msgstr "Přidat stopy" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:64 +msgid "At the top" +msgstr "" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:65 +#, fuzzy +msgid "Above the current selected track" +msgstr "Ztlumení všech stop kromě aktuálně vybrané" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:66 +#, fuzzy +msgid "Below the current selected track" +msgstr "Ztlumení všech stop kromě aktuálně vybrané" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:67 +msgid "At the bottom" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:75 +msgid "Event Properties" +msgstr "Vlastnosti události" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:81 +msgid "Event type:" +msgstr "Typ události:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:117 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:251 +#: ../src/gui/editors/segment/MarkerEditor.cpp:97 +msgid "Absolute time:" +msgstr "Absolutní čas:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:156 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:323 +msgid "Controller name:" +msgstr "Název ovládacího prvku:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:157 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:530 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:562 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:563 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:602 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:631 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:267 +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:269 +#: ../src/gui/editors/segment/MarkerEditor.cpp:279 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:272 +#: ../src/gui/studio/AudioMixerWindow.cpp:388 +#: ../src/gui/studio/AudioMixerWindow.cpp:519 +#: ../src/gui/studio/AudioMixerWindow.cpp:683 +#: ../src/gui/studio/AudioMixerWindow.cpp:722 +#: ../src/gui/studio/AudioMixerWindow.cpp:904 +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:121 +msgid "" +msgstr "<žádný>" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:174 +msgid "Meta string:" +msgstr "Meta řetězec:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:179 +msgid "Load data" +msgstr "Načíst data" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:181 +msgid "Save data" +msgstr "Uložit data" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:192 +msgid "Notation Properties" +msgstr "Vlastnosti notace" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:198 +msgid "Lock to changes in performed values" +msgstr "Uzamknout před změnami přehrávaných hodnot" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:205 +msgid "Notation time:" +msgstr "Čas notace:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:217 +msgid "Notation duration:" +msgstr "Doba trvání notace:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:283 +msgid "Note pitch:" +msgstr "Výška noty:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:291 +msgid "Note velocity:" +msgstr "Rychlost noty:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:317 +msgid "Controller number:" +msgstr "Číslo ovládacího prvku:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:326 +msgid "Controller value:" +msgstr "Hodnota ovládacího prvku:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:354 +msgid "Key pitch:" +msgstr "Výška tónu klávesy:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:362 +msgid "Key pressure:" +msgstr "Tlaková citlivost klávesy:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:390 +msgid "Channel pressure:" +msgstr "Kanálová tlaková citlivost:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:418 +msgid "Program change:" +msgstr "Změna programu:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:461 +msgid "Data length:" +msgstr "Délka dat:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:462 +msgid "Data:" +msgstr "Data:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:480 +msgid "Pitchbend MSB:" +msgstr "Ohýbání výšky tónu MSB:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:488 +msgid "Pitchbend LSB:" +msgstr "Ohýbání výšky tónu LSB:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:523 +msgid "Indication:" +msgstr "Označení způsobu hry:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:553 +msgid "Text type:" +msgstr "Typ textu:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:596 +msgid "Clef type:" +msgstr "Typ notového klíče:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:625 +msgid "Key name:" +msgstr "Název klávesy:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:674 +msgid "Unsupported event type:" +msgstr "Nepodporovaný typ události:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:931 +msgid "Edit Event Time" +msgstr "Upravit čas události" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:943 +msgid "Edit Event Notation Time" +msgstr "Upravit čas notace události" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:955 +msgid "Edit Duration" +msgstr "Upravit dobu trvání" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:968 +msgid "Edit Notation Duration" +msgstr "Upravit dobu trvání notace" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:981 +msgid "Edit Pitch" +msgstr "Upravit výšku tónu" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:991 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:1016 +msgid "*.syx|System exclusive files (*.syx)" +msgstr "*.syx|Systémové exkluzivní soubory (*.syx)" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:992 +msgid "Load System Exclusive data in File" +msgstr "Načíst systémová exkluzivní data v souboru" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:1017 +msgid "Save System Exclusive data to..." +msgstr "Uložit systémová exkluzivní data do..." + +#: ../src/gui/dialogs/FileLocateDialog.cpp:46 +msgid "Locate audio file" +msgstr "Najít zvukový soubor" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:50 +msgid "&Skip" +msgstr "&Přeskočit" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:51 +msgid "Skip &All" +msgstr "Přeskočit &vše" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:52 +msgid "&Locate" +msgstr "&Najít" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:57 +msgid "" +"Can't find file \"%1\".\n" +"Would you like to try and locate this file or skip it?" +msgstr "" +"Nelze najít soubor \"%1\".\n" +"Chcete se pokusit nalézt soubor manuálně nebo se má přeskočit?" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:71 +msgid "" +"%1|Requested file (%2)\n" +"*.wav|WAV files (*.wav)" +msgstr "" +"%1|Požadovaný soubor (%2)\n" +"soubory *.wav|WAV (*.wav)" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:74 +msgid "Select an Audio File" +msgstr "Vybrat zvukový soubor" + +#: ../src/gui/dialogs/ClefDialog.cpp:53 ../src/gui/dialogs/ClefDialog.cpp:62 +#: ../src/gui/dialogs/ClefDialog.cpp:79 ../src/gui/dialogs/ClefDialog.cpp:90 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:278 +msgid "Clef" +msgstr "Klíč" + +#: ../src/gui/dialogs/ClefDialog.cpp:65 +msgid "Existing notes following clef change" +msgstr "Stávající noty následující po změně klíče" + +#: ../src/gui/dialogs/ClefDialog.cpp:71 +msgid "Lower clef" +msgstr "Klíč hlubší polohy" + +#: ../src/gui/dialogs/ClefDialog.cpp:77 +msgid "Up an Octave" +msgstr "O oktávu výš" + +#: ../src/gui/dialogs/ClefDialog.cpp:84 +msgid "Down an Octave" +msgstr "O oktávu níž" + +#: ../src/gui/dialogs/ClefDialog.cpp:88 +msgid "Higher clef" +msgstr "Klíč vyšší polohy" + +#: ../src/gui/dialogs/ClefDialog.cpp:96 +#: ../src/gui/dialogs/KeySignatureDialog.cpp:152 +msgid "Maintain current pitches" +msgstr "Zachovat aktuální výšky tónů" + +#: ../src/gui/dialogs/ClefDialog.cpp:99 +msgid "Transpose into appropriate octave" +msgstr "Transponovat do příslušné oktávy" + +#: ../src/gui/dialogs/ClefDialog.cpp:231 +msgid "%1 down an octave" +msgstr "%1 snížit o oktávu" + +#: ../src/gui/dialogs/ClefDialog.cpp:234 +msgid "%1 down two octaves" +msgstr "%1 snížit o dvě oktávy" + +#: ../src/gui/dialogs/ClefDialog.cpp:237 +msgid "%1 up an octave" +msgstr "%1 zvýšit o oktávu" + +#: ../src/gui/dialogs/ClefDialog.cpp:240 +msgid "%1 up two octaves" +msgstr "%1 zvýšit o dvě oktávy" + +#: ../src/gui/dialogs/ClefDialog.cpp:249 +msgid "Treble" +msgstr "Houslový" + +#: ../src/gui/dialogs/ClefDialog.cpp:251 +msgid "French violin" +msgstr "Francouzský houslový" + +#: ../src/gui/dialogs/ClefDialog.cpp:253 +msgid "Soprano" +msgstr "Soprano" + +#: ../src/gui/dialogs/ClefDialog.cpp:255 +msgid "Mezzo-soprano" +msgstr "Mezosopránový" + +#: ../src/gui/dialogs/ClefDialog.cpp:257 +msgid "Alto" +msgstr "Violový" + +#: ../src/gui/dialogs/ClefDialog.cpp:259 +msgid "Tenor" +msgstr "Tenorový" + +#: ../src/gui/dialogs/ClefDialog.cpp:261 +msgid "C-baritone" +msgstr "C-barytonový" + +#: ../src/gui/dialogs/ClefDialog.cpp:263 +msgid "F-baritone" +msgstr "F-barytonový" + +#: ../src/gui/dialogs/ClefDialog.cpp:265 +msgid "Bass" +msgstr "Basový" + +#: ../src/gui/dialogs/ClefDialog.cpp:267 +msgid "Sub-bass" +msgstr "Subbasový" + +#: ../src/gui/dialogs/CountdownDialog.cpp:52 +msgid "Recording..." +msgstr "Probíhá záznam..." + +#: ../src/gui/dialogs/CountdownDialog.cpp:60 +msgid "Recording time remaining: " +msgstr "Zbývající záznamový čas: " + +#: ../src/gui/dialogs/CountdownDialog.cpp:120 +msgid "Just how big is your hard disk?" +msgstr "Jak je velký váš pevný disk?" + +#: ../src/gui/dialogs/CountdownDialog.cpp:154 +msgid "Recording beyond end of composition: " +msgstr "Záznam za koncem skladby: " + +#: ../src/gui/dialogs/IntervalDialog.cpp:52 +msgid "Specify Interval" +msgstr "Zadat interval" + +#: ../src/gui/dialogs/IntervalDialog.cpp:58 +msgid "Reference note:" +msgstr "Referenční nota:" + +#: ../src/gui/dialogs/IntervalDialog.cpp:59 +msgid "Target note:" +msgstr "Cílová nota:" + +#: ../src/gui/dialogs/IntervalDialog.cpp:68 +#: ../src/gui/dialogs/IntervalDialog.cpp:315 +msgid "a perfect unison" +msgstr "prima" + +#: ../src/gui/dialogs/IntervalDialog.cpp:76 +msgid "Effect on Key" +msgstr "Efekt na tónině" + +#: ../src/gui/dialogs/IntervalDialog.cpp:77 +msgid "Transpose within key" +msgstr "Transponovat v tónině" + +#: ../src/gui/dialogs/IntervalDialog.cpp:79 +msgid "Change key for selection" +msgstr "Změnit tóninu pro výběr" + +#: ../src/gui/dialogs/IntervalDialog.cpp:89 +msgid "" +"Adjust segment transposition in opposite direction (maintain audible pitch)" +msgstr "" +"Upravit transpozici segmentu v opačném směru (udržet slyšitelnou výšku)" + +#: ../src/gui/dialogs/IntervalDialog.cpp:190 +#: ../src/gui/dialogs/IntervalDialog.cpp:220 +msgid "a diminished" +msgstr "zmenšený" + +#: ../src/gui/dialogs/IntervalDialog.cpp:192 +#: ../src/gui/dialogs/IntervalDialog.cpp:222 +msgid "an augmented" +msgstr "zvětšený" + +#: ../src/gui/dialogs/IntervalDialog.cpp:194 +#: ../src/gui/dialogs/IntervalDialog.cpp:224 +msgid "a doubly diminished" +msgstr "dvojnásobně zmenšený" + +#: ../src/gui/dialogs/IntervalDialog.cpp:196 +#: ../src/gui/dialogs/IntervalDialog.cpp:226 +msgid "a doubly augmented" +msgstr "dvojnásobně zvětšený" + +#: ../src/gui/dialogs/IntervalDialog.cpp:198 +#: ../src/gui/dialogs/IntervalDialog.cpp:228 +msgid "a triply diminished" +msgstr "trojnásobně zmenšený" + +#: ../src/gui/dialogs/IntervalDialog.cpp:200 +#: ../src/gui/dialogs/IntervalDialog.cpp:230 +msgid "a triply augmented" +msgstr "trojnásobně zvětšený" + +#: ../src/gui/dialogs/IntervalDialog.cpp:202 +msgid "a quadruply diminished" +msgstr "čtyřnásobně zmenšený" + +#: ../src/gui/dialogs/IntervalDialog.cpp:204 +#: ../src/gui/dialogs/IntervalDialog.cpp:232 +msgid "a quadruply augmented" +msgstr "čtyřnásobně zvětšený" + +#: ../src/gui/dialogs/IntervalDialog.cpp:206 +#: ../src/gui/dialogs/IntervalDialog.cpp:234 +msgid "a perfect" +msgstr "dokonalý" + +#: ../src/gui/dialogs/IntervalDialog.cpp:208 +#: ../src/gui/dialogs/IntervalDialog.cpp:236 +msgid "an (unknown, %1)" +msgstr "(neznámé, %1)" + +#: ../src/gui/dialogs/IntervalDialog.cpp:216 +msgid "a minor" +msgstr "moll" + +#: ../src/gui/dialogs/IntervalDialog.cpp:218 +msgid "a major" +msgstr "dur" + +#: ../src/gui/dialogs/IntervalDialog.cpp:239 +msgid "an (unknown)" +msgstr "(neznámé)" + +#: ../src/gui/dialogs/IntervalDialog.cpp:248 +#: ../src/gui/dialogs/IntervalDialog.cpp:251 +msgid "%1 octave" +msgstr "%1 oktáva" + +#: ../src/gui/dialogs/IntervalDialog.cpp:254 +msgid "%1 unison" +msgstr "%1 prima" + +#: ../src/gui/dialogs/IntervalDialog.cpp:258 +msgid "%1 second" +msgstr "%1 sekunda" + +#: ../src/gui/dialogs/IntervalDialog.cpp:261 +msgid "%1 third" +msgstr "%1 tercie" + +#: ../src/gui/dialogs/IntervalDialog.cpp:264 +msgid "%1 fourth" +msgstr "%1 kvarta" + +#: ../src/gui/dialogs/IntervalDialog.cpp:267 +msgid "%1 fifth" +msgstr "%1 kvinta" + +#: ../src/gui/dialogs/IntervalDialog.cpp:270 +msgid "%1 sixth" +msgstr "%1 sexta" + +#: ../src/gui/dialogs/IntervalDialog.cpp:273 +msgid "%1 seventh" +msgstr "%1 septima" + +#: ../src/gui/dialogs/IntervalDialog.cpp:276 +#: ../src/gui/studio/DeviceManagerDialog.cpp:329 +#: ../src/gui/studio/DeviceManagerDialog.cpp:363 +#, c-format +msgid "%1" +msgstr "%1" + +#: ../src/gui/dialogs/IntervalDialog.cpp:287 +msgid "" +"_n: up 1 octave and %1\n" +"up %n octaves and %1" +msgstr "" +"_n: o 1 oktávu výš a %1\n" +"o %n oktáv(y) výš a %1" + +#: ../src/gui/dialogs/IntervalDialog.cpp:291 +#, c-format +msgid "" +"_n: up 1 octave\n" +"up %n octaves" +msgstr "" +"_n: o 1 oktávu výš\n" +"o %n oktáv(y) výš" + +#: ../src/gui/dialogs/IntervalDialog.cpp:295 +#, c-format +msgid "up %1" +msgstr "zvýšit o %1" + +#: ../src/gui/dialogs/IntervalDialog.cpp:303 +msgid "" +"_n: down 1 octave and %1\n" +"down %n octaves and %1" +msgstr "" +"_n: o 1 oktávu níž a %1\n" +"o %n oktáv(y) níž a %1" + +#: ../src/gui/dialogs/IntervalDialog.cpp:307 +#, c-format +msgid "" +"_n: down 1 octave\n" +"down %n octaves" +msgstr "" +"_n: o 1 oktávu níž\n" +"o %n oktáv(y) níž" + +#: ../src/gui/dialogs/IntervalDialog.cpp:311 +#, c-format +msgid "down %1" +msgstr "snížit o %1" + +#: ../src/gui/dialogs/EventEditDialog.cpp:81 +msgid "Intrinsics" +msgstr "Vnitřní hodnoty" + +#: ../src/gui/dialogs/EventEditDialog.cpp:85 +msgid "Event type: " +msgstr "Typ události: " + +#: ../src/gui/dialogs/EventEditDialog.cpp:91 +msgid "Absolute time: " +msgstr "Absolutní čas: " + +#: ../src/gui/dialogs/EventEditDialog.cpp:101 +msgid "Duration: " +msgstr "Doba trvání: " + +#: ../src/gui/dialogs/EventEditDialog.cpp:114 +msgid "Sub-ordering: " +msgstr "Podřád: " + +#: ../src/gui/dialogs/EventEditDialog.cpp:125 +msgid "Persistent properties" +msgstr "Trvalé vlastnosti" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:169 +#: ../src/gui/dialogs/EventEditDialog.cpp:133 +#: ../src/gui/studio/BankEditorDialog.cpp:129 +#: ../src/gui/studio/DeviceEditorDialog.cpp:75 +msgid "Type" +msgstr "Typ" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:184 +#: ../src/gui/dialogs/EventEditDialog.cpp:135 +#: ../src/gui/dialogs/EventParameterDialog.cpp:89 +#: ../src/gui/dialogs/EventParameterDialog.cpp:93 +#: ../src/gui/dialogs/EventParameterDialog.cpp:115 +msgid "Value" +msgstr "Hodnota" + +#: ../src/gui/dialogs/EventEditDialog.cpp:155 +msgid "Non-persistent properties" +msgstr "Dočasné vlastnosti" + +#: ../src/gui/dialogs/EventEditDialog.cpp:156 +msgid "These are cached values, lost if the event is modified." +msgstr "" +"Toto jsou hodnoty ukládané do paměti cache, které budou při modifikaci " +"události ztraceny." + +#: ../src/gui/dialogs/EventEditDialog.cpp:170 +msgid "Name " +msgstr "Název " + +#: ../src/gui/dialogs/EventEditDialog.cpp:172 +msgid "Type " +msgstr "Typ " + +#: ../src/gui/dialogs/EventEditDialog.cpp:174 +msgid "Value " +msgstr "Hodnota " + +#: ../src/gui/dialogs/EventEditDialog.cpp:188 +msgid "Make persistent" +msgstr "Nastavit trvalý charakter" + +#: ../src/gui/dialogs/EventEditDialog.cpp:292 +msgid "Delete this property" +msgstr "Odstranit tuto vlastnost" + +#: ../src/gui/dialogs/EventEditDialog.cpp:433 +msgid "" +"Are you sure you want to delete the \"%1\" property?\n" +"\n" +"Removing necessary properties may cause unexpected behavior." +msgstr "" +"Skutečně chcete odstranit vlastnost \"%1\"?\n" +"\n" +"Odstranění nezbytných vlastností může způsobit nevypočitatelné chování." + +#: ../src/gui/dialogs/EventEditDialog.cpp:436 +#: ../src/gui/dialogs/EventEditDialog.cpp:469 +msgid "Edit Event" +msgstr "Upravit událost" + +#: ../src/gui/dialogs/EventEditDialog.cpp:465 +msgid "" +"Are you sure you want to make the \"%1\" property persistent?\n" +"\n" +"This could cause problems if it overrides a different computed value later " +"on." +msgstr "" +"Skutečně chcete nastavit trvalý charakter vlastnosti \"%1\"?\n" +"\n" +"Mohlo by to způsobit problémy, pokud by takto byla později potlačena nějaká " +"jiná vypočítaná hodnota." + +#: ../src/gui/dialogs/EventEditDialog.cpp:470 +msgid "Make &Persistent" +msgstr "Nastavit &trvalý charakter" + +#: ../src/gui/dialogs/PasteNotationDialog.cpp:52 +msgid "Paste type" +msgstr "Typ vložení" + +#: ../src/gui/dialogs/PasteNotationDialog.cpp:72 +msgid "Make this the default paste type" +msgstr "Tento typ vložení používat jako výchozí" + +#: ../src/gui/dialogs/LyricEditDialog.cpp:53 +msgid "Edit Lyrics" +msgstr "Upravit text melodie" + +#: ../src/gui/dialogs/LyricEditDialog.cpp:62 +msgid "Lyrics for this segment" +msgstr "Text melodie tohoto segmentu" + +#: ../src/gui/dialogs/LyricEditDialog.cpp:70 +msgid "Add Verse" +msgstr "Přidat sloku/verš" + +#: ../src/gui/dialogs/LyricEditDialog.cpp:84 +#: ../src/gui/dialogs/LyricEditDialog.cpp:106 +#, c-format +msgid "Verse %1" +msgstr "Sloka %1" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:59 +msgid "Import from Device..." +msgstr "Importovat ze zařízení..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2163 +#: ../src/gui/application/RosegardenGUIApp.cpp:2229 +#: ../src/gui/application/RosegardenGUIApp.cpp:7780 +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:87 +#: ../src/sound/AudioFileManager.cpp:664 +#, c-format +msgid "Cannot download file %1" +msgstr "Nelze stáhnout soubor %1" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:99 +#, c-format +msgid "Cannot open file %1" +msgstr "Nelze otevřít soubor %1" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:106 +#, c-format +msgid "No devices found in file %1" +msgstr "V souboru %1 nebyla nalezena žádná zařízení" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:113 +msgid "Source device" +msgstr "Zdrojové zařízení" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:118 +msgid "Import from: " +msgstr "Importovat z: " + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:140 +#: ../src/gui/studio/DeviceEditorDialog.cpp:148 +#, c-format +msgid "Device %1" +msgstr "Zařízení %1" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:155 +msgid "Import banks" +msgstr "Importovat banky" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:156 +msgid "Import key mappings" +msgstr "Importovat mapování tónin" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:157 +msgid "Import controllers" +msgstr "Importovat ovládací prvky" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:160 +msgid "Import device name" +msgstr "Importovat název zařízení" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:166 +msgid "Bank import behavior" +msgstr "Chování při importu banky" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:168 +msgid "Merge banks" +msgstr "Připojit banky" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:169 +msgid "Overwrite banks" +msgstr "Přepsat banky" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:367 +msgid "Bank %1:%2" +msgstr "Banka %1:%2" + +#: ../src/commands/segment/SegmentSplitByRecordingSrcCommand.cpp:42 +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:48 +msgid "Split by Recording Source" +msgstr "Rozdělit podle záznamového zdroje" + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:53 +msgid "Recording Source" +msgstr "Záznamový zdroj" + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:57 +msgid "Channel:" +msgstr "Kanál:" + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:64 +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:75 +msgid "any" +msgstr "jakýkoli" + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:69 +msgid "Device:" +msgstr "Zařízení:" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:46 +msgid "Select Unused Audio Files" +msgstr "Vybrat nepoužívané zvukové soubory" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:53 +#: ../src/gui/editors/segment/PlayListView.cpp:36 +msgid "File name" +msgstr "Název souboru" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:54 +msgid "File size" +msgstr "Velikost souboru" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:55 +msgid "Last modified date" +msgstr "Datum posledních úprav" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:60 +msgid " (not found) " +msgstr " (nenalezeno)" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:105 +msgid "Audio File Manager" +msgstr "Správce zvukových souborů" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:126 +msgid "" +"* Some audio files are encoded at a sample rate different from that of the " +"JACK audio server.\n" +"Rosegarden will play them at the correct speed, but they will sound " +"terrible.\n" +"Please consider resampling such files externally, or adjusting the sample " +"rate of the JACK server." +msgstr "" +"* Některé zvukové soubory jsou zakódované vzorkovací frekvencí odlišnou od " +"frekvence zvukového serveru JACK.\n" +"Aplikace Rosegarden je přehraje správnou rychlostí, ale budou znít strašně.\n" +"Zvažte proto možnost externího převzorkování takových souborů nebo upravení " +"vzorkovací frekvence serveru JACK." + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:132 +msgid "&Add Audio File..." +msgstr "&Přidat zvukový soubor..." + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:135 +msgid "&Unload Audio File" +msgstr "Uvolnit &zvukový soubor z paměti" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:140 +msgid "&Play Preview" +msgstr "Přehrát &ukázku" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:151 +msgid "&Insert into Selected Audio Track" +msgstr "&Vložit do vybrané zvukové stopy" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:155 +msgid "Unload &all Audio Files" +msgstr "Uvolnit &všechny zvukové soubory z paměti" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:159 +msgid "Unload all &Unused Audio Files" +msgstr "Uvolnit všechny &nepoužívané zvukové soubory z paměti" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:163 +msgid "&Delete Unused Audio Files..." +msgstr "&Odstranit nepoužívané zvukové soubory z paměti..." + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:167 +msgid "&Export Audio File..." +msgstr "&Exportovat zvukový soubor..." + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:173 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:180 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:91 +msgid "Duration" +msgstr "Doba trvání" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:181 +msgid "Envelope" +msgstr "Obalová křivka" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:182 +msgid "Sample rate" +msgstr "Vzorkovací frekvence" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:183 +msgid "Channels" +msgstr "Kanály" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:282 +msgid "" +msgstr "<žádné zvukové soubory>" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:488 +msgid "*.wav|WAV files (*.wav)" +msgstr "soubory *.wav|WAV (*.wav)" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:489 +msgid "Choose a name to save this file as" +msgstr "Vyberte název pro uložení toho souboru jako" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:499 +msgid "Exporting audio file..." +msgstr "Probíhá export zvukového souboru..." + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:609 +msgid "" +"This will unload audio file \"%1\" and remove all associated segments. Are " +"you sure?" +msgstr "" +"Tímto dojde k uvolnění zvukového souboru \"%1\" z paměti a odstranění " +"všechsouvisejících segmentů. Skutečně to chcete provést?" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:692 +msgid "" +"*.wav|WAV files (*.wav)\n" +"*.*|All files" +msgstr "" +"soubory *.wav|WAV (*.wav)\n" +"*.*|Všechny soubory" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:697 +msgid "" +"*.wav *.flac *.ogg *.mp3|Audio files (*.wav *.flac *.ogg *.mp3)\n" +"*.wav|WAV files (*.wav)\n" +"*.flac|FLAC files (*.flac)\n" +"*.ogg|Ogg files (*.ogg)\n" +"*.mp3|MP3 files (*.mp3)\n" +"*.*|All files" +msgstr "" +"soubory *.wav *.flac *.ogg *.mp3|Zvukové soubory (*.wav *.flac *.ogg *.mp3)\n" +"soubory *.wav|WAV (*.wav)\n" +"soubory *.flac|FLAC (*.flac)\n" +"soubory *.ogg|Ogg (*.ogg)\n" +"soubory *.mp3|MP3 (*.mp3)\n" +"*.*|Všechny soubory" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:704 +msgid "Select one or more audio files" +msgstr "Vybrat jeden nebo více zvukových souborů" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:763 +msgid "" +"This will unload all audio files and remove their associated segments.\n" +"This action cannot be undone, and associations with these files will be " +"lost.\n" +"Files will not be removed from your disk.\n" +"Are you sure?" +msgstr "" +"Tímto se uvolní všechny zvukové soubory z paměti a odstraní jejich " +"související segmenty.\n" +"Tuto akci nelze vrátit zpět a asociace s těmito soubory budou ztraceny.\n" +"Soubory nebudou odstraněny z pevného disku.\n" +"Skutečně chcete pokračovat?" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:800 +msgid "" +"This will unload all audio files that are not associated with any segments " +"in this composition.\n" +"This action cannot be undone, and associations with these files will be " +"lost.\n" +"Files will not be removed from your disk.\n" +"Are you sure?" +msgstr "" +"Tímto se uvolní všechny zvukové soubory z paměti, které nejsou asociovány s " +"žádnými segmenty v této skladbě.\n" +"Tuto akci nelze vrátit zpět a asociace s těmito soubory budou ztraceny.\n" +"Soubory nebudou odstraněny z pevného disku.\n" +"Skutečně chcete pokračovat?" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:865 +msgid "" +"The following audio files are not used in the current composition.\n" +"\n" +"Please select the ones you wish to delete permanently from the hard disk.\n" +msgstr "" +"Následující zvukové soubory nejsou v aktuální skladbě použity.\n" +"\n" +"Vyberte ty, které chcete z pevného disku trvale odstranit.\n" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:875 +#, c-format +msgid "" +"_n: About to delete 1 audio file permanently from the hard disk.
      This " +"action cannot be undone, and there will be no way to recover this file." +"
      Are you sure?
      \n" +"\n" +"About to delete %n audio files permanently from the hard disk.
      This " +"action cannot be undone, and there will be no way to recover these files." +"
      Are you sure?
      " +msgstr "" +"_n: Chystáte se z pevného disku trvale odstranit 1 zvukový soubor." +"
      Tuto akci nelze vrátit zpět a neexistuje způsob, jak tento soubor " +"později obnovit.
      Skutečně chcete pokračovat?
      \n" +"\n" +"Chystáte se z pevného disku trvale odstranit %n zvukové(ých) soubory(ů)." +"
      Tuto akci nelze vrátit zpět a neexistuje způsob, jak tyto soubory " +"později obnovit.
      Skutečně chcete pokračovat?
      " + +#: ../src/document/RosegardenGUIDoc.cpp:525 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:888 +msgid "File %1 could not be deleted." +msgstr "Soubor %1 nelze odstranit." + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:921 +msgid "Change Audio File label" +msgstr "Změnit popisek zvukového souboru" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6466 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:922 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1099 +msgid "Enter new label" +msgstr "Zadat nový popisek" + +#: ../src/gui/application/RosegardenGUIView.cpp:1538 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1086 +msgid "Adding audio file..." +msgstr "Probíhá přidání zvukového souboru..." + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1107 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1112 +msgid "Failed to add audio file. " +msgstr "Přidání zvukového souboru selhalo." + +#: ../src/document/RosegardenGUIDoc.cpp:2789 +#: ../src/gui/application/RosegardenGUIApp.cpp:2736 +#: ../src/gui/application/RosegardenGUIView.cpp:1574 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1122 +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:180 +msgid "Generating audio preview..." +msgstr "Probíhá vytváření zvukové ukázky..." + +#: ../src/gui/application/RosegardenGUIView.cpp:1581 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1130 +msgid "" +"Try copying this file to a directory where you have write permission and re-" +"add it" +msgstr "" +"Zkuste zkopírovat tento soubor do adresáře, ve kterém máte oprávnění k " +"zápisu,a vyzkoušejte jej přidat znovu" + +#: ../src/gui/dialogs/TransportDialog.cpp:90 rc.cpp:357 +#, no-c-format +msgid "Rosegarden Transport" +msgstr "Transport aplikace Rosegarden" + +#: ../src/gui/dialogs/TransportDialog.cpp:925 +#: ../src/gui/dialogs/TransportDialog.cpp:985 +msgid "PITCH WHEEL" +msgstr "OVLÁDÁNÍ VÝŠKY TÓNU" + +#: ../src/gui/dialogs/TransportDialog.cpp:929 +#: ../src/gui/dialogs/TransportDialog.cpp:989 +msgid "CONTROLLER" +msgstr "OVLÁDACÍ PRVEK" + +#: ../src/gui/dialogs/TransportDialog.cpp:933 +#: ../src/gui/dialogs/TransportDialog.cpp:993 +msgid "PROG CHNGE" +msgstr "ZMĚNA PROGRAMU" + +#: ../src/gui/dialogs/TransportDialog.cpp:938 +#: ../src/gui/dialogs/TransportDialog.cpp:998 +msgid "PRESSURE" +msgstr "TLAKOVÁ CITLIVOST" + +#: ../src/gui/dialogs/TransportDialog.cpp:942 +#: ../src/gui/dialogs/TransportDialog.cpp:1002 +msgid "SYS MESSAGE" +msgstr "SYSTÉMOVÁ ZPRÁVA" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:177 +#: ../src/gui/dialogs/QuantizeDialog.cpp:40 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:127 +msgid "Quantize" +msgstr "Kvantizovat" + +#: ../src/gui/dialogs/QuantizeDialog.cpp:52 +msgid "Advanced" +msgstr "Rozšířené možnosti" + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:42 +msgid "Export Devices..." +msgstr "Exportovat zařízení..." + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:47 +msgid "Export devices" +msgstr "Exportovat zařízení" + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:49 +msgid "Export all devices" +msgstr "Exportovat všechna zařízení" + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:50 +msgid "Export selected device only" +msgstr "Exportovat pouze vybraná zařízení" + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:51 +msgid " (\"%1\")" +msgstr " (\"%1\")" + +#: ../src/gui/dialogs/CompositionLengthDialog.cpp:44 +msgid "Change Composition Length" +msgstr "Změnit délku skladby" + +#: ../src/gui/dialogs/CompositionLengthDialog.cpp:50 +msgid "Set the Start and End bar markers for this Composition" +msgstr "Nastavit počáteční a koncovou taktovou čáru pro tuto skladbu" + +#: ../src/gui/dialogs/CompositionLengthDialog.cpp:54 +msgid "Start Bar" +msgstr "Počáteční taktová čára" + +#: ../src/gui/dialogs/CompositionLengthDialog.cpp:62 +msgid "End Bar" +msgstr "Koncová taktová čára" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:62 +msgid "LilyPond Export/Preview" +msgstr "Export/náhled do aplikace LilyPond" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:85 +msgid "General options" +msgstr "Obecné možnosti" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:90 +msgid "Advanced options" +msgstr "Rozšířené možnosti" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:112 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:95 +msgid "Headers" +msgstr "Hlavičky" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:106 +msgid "Basic options" +msgstr "Základní možnosti" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:113 +msgid "Compatibility level" +msgstr "Úroveň kompatibility" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:117 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:118 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:119 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:120 +#, c-format +msgid "LilyPond %1" +msgstr "LilyPond %1" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:125 +msgid "Paper size" +msgstr "Formát papíru" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:129 +msgid "A3" +msgstr "A3" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:130 +msgid "A4" +msgstr "A4" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:131 +msgid "A5" +msgstr "A5" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:132 +msgid "A6" +msgstr "A6" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:133 +msgid "Legal" +msgstr "Legal" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:134 +msgid "US Letter" +msgstr "US Letter" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:135 +msgid "Tabloid" +msgstr "Tabloid" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:136 +msgid "do not specify" +msgstr "nespecifikováno" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:152 +msgid "Font size" +msgstr "Velikost písma" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:157 +msgid "%1 pt" +msgstr "%1 (bod)" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:169 +msgid "Staff level options" +msgstr "Možnosti úrovně osnovy" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:176 +msgid "Export content" +msgstr "Exportovat obsah" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:179 +msgid "All tracks" +msgstr "Všechny stopy" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:180 +msgid "Non-muted tracks" +msgstr "Neztlumené stopy" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:181 +msgid "Selected track" +msgstr "Vybraná stopa" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:182 +msgid "Selected segments" +msgstr "Vybrané segmenty" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:188 +msgid "Merge tracks that have the same name" +msgstr "Spojit stopy se stejným názvem" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:198 +msgid "Notation options" +msgstr "Možnosti notace" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:206 +msgid "First" +msgstr "První" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:207 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:538 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:557 +msgid "All" +msgstr "Vše" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:211 +msgid "Export tempo marks " +msgstr "Exportovat značky tempa" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:215 +msgid "Export lyrics" +msgstr "Exportovat text melodie" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:225 +msgid "Export beamings" +msgstr "Exportovat trámce" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:232 +msgid "Export track staff brackets" +msgstr "Exportovat závorky osnovy stop" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:244 +msgid "Layout options" +msgstr "Možnosti uspořádání" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:257 +msgid "Lyrics alignment" +msgstr "Zarovnání textu melodie" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:261 +msgid "Ragged bottom (systems will not be spread vertically across the page)" +msgstr "" +"Nevyrovnaná spodní část (osnovy nebudou vertikálně roztaženy po celé straně)" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:267 +msgid "Miscellaneous options" +msgstr "Různé možnosti" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:274 +msgid "Enable \"point and click\" debugging" +msgstr "Zapnout ladění \"point and click\" (debugging, ukaž a klepni)" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:279 +msgid "Export \\midi block" +msgstr "Exportovat \\blok midi" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:284 +msgid "No markers" +msgstr "Žádné záložky" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:285 +msgid "Rehearsal marks" +msgstr "Cvičební značky" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:286 +msgid "Marker text" +msgstr "Text záložky" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:290 +msgid "Export markers" +msgstr "Exportovat záložky" + +#: ../src/gui/dialogs/AudioSplitDialog.cpp:57 +msgid "Autosplit Audio Segment" +msgstr "Automaticky rozdělit zvukový segment" + +#: ../src/gui/dialogs/AudioSplitDialog.cpp:70 +msgid "AutoSplit Segment \"" +msgstr "Automaticky rozdělit segment \"" + +#: ../src/gui/dialogs/AudioSplitDialog.cpp:84 +msgid "Threshold" +msgstr "Prahová hodnota" + +#: ../src/gui/dialogs/AudioSplitDialog.cpp:142 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:70 +msgid "Audio Plugin" +msgstr "Zvukový zásuvný modul" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:94 +#: ../src/gui/widgets/AudioFaderBox.cpp:136 +msgid "Editor" +msgstr "Editor" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:100 +msgid "Plugin" +msgstr "Zásuvný modul" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:105 +msgid "Category:" +msgstr "Kategorie:" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:110 +msgid "Plugin:" +msgstr "Zásuvný modul:" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:114 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:398 +msgid "Select a plugin from this list." +msgstr "Vyberte zásuvný modul z tohoto seznamu." + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:119 +msgid "Bypass" +msgstr "Obejít" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:121 +msgid "Bypass this plugin." +msgstr "Obejít tento zásuvný modul." + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:127 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:390 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:130 +msgid "Input and output port counts." +msgstr "Počet vstupních a výstupních portů." + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:132 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:391 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:135 +msgid "Unique ID of plugin." +msgstr "Jednoznačné ID zásuvného modulu." + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:149 +msgid "Copy plugin parameters" +msgstr "Kopírovat parametry zásuvného modulu" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:155 +msgid "Paste plugin parameters" +msgstr "Vložit parametry zásuvného modulu" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:161 +msgid "Set to defaults" +msgstr "Nastavit na výchozí hodnoty" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:225 +msgid "(any)" +msgstr "(jakýkoli)" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:226 +msgid "(unclassified)" +msgstr "(nezařazený)" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:247 +msgid "(none)" +msgstr "(žádný)" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:389 +#: ../src/gui/editors/parameters/AudioInstrumentParameterPanel.cpp:132 +#: ../src/gui/editors/parameters/AudioInstrumentParameterPanel.cpp:361 +#: ../src/gui/studio/AudioMixerWindow.cpp:685 +#: ../src/gui/studio/AudioMixerWindow.cpp:724 +#: ../src/gui/studio/AudioMixerWindow.cpp:906 +#: ../src/gui/widgets/AudioFaderBox.cpp:79 +msgid "" +msgstr "<žádný zásuvný modul>" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:427 +msgid "This plugin has too many controls to edit here." +msgstr "Tento zásuvný modul obsahuje příliš mnoho ovládacích prvků k editaci." + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:438 +#, c-format +msgid "Id: %1" +msgstr "Id: %1" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:490 +msgid "mono" +msgstr "mono" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:492 +msgid "stereo" +msgstr "stereo" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:494 +msgid "%1 in, %2 out" +msgstr "vstup %1, výstup %2" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:518 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:704 +msgid "Program: " +msgstr "Program: " + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:522 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:532 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:708 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:716 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:745 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:56 +msgid "Set the %1 property of the event selection:" +msgstr "Nastavit vlastnost %1 výběru události:" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:61 +msgid "Pattern" +msgstr "Vzor" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:66 +msgid "Flat - set %1 to value" +msgstr "Ploché - nastavit %1 na hodnotu" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:70 +msgid "Alternating - set %1 to max and min on alternate events" +msgstr "" +"Střídavé - nastavit %1 střídavě na maximum a minimum při střídání událostí" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:74 +msgid "Crescendo - set %1 rising from min to max" +msgstr "Crescendo - nastavit %1 na zvětšující se od minima po maximum" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:78 +msgid "Diminuendo - set %1 falling from max to min" +msgstr "Diminuendo - nastavit %1 na zmenšující se od maxima po minimum" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:82 +msgid "Ringing - set %1 alternating from max to min with both dying to zero" +msgstr "" +"Vyzvánění - nastavit %1 na střídání od maxima po minimum s ukončením na nule" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:123 +#: ../src/gui/dialogs/EventParameterDialog.cpp:150 +msgid "First Value" +msgstr "První hodnota" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:124 +#: ../src/gui/dialogs/EventParameterDialog.cpp:151 +msgid "Second Value" +msgstr "Druhá hodnota" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:132 +#: ../src/gui/dialogs/EventParameterDialog.cpp:142 +msgid "Low Value" +msgstr "Nízká hodnota" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:133 +#: ../src/gui/dialogs/EventParameterDialog.cpp:141 +msgid "High Value" +msgstr "Vysoká hodnota" + +#: ../src/gui/dialogs/TempoDialog.cpp:56 ../src/gui/rulers/TempoRuler.cpp:127 +msgid "Insert Tempo Change" +msgstr "Vložit změnu tempa" + +#: ../src/gui/dialogs/TempoDialog.cpp:69 +msgid "New tempo:" +msgstr "Nové tempo:" + +#: ../src/gui/dialogs/TempoDialog.cpp:76 +msgid "Tap" +msgstr "Vyťukat" + +#: ../src/gui/dialogs/TempoDialog.cpp:81 +msgid "Tempo is fixed until the following tempo change" +msgstr "Tempo je pevně dané až do následující změny tempa" + +#: ../src/gui/dialogs/TempoDialog.cpp:82 +msgid "Tempo ramps to the following tempo" +msgstr "Tempo přechází do následujícího tempa" + +#: ../src/gui/dialogs/TempoDialog.cpp:83 +msgid "Tempo ramps to:" +msgstr "Tempo přechází do:" + +#: ../src/gui/dialogs/TempoDialog.cpp:120 +msgid "Time of tempo change" +msgstr "Změna času tempa" + +#: ../src/gui/dialogs/TempoDialog.cpp:138 +msgid "The pointer is currently at " +msgstr "Ukazatel je v této chvíli na " + +#: ../src/gui/dialogs/TempoDialog.cpp:154 +msgid "Apply this tempo from here onwards" +msgstr "Použít toto tempo odtud dál" + +#: ../src/gui/dialogs/TempoDialog.cpp:158 +msgid "Replace the last tempo change" +msgstr "Nahradit poslední změnu tempa" + +#: ../src/gui/dialogs/TempoDialog.cpp:164 +msgid "Apply this tempo from the start of this bar" +msgstr "Použít toto tempo od této taktové čáry" + +#: ../src/gui/dialogs/TempoDialog.cpp:167 +msgid "Apply this tempo to the whole composition" +msgstr "Použít toto tempo na celou skladbu" + +#: ../src/gui/dialogs/TempoDialog.cpp:172 +msgid "Also make this the default tempo" +msgstr "Toto tempo nastavit také jako výchozí" + +#: ../src/gui/dialogs/TempoDialog.cpp:256 +msgid "%1.%2 s," +msgstr "%1.%2 s," + +#: ../src/gui/dialogs/TempoDialog.cpp:262 +#, c-format +msgid "at the start of measure %1." +msgstr "na začátku taktu %1." + +#: ../src/gui/dialogs/TempoDialog.cpp:266 +#, c-format +msgid "in the middle of measure %1." +msgstr "uprostřed taktu %1." + +#: ../src/gui/dialogs/TempoDialog.cpp:285 +msgid " (at %1.%2 s, in measure %3)" +msgstr " (u %1.%2 s, v taktu %3)" + +#: ../src/gui/dialogs/TempoDialog.cpp:302 +msgid "There are no preceding tempo changes." +msgstr "Neexistují předchozí změny tempa." + +#: ../src/gui/dialogs/TempoDialog.cpp:310 +msgid "There are no other tempo changes." +msgstr "Neexistují další změny tempa." + +#: ../src/gui/dialogs/TempoDialog.cpp:328 +msgid " bpm" +msgstr " bpm" + +#: ../src/gui/dialogs/AudioPlayingDialog.cpp:42 +msgid "Playing audio file" +msgstr "Přehrává se zvukový soubor" + +#: ../src/gui/dialogs/AudioPlayingDialog.cpp:47 +msgid "Playing audio file \"%1\"" +msgstr "Přehrává se zvukový soubor \"%1\"" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:52 +#: ../src/gui/editors/matrix/MatrixView.cpp:2655 +msgid "Trigger Segment" +msgstr "Spouštěcí segment" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:61 +msgid "Trigger segment: " +msgstr "Spouštěcí segment: " + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:59 +msgid "Key Change" +msgstr "Změna tóniny" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:77 +msgid "Key signature" +msgstr "Předznamenání" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:80 +msgid "Key transposition" +msgstr "Transpozice tóniny" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:86 +msgid "Existing notes following key change" +msgstr "Existující noty následující za změnou tóniny" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:98 +msgid "Flatten" +msgstr "Snížit o půl tónu" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:100 +msgid "Key" +msgstr "Tónina" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:105 +msgid "Sharpen" +msgstr "Zvýšit o půl tónu" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:109 +msgid "Major" +msgstr "Dur" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:110 +#: ../src/gui/dialogs/KeySignatureDialog.cpp:369 +msgid "Minor" +msgstr "Moll" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:123 +msgid "Transpose key according to segment transposition" +msgstr "Transponovat tóninu podle transpozice segmentu" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:126 +msgid "Use specified key. Do not transpose" +msgstr "Použít zadanou tóninu. Netransponovat" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:134 +msgid "Apply to current segment only" +msgstr "Použít pouze na aktuální segment" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:137 +msgid "Apply to all segments at this time" +msgstr "Použít na všechny segmenty v tomto taktovém označení" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:141 +msgid "Exclude percussion segments" +msgstr "Vyjmout segmenty bicích" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:155 +msgid "Maintain current accidentals" +msgstr "Zachovat aktuální posuvky" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:158 +msgid "Transpose into this key" +msgstr "Transponovat do této tóniny" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:331 +msgid "No such key" +msgstr "Taková tónina neexistuje" + +#: ../src/gui/dialogs/InterpretDialog.cpp:44 +#: ../src/gui/editors/notation/NotationSelector.cpp:118 +msgid "Interpret" +msgstr "Interpretace" + +#: ../src/gui/dialogs/InterpretDialog.cpp:50 +msgid "Interpretations to apply" +msgstr "Interpretace k použití" + +#: ../src/gui/dialogs/InterpretDialog.cpp:53 +msgid "Apply text dynamics (p, mf, ff etc)" +msgstr "Použít znaménkovou dynamiku (p, mf, ff atd.)" + +#: ../src/gui/dialogs/InterpretDialog.cpp:55 +msgid "Apply hairpin dynamics" +msgstr "Použít čárovou dynamiku (crescendo, diminuendo)" + +#: ../src/gui/dialogs/InterpretDialog.cpp:57 +msgid "Stress beats" +msgstr "Důraz na doby" + +#: ../src/gui/dialogs/InterpretDialog.cpp:59 +msgid "Articulate slurs, staccato, tenuto etc" +msgstr "Artikulovat legato, staccato, tenuto atd." + +#: ../src/gui/dialogs/InterpretDialog.cpp:61 +msgid "All available interpretations" +msgstr "Všechny dostupné interpretace" + +#: ../src/gui/application/RosegardenGUIApp.cpp:316 +msgid "" +"Attempted to launch JACK audio daemon failed. Audio will be disabled.\n" +"Please check configuration (Settings -> Configure Rosegarden -> Audio -> " +"Startup)\n" +" and restart." +msgstr "" +"Pokus o spuštění zvukového démona JACK selhal. Zvuk bude deaktivován.\n" +"Zkontrolujte konfiguraci (Nastavení->Konfigurace aplikace Rosegarden->Zvuk-" +">Spuštění)\n" +"a proveďte restart." + +#: ../src/gui/application/RosegardenGUIApp.cpp:325 +msgid "Starting sequencer..." +msgstr "Probíhá spuštění sekvenceru..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:333 +msgid "Initializing plugin manager..." +msgstr "Probíhá inicializace správce zásuvných modulů..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:338 +msgid "Initializing view..." +msgstr "Probíhá inicializace zobrazení..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:354 +msgid "Special Parameters" +msgstr "Speciální parametry" + +#: ../src/gui/application/RosegardenGUIApp.cpp:430 +msgid "Starting sequence manager..." +msgstr "Probíhá spuštění správce sekvence..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:456 +msgid "Clearing studio data..." +msgstr "Probíhá mazání dat studia..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:475 +#: ../src/gui/editors/notation/NotationView.cpp:558 +msgid "Starting..." +msgstr "Spouští se..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:556 +msgid "Import Rosegarden &Project file..." +msgstr "Importovat soubor &projektu aplikace Rosegarden..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:560 +msgid "Import &MIDI file..." +msgstr "Importovat soubor &MIDI..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:564 +msgid "Import &Rosegarden 2.1 file..." +msgstr "Importovat soubor aplikace &Rosegarden 2.1..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:568 +msgid "Import &Hydrogen file..." +msgstr "Importovat soubor &Hydrogen..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:572 +msgid "Merge &File..." +msgstr "Připojit &soubor..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:576 +msgid "Merge &MIDI file..." +msgstr "Připojit soubor &MIDI..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:580 +msgid "Merge &Rosegarden 2.1 file..." +msgstr "Připojit soubor aplikace &Rosegarden 2.1..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:584 +msgid "Merge &Hydrogen file..." +msgstr "Připojit soubor &Hydrogen..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:588 +msgid "Export Rosegarden &Project file..." +msgstr "Exportovat soubor &projektu aplikace Rosegarden..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:592 +msgid "Export &MIDI file..." +msgstr "Exportovat soubor &MIDI..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:596 +msgid "Export &LilyPond file..." +msgstr "Exportovat soubor &LilyPond..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:600 +msgid "Export Music&XML file..." +msgstr "Exportovat hudební soubor &XML..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:604 +msgid "Export &Csound score file..." +msgstr "Exportovat pratiturový soubor score pro &Csound..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:608 +msgid "Export M&up file..." +msgstr "Exportovat soubor M&up..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:612 +#: ../src/gui/editors/notation/NotationView.cpp:1500 +msgid "Print &with LilyPond..." +msgstr "Tisk &s aplikací LilyPond..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:616 +#: ../src/gui/editors/notation/NotationView.cpp:1504 +msgid "Preview with Lil&yPond..." +msgstr "Náhled s aplikací Lily&Pond..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:620 +msgid "Play&list" +msgstr "Seznam &přehrávání" + +#: ../src/gui/application/RosegardenGUIApp.cpp:627 +msgid "Rosegarden &Tutorial" +msgstr "&Cvičení v ovládání aplikace Rosegarden" + +#: ../src/gui/application/RosegardenGUIApp.cpp:631 +msgid "&Bug Reporting Guidelines" +msgstr "Pravidla a návody pro hlášení chy&b" + +#: ../src/gui/application/RosegardenGUIApp.cpp:645 +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:348 +#: ../src/gui/editors/segment/MarkerEditor.cpp:378 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:388 +#: ../src/gui/general/EditViewBase.cpp:190 +#: ../src/gui/studio/BankEditorDialog.cpp:318 +#: ../src/gui/studio/DeviceManagerDialog.cpp:227 +msgid "Und&o" +msgstr "&Vrátit akci zpět" + +#: ../src/gui/application/RosegardenGUIApp.cpp:651 +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:354 +#: ../src/gui/editors/segment/MarkerEditor.cpp:384 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:394 +#: ../src/gui/general/EditViewBase.cpp:196 +#: ../src/gui/studio/BankEditorDialog.cpp:324 +#: ../src/gui/studio/DeviceManagerDialog.cpp:233 +msgid "Re&do" +msgstr "&Zrušit vrácení akce zpět" + +#: ../src/gui/application/RosegardenGUIApp.cpp:665 +#: ../src/gui/editors/notation/NotationView.cpp:2297 +msgid "Show T&ools Toolbar" +msgstr "Zobrazit nástrojovou lištu ovládacích &nástrojů" + +#: ../src/gui/application/RosegardenGUIApp.cpp:669 +msgid "Show Trac&ks Toolbar" +msgstr "Zobrazit nástrojovou lištu pro &stopy" + +#: ../src/gui/application/RosegardenGUIApp.cpp:673 +msgid "Show &Editors Toolbar" +msgstr "Zobrazit nástrojovou lištu pro &editory" + +#: ../src/gui/application/RosegardenGUIApp.cpp:677 +#: ../src/gui/editors/notation/NotationView.cpp:2309 +msgid "Show Trans&port Toolbar" +msgstr "Zobrazit nástrojovou lištu pro trans&port" + +#: ../src/gui/application/RosegardenGUIApp.cpp:681 +msgid "Show &Zoom Toolbar" +msgstr "Zobrazit nástrojovou lištu pro &zoom" + +#: ../src/gui/application/RosegardenGUIApp.cpp:688 +msgid "Show Tra&nsport" +msgstr "Zobrazit tra&nsport" + +#: ../src/gui/application/RosegardenGUIApp.cpp:693 +msgid "Show Track &Labels" +msgstr "Zobrazit &popisky stop" + +#: ../src/gui/application/RosegardenGUIApp.cpp:698 +msgid "Show Playback Position R&uler" +msgstr "Zobrazit pravítko pozice &přehrávání" + +#: ../src/gui/application/RosegardenGUIApp.cpp:703 +msgid "Show Te&mpo Ruler" +msgstr "Zobrazit pravítko &tempa" + +#: ../src/gui/application/RosegardenGUIApp.cpp:708 +msgid "Show Cho&rd Name Ruler" +msgstr "Zobrazit pravítko názvů &akordů" + +#: ../src/gui/application/RosegardenGUIApp.cpp:714 +msgid "Show Segment Pre&views" +msgstr "Zobrazit &náhledy segmentu" + +#: ../src/gui/application/RosegardenGUIApp.cpp:719 +msgid "Show Special &Parameters" +msgstr "Zobrazit speciální ¶metry" + +#: ../src/gui/application/RosegardenGUIApp.cpp:753 +#: ../src/gui/editors/matrix/MatrixView.cpp:641 +#: ../src/gui/editors/notation/NotationView.cpp:1772 +msgid "&Select and Edit" +msgstr "&Vybrat a upravit" + +#: ../src/gui/application/RosegardenGUIApp.cpp:758 +#: ../src/gui/editors/matrix/MatrixView.cpp:646 +msgid "&Draw" +msgstr "&Kreslit" + +#: ../src/commands/edit/EraseCommand.h:50 +#: ../src/gui/application/RosegardenGUIApp.cpp:763 +#: ../src/gui/editors/matrix/MatrixView.cpp:651 +#: ../src/gui/editors/notation/NotationView.cpp:1766 +msgid "&Erase" +msgstr "&Vymazat" + +#: ../src/gui/application/RosegardenGUIApp.cpp:768 +#: ../src/gui/editors/matrix/MatrixView.cpp:656 +msgid "&Move" +msgstr "&Přesunout" + +#: ../src/gui/application/RosegardenGUIApp.cpp:775 +msgid "&Resize" +msgstr "&Změnit velikost" + +#: ../src/gui/application/RosegardenGUIApp.cpp:782 rc.cpp:87 +#, no-c-format +msgid "&Split" +msgstr "&Rozdělit" + +#: ../src/commands/segment/SegmentJoinCommand.h:53 +#: ../src/gui/application/RosegardenGUIApp.cpp:789 +msgid "&Join" +msgstr "&Spojit" + +#: ../src/gui/application/RosegardenGUIApp.cpp:795 +msgid "&Harmonize" +msgstr "&Harmonizovat" + +#: ../src/gui/application/RosegardenGUIApp.cpp:806 +#: ../src/gui/rulers/TempoRuler.cpp:157 +msgid "Open Tempo and Time Signature Editor" +msgstr "Otevřít editor tempa a taktového označení" + +#: ../src/commands/segment/CutRangeCommand.cpp:41 +#: ../src/gui/application/RosegardenGUIApp.cpp:812 +msgid "Cut Range" +msgstr "Vyjmout úsek" + +#: ../src/commands/edit/CopyCommand.cpp:73 +#: ../src/gui/application/RosegardenGUIApp.cpp:816 +msgid "Copy Range" +msgstr "Kopírovat úsek" + +#: ../src/commands/segment/PasteRangeCommand.cpp:45 +#: ../src/gui/application/RosegardenGUIApp.cpp:820 +msgid "Paste Range" +msgstr "Vložit úsek" + +#: ../src/gui/application/RosegardenGUIApp.cpp:828 +msgid "Insert Range..." +msgstr "Vložit úsek..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:832 +#: ../src/gui/editors/notation/NotationView.cpp:1804 +msgid "De&lete" +msgstr "&Odstranit" + +#: ../src/gui/application/RosegardenGUIApp.cpp:836 +msgid "Select &All Segments" +msgstr "Vybrat &všechny segmenty" + +#: ../src/gui/application/RosegardenGUIApp.cpp:852 +msgid "Edit Mar&kers..." +msgstr "Upravit zál&ožky..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:856 +msgid "Edit Document P&roperties..." +msgstr "Upravit vlas&tnosti dokumentu..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:864 +msgid "Open in &Default Editor" +msgstr "Otevřít ve &výchozím editoru" + +#: ../src/gui/application/RosegardenGUIApp.cpp:870 +#: ../src/gui/general/EditViewBase.cpp:206 +msgid "Open in Matri&x Editor" +msgstr "Otevřít v &maticovém editoru" + +#: ../src/gui/application/RosegardenGUIApp.cpp:876 +#: ../src/gui/general/EditViewBase.cpp:212 +msgid "Open in &Percussion Matrix Editor" +msgstr "Otevřít v maticovém editoru &bicích" + +#: ../src/gui/application/RosegardenGUIApp.cpp:882 +#: ../src/gui/general/EditViewBase.cpp:218 +msgid "Open in &Notation Editor" +msgstr "Otevřít v editoru ¬ového zápisu" + +#: ../src/gui/application/RosegardenGUIApp.cpp:888 +#: ../src/gui/general/EditViewBase.cpp:224 +msgid "Open in &Event List Editor" +msgstr "Otevřít v editoru seznamu &událostí" + +#: ../src/commands/edit/EventQuantizeCommand.cpp:120 +#: ../src/commands/edit/EventUnquantizeCommand.cpp:87 +#: ../src/gui/application/RosegardenGUIApp.cpp:894 +msgid "&Quantize..." +msgstr "&Kvantizovat..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:908 +#: ../src/gui/editors/matrix/MatrixView.cpp:686 +msgid "Repeat Last Quantize" +msgstr "Opakovat poslední kvantizaci" + +#: ../src/gui/application/RosegardenGUIApp.cpp:928 +msgid "Split at Time..." +msgstr "Rozdělit na době..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:932 +#: ../src/gui/general/EditView.cpp:796 +msgid "Jog &Left" +msgstr "Krokový posun v&levo" + +#: ../src/gui/application/RosegardenGUIApp.cpp:936 +#: ../src/gui/general/EditView.cpp:800 +msgid "Jog &Right" +msgstr "Krokový posun v&pravo" + +#: ../src/gui/application/RosegardenGUIApp.cpp:940 +msgid "Set Start Time..." +msgstr "Nastavit počáteční čas..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:944 +msgid "Set Duration..." +msgstr "Nastavit dobu trvání..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:953 +msgid "Turn Re&peats into Copies" +msgstr "Převést o&pakování na kopie" + +#: ../src/gui/application/RosegardenGUIApp.cpp:958 +msgid "Manage Tri&ggered Segments" +msgstr "Správa spouštěných se&gmentů" + +#: ../src/gui/application/RosegardenGUIApp.cpp:962 +msgid "Set Tempos from &Beat Segment" +msgstr "Nastavit tempa ze segmentu &doby" + +#: ../src/gui/application/RosegardenGUIApp.cpp:966 +msgid "Set &Tempo to Audio Segment Duration" +msgstr "Nastavit &tempo na dobu trvání zvukového segmentu" + +#: ../src/gui/application/RosegardenGUIApp.cpp:972 +msgid "Manage A&udio Files" +msgstr "Správa zv&ukových souborů" + +#: ../src/gui/application/RosegardenGUIApp.cpp:977 +msgid "Show Segment Labels" +msgstr "Zobrazit popisky segmentů" + +#: ../src/gui/application/RosegardenGUIApp.cpp:986 +msgid "Add &Track" +msgstr "Přidat s&topu" + +#: ../src/gui/application/RosegardenGUIApp.cpp:990 +msgid "&Add Tracks..." +msgstr "&Přidat stopy..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:996 +msgid "D&elete Track" +msgstr "&Odstranit stopu" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1002 +msgid "Move Track &Down" +msgstr "Přesunout stopu &dolů" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1008 +msgid "Move Track &Up" +msgstr "Přesunout stopu &nahoru" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1012 +msgid "Select &Next Track" +msgstr "Vybrat &další stopu" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1017 +msgid "Select &Previous Track" +msgstr "Vybrat &předchozí stopu" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1022 +msgid "Mute or Unmute Track" +msgstr "Ztlumit nebo zrušit ztlumení stopy" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1027 +msgid "Arm or Un-arm Track for Record" +msgstr "Uchopit nebo pustit stopu pro záznam" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1034 +msgid "&Mute all Tracks" +msgstr "Ztlu&mit všechny stopy" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1040 +msgid "&Unmute all Tracks" +msgstr "&Zrušit ztlumení pro všechny stopy" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1044 +msgid "&Remap Instruments..." +msgstr "Přem&apovat nástroje..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:1053 +msgid "&Audio Mixer" +msgstr "Zv&ukový směšovač" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1059 +msgid "Midi Mi&xer" +msgstr "Směšovač MI&DI" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1065 +msgid "Manage MIDI &Devices" +msgstr "Správa zařízení MI&DI" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1071 +msgid "Manage S&ynth Plugins" +msgstr "Správa zásuvných modulů s&yntetizéru" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1075 +msgid "Modify MIDI &Filters" +msgstr "Upravit &filtry MIDI" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1079 +msgid "MIDI Thru Routing" +msgstr "Směrování MIDI Thru" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1085 +msgid "Manage &Metronome" +msgstr "Správa &metronomu" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1089 +msgid "&Save Current Document as Default Studio" +msgstr "&Uložit aktuální dokument jako výchozí studio" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1093 +msgid "&Import Default Studio" +msgstr "&Imortovat výchozí studio" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1097 +msgid "Im&port Studio from File..." +msgstr "Im&portovat studio ze souboru..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:1101 +msgid "&Reset MIDI Network" +msgstr "Provést &reset sítě MIDI" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1105 +msgid "Set Quick Marker at Playback Position" +msgstr "Vložit rychlou záložku na pozici přehrávání" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1109 +msgid "Jump to Quick Marker" +msgstr "Přeskočit na rychlou záložku" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1142 +#: ../src/gui/editors/matrix/MatrixView.cpp:782 +#: ../src/gui/editors/notation/NotationView.cpp:2397 +#: ../src/gui/studio/AudioMixerWindow.cpp:105 +#: ../src/gui/studio/MidiMixerWindow.cpp:81 +msgid "&Play" +msgstr "&Přehrát" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1153 +#: ../src/gui/editors/matrix/MatrixView.cpp:791 +#: ../src/gui/editors/notation/NotationView.cpp:2406 +#: ../src/gui/studio/AudioMixerWindow.cpp:114 +#: ../src/gui/studio/MidiMixerWindow.cpp:90 +msgid "&Stop" +msgstr "&Stop" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1160 +#: ../src/gui/editors/matrix/MatrixView.cpp:802 +#: ../src/gui/editors/notation/NotationView.cpp:2417 +#: ../src/gui/studio/AudioMixerWindow.cpp:125 +#: ../src/gui/studio/MidiMixerWindow.cpp:101 +msgid "&Fast Forward" +msgstr "Ukazatel přehrávání o takt &dopředu" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1168 +#: ../src/gui/editors/matrix/MatrixView.cpp:796 +#: ../src/gui/editors/notation/NotationView.cpp:2411 +#: ../src/gui/studio/AudioMixerWindow.cpp:119 +#: ../src/gui/studio/MidiMixerWindow.cpp:95 +msgid "Re&wind" +msgstr "Ukazatel přehrávání o takt &zpět" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1175 +msgid "P&unch in Record" +msgstr "&Díra v záznamu" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1182 +#: ../src/gui/studio/AudioMixerWindow.cpp:143 +#: ../src/gui/studio/MidiMixerWindow.cpp:119 +msgid "&Record" +msgstr "&Zaznamenat" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1189 +#: ../src/gui/editors/matrix/MatrixView.cpp:808 +#: ../src/gui/editors/notation/NotationView.cpp:2423 +#: ../src/gui/studio/AudioMixerWindow.cpp:131 +#: ../src/gui/studio/MidiMixerWindow.cpp:107 +msgid "Rewind to &Beginning" +msgstr "Ukazatel přehrávání na z&ačátek" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1196 +#: ../src/gui/editors/matrix/MatrixView.cpp:814 +#: ../src/gui/editors/notation/NotationView.cpp:2429 +#: ../src/gui/studio/AudioMixerWindow.cpp:137 +#: ../src/gui/studio/MidiMixerWindow.cpp:113 +msgid "Fast Forward to &End" +msgstr "Ukazatel přehrávání na &konec" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1203 +#: ../src/gui/editors/matrix/MatrixView.cpp:832 +#: ../src/gui/editors/notation/NotationView.cpp:2447 +msgid "Scro&ll to Follow Playback" +msgstr "Ro&lovat podle přehrávání" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1209 +#: ../src/gui/editors/matrix/MatrixView.cpp:838 +#: ../src/gui/editors/notation/NotationView.cpp:2453 +#: ../src/gui/studio/AudioMixerWindow.cpp:149 +#: ../src/gui/studio/MidiMixerWindow.cpp:125 +msgid "Panic" +msgstr "Nouzové zastavení" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1213 +msgid "Segment Debug Dump " +msgstr "Výpis chyb segmentu (debug dump)" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1283 +msgid " Zoom: " +msgstr " Zoom: " + +#: ../src/gui/application/RosegardenGUIApp.cpp:1719 +msgid "File \"%1\" does not exist" +msgstr "Soubor \"%1\" neexistuje" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1725 +msgid "File \"%1\" is actually a directory" +msgstr "Soubor \"%1\" je vlastně adresář" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1734 +msgid "You do not have read permission for \"%1\"" +msgstr "Nemáte oprávnění ke čtení pro \"%1\"" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1802 +msgid "" +"An auto-save file for this document has been found\n" +"Do you want to open it instead ?" +msgstr "" +"Pro tento dokument byl nalezen automaticky uložený soubor\n" +"Chcete jej otevřít?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1896 +msgid "Example Files" +msgstr "Soubory příkladů" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2100 +msgid "Opening a new application window..." +msgstr "Otevírá se nové aplikační okno..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2110 +msgid "Creating new document..." +msgstr "Vytváří se nový dokument..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2154 +#, c-format +msgid "" +"Malformed URL\n" +"%1" +msgstr "" +"Chybně formulovaná adresa URL\n" +"%1" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2179 +#: ../src/gui/application/RosegardenGUIApp.cpp:2240 +msgid "Opening file..." +msgstr "Otevírá se soubor..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2201 +#: ../src/gui/application/RosegardenGUIApp.cpp:2220 +msgid "Open File" +msgstr "Otevřít soubor" + +#: ../src/document/RosegardenGUIDoc.cpp:1225 +#: ../src/gui/application/RosegardenGUIApp.cpp:2258 +msgid "Saving file..." +msgstr "Ukládá se soubor..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2330 +msgid "This is not a valid filename.\n" +msgstr "Toto není platný název souboru.\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2335 +msgid "This is not a local file.\n" +msgstr "Toto není lokální soubor.\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2342 +#: ../src/gui/studio/BankEditorDialog.cpp:1640 +#: ../src/gui/studio/DeviceManagerDialog.cpp:787 +msgid "You have specified a directory" +msgstr "Zadali jste adresář" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2348 +#: ../src/gui/studio/BankEditorDialog.cpp:1646 +#: ../src/gui/studio/DeviceManagerDialog.cpp:793 +msgid "The specified file exists. Overwrite?" +msgstr "Zadaný soubor již existuje. Chcete jej přepsat?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2362 +msgid "Saving file with a new filename..." +msgstr "Probíhá uložení souboru s novým názvem..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2364 +msgid "Rosegarden files" +msgstr "Soubory aplikace Rosegarden" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2365 +#: ../src/gui/application/RosegardenGUIApp.cpp:4860 +#: ../src/gui/application/RosegardenGUIApp.cpp:4904 +#: ../src/gui/application/RosegardenGUIApp.cpp:4942 +#: ../src/gui/application/RosegardenGUIApp.cpp:4975 +#: ../src/gui/application/RosegardenGUIApp.cpp:5009 +#: ../src/gui/application/RosegardenGUIApp.cpp:5116 +msgid "All files" +msgstr "Všechny soubory" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2366 +msgid "Save as..." +msgstr "Uložit jako..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2404 +msgid "Closing file..." +msgstr "Zavírá se soubor..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2421 +#: ../src/gui/editors/notation/NotationView.cpp:4618 +msgid "Printing..." +msgstr "Probíhá tisk..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2433 +#: ../src/gui/editors/notation/NotationView.cpp:4635 +msgid "Previewing..." +msgstr "Náhled..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2440 +msgid "Exiting..." +msgstr "Probíhá ukončení..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2463 +msgid "Cutting selection..." +msgstr "Probíhá vyjmutí výběru..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2474 +#: ../src/gui/editors/matrix/MatrixView.cpp:1614 +#: ../src/gui/editors/notation/NotationView.cpp:4763 +msgid "Copying selection to clipboard..." +msgstr "Probíhá kopírování výběru do schránky..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2484 +#: ../src/gui/editors/eventlist/EventView.cpp:878 +#: ../src/gui/editors/matrix/MatrixView.cpp:1625 +#: ../src/gui/editors/notation/NotationView.cpp:4796 +#: ../src/gui/editors/notation/NotationView.cpp:4841 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:352 +msgid "Clipboard is empty" +msgstr "Schránka je prázdná" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2487 +#: ../src/gui/editors/eventlist/EventView.cpp:882 +#: ../src/gui/editors/matrix/MatrixView.cpp:1629 +#: ../src/gui/editors/notation/NotationView.cpp:4804 +#: ../src/gui/editors/notation/NotationView.cpp:4845 +msgid "Inserting clipboard contents..." +msgstr "Probíhá vkládání obsahu schránky..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2556 +msgid "Duration of empty range to insert" +msgstr "Doba trvání prázdného úseku k vložení" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2631 +msgid "This function needs no more than one segment to be selected." +msgstr "Tato funkce nevyžaduje výběr více než jednoho segmentu." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2654 +msgid "Can't join Audio segments" +msgstr "Nelze spojit zvukové segmenty" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2707 +msgid "rescaling an audio file" +msgstr "probíhá změna délky zvukového souboru" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2723 +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:172 +msgid "Rescaling audio file..." +msgstr "Probíhá změna délky zvukového souboru..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2767 +msgid "" +"The audio file path does not exist or is not writable.\n" +"You must set the audio file path to a valid directory in Document Properties " +"before %1.\n" +"Would you like to set it now?" +msgstr "" +"Cesta ke zvukovému souboru neexistuje nebo se do ní nedá zapisovat.\n" +"Nastavte platný adresář jako cestu ke zvukovému souboru ve Vlastnostech " +"dokumentu před %1.\n" +"Chcete cestu nastavit nyní?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2769 +#: ../src/gui/application/RosegardenGUIApp.cpp:5291 +#: ../src/gui/application/RosegardenGUIApp.cpp:5339 +#: ../src/gui/editors/segment/TrackButtons.cpp:419 +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:159 +msgid "Set audio file path" +msgstr "Nastavit cestu ke zvukovému souboru" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2833 +msgid "Jog Selection" +msgstr "Krokový posun výběru" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2978 +#, c-format +msgid "" +"_n: Split Segment at Time\n" +"Split %n Segments at Time" +msgstr "" +"_n: Rozdělit segment na době\n" +"Rozdělit %n segmenty(ů) na době" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3013 +#: ../src/gui/general/EditViewBase.cpp:619 +msgid "Segment Start Time" +msgstr "Počáteční čas segmentu" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3023 +msgid "Set Segment Start Times" +msgstr "Nastavit počáteční časy segmentu" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3024 +#: ../src/gui/general/EditViewBase.cpp:626 +msgid "Set Segment Start Time" +msgstr "Nastavit počáteční čas segmentu" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3056 +#: ../src/gui/general/EditViewBase.cpp:644 +msgid "Segment Duration" +msgstr "Doba trvání segmentu" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3068 +msgid "Set Segment Durations" +msgstr "Nastavit doby trvání segmentu" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3069 +#: ../src/gui/general/EditViewBase.cpp:652 +msgid "Set Segment Duration" +msgstr "Nastavit dobu trvání segmentu" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3176 +#: ../src/gui/application/RosegardenGUIApp.cpp:5875 +msgid "Set Global Tempo" +msgstr "Nastavit globální tempo" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3234 +#: ../src/gui/general/EditViewBase.cpp:477 +msgid "Toggle the toolbar..." +msgstr "Přepnout lištu nástrojů..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3244 +msgid "Toggle the tools toolbar..." +msgstr "Přepnout nástrojovou lištu ovládacích nástrojů..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3254 +msgid "Toggle the tracks toolbar..." +msgstr "Přepnout nástrojovou lištu pro stopy..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3264 +msgid "Toggle the editor toolbar..." +msgstr "Přepnout nástrojovou lištu pro editor..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3274 +msgid "Toggle the transport toolbar..." +msgstr "Přepnout nástrojovou lištu pro transport..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3284 +msgid "Toggle the zoom toolbar..." +msgstr "Přepnout nástrojovou lištu pro zoom..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3294 +msgid "Toggle the Transport" +msgstr "Přepnout transport" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3377 +#: ../src/gui/general/EditViewBase.cpp:487 +msgid "Toggle the statusbar..." +msgstr "Přepnout stavovou lištu..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3434 +msgid "" +"The join tool isn't implemented yet. Instead please highlight the segments " +"you want to join and then use the menu option:\n" +"\n" +" Segments->Collapse Segments.\n" +msgstr "" +"Nástroj pro spojování nebyl dosud implementován. Místo toho vyznačte " +"segmenty,které chcete spojit, a potom použijte možnost nabídky:\n" +"\n" +"........Segmenty->Sjednotit segmenty.\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3437 +msgid "Join tool not yet implemented" +msgstr "Nástroj pro spojování nebyl dosud implementován" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3675 +msgid "Revert modified document to previous saved version?" +msgstr "Chcete vrátit upravené dokumenty do stavu předešlých uložených verzí?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3691 +msgid "" +"*.rgp|Rosegarden Project files\n" +"*|All files" +msgstr "" +"*.rose|Soubory projektů aplikace Rosegarden\n" +"*|Všechny soubory" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3692 +msgid "Import Rosegarden Project File" +msgstr "Importovat soubor projektu aplikace Rosegarden" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3717 +msgid "Failed to import project file \"%1\"" +msgstr "Import souboru projektu \"%1\" selhal" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3739 +msgid "Open MIDI File" +msgstr "Otevřít soubor MIDI" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3756 +msgid "Merge MIDI File" +msgstr "Připojit soubor MIDI" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3866 +msgid "Importing MIDI file..." +msgstr "Probíhá import souboru MIDI..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3903 +msgid "Calculating notation..." +msgstr "Probíhá výpočet notace..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3950 +msgid "Calculate Notation" +msgstr "Vypočíst notaci" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3991 +#: ../src/gui/application/RosegardenGUIApp.cpp:4008 +msgid "" +"*.rose|Rosegarden-2 files\n" +"*|All files" +msgstr "" +"*.rose|Soubory Rosegarden-2\n" +"*|Všechny soubory" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3992 +#: ../src/gui/application/RosegardenGUIApp.cpp:4009 +msgid "Open Rosegarden 2.1 File" +msgstr "Otevřít soubor aplikace Rosegarden 2.1" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4026 +msgid "Importing Rosegarden 2.1 file..." +msgstr "Probíhá import souboru aplikace Rosegarden 2.1..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4052 +msgid "Can't load Rosegarden 2.1 file. It appears to be corrupted." +msgstr "Nelze načíst soubor aplikace Rosegarden 2.1. Zdá se, že je poškozený." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4078 +#: ../src/gui/application/RosegardenGUIApp.cpp:4095 +msgid "" +"*.h2song|Hydrogen files\n" +"*|All files" +msgstr "" +"*.h2song|Soubory Hydrogen\n" +"*|Všechny soubory" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4079 +#: ../src/gui/application/RosegardenGUIApp.cpp:4096 +msgid "Open Hydrogen File" +msgstr "Otevřít soubor Hydrogen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4113 +msgid "Importing Hydrogen file..." +msgstr "Probíhá import souboru Hydrogen..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4139 +msgid "Can't load Hydrogen file. It appears to be corrupted." +msgstr "Nelze načíst soubor Hydrogen. Zdá se, že je poškozený." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4527 +msgid "Export and import of Rosegarden Project files" +msgstr "Export a import souborů projektu aplikace Rosegarden" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4529 +msgid "The Rosegarden Project Packager helper script" +msgstr "Skript pomocníka balíčkovače Rosegarden Project Packager" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4533 +msgid "%1 - for project file support" +msgstr "%1 - pro podporu projektového souboru" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4550 +msgid "The Rosegarden LilyPondView helper script" +msgstr "Skript pomocníka prohlížeče Rosegarden LilyPondView" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4554 +msgid "%1 - for LilyPond preview support" +msgstr "%1 - pro podporu náhledů pro aplikaci LilyPond" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4570 +msgid "The Rosegarden Audio File Importer helper script" +msgstr "Skript pomocníka importu zvukového souboru Rosegarden" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4574 +msgid "%1 - for audio file import" +msgstr "%1 - pro import zvukového souboru" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4585 +msgid "" +"

      Helper programs not found

      Rosegarden could not find one or more " +"helper programs which it needs to provide some features. The following " +"features will not be available:

      " +msgstr "" +"

      Programy pomocníků nebyly nalezeny

      Aplikace Rosegarden nenalezla " +"jeden nebo více programů pomocníků, které potřebuje k některým funkcím. " +"Následující funkce proto nebudou dostupné:

      " + +#: ../src/gui/application/RosegardenGUIApp.cpp:4586 +#: ../src/gui/application/RosegardenGUIApp.cpp:4592 +msgid "
        " +msgstr "
          " + +#: ../src/gui/application/RosegardenGUIApp.cpp:4588 +#: ../src/gui/application/RosegardenGUIApp.cpp:4594 +msgid "
        • %1
        • " +msgstr "
        • %1
        • " + +#: ../src/gui/application/RosegardenGUIApp.cpp:4590 +#: ../src/gui/application/RosegardenGUIApp.cpp:4596 +msgid "
        " +msgstr "
      " + +#: ../src/gui/application/RosegardenGUIApp.cpp:4591 +msgid "" +"

      To fix this, you should install the following additional programs:

      " +msgstr "" +"

      K napravení tohoto stavu byste měli nainstalovat dodatečné programy:

      " + +#: ../src/gui/application/RosegardenGUIApp.cpp:4603 +msgid "Helper programs not found" +msgstr "Programy pomocníků nebyly nalezeny" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4686 +msgid "Starting the sequencer..." +msgstr "Spouští se sekvencer..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4712 +msgid "Couldn't start the sequencer" +msgstr "Nebylo možné spustit sekvencer" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4789 +msgid "Clearing down jackd..." +msgstr "Probíhá ukončení démonu jackd..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4803 +msgid "Starting jackd..." +msgstr "Spouští se démon jackd..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4842 +msgid "" +"The Rosegarden sequencer process has exited unexpectedly. Sound and " +"recording will no longer be available for this session.\n" +"Please exit and restart Rosegarden to restore sound capability." +msgstr "" +"Proces sekvenceru aplikace Rosegarden byl nečekaně ukončen. Zvuk a záznam " +"nebude pro tuto relaci dostupný.\n" +"Chcete-li obnovit funkci zvuku, ukončete a znovu spusťte aplikaci Rosegarden." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4846 +msgid "" +"The Rosegarden sequencer could not be started, so sound and recording will " +"be unavailable for this session.\n" +"For assistance with correct audio and MIDI configuration, go to http://" +"rosegardenmusic.com." +msgstr "" +"Sekvencer aplikace Rosegarden nebylo možné spustit. Zvuk a záznam tedy " +"nebude pro tuto relaci dostupný.\n" +"Informace o správné konfiguraci zvuku a MIDI naleznete na adrese http://" +"rosegardenmusic.com." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4856 +msgid "Exporting Rosegarden Project file..." +msgstr "Probíhá export souboru projektu aplikace Rosegarden..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4859 +msgid "Rosegarden Project files\n" +msgstr "Soubory projektů aplikace Rosegarden\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4861 +#: ../src/gui/application/RosegardenGUIApp.cpp:4905 +#: ../src/gui/application/RosegardenGUIApp.cpp:4943 +#: ../src/gui/application/RosegardenGUIApp.cpp:4976 +#: ../src/gui/application/RosegardenGUIApp.cpp:5010 +#: ../src/gui/application/RosegardenGUIApp.cpp:5116 +msgid "Export as..." +msgstr "Exportovat jako..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4875 +#, c-format +msgid "Saving Rosegarden file to package failed: %1" +msgstr "Ukládání souboru aplikace Rosegarden do balíku selhalo: %1" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4889 +msgid "Failed to export to project file \"%1\"" +msgstr "Export do souboru projektu \"%1\" selhal" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4900 +#: ../src/gui/application/RosegardenGUIApp.cpp:4915 +msgid "Exporting MIDI file..." +msgstr "Probíhá export souboru MIDI..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4903 +msgid "Standard MIDI files\n" +msgstr "Standardní soubory MIDI\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4934 +#: ../src/gui/application/RosegardenGUIApp.cpp:4966 +#: ../src/gui/application/RosegardenGUIApp.cpp:4999 +#: ../src/gui/application/RosegardenGUIApp.cpp:5103 +#: ../src/gui/application/RosegardenGUIApp.cpp:5140 +#: ../src/gui/editors/notation/NotationView.cpp:4733 +msgid "Export failed. The file could not be opened for writing." +msgstr "Export selhal. Soubor nebylo možné otevřít pro zápis." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4940 +#: ../src/gui/application/RosegardenGUIApp.cpp:4952 +msgid "Exporting Csound score file..." +msgstr "Probíhá export partiturového souboru score pro Csound..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4972 +#: ../src/gui/application/RosegardenGUIApp.cpp:4985 +msgid "Exporting Mup file..." +msgstr "Probíhá export souboru Mup..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4975 +msgid "Mup files\n" +msgstr "Soubory Mup\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5005 +#: ../src/gui/application/RosegardenGUIApp.cpp:5089 +#: ../src/gui/editors/notation/NotationView.cpp:4719 +msgid "Exporting LilyPond file..." +msgstr "Probíhá export souboru aplikace LilyPond..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:5008 +msgid "LilyPond files" +msgstr "Soubory aplikace LilyPond" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5023 +#: ../src/gui/editors/notation/NotationView.cpp:4653 +msgid "Printing LilyPond file..." +msgstr "Probíhá tisk souboru aplikace LilyPond..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:5028 +#: ../src/gui/application/RosegardenGUIApp.cpp:5052 +#: ../src/gui/editors/notation/NotationView.cpp:4658 +#: ../src/gui/editors/notation/NotationView.cpp:4682 +msgid "Failed to open a temporary file for LilyPond export." +msgstr "Nepodařilo se otevřít dočasný soubor pro export do aplikace LilyPond." + +#: ../src/gui/application/RosegardenGUIApp.cpp:5047 +#: ../src/gui/editors/notation/NotationView.cpp:4677 +msgid "Previewing LilyPond file..." +msgstr "Zobrazuje se náhled souboru aplikace LilyPond..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:5080 +#: ../src/gui/editors/notation/NotationView.cpp:4710 +msgid "LilyPond Preview Options" +msgstr "Možnosti zobrazení náhledu pro aplikaci LilyPond" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5081 +#: ../src/gui/editors/notation/NotationView.cpp:4711 +msgid "LilyPond preview options" +msgstr "Možnosti zobrazení náhledu pro aplikaci LilyPond" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5112 +#: ../src/gui/application/RosegardenGUIApp.cpp:5126 +msgid "Exporting MusicXML file..." +msgstr "Probíhá export souboru MusicXML..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:5115 +msgid "XML files" +msgstr "Soubory XML" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5289 +#: ../src/gui/editors/segment/TrackButtons.cpp:417 +msgid "" +"The audio file path does not exist or is not writable.\n" +"Please set the audio file path to a valid directory in Document Properties " +"before recording audio.\n" +"Would you like to set it now?" +msgstr "" +"Cesta ke zvukovému souboru neexistuje nebo se do ní nedá zapisovat.\n" +"Nastavte platný adresář jako cestu ke zvukovému souboru ve Vlastnostech " +"dokumentu před pořizováním zvukového záznamu.\n" +"Chcete cestu nastavit nyní?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5337 +msgid "" +"The audio file path does not exist or is not writable.\n" +"Please set the audio file path to a valid directory in Document Properties " +"before you start to record audio.\n" +"Would you like to set it now?" +msgstr "" +"Cesta ke zvukovému souboru neexistuje nebo se do ní nedá zapisovat.\n" +"Nastavte platný adresář jako cestu ke zvukovému souboru ve Vlastnostech " +"dokumentu před začátkem pořizování zvukového záznamu.\n" +"Chcete cestu nastavit nyní?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5780 +msgid "Move playback pointer to time" +msgstr "Přesunout ukazatel přehrávání na dobu" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5793 +#: ../src/gui/editors/matrix/MatrixView.cpp:2240 +msgid "%1%" +msgstr "%1%" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5861 +#, c-format +msgid "Replace Tempo Change at %1" +msgstr "Nahradit změnu tempa na místě %1" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5891 +msgid "Set Global and Default Tempo" +msgstr "Nastavit globální a výchozí tempo" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5914 +msgid "Move Tempo Change" +msgstr "Přesunout změnu tempa" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5949 +msgid "new marker" +msgstr "nová záložka" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5950 +msgid "no description" +msgstr "bez popisu" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6363 +#, c-format +msgid "Sequencer failed to add audio file %1" +msgstr "Sekvenceru se nepodařilo přidat zvukový soubor %1" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6388 +#, c-format +msgid "Sequencer failed to remove audio file id %1" +msgstr "Sekvenceru se nepodařilo odebrat id zvukového souboru %1" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6448 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1086 +msgid "Modify Segment label" +msgstr "Upravit popisek segmentu" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6450 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1088 +msgid "Modify Segments label" +msgstr "Upravit popisky segmentu" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6452 +msgid "Relabelling selection..." +msgstr "Probíhá změna popisků výběru..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:7539 +msgid "Play List" +msgstr "Seznam přehrávání" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7567 +msgid "http://rosegarden.sourceforge.net/tutorial/en/chapter-0.html" +msgstr "http://rosegarden.sourceforge.net/tutorial/en/chapter-0.html" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7574 +msgid "http://rosegarden.sourceforge.net/tutorial/bug-guidelines.html" +msgstr "http://rosegarden.sourceforge.net/tutorial/bug-guidelines.html" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7650 +msgid "Queueing MIDI panic events for tranmission..." +msgstr "Probíhá řazení nouzových událostí MIDI do fronty pro přenos..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:7708 +msgid "Are you sure you want to save this as your default studio?" +msgstr "Skutečně chcete toto uložit jako svoje výchozí studio?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7713 +msgid "Saving current document as default studio..." +msgstr "Probíhá ukládání aktuálního dokumentu jako výchozího studia..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:7738 +msgid "" +"Are you sure you want to import your default studio and lose the current one?" +msgstr "Skutečně chcete importovat svoje výchozí studio a ztratit to aktuální?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7773 +msgid "Import Studio from File" +msgstr "Importovat studio ze souboru" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7807 +msgid "Import Studio" +msgstr "Importovat studio" + +#: ../src/gui/application/RosegardenGUIApp.cpp:8015 +msgid "" +"

      Newer version available

      A newer version of Rosegarden may be " +"available.
      Please consult the Rosegarden website for more information.

      " +msgstr "" +"

      Je dostupná novější verze

      Pravděpodobně je dostupná novější verze " +"aplikace Rosegarden.
      Více informací naleznete na webové stránce aplikace Rosegarden." + +#: ../src/gui/application/RosegardenGUIApp.cpp:8016 +msgid "Newer version available" +msgstr "Je dostupná novější verze" + +#: ../src/gui/application/RosegardenApplication.cpp:104 +#, c-format +msgid "Failed to load soundfont %1" +msgstr "Selhalo načítání zvukového písma %1" + +#: ../src/gui/application/main.cpp:311 +msgid "Rosegarden - A sequencer and musical notation editor" +msgstr "Aplikace Rosegarden - sekvencer a editor notového zápisu" + +#: ../src/gui/application/main.cpp:315 +msgid "Don't use the sequencer (support editing only)" +msgstr "Nepoužívat sekvencer (je podporována pouze editace)" + +#: ../src/gui/application/main.cpp:316 +msgid "Don't show the splash screen" +msgstr "Nezobrazovat úvodní obrázek" + +#: ../src/gui/application/main.cpp:317 +msgid "Don't automatically run in the background" +msgstr "Nespouštět automaticky na pozadí" + +#: ../src/gui/application/main.cpp:318 +msgid "Attach to a running sequencer process, if found" +msgstr "Připojit ke spuštěnému procesu sekvenceru, je-li nalezen" + +#: ../src/gui/application/main.cpp:319 +msgid "Ignore installed version - for devs only" +msgstr "Ignorovat instalovanou verzi - pouze pro vývojáře" + +#: ../src/gui/application/main.cpp:320 +msgid "file to open" +msgstr "soubor k otevření" + +#: ../src/gui/application/main.cpp:370 +msgid "Installation contains the wrong version of Rosegarden." +msgstr "Instalace obsahuje nesprávnou verzi aplikace Rosegarden." + +#: ../src/gui/application/main.cpp:371 +msgid "" +" The wrong versions of Rosegarden's data files were\n" +" found in the standard KDE installation directories.\n" +" (I am %1, but the installed files are for version %2.)\n" +"\n" +" This may mean one of the following:\n" +"\n" +" 1. This is a new upgrade of Rosegarden, and it has not yet been\n" +" installed. If you compiled it yourself, check that you have\n" +" run \"make install\" and that the procedure completed\n" +" successfully.\n" +"\n" +" 2. The upgrade was installed in a non-standard directory,\n" +" and an old version was found in a standard directory. If so,\n" +" you will need to add the correct directory to your KDEDIRS\n" +" environment variable before you can run it." +msgstr "" +" Ve standardních instalačních adresářích KDE byly nalezeny\n" +" nesprávné verze datových souborů aplikace Rosegarden.\n" +" (Já jsem %1, ale instalované soubory patří k verzi %2.)\n" +"\n" +" To může znamenat následující:\n" +"\n" +" 1. Toto je nová, vyšší verze aplikace Rosegarden a nebyla ještě\n" +" nainstalovaná. Pokud jste ji kompilovali sami, zkontrolujte, zda\n" +" jste spustili \"make install\" a zda tato procedura byla úspěšně\n" +" dokončena.\n" +"\n" +" 2. Vyšší verze byla nainstalovaná do nestandardního adresáře\n" +" a ve standardním adresáři byla nalezena verze stará. Je-li tomu\n" +" tak, budete muset nejprve přidat správnou cestu do proměnné KDEDIRS\n" +" předtím, než bude možné aplikaci spustit." + +#: ../src/gui/application/main.cpp:383 ../src/gui/application/main.cpp:401 +msgid "Installation problem" +msgstr "Instalační problém" + +#: ../src/gui/application/main.cpp:389 +msgid "Rosegarden does not appear to have been installed." +msgstr "Aplikace Rosegarden zřejmě není nainstalovaná." + +#: ../src/gui/application/main.cpp:390 +msgid "" +" One or more of Rosegarden's data files could not be\n" +" found in the standard KDE installation directories.\n" +"\n" +" This may mean one of the following:\n" +"\n" +" 1. Rosegarden has not been correctly installed. If you compiled\n" +" it yourself, check that you have run \"make install\" and that\n" +" the procedure completed successfully.\n" +"\n" +" 2. Rosegarden has been installed in a non-standard directory,\n" +" and you need to add this directory to your KDEDIRS environment\n" +" variable before you can run it. This may be the case if you\n" +" installed into $HOME or a local third-party package directory\n" +" like /usr/local or /opt." +msgstr "" +" Ve standardních instalačních adresářích KDE nebyl nalezen\n" +" jeden nebo více datových souborů aplikace Rosegarden.\n" +"\n" +" To může znamenat následující:\n" +"\n" +" 1. Aplikace Rosegarden nebyla správně nainstalovaná. Pokud\n" +" jste ji kompilovali sami, zkontrolujte, zda jste spustili\n" +" \"make install\" a zda tato procedura byla úspěšně dokončena.\n" +"\n" +" 2. Aplikace Rosegarden byla nainstalovaná do nestandardního adresáře\n" +" a budete muset nejprve přidat správnou cestu do proměnné KDEDIRS\n" +" předtím, než bude možné aplikaci spustit. To mohlo nastat, pokud\n" +" jste instalovali do adresáře $HOME nebo do místního adresáře, který\n" +" používá instalační balíček třetí strany např. /usr/local nebo /opt." + +#: ../src/gui/application/main.cpp:414 +msgid "Rosegarden" +msgstr "Rosegarden" + +#: ../src/gui/application/main.cpp:416 +msgid "" +"Copyright 2000 - 2008 Guillaume Laurent, Chris Cannam, Richard Bown\n" +"Parts copyright 1994 - 2004 Chris Cannam, Andy Green, Richard Bown, " +"Guillaume Laurent\n" +"LilyPond fonts copyright 1997 - 2005 Han-Wen Nienhuys and Jan Nieuwenhuizen" +msgstr "" +"Copyright 2000 - 2008 Guillaume Laurent, Chris Cannam, Richard Bown\n" +"Částečný copyright 1994 - 2004 Chris Cannam, Andy Green, Richard Bown, " +"Guillaume Laurent\n" +"Písma LilyPond - copyright 1997 - 2005 Han-Wen Nienhuys a Jan Nieuwenhuizen" + +#: ../src/gui/application/main.cpp:428 +msgid "Chord labelling code" +msgstr "Kód označování akordů" + +#: ../src/gui/application/main.cpp:429 +msgid "" +"LilyPond output\n" +"assorted other patches\n" +"i18n-ization" +msgstr "" +"Výstup LilyPond\n" +"různé další opravy\n" +"i18n-ization" + +#: ../src/gui/application/main.cpp:430 +msgid "" +"UI improvements\n" +"bug fixes" +msgstr "" +"Vylepšení uživatelského rozhraní\n" +"opravy chyb" + +#: ../src/gui/application/main.cpp:431 +msgid "" +"Segment colours\n" +"Other UI and bug fixes" +msgstr "" +"Barvy segmentů\n" +"Jiné uživatelské rozhraní a opravy chyb" + +#: ../src/gui/application/main.cpp:432 +msgid "" +"Russian translation\n" +"i18n-ization" +msgstr "" +"Ruský překlad\n" +"i18n-ization" + +#: ../src/gui/application/main.cpp:433 ../src/gui/application/main.cpp:434 +msgid "German translation" +msgstr "Německý překlad" + +#: ../src/gui/application/main.cpp:435 +msgid "Welsh translation" +msgstr "Welšský překlad" + +#: ../src/gui/application/main.cpp:436 +msgid "French translation" +msgstr "Francouzský překlad" + +#: ../src/gui/application/main.cpp:437 +msgid "" +"French translation\n" +"Bug fixes" +msgstr "" +"Francouzský překlad\n" +"Opravy chyb" + +#: ../src/gui/application/main.cpp:438 ../src/gui/application/main.cpp:439 +msgid "Italian translation" +msgstr "Italský překlad" + +#: ../src/gui/application/main.cpp:440 ../src/gui/application/main.cpp:441 +msgid "Swedish translation" +msgstr "Švédský překlad" + +#: ../src/gui/application/main.cpp:442 +msgid "Estonian translation" +msgstr "Estonský překlad" + +#: ../src/gui/application/main.cpp:443 ../src/gui/application/main.cpp:444 +msgid "Dutch translation" +msgstr "Holandský překlad" + +#: ../src/gui/application/main.cpp:445 +msgid "HSpinBox class" +msgstr "Třída HSpinBox" + +#: ../src/gui/application/main.cpp:446 +msgid "Transposition by interval" +msgstr "Transpozice podle intervalu" + +#: ../src/gui/application/main.cpp:447 +msgid "Original designs for rotary controllers" +msgstr "Originální návrhy otočných ovládacích prvků" + +#: ../src/gui/application/main.cpp:448 +msgid "Japanese translation" +msgstr "Japonský překlad" + +#: ../src/gui/application/main.cpp:449 +msgid "" +"Auto-scroll deceleration\n" +"Rests outside staves and other bug fixes" +msgstr "" +"Zpomalování automatického procházení scroll\n" +"Pomlky mimo osnovu a jiné opravy chyb" + +#: ../src/gui/application/main.cpp:450 +msgid "Simplified Chinese translation" +msgstr "Překlad ve zjednodušené čínštině" + +#: ../src/gui/application/main.cpp:451 +msgid "LIRC infrared remote-controller support" +msgstr "Podpora infračerveného dálkového ovladače LIRC" + +#: ../src/gui/application/main.cpp:452 +msgid "MTC slave timing implementation" +msgstr "Implementace podřízeného časování MTC" + +#: ../src/gui/application/main.cpp:453 +msgid "Czech translation" +msgstr "Český překlad" + +#: ../src/gui/application/main.cpp:454 +msgid "SCons/bksys building system" +msgstr "Budování systému - SCons/bksys" + +#: ../src/gui/application/main.cpp:455 +msgid "icons, icons, icons" +msgstr "ikony, ikony, ikony" + +#: ../src/gui/application/main.cpp:456 ../src/gui/application/main.cpp:457 +#: ../src/gui/application/main.cpp:458 ../src/gui/application/main.cpp:459 +msgid "Spanish translation" +msgstr "Španělský překlad" + +#: ../src/gui/application/main.cpp:460 ../src/gui/application/main.cpp:461 +msgid "Catalan translation" +msgstr "Katalánský překlad" + +#: ../src/gui/application/main.cpp:462 +msgid "" +"1.2.3 splash screen photo\n" +"Gave birth to D. Michael McIntyre, bought him a good flute once\n" +"upon a time, and always humored him when he came over to play her\n" +"some new instrument, even though she really hated his playing.\n" +"Born October 19, 1951, died September 21, 2007, R. I. P." +msgstr "" +"1.2.3 fotografie úvodní obrazovky\n" +"Narodil se jí D. Michael McIntyr, jednou za čas mu koupila dobrou flétnu\n" +"a vždy trpělivě poslouchala, když přišel, aby jí zahrál na nějaký\n" +"nový nástroj, i když jeho hraní skutečně nenáviděla.\n" +"Narozena 19. října 1951, zemřela 21. září 2007, odpočívej v pokoji." + +#: ../src/gui/application/main.cpp:463 +msgid "Initial guitar chord editing code" +msgstr "Původní kód editace kytarových akordů" + +#: ../src/gui/application/main.cpp:464 +msgid "Polish translation" +msgstr "Polský překlad" + +#: ../src/gui/application/main.cpp:465 +msgid "Basque translation" +msgstr "Baskický překlad" + +#: ../src/gui/application/main.cpp:466 +msgid "Klearlook theme" +msgstr "Téma Klearlook" + +#: ../src/_translatorinfo.cpp:1 ../src/gui/application/main.cpp:468 +msgid "" +"_: NAME OF TRANSLATORS\n" +"Your names" +msgstr "Jan Bína" + +#: ../src/_translatorinfo.cpp:3 ../src/gui/application/main.cpp:468 +msgid "" +"_: EMAIL OF TRANSLATORS\n" +"Your emails" +msgstr "jbina@sky.cz" + +#: ../src/gui/application/main.cpp:719 +msgid "Welcome!" +msgstr "Vítejte!" + +#: ../src/gui/application/main.cpp:731 +msgid "" +"

      Welcome to Rosegarden!

      Welcome to the Rosegarden audio and MIDI " +"sequencer and musical notation editor.

      • If you have not already " +"done so, you may wish to install some DSSI synth plugins, or a separate " +"synth program such as QSynth. Rosegarden does not synthesize sounds from " +"MIDI on its own, so without these you will hear nothing.

      • Rosegarden uses the JACK audio server for recording and " +"playback of audio, and for playback from DSSI synth plugins. These features " +"will only be available if the JACK server is running.

      • Rosegarden has comprehensive documentation: see the Help menu " +"for the handbook, tutorials, and other information!

      Rosegarden " +"was brought to you by a team of volunteers across the world. To learn more, " +"go to http://www.rosegardenmusic." +"com/.

      " +msgstr "" +"

      Vítejte v aplikaci Rosegarden!

      Vítejte v audio a MIDI sekvenceru " +"a v hudebním notovém editoru Rosegarden.

      • Pokud jste tak ještě " +"neučinili, možná si budete chtít nainstalovat některé moduly syntetizéru " +"DSSI nebo samostatný programový syntetizér, např. QSynth. Aplikace " +"Rosegarden sama neprovádí syntézu zvuků ze zařízení MIDI, takže bez této " +"podpory nic neuslyšíte.


      • Aplikace Rosegarden použivá zvukový " +"server Jack pro záznam a přehrávání zvuku nebo pro přehrávání z modulů " +"syntetizéru DSSI. Tyto možnosti budou dostupné pouze tehdy, bude-li server " +"Jack spuštěný.


      • Aplikace Rosegarden má podrobnou dokumentaci: " +"viz nabídku nápovědy, kde naleznete příručku, příklady a další informace!

      Aplikaci Rosegarden pro vás připravil tým dobrovolníků z celého " +"světa. Chcete-li se dozvědět více, podívejte se na adresu http://www.rosegardenmusic.com/.

      " + +#: ../src/gui/application/RosegardenGUIView.cpp:257 +msgid "No non-audio segments in composition" +msgstr "Ve skladbě nejsou žádné nezvukové segmenty" + +#: ../src/gui/application/RosegardenGUIView.cpp:333 +msgid "Selection must contain only audio or non-audio segments" +msgstr "Výběr musí obsahovat pouze zvukové nebo nezvukové segmenty" + +#: ../src/gui/application/RosegardenGUIView.cpp:431 +#: ../src/gui/application/RosegardenGUIView.cpp:576 +#: ../src/gui/application/RosegardenGUIView.cpp:612 +#: ../src/gui/application/RosegardenGUIView.cpp:776 +msgid "No non-audio segments selected" +msgstr "Nebyly vybrány žádné nezvukové segmenty" + +#: ../src/gui/application/RosegardenGUIView.cpp:851 +msgid "" +"You've not yet defined an audio editor for Rosegarden to use.\n" +"See Settings -> Configure Rosegarden -> Audio." +msgstr "" +"Dosud jste nedefinovali zvukový editor, který má aplikace Rosegarden " +"použít.\n" +"Viz Nastavení -> Konfigurace aplikace Rosegarden -> Zvuk." + +#: ../src/gui/application/RosegardenGUIView.cpp:1559 +#: ../src/gui/application/RosegardenGUIView.cpp:1564 +msgid "Can't add dropped file. " +msgstr "Nelze přidat vyřazený soubor. " + +#: ../src/gui/seqmanager/SequenceManager.cpp:1014 +#: ../src/gui/seqmanager/SequenceManager.cpp:1150 +msgid "" +"The JACK Audio subsystem has failed or it has stopped Rosegarden from " +"processing audio.\n" +"Please restart Rosegarden to continue working with audio.\n" +"Quitting other running applications may improve Rosegarden's performance." +msgstr "" +"Zvukový subsystém JACK byl ukončen nebo zastavil zpracovávání zvuku aplikací " +"Rosegarden.\n" +"Pro pokračování v práci se zvukem restartujte aplikaci Rosegarden.\n" +"Ukončení ostatních běžících aplikací by mohlo zlepšit výkon aplikace " +"Rosegarden." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1020 +#: ../src/gui/seqmanager/SequenceManager.cpp:1156 +msgid "" +"The JACK Audio subsystem has stopped Rosegarden from processing audio, " +"probably because of a processing overload.\n" +"An attempt to restart the audio service has been made, but some problems may " +"remain.\n" +"Quitting other running applications may improve Rosegarden's performance." +msgstr "" +"Zvukový subsystém JACK zastavil zpracovávání zvuku aplikací Rosegarden, " +"pravděpodobně z důvodu přetížení.\n" +"Byl proveden pokus o restart zvukových služeb, některé problémy však mohou " +"přetrvávat.\n" +"Ukončení ostatních běžících aplikací by mohlo zlepšit výkon aplikace " +"Rosegarden." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1031 +msgid "" +"Run out of processor power for real-time audio processing. Cannot continue." +msgstr "" +"Procesor nemá dostatečný výkon na zpracování zvuku v reálném čase. Nelze " +"pokračovat." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1057 +msgid "" +"A serious error has occurred in the ALSA MIDI subsystem. It may not be " +"possible to continue sequencing. Please check console output for more " +"information." +msgstr "" +"V subsystému ALSA MIDI dolšo k vážné chybě. Nemusí být dále možné pokračovat " +"v práci (sekvencer). Více informací naleznete na konzolovém výstupu." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1078 +msgid "JACK Audio subsystem is losing sample frames." +msgstr "Zvukový subsystém JACK ztrácí vzorkové rámce." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1096 +msgid "" +"Failed to read audio data from disc in time to service the audio subsystem." +msgstr "" +"Načítání zvukových dat z disku selhalo z časových důvodu a nebylo tedy možné " +"obsloužit zvukový subsystém." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1100 +msgid "" +"Failed to write audio data to disc fast enough to service the audio " +"subsystem." +msgstr "" +"Zápis zvukových dat na disk selhal, protože nebyl dostatečně rychlý na to, " +"aby bylo možné obsloužit zvukový subsystém." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1104 +msgid "The audio mixing subsystem is failing to keep up." +msgstr "Zvukový směšovací subsystém nestačí svým výkonem držet krok." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1108 +msgid "The audio subsystem is failing to keep up." +msgstr "Zvukový subsystém nestačí svým výkonem držet krok." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1112 +msgid "Unknown sequencer failure mode!" +msgstr "Neznámý režim selhání sekvenceru!" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1170 +msgid "" +"

      System timer resolution is too low

      Rosegarden was unable to find " +"a high-resolution timing source for MIDI performance.

      This may mean " +"you are using a Linux system with the kernel timer resolution set too low. " +"Please contact your Linux distributor for more information.

      Some Linux " +"distributors already provide low latency kernels, see http://rosegarden.wiki." +"sourceforge.net/Low+latency+kernels for instructions.

      " +msgstr "" +"

      Rozlišení časovače systému je příliš nízké.

      Aplikace Rosegarden " +"nemohla najít zdroj časování s vysokým rozlišením pro správný výkon MIDI.

      To může znamenat, že používáte linuxový systém s nastavením rozlišení " +"časovače v jádře (kernel) na příliš nízkou hodnotu. Více informací získáte u " +"svého distributora Linuxu.

      Někteří distributoři Linuxu již poskytují " +"jádra s nízkou latencí, viz http://rosegarden.wiki.sourceforge.net/Low+latency" +"+kernels, kde naleznete další instrukce.

      " + +#: ../src/gui/seqmanager/SequenceManager.cpp:1188 +msgid "" +"

      System timer resolution is too low

      Rosegarden was unable to find " +"a high-resolution timing source for MIDI performance.

      You may be able " +"to solve this problem by loading the RTC timer kernel module. To do this, " +"try running sudo modprobe snd-rtctimer in a terminal window and then " +"restarting Rosegarden.

      Alternatively, check whether your Linux " +"distributor provides a multimedia-optimized kernel. See http://rosegarden.wiki." +"sourceforge.net/Low+latency+kernels for notes about this.

      " +msgstr "" +"

      Rozlišení časovače systému je příliš nízké.

      Aplikace Rosegarden " +"nemohla najít zdroj časování s vysokým rozlišením pro správný výkon MIDI.

      Tento problém půjde možná odstranit načtením jaderného modulu s RTC " +"časovačem. To provedete tak, že v okně terminálu zkusíte zadat sudo " +"modprobe snd-rtctimer a restartujete aplikaci Rosegarden.

      Další " +"možností je zkontrolovat, zda váš distributor Linuxu neposkytuje kernel s " +"optimalizací pro multimédia. Viz http://rosegarden.wiki.sourceforge.net/" +"Low+latency+kernels, kde naleznete další instrukce.

      " + +#: ../src/gui/seqmanager/SequenceManager.cpp:1312 +msgid "" +"

      Both MIDI and Audio subsystems have failed to initialize.

      You may " +"continue without the sequencer, but we suggest closing Rosegarden, running " +"\"alsaconf\" as root, and starting Rosegarden again. If you wish to run " +"with no sequencer by design, then use \"rosegarden --nosequencer\" to avoid " +"seeing this error in the future.

      " +msgstr "" +"

      U obou subsystémů - MIDI i audio - selhala inicializace.

      Můžete " +"pokračovat bez sekvenceru, ale doporučujeme spíše zavřít aplikaci " +"Rosegarden, spustit jako uživatel root \"alsaconf\" a znovu spustit " +"Rosegarden. Pokud chcete pracovat bez sekvenceru záměrně, použijte možnost " +"spuštění \"rosegarden --nosequencer\", abyste se s touto chybou v " +"budoucnosti již nesetkávali.

      " + +#: ../src/gui/seqmanager/SequenceManager.cpp:1314 +msgid "" +"

      The MIDI subsystem has failed to initialize.

      You may continue " +"without the sequencer, but we suggest closing Rosegarden, running \"modprobe " +"snd-seq-midi\" as root, and starting Rosegarden again. If you wish to run " +"with no sequencer by design, then use \"rosegarden --nosequencer\" to avoid " +"seeing this error in the future.

      " +msgstr "" +"

      Inicializace subsystému MIDI selhala.

      Můžete pokračovat bez " +"sekvenceru, ale doporučujeme spíše zavřít aplikaci Rosegarden, spustit jako " +"uživatel root \"modprobe snd-seq-midi\" a znovu spustit Rosegarden. Pokud " +"chcete pracovat bez sekvenceru záměrně, použijte možnost spuštění " +"\"rosegarden --nosequencer\", abyste se s touto chybou v budoucnosti již " +"nesetkávali.

      " + +#: ../src/gui/seqmanager/SequenceManager.cpp:1316 +msgid "" +"

      The Rosegarden sequencer module version does not match the GUI module " +"version.

      You have probably mixed up files from two different versions " +"of Rosegarden. Please check your installation.

      " +msgstr "" +"

      Verze modulu sekvenceru aplikace Rosegarden neodpovídá verzi modulu GUI.

      Pravděpodobně jste smíchali soubory ze dvou různých verzí aplikace " +"Rosegarden. Zkontrolujte si svoji instalaci.

      " + +#: ../src/gui/seqmanager/SequenceManager.cpp:1322 +#, c-format +msgid "

      Sequencer startup failed

      %1" +msgstr "

      Spuštění sekvenceru selhalo

      %1" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1330 +msgid "" +"

      Failed to connect to JACK audio server.

      Rosegarden could not " +"connect to the JACK audio server. This probably means the JACK server is " +"not running.

      If you want to be able to play or record audio files or " +"use plugins, you should exit Rosegarden and start the JACK server before " +"running Rosegarden again.

      " +msgstr "" +"

      Připojení ke zvukovému serveru JACK se nezdařilo.

      Aplikaci " +"Rosegarden se nepodařilo připojit ke zvukovému serveru JACK. To " +"pravděpodobně znamená, že server JACK není spuštěn.

      Pokud chcete " +"přehrávat nebo nahrávat zvukové soubory nebo používat zásuvné moduly, měli " +"byste ukončit aplikaci Rosegarden a spustit server JACK před jejím opětovným " +"spuštěním.

      " + +#: ../src/gui/seqmanager/SequenceManager.cpp:1331 +msgid "Failed to connect to JACK" +msgstr "Připojení k severu JACK se nepodařilo" + +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:46 +msgid "Modify MIDI filters..." +msgstr "Upravit filtry MIDI..." + +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:58 +msgid "THRU events to ignore" +msgstr "Průchozí události THRU, které se mají ignorovat" + +#: ../src/gui/editors/eventlist/EventView.cpp:131 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:60 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:96 +msgid "Note" +msgstr "Nota" + +#: ../src/gui/editors/eventlist/EventView.cpp:132 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:61 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:97 +msgid "Program Change" +msgstr "Změna programu" + +#: ../src/gui/editors/eventlist/EventView.cpp:136 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:62 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:98 +msgid "Key Pressure" +msgstr "Tlaková citlivost klávesy" + +#: ../src/gui/editors/eventlist/EventView.cpp:137 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:63 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:99 +msgid "Channel Pressure" +msgstr "Kanálová tlaková citlivost" + +#: ../src/gui/editors/eventlist/EventView.cpp:134 +#: ../src/gui/general/EditView.cpp:899 +#: ../src/gui/rulers/ControllerEventsRuler.cpp:198 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:64 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:100 +msgid "Pitch Bend" +msgstr "Ohýbání výšky tónu" + +#: ../src/gui/editors/eventlist/EventView.cpp:133 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:65 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:101 +msgid "Controller" +msgstr "Ovládací prvek" + +#: ../src/gui/editors/eventlist/EventView.cpp:135 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:66 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:102 +msgid "System Exclusive" +msgstr "Exkluzivní systémový" + +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:94 +msgid "RECORD events to ignore" +msgstr "Záznamové události RECORD, které se mají ignorovat" + +#: ../src/gui/widgets/TimeWidget.cpp:101 +msgid "Note:" +msgstr "Nota:" + +#: ../src/gui/widgets/TimeWidget.cpp:108 ../src/gui/widgets/TimeWidget.cpp:145 +msgid "" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:151 +msgid "Units:" +msgstr "Jednotky:" + +#: ../src/gui/widgets/TimeWidget.cpp:173 +msgid "Time:" +msgstr "Čas:" + +#: ../src/gui/widgets/TimeWidget.cpp:184 +msgid "units" +msgstr "jednotky" + +#: ../src/gui/widgets/TimeWidget.cpp:193 +msgid "Measures:" +msgstr "Takty:" + +#: ../src/gui/widgets/TimeWidget.cpp:193 +msgid "Measure:" +msgstr "Takt:" + +#: ../src/gui/widgets/TimeWidget.cpp:212 +msgid "beats:" +msgstr "doby:" + +#: ../src/gui/widgets/TimeWidget.cpp:212 +msgid "beat:" +msgstr "doba:" + +#: ../src/gui/widgets/TimeWidget.cpp:230 +msgid "%1:" +msgstr "%1:" + +#: ../src/gui/widgets/TimeWidget.cpp:254 +msgid "Seconds:" +msgstr "Sekundy:" + +#: ../src/gui/widgets/TimeWidget.cpp:273 +msgid "msec:" +msgstr "msec:" + +#: ../src/gui/widgets/TimeWidget.cpp:407 ../src/gui/widgets/TimeWidget.cpp:531 +msgid "(%1/%2 time)" +msgstr "(%1/%2 čas" + +#: ../src/gui/widgets/TimeWidget.cpp:452 +msgid "(starting %1.%2 qpm, %2.%3 bpm)" +msgstr "(začíná %1.%2 qpm, %2.%3 bpm)" + +#: ../src/gui/widgets/TimeWidget.cpp:458 +msgid "(starting %1.%2 bpm)" +msgstr "(začíná %1.%2 bpm)" + +#: ../src/gui/widgets/TimeWidget.cpp:464 +msgid "(%1.%2 qpm, %2.%3 bpm)" +msgstr "(%1.%2 qpm, %2.%3 bpm)" + +#: ../src/gui/widgets/TimeWidget.cpp:470 +msgid "(%1.%2 bpm)" +msgstr "(%1.%2 bpm)" + +#: ../src/gui/editors/notation/TrackHeader.cpp:239 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:60 +msgid "C" +msgstr "C" + +#: ../src/gui/editors/notation/TrackHeader.cpp:241 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:61 +msgid "D" +msgstr "D" + +#: ../src/gui/editors/notation/TrackHeader.cpp:243 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:62 +msgid "E" +msgstr "E" + +#: ../src/gui/editors/notation/TrackHeader.cpp:244 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:63 +msgid "F" +msgstr "F" + +#: ../src/gui/editors/notation/TrackHeader.cpp:246 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:64 +msgid "G" +msgstr "G" + +#: ../src/gui/editors/notation/TrackHeader.cpp:248 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:65 +msgid "A" +msgstr "A" + +#: ../src/gui/editors/notation/TrackHeader.cpp:250 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:66 +msgid "B" +msgstr "H" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:70 +msgid "-2" +msgstr "-2" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:71 +msgid "-1" +msgstr "-1" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:72 +msgid "0" +msgstr "0" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:73 +msgid "1" +msgstr "1" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:74 +msgid "2" +msgstr "2" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:75 +msgid "3" +msgstr "3" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:76 +msgid "4" +msgstr "4" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:77 +msgid "5" +msgstr "5" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:78 +msgid "6" +msgstr "6" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:79 +msgid "7" +msgstr "7" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:83 +msgid "double flat" +msgstr "dvojité béčko" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:84 +msgid "flat" +msgstr "béčko" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:85 +msgid "natural" +msgstr "přirozené" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:86 +msgid "sharp" +msgstr "křížek" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:87 +msgid "double sharp" +msgstr "dvojitý křížek" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:234 +#, c-format +msgid "In %1" +msgstr "Vstup %1" + +#: ../src/gui/studio/AudioMixerWindow.cpp:587 +#: ../src/gui/widgets/AudioRouteMenu.cpp:236 +#: ../src/gui/widgets/AudioRouteMenu.cpp:259 +msgid "Master" +msgstr "Řídící sek." + +#: ../src/gui/studio/AudioMixerWindow.cpp:528 +#: ../src/gui/widgets/AudioRouteMenu.cpp:238 +#: ../src/gui/widgets/AudioRouteMenu.cpp:261 +#, c-format +msgid "Sub %1" +msgstr "Řízený sek. %1" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:244 +msgid "In %1 R" +msgstr "Vstup %1 R" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:245 +msgid "In %1 L" +msgstr "Vstup %1 L" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:247 +msgid "Master R" +msgstr "Master R" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:248 +msgid "Master L" +msgstr "Master L" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:250 +msgid "Sub %1 R" +msgstr "Sub %1 R" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:251 +msgid "Sub %1 L" +msgstr "Sub %1 L" + +#: ../src/gui/studio/AudioMixerWindow.cpp:391 +#: ../src/gui/studio/AudioMixerWindow.cpp:522 +#: ../src/gui/widgets/AudioFaderBox.cpp:82 +msgid "Audio plugin button" +msgstr "Tlačítko zvukového zásuvného modulu" + +#: ../src/gui/editors/parameters/AudioInstrumentParameterPanel.cpp:129 +#: ../src/gui/editors/parameters/AudioInstrumentParameterPanel.cpp:357 +#: ../src/gui/widgets/AudioFaderBox.cpp:91 +msgid "" +msgstr "<žádný syntetizér>" + +#: ../src/gui/widgets/AudioFaderBox.cpp:93 +msgid "Synth plugin button" +msgstr "Tlačítko zásuvného modulu syntetizéru" + +#: ../src/gui/widgets/AudioFaderBox.cpp:153 +msgid "Set the audio pan position in the stereo field" +msgstr "Nstavit pozici pan zvuku ve stereo prostoru" + +#: ../src/gui/widgets/AudioFaderBox.cpp:155 +msgid "Open synth plugin's native editor" +msgstr "Otevřít nativní editor zásuvného modulu syntetizéru" + +#: ../src/gui/widgets/AudioFaderBox.cpp:157 +msgid "Mono or Stereo Instrument" +msgstr "Nástroj - mono nebo stereo" + +#: ../src/gui/widgets/AudioFaderBox.cpp:159 +msgid "Record level" +msgstr "Záznamová úroveň" + +#: ../src/gui/widgets/AudioFaderBox.cpp:161 +msgid "Playback level" +msgstr "Přehrávací úroveň" + +#: ../src/gui/studio/AudioMixerWindow.cpp:345 +#: ../src/gui/studio/AudioMixerWindow.cpp:347 +#: ../src/gui/studio/AudioMixerWindow.cpp:503 +#: ../src/gui/studio/AudioMixerWindow.cpp:505 +#: ../src/gui/widgets/AudioFaderBox.cpp:163 +msgid "Audio level" +msgstr "Zvuková úroveň" + +#: ../src/gui/widgets/AudioFaderBox.cpp:170 +msgid "In:" +msgstr "Vstup:" + +#: ../src/gui/widgets/AudioFaderBox.cpp:173 +msgid "Out:" +msgstr "Výstup:" + +#: ../src/gui/widgets/ProgressDialog.cpp:48 +#: ../src/gui/widgets/ProgressDialog.cpp:53 +#: ../src/gui/widgets/ProgressDialog.cpp:76 +msgid "Processing..." +msgstr "Probíhá zpracování..." + +#: ../src/gui/configuration/ColourConfigurationPage.h:60 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:130 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:346 +#: ../src/gui/widgets/ColourTable.cpp:52 +msgid "Color" +msgstr "Barva" + +#: ../src/gui/widgets/ColourTable.cpp:68 +msgid "Modify Color Name" +msgstr "Změnit název barvy" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:129 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:983 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:882 +#: ../src/gui/widgets/ColourTable.cpp:68 +msgid "Enter new name" +msgstr "Zadejte nový název" + +#: ../src/gui/widgets/ColourTable.cpp:107 +msgid "Default Color" +msgstr "Výchozí barva" + +#: ../src/gui/widgets/Rotary.cpp:108 +msgid "" +"Click and drag up and down or left and right to modify.\n" +"Double click to edit value directly." +msgstr "" +"Klepnutím a tažením nahoru/dolů nebo doprava/doleva provedete změny.\n" +"Poklepáním můžete upravit hodnotu přímo." + +#: ../src/gui/widgets/Rotary.cpp:433 +msgid "Select a new value" +msgstr "Vybrat novou hodnotu" + +#: ../src/gui/widgets/Rotary.cpp:434 +msgid "Enter a new value" +msgstr "Zadat novou hodnotu" + +#: ../src/gui/widgets/QuantizeParameters.cpp:80 +msgid "Quantizer" +msgstr "Kvantizér" + +#: ../src/gui/widgets/QuantizeParameters.cpp:86 +msgid "Quantizer type:" +msgstr "Typ kvantizéru:" + +#: ../src/gui/widgets/QuantizeParameters.cpp:88 +msgid "Grid quantizer" +msgstr "Rastrový kvantizér" + +#: ../src/gui/widgets/QuantizeParameters.cpp:89 +msgid "Legato quantizer" +msgstr "Legatový kvantizér" + +#: ../src/gui/widgets/QuantizeParameters.cpp:90 +msgid "Heuristic notation quantizer" +msgstr "Heuristický kvantizér notace" + +#: ../src/gui/widgets/QuantizeParameters.cpp:94 +msgid "Quantize for notation only (leave performance unchanged)" +msgstr "Kvantizovat pouze notaci (neměnit provedení)" + +#: ../src/gui/widgets/QuantizeParameters.cpp:104 +msgid "Notation parameters" +msgstr "Parametry notace" + +#: ../src/gui/widgets/QuantizeParameters.cpp:109 +#: ../src/gui/widgets/QuantizeParameters.cpp:150 +msgid "Base grid unit:" +msgstr "Základní jednotka rastru:" + +#: ../src/gui/widgets/QuantizeParameters.cpp:114 +msgid "Complexity:" +msgstr "Složitost:" + +#: ../src/gui/widgets/QuantizeParameters.cpp:118 +msgid "Very high" +msgstr "Velmi vysoká" + +#: ../src/gui/widgets/QuantizeParameters.cpp:119 +msgid "High" +msgstr "Vysoká" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:224 +#: ../src/gui/widgets/QuantizeParameters.cpp:120 +msgid "Normal" +msgstr "Normální" + +#: ../src/gui/widgets/QuantizeParameters.cpp:121 +msgid "Low" +msgstr "Nízká" + +#: ../src/gui/widgets/QuantizeParameters.cpp:122 +msgid "Very low" +msgstr "Velmi nízká" + +#: ../src/gui/widgets/QuantizeParameters.cpp:125 +msgid "Tuplet level:" +msgstr "Úroveň rytmické notové skupiny:" + +#: ../src/gui/widgets/QuantizeParameters.cpp:129 +msgid "2-in-the-time-of-3" +msgstr "2-na-dobu-3" + +#: ../src/gui/editors/notation/NotationView.cpp:4241 +#: ../src/gui/widgets/QuantizeParameters.cpp:130 +msgid "Triplet" +msgstr "Triola" + +#: ../src/gui/widgets/QuantizeParameters.cpp:138 +msgid "Any" +msgstr "Jakákoli" + +#: ../src/gui/widgets/QuantizeParameters.cpp:141 +msgid "Permit counterpoint" +msgstr "Povolit kontrapunkt" + +#: ../src/gui/widgets/QuantizeParameters.cpp:145 +msgid "Grid parameters" +msgstr "Parametry rastru" + +#: ../src/gui/widgets/QuantizeParameters.cpp:154 +msgid "Swing:" +msgstr "Swing:" + +#: ../src/gui/widgets/QuantizeParameters.cpp:159 +msgid "Iterative amount:" +msgstr "Iterativní množství:" + +#: ../src/gui/widgets/QuantizeParameters.cpp:165 +msgid "Quantize durations as well as start times" +msgstr "Kvantizovat doby trvání i počáteční časy" + +#: ../src/gui/widgets/QuantizeParameters.cpp:169 +msgid "After quantization" +msgstr "Po kvantizaci" + +#: ../src/gui/widgets/QuantizeParameters.cpp:183 +msgid "Show advanced options" +msgstr "Zobrazit rozšířené možnosti" + +#: ../src/gui/widgets/QuantizeParameters.cpp:192 +msgid "Re-beam" +msgstr "Znovu upravit trámce" + +#: ../src/gui/widgets/QuantizeParameters.cpp:194 +msgid "Add articulations (staccato, tenuto, slurs)" +msgstr "Přidat artikulaci (staccato, tenuto, legato)" + +#: ../src/gui/widgets/QuantizeParameters.cpp:195 +msgid "Tie notes at barlines etc" +msgstr "Svázat noty ligaturou na taktových čárách atd." + +#: ../src/gui/widgets/QuantizeParameters.cpp:196 +msgid "Split-and-tie overlapping chords" +msgstr "Rozdělit-a-svázat ligaturou překrývající se akordy" + +#: ../src/gui/widgets/QuantizeParameters.cpp:307 +msgid "Full quantize" +msgstr "Úplná kvantizace" + +#: ../src/gui/widgets/QuantizeParameters.cpp:450 +msgid "Show Advanced Options" +msgstr "Zobrazit rozšířené možnosti" + +#: ../src/gui/widgets/QuantizeParameters.cpp:454 +msgid "Hide Advanced Options" +msgstr "Skrýt rozšířené možnosti" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:257 +#: ../src/gui/configuration/MatrixConfigurationPage.h:56 +#: ../src/gui/configuration/MatrixConfigurationPage.h:57 +#: ../src/gui/editors/matrix/MatrixView.cpp:2709 +msgid "Matrix" +msgstr "Matice" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:64 +msgid "Printable headers" +msgstr "Tisknutelné hlavičky" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:92 +msgid "Dedication" +msgstr "Věnování" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:96 +#: ../src/gui/editors/segment/PlayListView.cpp:35 +msgid "Title" +msgstr "Název" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:100 +msgid "Subtitle" +msgstr "Podtitul" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:104 +msgid "Subsubtitle" +msgstr "Podpodtitul" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:108 +msgid "Poet" +msgstr "Textař" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:116 +msgid "Composer" +msgstr "Skladatel" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:120 +msgid "Meter" +msgstr "Metrum" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:124 +msgid "Arranger" +msgstr "Aranžmá" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:128 +msgid "Piece" +msgstr "Skladba" + +#: ../data/fonts/mappings/fonts.cpp:26 +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:132 +msgid "Opus" +msgstr "Opus" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:136 +msgid "Copyright" +msgstr "Copyright" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:140 +msgid "Tagline" +msgstr "Motto" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:155 +msgid "The composition comes here." +msgstr "Sem přijde kompozice." + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:172 +msgid "Non-printable headers" +msgstr "Netisknutelné hlavičky" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:213 +msgid "Add New Property" +msgstr "Přidat novou vlastnost" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:217 +msgid "Delete Property" +msgstr "Odstranit vlastnost" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:236 +msgid "{new property %1}" +msgstr "{nová vlastnost %1}" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:236 +msgid "{new property}" +msgstr "{nová vlastnost}" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:243 +msgid "{undefined}" +msgstr "{nedefinováno}" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:87 +msgid "Double-click opens segment in" +msgstr "Poklepáním se segment otevře v" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:91 +msgid "Notation editor" +msgstr "Notový editor" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:92 +msgid "Matrix editor" +msgstr "Maticový editor" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:93 +msgid "Event List editor" +msgstr "Editor seznamu událostí" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:99 +msgid "Number of count-in measures when recording" +msgstr "Počet vypočtených taktů při záznamu" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:109 +msgid "Auto-save interval" +msgstr "Interval automatického ukládání" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:112 +msgid "Every 30 seconds" +msgstr "Každých 30 sekund" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:113 +msgid "Every minute" +msgstr "Každou minutu" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:114 +msgid "Every five minutes" +msgstr "Každých pět minut" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:115 +msgid "Every half an hour" +msgstr "Každé půl hodiny" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:116 +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:277 +#: ../src/gui/configuration/NotationConfigurationPage.cpp:157 +msgid "Never" +msgstr "Nikdy" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:140 +msgid "Use JACK transport" +msgstr "Použít transport JACK" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:173 +msgid "Unknown" +msgstr "Neznámá" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:179 +msgid "No MIDI, audio OK" +msgstr "Bez MIDI, zvuk OK" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:182 +msgid "MIDI OK, no audio" +msgstr "MIDI OK, bez zvuku" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:185 +msgid "MIDI OK, audio OK" +msgstr "MIDI OK, zvuk OK" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:188 +msgid "No driver" +msgstr "Není ovladač" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:195 +msgid "Details..." +msgstr "Podrobnosti..." + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:204 +msgid "Behavior" +msgstr "Chování" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:219 +msgid "Side-bar parameter box layout" +msgstr "Rozvržení okna parametrů boční lišty" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:223 +msgid "Vertically stacked" +msgstr "Vertikálně seřazeno na sobě" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:225 +msgid "Tabbed" +msgstr "Se záložkami" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:233 +msgid "Note name style" +msgstr "Styl názvu noty" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:237 +msgid "Always use US names (e.g. quarter, 8th)" +msgstr "Vždy používat americké názvy (např. quarter, 8th)" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:238 +msgid "Localized (where available)" +msgstr "Lokalizováno (je-li lokalizace dostupná)" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:252 +msgid "Show textured background on" +msgstr "Zobrazit pozadí s texturou na" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:254 +msgid "Main window" +msgstr "Hlavní okno" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:275 +msgid "Use bundled Klearlook theme" +msgstr "Použít přibalené téma Klearlook" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:278 +msgid "When not running under KDE" +msgstr "Když není spuštěna pod KDE" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:279 +#: ../src/gui/configuration/NotationConfigurationPage.cpp:159 +msgid "Always" +msgstr "Vždy" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:287 +msgid "Presentation" +msgstr "Prezentace" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:423 +msgid "" +"Changes to the textured background in the main window will not take effect " +"until you restart Rosegarden." +msgstr "" +"Změny provedené v textuře pozadí hlavního okna se neprojeví, dokud aplikaci " +"Rosegarden nerestartujete." + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:168 +#: ../src/gui/configuration/GeneralConfigurationPage.h:78 +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:207 +#: ../src/gui/configuration/MatrixConfigurationPage.cpp:59 +msgid "General" +msgstr "Obecné" + +#: ../src/gui/configuration/GeneralConfigurationPage.h:79 +msgid "General Configuration" +msgstr "Obecná konfigurace" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:92 +msgid "Base octave number for MIDI pitch display" +msgstr "Číslo základní oktávy pro displej výšky tónu MIDI" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:107 +msgid "Always use default studio when loading files" +msgstr "Při načítání souborů vždy používat výchozí studio" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:119 +msgid "Send all MIDI Controllers at start of each playback" +msgstr "Odeslat všechny ovládací prvky MIDI na začátku přehrávání" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:121 +msgid "" +"Rosegarden can send all MIDI Controllers (Pan, Reverb etc) to all MIDI " +"devices every\n" +"time you hit play if you so wish. Please note that this option will usually " +"incur a\n" +"delay at the start of playback due to the amount of data being transmitted." +msgstr "" +"Aplikace Rosegarden může odesílat všechny ovládací prvky MIDI (Pan, Reverb " +"atd.)\n" +"na všechna zařízení MIDI pokaždé, když stisknete přehrávání. Uvědomte si, že " +"s tím\n" +"bude obvykle spojeno zpoždění začátku přehrávání, protože se bude napřed " +"přenášet značný objem dat." + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:138 +msgid "Sequencer timing source" +msgstr "Zdroj časování sekvenceru" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:163 +msgid "Load SoundFont to SoundBlaster card at startup" +msgstr "Načíst zvukové písmo do karty Soundblaster při spuštění" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:164 +msgid "" +"Check this box to enable soundfont loading on EMU10K-based cards when " +"Rosegarden is launched" +msgstr "" +"Zaškrtnutím tohoto políčka aktivujete načítání zvukového písma do karet typu " +"EMU10K při spouštění aplikace Rosegarden" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:173 +msgid "Path to 'asfxload' or 'sfxload' command" +msgstr "Cesta k příkazu 'asfxload' nebo 'sfxload'" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:180 +msgid "SoundFont" +msgstr "Zvukové písmo" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:223 +msgid "MIDI Clock and System messages" +msgstr "Čas a systémová hlášení MIDI" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:229 +msgid "Send MIDI Clock, Start and Stop" +msgstr "Odeslat čas, začátek a konec MIDI" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:230 +msgid "Accept Start, Stop and Continue" +msgstr "Přijmout začátek, konec a pokračování" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:241 +msgid "MIDI Machine Control mode" +msgstr "Režim řízení MIDI Machine Control" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:248 +msgid "MMC Master" +msgstr "Řídící MMC" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:249 +msgid "MMC Slave" +msgstr "Řízené MMC" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:260 +msgid "MIDI Time Code mode" +msgstr "Režim časového kódu MIDI" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:267 +msgid "MTC Master" +msgstr "Řídící MTC" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:268 +msgid "MTC Slave" +msgstr "Řízené MTC" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:281 +msgid "Automatically connect sync output to all devices in use" +msgstr "" +"Automaticky připojit synchronizovaný výstup ke všem používaným zařízením" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:292 +msgid "MIDI Sync" +msgstr "MIDI Sync" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:308 +msgid "sfxload path" +msgstr "cesta k sfxload" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:315 +msgid "Soundfont path" +msgstr "cesta ke zvukovému písmu" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:67 +msgid "%1 minutes %2.%3%4 seconds (%5 units, %6 measures)" +msgstr "%1 minut %2.%3%4 sekund (%5 jednotek, %6 taktů)" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:133 +msgid "Filename:" +msgstr "Název souboru:" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:136 +msgid "Formal duration (to end marker):" +msgstr "Formální doba trvání (ke koncové záložce)" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:141 +msgid "Playing duration:" +msgstr "Doba trvání přehrávání:" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:146 +msgid "Tracks:" +msgstr "Stopy:" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:147 +msgid "%1 used, %2 total" +msgstr "%1 využito, %2 celkem" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:152 +msgid "Segments:" +msgstr "Segmenty:" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:153 +msgid "%1 MIDI, %2 audio, %3 total" +msgstr "%1 MIDI, %2 zvuk, %3 celkem" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:161 +msgid "Statistics" +msgstr "Statistika" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:170 +#: ../src/gui/editors/parameters/InstrumentParameterBox.cpp:155 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:92 +msgid "Track" +msgstr "Stopa" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:171 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:125 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:90 +msgid "Label" +msgstr "Popisek" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:172 +msgid "Time" +msgstr "Čas" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:174 +msgid "Events" +msgstr "Události" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:175 +msgid "Polyphony" +msgstr "Polyfonie" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:176 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:126 +msgid "Repeat" +msgstr "Opakovat" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:178 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:128 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:305 +#: ../src/gui/general/EditView.cpp:1488 +msgid "Transpose" +msgstr "Transponovat" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:179 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:129 +msgid "Delay" +msgstr "Zpoždění" + +#: ../src/gui/configuration/AudioConfigurationPage.h:61 +#: ../src/gui/configuration/AudioPropertiesPage.h:58 +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:204 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:523 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:524 +msgid "Audio" +msgstr "Zvuk" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:204 +#: ../src/gui/configuration/MIDIConfigurationPage.h:62 +msgid "MIDI" +msgstr "MIDI" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:317 +msgid "Segment Summary" +msgstr "Souhrn segmentu" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:63 +msgid "Audio file path:" +msgstr "Cesta ke zvukovému souboru:" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:137 +#: ../src/gui/configuration/AudioPropertiesPage.cpp:68 +msgid "Choose..." +msgstr "Vybrat..." + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:73 +msgid "Disk space remaining:" +msgstr "Zbývající místo na disku:" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:78 +msgid "Equivalent minutes of 16-bit stereo:" +msgstr "Ekvivalentní minuty 16bit sterea:" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:90 +msgid "Modify audio path" +msgstr "Upravit zvukovou cestu" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:113 +msgid "%1 out of %2 (%3% used)" +msgstr "%1 z %2 (%3% použito)" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:144 +msgid "minutes at" +msgstr "minut v" + +#: ../src/gui/configuration/MIDIConfigurationPage.h:63 +msgid "MIDI Settings" +msgstr "Nastavení MIDI" + +#: ../src/gui/configuration/AudioConfigurationPage.h:62 +#: ../src/gui/configuration/AudioPropertiesPage.h:59 +msgid "Audio Settings" +msgstr "Nastavení zvuku" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:87 +msgid "Default layout mode" +msgstr "Výchozí režim uspořádání" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:91 +msgid "Linear layout" +msgstr "Lineární uspořádání" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:92 +msgid "Continuous page layout" +msgstr "Nekonečná stránka" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:93 +msgid "Multiple page layout" +msgstr "Stránkové uspořádání" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:101 +msgid "Default spacing" +msgstr "Výchozí rozestupy" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:125 +msgid "Default duration factor" +msgstr "Výchozí faktor doby trvání" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:141 +msgid "Full" +msgstr "Úplná" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:152 +msgid "Show track headers (linear layout only)" +msgstr "Zobrazit hlavičky stop (pouze lineární uspořádání)" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:158 +msgid "When needed" +msgstr "V případě potřeby" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:166 +msgid "" +"\"Always\" and \"Never\" mean what they usually mean\n" +"\"When needed\" means \"when staves are too many to all fit in the current " +"window\"" +msgstr "" +"\"Vždy\" a \"Nikdy\" znamená to, co obvykle\n" +"\"V případě potřeby\" znamená \"je-li příliš mnoho osnov k tomu, aby se " +"vešly do aktuálního okna\"" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:178 +msgid "Show non-notation events as question marks" +msgstr "Zobrazit události ne-notové povahy jako otazníky" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:188 +msgid "Show notation-quantized notes in a different color" +msgstr "Zobrazit kvantizované noty notace jinou barvou" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:198 +msgid "Show \"invisible\" events in grey" +msgstr "Zobrazit \"neviditelné\" události šedou barvou" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:208 +msgid "Show notes outside suggested playable range in red" +msgstr "Zobrazit noty mimo navržený hratelný rozsah červeně" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:218 +msgid "Highlight superimposed notes with a halo effect" +msgstr "Zvýraznit překrývající se noty halo efektem" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:231 +msgid "When recording MIDI, split-and-tie long notes at barlines" +msgstr "" +"Při nahrávání přes MIDI, rozdělujte a svazujte dlouhé noty na taktových " +"čarách" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:242 +msgid "Layout" +msgstr "Uspořádání" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:255 +msgid "Default note style for new notes" +msgstr "Výchozí styl not pro nové noty" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:287 +msgid "When inserting notes..." +msgstr "Při vkládání not..." + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:294 +msgid "Split notes into ties to make durations match" +msgstr "Rozdělit noty ligaturou tak, aby odpovídaly doby trvání" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:295 +msgid "Ignore existing durations" +msgstr "Ignorovat existující doby trvání" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:305 +msgid "Auto-beam on insert when appropriate" +msgstr "Provést automatické spojení trámcem při vkládání tam, kde je to vhodné" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:317 +#: ../src/gui/editors/notation/NotationEraser.cpp:54 +msgid "Collapse rests after erase" +msgstr "Sjednotit pomlky po vymazání" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:328 +msgid "Default paste type" +msgstr "Výchozí typ vložení" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:350 +msgid "Editing" +msgstr "Úpravy" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:362 +msgid "Accidentals in one octave..." +msgstr "Posuvky v jedné oktávě..." + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:364 +msgid "Affect only that octave" +msgstr "Ovlivní pouze tuto oktávu" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:365 +msgid "Require cautionaries in other octaves" +msgstr "Vyžadovat varovné posuvky v dalších oktávách" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:366 +msgid "Affect all subsequent octaves" +msgstr "Ovlivní všechny následující oktávy" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:374 +msgid "Accidentals in one bar..." +msgstr "Posuvky v jedné taktové čáře..." + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:376 +msgid "Affect only that bar" +msgstr "Ovlivní pouze tuto taktovou čáru" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:377 +msgid "Require cautionary resets in following bar" +msgstr "Vyžadovat varovná nová nastavení na následující taktové čáře" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:378 +msgid "Require explicit resets in following bar" +msgstr "Vyžadovat explicitní nová nastavení na následující taktové čáře" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:386 +msgid "Key signature cancellation style" +msgstr "Styl rušení předznamenání" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:388 +msgid "Cancel only when entering C major or A minor" +msgstr "Zrušit pouze při zadávání C dur nebo A moll" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:389 +msgid "Cancel whenever removing sharps or flats" +msgstr "Zrušit při každém odstraňování křížků nebo béček" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:390 +msgid "Cancel always" +msgstr "Zrušit pokaždé" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:400 +msgid "Accidentals" +msgstr "Posuvky" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:441 +msgid "Notation font" +msgstr "Písmo notace" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:467 +msgid "Origin:" +msgstr "Originál:" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:471 +msgid "Copyright:" +msgstr "Copyright:" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:475 +msgid "Mapped by:" +msgstr "Mapováno:" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:479 +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:81 +msgid "Type:" +msgstr "Typ:" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:508 +msgid "Font size for single-staff views" +msgstr "Velikost písma pro zobrazení s jednou osnovou" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:516 +msgid "Font size for multi-staff views" +msgstr "Velikost písma pro zobrazení s více osnovami" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:524 +msgid "Font size for printing (pt)" +msgstr "Velikost písma pro tisk (v bodech)" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:541 +msgid "Text font" +msgstr "Písmo textu" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:549 +msgid "Sans-serif font" +msgstr "Písmo Sans-serif" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:664 +msgid "%1 (smooth)" +msgstr "%1 (vyhlazený)" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:667 +msgid "%1 (jaggy)" +msgstr "%1 (nerovný)" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:58 +msgid "JACK latency" +msgstr "Latence JACK" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:61 +msgid "" +"Use the \"Fetch JACK latencies\" button to discover the latency values set " +"at\n" +"the sequencer. It's recommended that you use the returned values but it's " +"also\n" +"possible to override them manually using the sliders. Note that if you " +"change\n" +"your JACK server parameters you should always fetch the latency values " +"again.\n" +"The latency values will be stored by Rosegarden for use next time." +msgstr "" +"Pomocí tlačítka \"Načíst latence JACK\" zjistíte hodnoty latencí nastavené " +"na\n" +"sekvenceru. Doporučujeme použít tyto vrácené hodnoty. Je však také možné\n" +"hodnoty ručně přepsat pomocí posuvníků. Uvědomte si, že pokud změníte\n" +"parametry serveru JACK, měli byste vždy načíst hodnoty latencí znovu.\n" +"Hodnoty latencí budou aplikací Rosegarden uloženy pro další použití." + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:65 +msgid "JACK playback latency (in ms)" +msgstr "Latence přehrávání přes JACK (ms)" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:66 +msgid "JACK record latency (in ms)" +msgstr "Latence záznamu přes JACK (ms)" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:68 +msgid "Fetch JACK latencies" +msgstr "Načíst latence JACK" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:121 +msgid "JACK Latency" +msgstr "Latence JACK" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:92 +msgid "Audio preview scale" +msgstr "Rozsah zvukového náhledu" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:96 +msgid "Linear - easier to see loud peaks" +msgstr "Lineární - snáze lze vidět hlasité špičky" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:97 +msgid "Meter scaling - easier to see quiet activity" +msgstr "Měřítko ukazatele - snadněji lze vidět tiché aktivity" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:105 +msgid "Record audio files as" +msgstr "Zaznamenávat zvukové soubory jako" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:107 +msgid "16-bit PCM WAV format (smaller files)" +msgstr "16bitový formát PCM WAV (menší soubory)" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:108 +msgid "32-bit float WAV format (higher quality)" +msgstr "32bitový formát float WAV (vyšší kvalita)" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:117 +msgid "External audio editor" +msgstr "Externí editor zvuku" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:145 +msgid "Create JACK outputs" +msgstr "Vytvořit výstupy JACK" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:150 +msgid "for individual audio instruments" +msgstr "pro jednotlivé zvukové nástroje" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:157 +msgid "for submasters" +msgstr "pro řízené sekvencery" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:184 +msgid "" +"Rosegarden can start the JACK audio daemon (jackd) for you automatically if " +"it isn't already running when Rosegarden starts.\n" +"\n" +"This is recommended for beginners and those who use Rosegarden as their main " +"audio application, but it might not be to the liking of advanced users.\n" +"\n" +"If you want to start JACK automatically, make sure the command includes a " +"full path where necessary as well as any command-line arguments you want to " +"use.\n" +"\n" +"For example: /usr/local/bin/jackd -d alsa -d hw -r44100 -p 2048 -n 2\n" +"\n" +msgstr "" +"Aplikace Rosegarden může spouštět zvukový démon JACK (jackd)\n" +"automaticky, pokud není již v době startu aplikace Rosegarden spuštěn.\n" +"\n" +"Toto je doporučené chování pro začátečníky a ty, kteří používají aplikaci\n" +"Rosegarden jako hlavní zvukovou aplikaci. Nemusí to však vyhovovat " +"pokročilým uživatelům.\n" +"\n" +"Chcete-li spouštět démon JACK automaticky, ujistěte se, že příkaz obsahuje\n" +"úplnou cestu, je-li to nutné, stejně jako všechny argumenty příkazové řádky, " +"které chcete použít.\n" +"\n" +"Například: /usr/local/bin/jackd -d alsa -d hw -r44100 -p 2048 -n 2\n" +"\n" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:196 +msgid "Start JACK when Rosegarden starts" +msgstr "Spustit démon JACK při spuštění aplikace Rosegarden" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:201 +msgid "JACK command" +msgstr "Příkaz JACK" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:214 +msgid "JACK Startup" +msgstr "Spuštění JACK" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:224 +msgid "External audio editor path" +msgstr "Cesta k externímu editoru zvuku" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:262 +msgid "External audio editor \"%1\" not found or not executable" +msgstr "Externí zvukový editor \"%1\" nebyl nalezen nebo nelze spustit" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:70 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:448 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:863 +msgid "Add New Color" +msgstr "Přidat novou barvu" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:74 +msgid "Delete Color" +msgstr "Odstranit barvu" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:93 +msgid "Color Map" +msgstr "Barevná mapa" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:128 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:983 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:882 +msgid "New Color Name" +msgstr "Název nové barvy" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:130 +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:59 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:984 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:883 +#: ../src/gui/studio/DeviceManagerDialog.cpp:115 +#: ../src/gui/studio/DeviceManagerDialog.cpp:174 +msgid "New" +msgstr "Nový" + +#: ../src/gui/configuration/LatencyConfigurationPage.h:62 +msgid "Latency" +msgstr "Latence" + +#: ../src/gui/configuration/LatencyConfigurationPage.h:63 +msgid "Sequencer Latency" +msgstr "Latence sekvenceru" + +#: ../src/gui/configuration/ColourConfigurationPage.h:61 +msgid "Color Settings" +msgstr "Nastavení barev" + +#: ../src/gui/studio/MidiDeviceListViewItem.cpp:55 +#: ../src/gui/studio/MidiKeyMapListViewItem.cpp:44 +msgid "Key Mapping" +msgstr "Mapování tóniny" + +#: ../src/gui/studio/BankEditorDialog.cpp:97 +msgid "Manage MIDI Banks and Programs" +msgstr "Správa bank a programů MIDI" + +#: ../src/gui/studio/BankEditorDialog.cpp:128 +msgid "MIDI Device" +msgstr "Zařízení MIDI" + +#: ../src/gui/studio/BankEditorDialog.cpp:130 +#: ../src/gui/studio/BankEditorDialog.cpp:219 +msgid "MSB" +msgstr "MSB" + +#: ../src/gui/studio/BankEditorDialog.cpp:131 +#: ../src/gui/studio/BankEditorDialog.cpp:218 +msgid "LSB" +msgstr "LSB" + +#: ../src/gui/studio/BankEditorDialog.cpp:140 +msgid "Add Bank" +msgstr "Přidat banku" + +#: ../src/gui/studio/BankEditorDialog.cpp:141 +msgid "Add Key Mapping" +msgstr "Přidat mapování tóniny" + +#: ../src/gui/studio/BankEditorDialog.cpp:153 +msgid "Add a Bank to the current device" +msgstr "Přidat banku k aktuálnímu zařízení" + +#: ../src/gui/studio/BankEditorDialog.cpp:157 +msgid "Add a Percussion Key Mapping to the current device" +msgstr "Přidat mapování tóniny bicích k aktuálnímu zařízení" + +#: ../src/gui/studio/BankEditorDialog.cpp:161 +msgid "Delete the current Bank or Key Mapping" +msgstr "Odstranit aktuální banku nebo mapování tóniny" + +#: ../src/gui/studio/BankEditorDialog.cpp:165 +msgid "Delete all Banks and Key Mappings from the current Device" +msgstr "Odstranit všechny banky a mapování tóniny z aktuálního zařízení" + +#: ../src/gui/studio/BankEditorDialog.cpp:167 +#: ../src/gui/studio/DeviceManagerDialog.cpp:117 +msgid "Import..." +msgstr "Import..." + +#: ../src/gui/studio/BankEditorDialog.cpp:168 +#: ../src/gui/studio/DeviceManagerDialog.cpp:118 +msgid "Export..." +msgstr "Export..." + +#: ../src/gui/studio/BankEditorDialog.cpp:176 +msgid "" +"Import Bank and Program data from a Rosegarden file to the current Device" +msgstr "" +"Importovat data banky a programů ze souboru aplikace Rosegarden do " +"aktuálního zařízení" + +#: ../src/gui/studio/BankEditorDialog.cpp:179 +msgid "" +"Export all Device and Bank information to a Rosegarden format interchange " +"file" +msgstr "" +"Exportovat všechny informace o zařízení a bance ve formátu pro výměnu dat do " +"souboru aplikace Rosegarden" + +#: ../src/gui/studio/BankEditorDialog.cpp:190 +msgid "Copy all Program names from current Bank to clipboard" +msgstr "Kopírovat všechny názvy programů z aktuální banky do schránky" + +#: ../src/gui/studio/BankEditorDialog.cpp:194 +msgid "Paste Program names from clipboard to current Bank" +msgstr "Vložit názvy programů ze schránky do aktuální banky" + +#: ../src/gui/studio/BankEditorDialog.cpp:216 +msgid "Show Variation list based on " +msgstr "Zobrazit seznam rozdílů podle " + +#: ../src/gui/studio/BankEditorDialog.cpp:1010 +msgid "" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1046 +msgid "" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1048 +msgid "" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1089 +msgid "Really delete this bank?" +msgstr "Skutečně chcete odstranit tuto banku?" + +#: ../src/gui/studio/BankEditorDialog.cpp:1137 +msgid "Really delete this key mapping?" +msgstr "Skutečně chcete odstranit toto mapování tóniny?" + +#: ../src/gui/studio/BankEditorDialog.cpp:1187 +msgid "Really delete all banks for " +msgstr "Skutečně chcete odstranit všechny banky pro " + +#: ../src/gui/studio/BankEditorDialog.cpp:1476 +msgid "Import Banks from Device in File" +msgstr "Importovat banky ze zařízení v souboru" + +#: ../src/gui/studio/BankEditorDialog.cpp:1623 +#: ../src/gui/studio/DeviceManagerDialog.cpp:770 +msgid "Export Device as..." +msgstr "Exportovat zařízení jako..." + +#: ../src/gui/studio/BankEditorDialog.cpp:1694 +msgid "" +"There are unsaved changes.\n" +"Do you want to apply the changes before exiting the Bank Editor or discard " +"the changes ?" +msgstr "" +"Existují neuložené změny.\n" +"Chcete před ukončením editoru bank změny použít nebo chcete změny zahodit?" + +#: ../src/gui/studio/BankEditorDialog.cpp:1697 +msgid "Unsaved Changes" +msgstr "Neuložené změny" + +#: ../src/gui/studio/NameSetEditor.cpp:68 +msgid "Librarian" +msgstr "Knihovník" + +#: ../src/gui/studio/NameSetEditor.cpp:75 +msgid "Email" +msgstr "E-mail" + +#: ../src/gui/studio/NameSetEditor.cpp:80 +msgid "" +"The librarian maintains the Rosegarden device data for this device.\n" +"If you've made modifications to suit your own device, it might be worth\n" +"liaising with the librarian in order to publish your information for the " +"benefit\n" +"of others." +msgstr "" +"Knihovník udržuje data o zařízení aplikace Rosegarden pro toto zařízení.\n" +"Pokud jste provedli úpravy dat tak, aby vyhovovala vašemu zařízení, bylo by " +"dobré\n" +"tyto úpravy sdělit knihovníkovi, aby je mohl publikovat pro využití\n" +"dalšími uživateli." + +#: ../src/gui/studio/MidiBankListViewItem.cpp:51 +#: ../src/gui/studio/MidiDeviceListViewItem.cpp:48 +msgid "Percussion Bank" +msgstr "Banka bicích" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:84 +#: ../src/gui/studio/MidiBankListViewItem.cpp:51 +#: ../src/gui/studio/MidiDeviceListViewItem.cpp:48 +msgid "Bank" +msgstr "Banka" + +#: ../src/gui/studio/ChangeRecordDeviceCommand.h:39 +msgid "Change Record Device" +msgstr "Změnit záznamové zařízení" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:61 +#: ../src/gui/studio/DeviceManagerDialog.cpp:96 +msgid "Manage MIDI Devices" +msgstr "Správa zařízení MIDI" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:98 +msgid "Play devices" +msgstr "Přehrávací zařízení" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:76 +#: ../src/gui/studio/DeviceManagerDialog.cpp:106 +#: ../src/gui/studio/DeviceManagerDialog.cpp:165 +msgid "Connection" +msgstr "Připojení" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:119 +msgid "Banks..." +msgstr "Banky..." + +#: ../src/gui/studio/DeviceManagerDialog.cpp:120 +msgid "Control Events..." +msgstr "Ovládací události..." + +#: ../src/gui/studio/DeviceManagerDialog.cpp:126 +msgid "Create a new Play device" +msgstr "Vytvořit nové přehrávací zařízení" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:129 +#: ../src/gui/studio/DeviceManagerDialog.cpp:184 +msgid "Delete the selected device" +msgstr "Odstranit vybrané zařízení" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:132 +msgid "" +"Import Bank, Program and Controller data from a Rosegarden file to the " +"selected device" +msgstr "" +"Importovat data banky, programů a ovládacích prvků ze souboru aplikace " +"Rosegarden do vybraného zařízení" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:135 +msgid "Export Bank and Controller data to a Rosegarden interchange file" +msgstr "" +"Exportovat data banky a ovládacích prvků do formátu souboru pro výměnu dat " +"aplikace Rosegarden" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:138 +msgid "View and edit Banks and Programs for the selected device" +msgstr "Zobrazit a upravit banky a programy pro vybrané zařízení" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:141 +msgid "" +"View and edit Control Events for the selected device - these are special " +"Event types that you can define against your device and control through " +"Control Rulers or the Instrument Parameter Box " +msgstr "" +"Zobrazit a upravit ovládací události pro vybrané zařízení - jedná se o " +"speciální typy událostí, které můžete definovat proti svému zařízení a " +"ovládat prostřednictvím pravítek ovládacích prvků nebo pole s parametry " +"nástroje " + +#: ../src/gui/studio/DeviceManagerDialog.cpp:156 +msgid "Record devices" +msgstr "Záznamová zařízení" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:164 +msgid "Current" +msgstr "Aktuální" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:181 +msgid "Create a new Record device" +msgstr "Vytvořit nové záznamové zařízení" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:360 +#: ../src/gui/studio/DeviceEditorDialog.cpp:378 +#: ../src/gui/studio/DeviceManagerDialog.cpp:486 +#: ../src/gui/studio/DeviceManagerDialog.cpp:501 +msgid "New Device" +msgstr "Nové zařízení" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:703 +msgid "Import from Device in File" +msgstr "Importovat ze zařízení v souboru" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:55 +msgid "Remap Instrument assigments..." +msgstr "Přemapovat přidělení nástrojů..." + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:62 +msgid "Device or Instrument" +msgstr "Zařízení nebo nástroj" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:65 +msgid "Remap Tracks by all Instruments on a Device or by single Instrument" +msgstr "Přemapovat stopy všemi nástroji zařízení nebo jediným nástrojem" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:74 +msgid "Choose Source and Destination" +msgstr "Vybrat zdroj a cílové umístění" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:77 +msgid "From" +msgstr "Od" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:78 +msgid "To" +msgstr "Do" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:120 +#: ../src/gui/studio/RemapInstrumentDialog.cpp:121 +msgid "" +msgstr "<žádná zařízení>" + +#: ../src/gui/studio/AudioMixerWindow.cpp:155 +msgid "Show Audio &Faders" +msgstr "Zobrazit &zeslabovače zvuku" + +#: ../src/gui/studio/AudioMixerWindow.cpp:160 +msgid "Show Synth &Faders" +msgstr "Zobrazit &zeslabovače syntetizéru" + +#: ../src/gui/studio/AudioMixerWindow.cpp:165 +msgid "Show &Submasters" +msgstr "Zobrazit ří&zené sekvencery" + +#: ../src/gui/studio/AudioMixerWindow.cpp:170 +msgid "Show &Plugin Buttons" +msgstr "Zobrazit tlačítka zásuvných &modulů" + +#: ../src/gui/studio/AudioMixerWindow.cpp:175 +msgid "Show &Unassigned Faders" +msgstr "Zobrazit &nepřiřazené zeslabovače" + +#: ../src/gui/studio/AudioMixerWindow.cpp:184 +#, c-format +msgid "" +"_n: 1 Input\n" +"%n Inputs" +msgstr "" +"_n: 1 Vstup\n" +"%n Vstupy" + +#: ../src/gui/studio/AudioMixerWindow.cpp:194 +msgid "No Submasters" +msgstr "Žádné řízené sekvencery" + +#: ../src/gui/studio/AudioMixerWindow.cpp:203 +#, c-format +msgid "" +"_n: 1 Submaster\n" +"%n Submasters" +msgstr "" +"_n: 1 Řízený sek.\n" +"%n Řízené sek." + +#: ../src/gui/studio/AudioMixerWindow.cpp:279 +msgid "Audio Mixer" +msgstr "Zvukový směšovač" + +#: ../src/gui/studio/AudioMixerWindow.cpp:311 +msgid "Record input source" +msgstr "Záznamový vstupní zdroj" + +#: ../src/gui/studio/AudioMixerWindow.cpp:322 +msgid "Output destination" +msgstr "Výstupní cílové zařízení" + +#: ../src/gui/studio/AudioMixerWindow.cpp:336 +#: ../src/gui/studio/AudioMixerWindow.cpp:495 +msgid "Pan" +msgstr "Pan" + +#: ../src/gui/studio/AudioMixerWindow.cpp:355 +msgid "Mono or stereo" +msgstr "Mono nebo stereo" + +#: ../src/gui/studio/AudioMixerWindow.cpp:364 +#: ../src/gui/studio/AudioMixerWindow.cpp:513 +msgid "Mute" +msgstr "Ztlumit" + +#: ../src/gui/studio/AudioMixerWindow.cpp:373 rc.cpp:408 +#, no-c-format +msgid "Solo" +msgstr "Sólo" + +#: ../src/gui/studio/AudioMixerWindow.cpp:382 +msgid "Arm recording" +msgstr "Připravit záznam" + +#: ../src/gui/studio/AudioMixerWindow.cpp:400 +#, c-format +msgid "Audio %1" +msgstr "Zvuk %1" + +#: ../src/gui/studio/AudioMixerWindow.cpp:404 +#, c-format +msgid "Synth %1" +msgstr "Syntetizér %1" + +#: ../src/gui/studio/AudioMixerWindow.cpp:578 +#: ../src/gui/studio/AudioMixerWindow.cpp:580 +msgid "Audio master output level" +msgstr "Zvuková řídící výstupní úroveň" + +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:71 +msgid "Manage Synth Plugins" +msgstr "Správa zásuvných modulů syntetizérů" + +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:78 +msgid "Synth plugins" +msgstr "Zásuvné moduly syntetizérů" + +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:145 +msgid "Controls" +msgstr "Ovládací prvky" + +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:152 +msgid "Editor >>" +msgstr "Editor >>" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:66 +#: ../src/gui/studio/MidiProgramsEditor.cpp:169 +msgid "Bank and Program details" +msgstr "Podrobnosti banky a programů" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:67 +msgid "Programs" +msgstr "Programy" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2711 +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:88 +#: ../src/gui/studio/MidiProgramsEditor.cpp:93 +msgid "Percussion" +msgstr "Bicí" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:99 +msgid "MSB Value" +msgstr "Hodnota MSB" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:107 +msgid "" +"Selects a MSB controller Bank number (MSB/LSB pairs are always unique for " +"any Device)" +msgstr "" +"Vybere číslo banky ovládacího prvku MSB (páry MSB/LSB jsou pro jakékoli " +"zařízení vždy jednoznačné)" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:111 +msgid "" +"Selects a LSB controller Bank number (MSB/LSB pairs are always unique for " +"any Device)" +msgstr "" +"Vybere číslo banky ovládacího prvku LSB (páry MSB/LSB jsou pro jakékoli " +"zařízení vždy jednoznačné)" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:116 +msgid "LSB Value" +msgstr "Hodnota LSB" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:254 +#: ../src/gui/studio/MidiProgramsEditor.cpp:541 +#, c-format +msgid "Key Mapping: %1" +msgstr "Mapování tóniny: %1" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:476 +msgid "" +msgstr "" + +#: ../src/gui/studio/MidiKeyMappingEditor.cpp:57 +#: ../src/gui/studio/MidiKeyMappingEditor.cpp:81 +msgid "Key Mapping details" +msgstr "Podrobnosti o mapování tóniny" + +#: ../src/gui/studio/MidiKeyMappingEditor.cpp:58 +msgid "Pitches" +msgstr "Výšky tónů" + +#: ../src/gui/studio/MidiMixerWindow.cpp:152 +msgid "MIDI Mixer" +msgstr "Směšovač MIDI" + +#: ../src/gui/studio/MidiMixerWindow.cpp:199 +msgid "Volume" +msgstr "Hlasitost" + +#: ../src/gui/studio/AudioPluginOSCGUIManager.cpp:444 +msgid "Rosegarden Plugin" +msgstr "Zásuvný modul aplikace Rosegarden" + +#: ../src/gui/studio/AudioPluginOSCGUIManager.cpp:447 +#, c-format +msgid "Rosegarden: %1" +msgstr "Rosegarden: %1" + +#: ../src/gui/studio/AudioPluginOSCGUIManager.cpp:449 +msgid "Rosegarden: %1: %2" +msgstr "Rosegarden: %1: %2" + +#: ../src/gui/studio/AudioPluginOSCGUIManager.cpp:450 +#, c-format +msgid "Plugin slot %1" +msgstr "Slot %1 zásuvného modulu" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:92 +msgid "Add Play Device" +msgstr "Přidat přehrávací zařízení" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:93 +msgid "Add Record Device" +msgstr "Přidat záznamové zařízení" + +#: ../src/commands/studio/CreateOrDeleteDeviceCommand.h:68 +#: ../src/gui/studio/DeviceEditorDialog.cpp:94 +msgid "Delete Device" +msgstr "Odstranit zařízení" + +#: ../src/gui/editors/segment/PlayList.cpp:77 +#: ../src/gui/studio/DeviceEditorDialog.cpp:156 +#: ../src/gui/studio/DeviceEditorDialog.cpp:361 +msgid "Play" +msgstr "Přehrát" + +#: ../src/commands/segment/SegmentRecordCommand.cpp:37 +#: ../src/gui/studio/DeviceEditorDialog.cpp:156 +#: ../src/gui/studio/DeviceEditorDialog.cpp:379 rc.cpp:394 +#, no-c-format +msgid "Record" +msgstr "Zaznamenat" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:256 +msgid "Apply pending changes?" +msgstr "Chcete použít dosud nezpracované změny?" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:359 +#: ../src/gui/studio/DeviceEditorDialog.cpp:377 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentEraser.cpp:82 +msgid "Click on a segment to delete it" +msgstr "Chcete-li segment odstranit, klepněte na něj" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSplitter.cpp:166 +msgid "" +"Click on a segment to split it in two; hold Shift to avoid snapping to beat " +"grid" +msgstr "" +"Chcete-li segment rozdělit na dva, klepněte na něj; podržte přitom tlačítko " +"Shift, abyste se vyhnuli přichytávání na mřížku dob" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSplitter.cpp:168 +msgid "Click on a segment to split it in two" +msgstr "Chcete-li segment rozdělit na dva, klepněte na něj" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:81 +msgid "Click and drag to select segments" +msgstr "Klepnutím a tažením segmenty vyberete" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentMover.cpp:154 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:238 +msgid "Move Segment" +msgstr "Přesunout segment" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentMover.cpp:154 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:239 +msgid "Move Segments" +msgstr "Přesunout segmenty" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:217 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:169 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:141 +#: ../src/gui/editors/segment/segmentcanvas/SegmentMover.cpp:210 +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:255 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:359 +msgid "Hold Shift to avoid snapping to beat grid" +msgstr "Podržte tlačítko Shift, abyste se vyhnuli přichytávání na mřížku dob" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:485 +msgid "" +"Click and drag to select segments; middle-click and drag to draw an empty " +"segment" +msgstr "" +"Klepnutím a tažením segmenty vyberete; klepnutím prostředním tlačítkem a " +"tažením nakreslíte prázdný segment" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:384 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:502 +msgid "" +"Click and drag to resize a segment; hold Ctrl as well to rescale its contents" +msgstr "" +"Klepnutím a tažením změníte velikost segmentu; podržíte-li tlačítko Ctrl, " +"změníte také délku jeho obsahu" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:386 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:504 +msgid "Click and drag to rescale segment" +msgstr "Klepnutím a tažením změníte délku segmentu" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:509 +msgid "Click and drag to move segments; hold Ctrl as well to copy them" +msgstr "" +"Klepnutím a tažením přesunete segmenty; podržíte-li tlačítko Ctrl, můžete je " +"také kopírovat" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:511 +msgid "Click and drag to copy segments" +msgstr "Klepnutím a tažením zkopírujete segmenty" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:515 +msgid "" +"Click and drag to move segment; hold Ctrl as well to copy it; double-click " +"to edit" +msgstr "" +"Klepnutím a tažením přesunete segmenty; podržíte-li tlačítko Ctrl, můžete je " +"také kopírovat; poklepáním je lze upravovat" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:517 +msgid "Click and drag to copy segment" +msgstr "Klepnutím a tažením zkopírujete segment" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:157 +msgid "" +"The audio file path does not exist or is not writable.\n" +"You must set the audio file path to a valid directory in Document Properties " +"before rescaling an audio file.\n" +"Would you like to set it now?" +msgstr "" +"Cesta ke zvukovému souboru neexistuje nebo se do ní nedá zapisovat.\n" +"Nastavte platný adresář jako cestu ke zvukovému souboru ve Vlastnostech " +"dokumentu před změnou délky zvukového záznamu.\n" +"Chcete cestu nastavit nyní?" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:261 +msgid "" +"Hold Shift to avoid snapping to beat grid; hold Ctrl as well to rescale " +"contents" +msgstr "" +"Podržením tlačítka Shift (přesmykače) se vyhnete přichytávání na mřížku dob; " +"podržíte-li tlačítko Ctrl, můžete také měnit délku obsahu" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentMover.cpp:325 +msgid "Click and drag to move a segment" +msgstr "Klepnutím a tažením přesunete segment" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentPencil.cpp:225 +msgid "Hold Shift to avoid snapping to bar lines" +msgstr "" +"Podržením tlačítka Shift (přesmykače) se vyhnete přichytávání na taktové čáry" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentPencil.cpp:283 +msgid "Record or drop audio here" +msgstr "Sem přetáhněte nebo zde zaznamenejte zvuk" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentPencil.cpp:289 +msgid "" +"Click and drag to draw an empty segment. Control+Alt click and drag to draw " +"in overlap mode." +msgstr "" +"Klepnutím a tažením vytvoříte prázdný segment. Klepnutím a tažením se " +"stisknutým CTRL+Alt budete pracovat v překryvném režimu." + +#: ../src/gui/editors/segment/TrackLabel.cpp:77 +msgid "" +"Click and hold with left mouse button to assign this Track to an Instrument." +msgstr "" +"Klepnutím a podržením levého tlačítka myši přiřadíte tuto stopu nástroji." + +#: ../src/gui/editors/segment/TrackLabel.cpp:191 +msgid "Change track name" +msgstr "Změnit název stopy" + +#: ../src/gui/editors/segment/TrackLabel.cpp:192 +msgid "Enter new track name" +msgstr "Zadejte nový název stopy" + +#: ../src/gui/editors/segment/TrackEditor.cpp:648 +msgid "Turn Repeating Segment into Real Copies" +msgstr "Převést opakující se segment na skutečné kopie" + +#: ../src/gui/editors/segment/TrackEditor.cpp:650 +msgid "Turn Repeating Segments into Real Copies" +msgstr "Převést opakující se segmenty na skutečné kopie" + +#: ../src/gui/editors/segment/TrackEditor.cpp:814 +msgid "" +"You can't drop files into Rosegarden from this client. Try using Konqueror " +"instead." +msgstr "" +"Z tohoto klienta nelze do aplikace Rosegarden přetahovat soubory. Zkuste " +"použít aplikaci Konqueror." + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:85 +msgid "Manage Triggered Segments" +msgstr "Správa spouštěných segmentů" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:89 +msgid "ID" +msgstr "ID" + +#: ../src/gui/editors/eventlist/EventView.cpp:735 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:93 +msgid "Base velocity" +msgstr "Základní rychlost:" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:94 +msgid "Triggers" +msgstr "Spouštěcí značky" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:115 +msgid "Add a Triggered Segment" +msgstr "Přidat spouštěný segment" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:119 +msgid "Delete a Triggered Segment" +msgstr "Odstranit spouštěný segment" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:123 +msgid "Delete All Triggered Segments" +msgstr "Odstranit všechny spouštěné segmenty" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:127 +msgid "Close the Triggered Segment Manager" +msgstr "Zavřít správce spouštěných segmentů" + +#: ../src/gui/editors/eventlist/EventView.cpp:169 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:245 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:248 +msgid "" +"_n: %1 on 1 track\n" +"%1 on %n tracks" +msgstr "" +"%1 na 1 stopě\n" +"%1 na %n stopách" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:284 +msgid "" +"This will remove all triggered segments from the whole composition. Are you " +"sure?" +msgstr "" +"Tímto dojde k odebrání všech spouštěných segmentů z celé skladby. Skutečně " +"to chcete provést?" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:288 +msgid "Remove all triggered segments" +msgstr "Odebrat všechny spouštěné segmenty" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:313 +msgid "Trigger Segment Duration" +msgstr "Doba trvání spouštěcího segmentu" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:336 +#, c-format +msgid "" +"_n: This triggered segment is used 1 time in the current composition. Are " +"you sure you want to remove it?\n" +"This triggered segment is used %n times in the current composition. Are you " +"sure you want to remove it?" +msgstr "" +"_n: Tento spouštěný segment je použit v aktuální skladbě %1 krát. Skutečně " +"jej chcete odebrat?\n" +"Tento spouštěný segment je použit v aktuální skladbě %n krát. Skutečně jej " +"chcete odebrat?" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:400 +msgid "Pa&ste as New Triggered Segment" +msgstr "&Vložit jako nový spouštěný segment" + +#: ../src/gui/editors/eventlist/EventView.cpp:1169 +#: ../src/gui/editors/segment/MarkerEditor.cpp:399 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:412 +#: ../src/gui/editors/tempo/TempoView.cpp:622 +msgid "&Musical Times" +msgstr "&Hudební čas" + +#: ../src/gui/editors/eventlist/EventView.cpp:1179 +#: ../src/gui/editors/segment/MarkerEditor.cpp:409 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:422 +#: ../src/gui/editors/tempo/TempoView.cpp:632 +msgid "&Real Times" +msgstr "&Skutečný čas" + +#: ../src/gui/editors/eventlist/EventView.cpp:1189 +#: ../src/gui/editors/segment/MarkerEditor.cpp:419 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:432 +#: ../src/gui/editors/tempo/TempoView.cpp:642 +msgid "Ra&w Times" +msgstr "H&rubý čas" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:83 +msgid "Manage Markers" +msgstr "Správa záložek" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:86 +msgid "Marker time " +msgstr "Čas záložky " + +#: ../src/gui/editors/segment/MarkerEditor.cpp:87 +msgid "Marker text " +msgstr "Text záložky " + +#: ../src/gui/editors/segment/MarkerEditor.cpp:88 +msgid "Marker description " +msgstr "Popis záložky " + +#: ../src/gui/editors/segment/MarkerEditor.cpp:95 +msgid "Pointer position" +msgstr "Pozice ukazatele" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:100 +msgid "Real time:" +msgstr "Skutečný čas:" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:103 +msgid "In measure:" +msgstr "V taktu:" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:121 +msgid "Add a Marker" +msgstr "Přidat záložku" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:125 +msgid "Delete a Marker" +msgstr "Odstranit záložku" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:129 +msgid "Delete All Markers" +msgstr "Odstranit všechny záložky" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:133 +msgid "Close the Marker Editor" +msgstr "Zavřít editor záložek" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:296 +msgid "Remove all markers" +msgstr "Odstranit všechny záložky" + +#: ../src/gui/editors/segment/PlayList.cpp:76 +msgid "Add..." +msgstr "Přidat..." + +#: ../src/gui/editors/segment/PlayList.cpp:78 +msgid "Move Up" +msgstr "Posunout nahoru" + +#: ../src/gui/editors/segment/PlayList.cpp:79 +msgid "Move Down" +msgstr "Posunout dolů" + +#: ../src/gui/editors/segment/PlayList.cpp:124 +msgid "Select one or more Rosegarden files" +msgstr "Vybrat jeden nebo více souborů aplikace Rosegarden" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:73 +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:55 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:89 +msgid "Manage Control Events" +msgstr "Správa ovládacích událostí" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:91 +msgid "" +msgstr "<žádné zařízení>" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:99 +msgid " Control Events for %1 (device %2)" +msgstr " Ovládací události pro %1 (zařízení %2)" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:104 +msgid "Control Event name " +msgstr "Název ovládací události " + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:105 +msgid "Control Event type " +msgstr "Typ ovládací události " + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:106 +msgid "Control Event value " +msgstr "Hodnota ovládací události " + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:107 +msgid "Description " +msgstr "Popis " + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:108 +msgid "Min " +msgstr "Min " + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:109 +msgid "Max " +msgstr "Max " + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:110 +msgid "Default " +msgstr "Výchozí " + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:111 +msgid "Color " +msgstr "Barva " + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:112 +msgid "Position on instrument panel" +msgstr "Pozice na panelu nástrojů" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:136 +msgid "Add a Control Parameter to the Studio" +msgstr "Přidat ovládací parametr do studia" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:140 +msgid "Delete a Control Parameter from the Studio" +msgstr "Odstranit ovládací parametr ze studia" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:144 +msgid "Close the Control Parameter editor" +msgstr "Zavřít editor ovládacích parametrů" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:221 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:62 +msgid "Edit Control Parameter" +msgstr "Upravit ovládací parametr" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:71 +msgid "Control Event Properties" +msgstr "Vlastnosti ovládací události" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:77 +msgid "Name:" +msgstr "Název:" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:93 +msgid "Control Event value:" +msgstr "Hodnota ovládací události:" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:97 +msgid "Minimum value:" +msgstr "Minimální hodnota:" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:101 +msgid "Maximum value:" +msgstr "Maximální hodnota:" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:105 +msgid "Default value:" +msgstr "Výchozí hodnota:" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:109 +msgid "Color:" +msgstr "Barva:" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:113 +msgid "Instrument Parameter Box position:" +msgstr "Pozice pole s parametry nástroje:" + +#: ../src/gui/editors/segment/TrackButtons.cpp:209 +#: ../src/gui/editors/segment/TrackButtons.cpp:585 +#: ../src/gui/editors/segment/TrackButtons.cpp:935 +#: ../src/gui/editors/segment/TrackButtons.cpp:1127 +msgid "" +msgstr "<žádný nástroj>" + +#: ../src/gui/editors/segment/TrackButtons.cpp:352 +#: ../src/gui/editors/segment/TrackButtons.cpp:1094 +msgid "" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:130 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:662 +#: ../src/gui/editors/segment/TrackButtons.cpp:354 +#: ../src/gui/editors/segment/TrackButtons.cpp:1096 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/TrackButtons.cpp:1058 +msgid "Mute track" +msgstr "Ztlumit stopu" + +#: ../src/gui/editors/segment/TrackButtons.cpp:1063 +msgid "Record on this track" +msgstr "Zaznamenat na tuto stopu" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:88 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:1015 +msgid "Segment" +msgstr "Segment" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:89 +msgid "Segment Parameters" +msgstr "Parametry segmentu" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:366 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:697 +msgid "%1 ms" +msgstr "%1 ms" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1031 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:910 +msgid "Highest playable note" +msgstr "Nejvyšší hratelná nota" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1051 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:930 +msgid "Lowest playable note" +msgstr "Nejnižší hratelná nota" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:93 +msgid "Track Parameters" +msgstr "Parametry stopy" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:137 +msgid "Playback parameters" +msgstr "Parametry přehrávání" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:172 +msgid "Recording filters" +msgstr "Záznamové filtry" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:191 +msgid "Channel" +msgstr "Kanál" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:203 +msgid "Staff export options" +msgstr "Možnosti exportu osnovy" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:220 +msgid "Notation size:" +msgstr "Velikost notace:" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:225 +msgid "Small" +msgstr "Malá" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:226 +msgid "Tiny" +msgstr "Drobná" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:233 +msgid "Bracket type:" +msgstr "Typ závorky:" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:237 +msgid "-----" +msgstr "-----" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:238 +msgid "[----" +msgstr "[----" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:239 +msgid "----]" +msgstr "----]" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:240 +msgid "[---]" +msgstr "[---]" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:241 +msgid "{----" +msgstr "{----" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:242 +msgid "----}" +msgstr "----}" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:243 +msgid "{[---" +msgstr "{[---" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:244 +msgid "---]}" +msgstr "---]}" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:253 +msgid "Create segments with" +msgstr "Vytvořit segmenty s" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:264 +msgid "Preset" +msgstr "Přednastavit" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:272 +msgid "Load" +msgstr "Načíst" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:282 +msgid "treble" +msgstr "houslový" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:283 +msgid "bass" +msgstr "basový" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:284 +msgid "crotales" +msgstr "chrastítka" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:285 +msgid "xylophone" +msgstr "xylofon" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:286 +msgid "guitar" +msgstr "kytara" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:287 +msgid "contrabass" +msgstr "kontrabas" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:288 +msgid "celesta" +msgstr "celesta" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:289 +msgid "old celesta" +msgstr "stará celesta" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:290 +msgid "french" +msgstr "francouzský" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:291 +msgid "soprano" +msgstr "sopránový" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:292 +msgid "mezzosoprano" +msgstr "mezosopránový" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:293 +msgid "alto" +msgstr "violový" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:294 +msgid "tenor" +msgstr "tenorový" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:295 +msgid "baritone" +msgstr "barytonový" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:296 +msgid "varbaritone" +msgstr "varbarytonový" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:297 +msgid "subbass" +msgstr "subbasový" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:327 +msgid "Lowest" +msgstr "Nejnižší" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:329 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:336 +msgid "---" +msgstr "---" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:331 +msgid "Choose the lowest suggested playable note, using a staff" +msgstr "Pomocí osnovy vyberte nejnižší navrhovanou, hratelnou notu" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:334 +msgid "Highest" +msgstr "Nejvyšší" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:338 +msgid "Choose the highest suggested playable note, using a staff" +msgstr "Pomocí osnovy vyberte nejvyšší navrhovanou, hratelnou notu" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:666 +msgid "[ Track %1 - %2 ]" +msgstr "[ Stopa %1 - %2 ]" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:985 +msgid "The instrument preset database is corrupt. Check your installation." +msgstr "" +"Databáze přednastavených nástrojů je porušená. Zkontrolujte instalaci." + +#: ../src/gui/editors/matrix/MatrixView.cpp:173 +#: ../src/gui/editors/parameters/InstrumentParameterBox.cpp:54 +msgid "Instrument Parameters" +msgstr "Parametry nástroje" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:85 +msgid "Variation" +msgstr "Rozdíl" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:86 +msgid "Program" +msgstr "Program" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:87 +msgid "Channel out" +msgstr "Výstupní kanál" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:215 +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:221 +msgid "[ %1 ]" +msgstr "[ %1 ]" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:58 +#: ../src/gui/editors/matrix/MatrixMover.cpp:71 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:67 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:77 +msgid "Switch to Draw Tool" +msgstr "Přepnout na nástroj pro kreslení" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:75 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:69 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:71 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:81 +#: ../src/gui/editors/notation/ClefInserter.cpp:57 +#: ../src/gui/editors/notation/GuitarChordInserter.cpp:63 +#: ../src/gui/editors/notation/NotationSelector.cpp:87 +#: ../src/gui/editors/notation/NoteInserter.cpp:113 +#: ../src/gui/editors/notation/RestInserter.cpp:72 +#: ../src/gui/editors/notation/TextInserter.cpp:61 +msgid "Switch to Erase Tool" +msgstr "Přepnout na nástroj pro mazání" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:62 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:73 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:75 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:85 +msgid "Switch to Move Tool" +msgstr "Přepnout na nástroj pro přesun" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:68 +#: ../src/gui/editors/matrix/MatrixMover.cpp:81 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:79 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:93 +msgid "Switch to Resize Tool" +msgstr "Přepnout na nástroj pro změnu velikosti" + +#: ../src/gui/editors/matrix/MatrixSelector.cpp:446 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:579 +msgid "Click and drag to select; middle-click and drag to draw new note" +msgstr "" +"Klepnutím a tažením provedete výběr; klepnutím prostředním tlačítkem a " +"tažením nakreslíte novou notu" + +#: ../src/gui/editors/matrix/MatrixResizer.cpp:324 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:597 +msgid "Click and drag to resize selected notes" +msgstr "Klepnutím a tažením změníte velikost vybraných not" + +#: ../src/gui/editors/matrix/MatrixSelector.cpp:599 +msgid "Click and drag to resize note" +msgstr "Klepnutím a tažením změníte velikost noty" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:471 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:604 +msgid "Click and drag to move selected notes; hold Ctrl as well to copy" +msgstr "" +"Klepnutím a tažením přesunete vybrané noty; podržíte-li tlačítko Ctrl, " +"můžete noty také kopírovat" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:473 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:606 +msgid "Click and drag to copy selected notes" +msgstr "Klepnutím a tažením zkopírujete vybrané noty" + +#: ../src/gui/editors/matrix/MatrixSelector.cpp:610 +msgid "Click and drag to move note; hold Ctrl as well to copy" +msgstr "" +"Klepnutím a tažením přesunete notu; podržíte-li tlačítko Ctrl, můžete notu " +"také kopírovat" + +#: ../src/gui/editors/matrix/MatrixSelector.cpp:612 +msgid "Click and drag to copy note" +msgstr "Klepnutím a tažením zkopírujete notu" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:54 +#: ../src/gui/editors/matrix/MatrixMover.cpp:67 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:65 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:63 +#: ../src/gui/editors/notation/ClefInserter.cpp:53 +#: ../src/gui/editors/notation/GuitarChordInserter.cpp:59 +#: ../src/gui/editors/notation/NotationEraser.cpp:67 +#: ../src/gui/editors/notation/NoteInserter.cpp:109 +#: ../src/gui/editors/notation/RestInserter.cpp:68 +#: ../src/gui/editors/notation/TextInserter.cpp:57 +msgid "Switch to Select Tool" +msgstr "Přepnout na nástroj pro výběr" + +#: ../src/gui/editors/matrix/MatrixResizer.cpp:218 +msgid "Resize Event" +msgstr "Změnit velikost události" + +#: ../src/gui/editors/matrix/MatrixResizer.cpp:221 +msgid "Resize Events" +msgstr "Změnit velikost událostí" + +#: ../src/gui/editors/matrix/MatrixResizer.cpp:326 +msgid "Click and drag to resize a note" +msgstr "Klepnutím a tažením změníte velikost noty" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:328 +msgid "Copy and Move Event" +msgstr "Kopírovat a přesunout událost" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:330 +msgid "Copy and Move Events" +msgstr "Kopírovat a přesunout události" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:334 +msgid "Move Event" +msgstr "Přesunout událost" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:336 +msgid "Move Events" +msgstr "Přesunout události" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:465 +msgid "Click and drag to move a note; hold Ctrl as well to copy it" +msgstr "" +"Klepnutím a tažením přesunete notu; podržíte-li tlačítko Ctrl, můžete notu " +"také kopírovat" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:467 +msgid "Click and drag to copy a note" +msgstr "Klepnutím a tažením zkopírujete notu" + +#: ../src/gui/editors/matrix/MatrixPainter.cpp:361 +msgid "Click and drag to draw a note; Shift to avoid snapping to grid" +msgstr "" +"Klepnutím a tažením nakreslíte notu; tlačítkem Shift (přesmykač) se vyhnete " +"přichytávání na mřížku" + +#: ../src/gui/editors/matrix/MatrixPainter.cpp:363 +msgid "Click and drag to draw a note" +msgstr "Klepnutím a tažením nakreslíte notu" + +#: ../src/gui/editors/matrix/MatrixView.cpp:437 +#: ../src/gui/editors/matrix/MatrixView.cpp:3053 +msgid "Couldn't apply piano roll layout" +msgstr "Nebylo možné použít rozložení klavírního válce" + +#: ../src/gui/editors/matrix/MatrixView.cpp:663 +msgid "Resi&ze" +msgstr "&Změnit velikost" + +#: ../src/gui/editors/matrix/MatrixView.cpp:669 +#: ../src/gui/editors/notation/NotationView.cpp:1919 +msgid "C&hord Insert Mode" +msgstr "Režim vkládání &akordů" + +#: ../src/gui/editors/matrix/MatrixView.cpp:676 +#: ../src/gui/editors/notation/NotationView.cpp:1778 +msgid "Ste&p Recording" +msgstr "&Krokový záznam" + +#: ../src/gui/editors/matrix/MatrixView.cpp:694 +msgid "&Legato" +msgstr "&Legato" + +#: ../src/gui/editors/matrix/MatrixView.cpp:708 +msgid "Set to Current Velocity" +msgstr "Nastavit na aktuální rychlost" + +#: ../src/gui/editors/matrix/MatrixView.cpp:712 +msgid "Set Event &Velocities..." +msgstr "Nastavit &rychlosti událostí..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:716 +msgid "Trigger Se&gment..." +msgstr "&Spouštěcí segment..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:720 +msgid "Remove Triggers..." +msgstr "Odebrat spouštěcí značky..." + +#: ../src/gui/editors/eventlist/EventView.cpp:1153 +#: ../src/gui/editors/matrix/MatrixView.cpp:724 +#: ../src/gui/editors/tempo/TempoView.cpp:606 +msgid "Select &All" +msgstr "Vybrat &vše" + +#: ../src/gui/editors/matrix/MatrixView.cpp:732 +#: ../src/gui/editors/notation/NotationView.cpp:2325 +msgid "Cursor &Back" +msgstr "Kurzor &zpět" + +#: ../src/gui/editors/matrix/MatrixView.cpp:736 +#: ../src/gui/editors/notation/NotationView.cpp:2329 +msgid "Cursor &Forward" +msgstr "Kurzor &vpřed" + +#: ../src/gui/editors/matrix/MatrixView.cpp:740 +#: ../src/gui/editors/notation/NotationView.cpp:2333 +msgid "Cursor Ba&ck Bar" +msgstr "Kurzor na &předchozí taktovou čáru" + +#: ../src/gui/editors/matrix/MatrixView.cpp:744 +#: ../src/gui/editors/notation/NotationView.cpp:2337 +msgid "Cursor For&ward Bar" +msgstr "Kurzor na &následující taktovou čáru" + +#: ../src/gui/editors/matrix/MatrixView.cpp:748 +#: ../src/gui/editors/notation/NotationView.cpp:2341 +msgid "Cursor Back and Se&lect" +msgstr "Kurzor zpět a vy&brat" + +#: ../src/gui/editors/matrix/MatrixView.cpp:752 +#: ../src/gui/editors/notation/NotationView.cpp:2345 +msgid "Cursor Forward and &Select" +msgstr "Kurzor vpřed a v&ybrat" + +#: ../src/gui/editors/matrix/MatrixView.cpp:756 +#: ../src/gui/editors/notation/NotationView.cpp:2349 +msgid "Cursor Back Bar and Select" +msgstr "Kurzor na předchozí taktovou čáru a vybrat" + +#: ../src/gui/editors/matrix/MatrixView.cpp:760 +#: ../src/gui/editors/notation/NotationView.cpp:2353 +msgid "Cursor Forward Bar and Select" +msgstr "Kurzor na následující taktovou čáru a vybrat" + +#: ../src/gui/editors/matrix/MatrixView.cpp:764 +#: ../src/gui/editors/notation/NotationView.cpp:2363 +msgid "Cursor to St&art" +msgstr "Kurzor na z&ačátek" + +#: ../src/gui/editors/matrix/MatrixView.cpp:770 +#: ../src/gui/editors/notation/NotationView.cpp:2369 +msgid "Cursor to &End" +msgstr "Kurzor na &konec" + +#: ../src/gui/editors/matrix/MatrixView.cpp:776 +#: ../src/gui/editors/notation/NotationView.cpp:2391 +msgid "Cursor to &Playback Pointer" +msgstr "Kurzor na pozici &ukazatele přehrávání" + +#: ../src/gui/editors/matrix/MatrixView.cpp:820 +#: ../src/gui/editors/notation/NotationView.cpp:2435 +msgid "Playback Pointer to &Cursor" +msgstr "Ukazatel přehrávání na pozici k&urzoru" + +#: ../src/gui/editors/matrix/MatrixView.cpp:826 +#: ../src/gui/editors/notation/NotationView.cpp:2441 +msgid "&Solo" +msgstr "&Sólo" + +#: ../src/gui/editors/matrix/MatrixView.cpp:841 +#: ../src/gui/editors/notation/NotationView.cpp:2456 +msgid "Set Loop to Selection" +msgstr "Nastavit opakování výběru" + +#: ../src/gui/editors/matrix/MatrixView.cpp:845 +#: ../src/gui/editors/notation/NotationView.cpp:2460 +msgid "Clear L&oop" +msgstr "Vymazat &opakování" + +#: ../src/gui/editors/eventlist/EventView.cpp:1157 +#: ../src/gui/editors/matrix/MatrixView.cpp:849 +#: ../src/gui/editors/notation/NotationView.cpp:2464 +#: ../src/gui/editors/tempo/TempoView.cpp:610 +msgid "Clear Selection" +msgstr "Vymazat výběr" + +#: ../src/gui/editors/eventlist/EventView.cpp:1149 +#: ../src/gui/editors/matrix/MatrixView.cpp:854 +#: ../src/gui/editors/notation/NotationView.cpp:2471 +msgid "&Filter Selection" +msgstr "Výběr &filtru" + +#: ../src/gui/editors/matrix/MatrixView.cpp:879 +msgid "&No Snap" +msgstr "&Bez přichytávání" + +#: ../src/gui/editors/matrix/MatrixView.cpp:884 +msgid "Snap to Bea&t" +msgstr "Přichytávat se na &dobu" + +#: ../src/gui/editors/matrix/MatrixView.cpp:888 +msgid "Snap to &Bar" +msgstr "Přichytávat se na &taktovou čáru" + +#: ../src/gui/editors/matrix/MatrixView.cpp:908 +#, c-format +msgid "Snap to %1" +msgstr "Přichytávat se na %1" + +#: ../src/gui/editors/matrix/MatrixView.cpp:917 +msgid "Show Instrument Parameters" +msgstr "Zobrazit parametry nástroje" + +#: ../src/gui/editors/matrix/MatrixView.cpp:922 +#: ../src/gui/editors/notation/NotationView.cpp:1850 +msgid "Show Ch&ord Name Ruler" +msgstr "Zobrazit pravítko názvů &akordů" + +#: ../src/gui/editors/matrix/MatrixView.cpp:926 +#: ../src/gui/editors/notation/NotationView.cpp:1858 +msgid "Show &Tempo Ruler" +msgstr "Zobrazit pravítko &tempa" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1238 +#: ../src/gui/editors/notation/NotationView.cpp:3245 +#, c-format +msgid "" +"_n: 1 event selected \n" +" %n events selected " +msgstr "" +"_n: je vybrána 1 událost \n" +" je vybráno %n událostí(i)" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1241 +#: ../src/gui/editors/notation/NotationView.cpp:3247 +msgid " No selection " +msgstr " Žádný výběr " + +#: ../src/gui/editors/matrix/MatrixView.cpp:1348 +#: ../src/gui/editors/matrix/MatrixView.cpp:1360 +#: ../src/gui/editors/matrix/MatrixView.cpp:2079 +#: ../src/gui/editors/notation/NotationView.cpp:5869 +msgid "Quantizing..." +msgstr "Probíhá kvantizace..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:1370 +#: ../src/gui/editors/notation/NotationView.cpp:5407 +msgid "Collapsing notes..." +msgstr "Probíhá sjednocování not..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:1381 +msgid "Making legato..." +msgstr "Probíhá vytváření legata..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:1476 +msgid "Note: %1 (%2.%3s)" +msgstr "Nota: %1 (%2.%3s)" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1531 +#: ../src/gui/editors/notation/NotationView.cpp:7206 +msgid "Time: %1 (%2.%3s)" +msgstr "Čas: %1 (%2.%3s)" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1604 +#: ../src/gui/editors/notation/NotationView.cpp:4744 +#: ../src/gui/editors/notation/NotationView.cpp:4773 +msgid "Cutting selection to clipboard..." +msgstr "Probíhá vyjmutí výběru do schránky..." + +#: ../src/gui/editors/eventlist/EventView.cpp:912 +#: ../src/gui/editors/matrix/MatrixView.cpp:1636 +#: ../src/gui/editors/notation/NotationSelectionPaster.cpp:82 +msgid "Couldn't paste at this point" +msgstr "Nebylo možné provést vložení na tomto místě" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1647 +#: ../src/gui/editors/notation/NotationView.cpp:4754 +msgid "Deleting selection..." +msgstr "Probíhá odstranění výběru..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:1833 +#: ../src/gui/editors/notation/NotationView.cpp:5617 +#, c-format +msgid "Unknown note insert action %1" +msgstr "Akce vložení neznámé noty %1" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1837 +#: ../src/gui/editors/matrix/MatrixView.cpp:2857 +#: ../src/gui/editors/notation/NotationView.cpp:5621 +msgid "Inserting note" +msgstr "Probíhá vložení noty" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2091 +msgid "Unquantizing..." +msgstr "Probíhá rušení kvantizace..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:2120 +msgid " Grid: " +msgstr " Rastr: " + +#: ../src/gui/editors/matrix/MatrixView.cpp:2134 +msgid "Unit" +msgstr "Jednotka" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2136 +msgid "Beat" +msgstr "Doba" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2138 +msgid "Bar" +msgstr "Taktová čára" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2159 +msgid " Velocity: " +msgstr " Rychlost:" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2170 +msgid " Quantize: " +msgstr " Kvantizovat: " + +#: ../src/gui/editors/matrix/MatrixView.cpp:2584 +msgid "Raising velocities..." +msgstr "Probíhá zvětšování rychlostí..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:2596 +msgid "Lowering velocities..." +msgstr "Probíhá zmenšování rychlostí..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:2611 +msgid "Set Event Velocities" +msgstr "Nastavit rychlosti událostí" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2616 +msgid "Setting Velocities..." +msgstr "Probíhá nastavování rychlostí..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:2665 +msgid "Remove Triggers" +msgstr "Odebrat spouštěcí značky" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2723 +msgid "%1 - Segment Track #%2 - %3" +msgstr "%1 - Stopa segmentu #%2 - %3" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2730 +msgid "%1 - All Segments - %2" +msgstr "%1 - Všechny segmenty - %2" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2737 +msgid "" +"_n: %1 - 1 Segment - %2\n" +"%1 - %n Segments - %2" +msgstr "" +"_n: %1 - 1 Segment - %2\n" +"%1 - %n Segmenty(ů) - %2" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2885 +msgid "Can't insert note: No grid duration selected" +msgstr "Nelze vložit notu: nebyla vybrána doba trvání v rastru" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2935 +msgid " Chord " +msgstr " Akord" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:105 +msgid "Click on a note to delete it" +msgstr "Klepnutím na notu ji odstraníte" + +#: ../src/gui/editors/tempo/TempoView.cpp:89 +msgid "Filter" +msgstr "Filtr" + +#: ../src/gui/editors/eventlist/EventView.cpp:245 +#: ../src/gui/editors/tempo/TempoView.cpp:117 +msgid "Time " +msgstr "Čas " + +#: ../src/gui/editors/tempo/TempoView.cpp:118 +msgid "Type " +msgstr "Typ " + +#: ../src/gui/editors/tempo/TempoView.cpp:119 +msgid "Value " +msgstr "Hodnota " + +#: ../src/gui/editors/tempo/TempoView.cpp:120 +msgid "Properties " +msgstr "Vlastnosti " + +#: ../src/gui/editors/tempo/TempoView.cpp:208 +msgid "Common, hidden" +msgstr "Společné, skryté" + +#: ../src/gui/editors/tempo/TempoView.cpp:210 +msgid "Hidden" +msgstr "Skryté" + +#: ../src/gui/editors/tempo/TempoView.cpp:213 +msgid "Common" +msgstr "Společné" + +#: ../src/gui/editors/tempo/TempoView.cpp:220 +msgid "Time Signature " +msgstr "Taktové označení " + +#: ../src/gui/editors/tempo/TempoView.cpp:245 +msgid "%1.%2%3" +msgstr "%1.%2%3" + +#: ../src/gui/editors/tempo/TempoView.cpp:255 +msgid "%1.%2%3 qpm (%4.%5%6 bpm) " +msgstr "%1.%2%3 qpm (%4.%5%6 bpm) " + +#: ../src/gui/editors/tempo/TempoView.cpp:264 +msgid "Tempo " +msgstr "Tempo " + +#: ../src/gui/editors/tempo/TempoView.cpp:271 +msgid "" +msgstr "<žádný výsledek na této úrovni filtru>" + +#: ../src/gui/editors/tempo/TempoView.cpp:463 +msgid "Delete Tempo or Time Signature" +msgstr "Odstranit tempo nebo taktové označení" + +#: ../src/gui/editors/tempo/TempoView.cpp:602 +msgid "&Edit Item" +msgstr "&Upravit položku" + +#: ../src/gui/editors/tempo/TempoView.cpp:834 +msgid "%1 - Tempo and Time Signature Editor" +msgstr "%1 - Editor tepma a taktového označení" + +#: ../src/gui/editors/guitar/GuitarChordEditorDialog.cpp:43 +msgid "Guitar Chord Editor" +msgstr "Editor kytarových akordů" + +#: ../src/gui/editors/guitar/GuitarChordEditorDialog.cpp:51 +msgid "Start fret" +msgstr "Počáteční pražec" + +#: ../src/gui/editors/guitar/GuitarChordEditorDialog.cpp:58 +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:51 +msgid "Root" +msgstr "Základní tón" + +#: ../src/gui/editors/guitar/GuitarChordEditorDialog.cpp:62 +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:55 +msgid "Extension" +msgstr "Zvětšení" + +#: ../src/gui/editors/guitar/Fingering.cpp:118 +msgid "couldn't parse fingering '%1' in '%2'" +msgstr "nebylo možné určit prstoklad '%1' v '%2'" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:45 +msgid "Guitar Chord Selector" +msgstr "Selektor kytarových akordů" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:64 +msgid "beginner" +msgstr "začátečník" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:65 +msgid "common" +msgstr "společné" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:66 +msgid "all" +msgstr "vše" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:86 +msgid "Fingerings" +msgstr "Prstoklady" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:419 +msgid "couldn't open file '%1'" +msgstr "nebylo možné otevřít soubor '%1'" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:428 +#, c-format +msgid "couldn't parse chord dictionnary : %1" +msgstr "nebylo možné analyzovat a určit akord : %1" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:87 +#, c-format +msgid "Note Font Viewer: %1" +msgstr "Prohlížeč notového písma: %1" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:93 +msgid " Component: " +msgstr " Komponenta: " + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:101 +msgid " View: " +msgstr " Pohled: " + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:104 +msgid "Glyphs" +msgstr "Piktografy" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:105 +msgid "Codes" +msgstr "Kódy" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:107 +msgid " Page: " +msgstr " Strana: " + +#: ../src/gui/editors/notation/ClefInserter.cpp:64 +#: ../src/gui/editors/notation/GuitarChordInserter.cpp:71 +#: ../src/gui/editors/notation/RestInserter.cpp:79 +#: ../src/gui/editors/notation/TextInserter.cpp:68 +msgid "Switch to Inserting Notes" +msgstr "Přepnout na vkládání not" + +#: ../src/gui/editors/notation/NotationView.cpp:522 +msgid "Close track headers" +msgstr "Uzavřít hlavičky stop" + +#: ../src/gui/editors/notation/NotationView.cpp:917 +msgid "Preparing to print..." +msgstr "Probíhá příprava tisku..." + +#: ../src/gui/editors/notation/NotationView.cpp:1516 +msgid "Note &Font" +msgstr "Notové &písmo" + +#: ../src/gui/editors/notation/NotationView.cpp:1539 +msgid "Si&ze" +msgstr "V&elikost" + +#: ../src/gui/editors/notation/NotationView.cpp:1545 +msgid "Show Track Headers" +msgstr "Zobrazit hlavičky stop" + +#: ../src/gui/editors/notation/NotationView.cpp:1550 +msgid "S&pacing" +msgstr "&Rozestupy" + +#: ../src/gui/editors/notation/NotationView.cpp:1572 +msgid "Du&ration Factor" +msgstr "Faktor doby &trvání" + +#: ../src/gui/editors/notation/NotationView.cpp:1598 +msgid "Note &Style" +msgstr "&Styl not" + +#: ../src/gui/editors/notation/NotationView.cpp:1624 +msgid "Insert Rest" +msgstr "Vložit pomlku" + +#: ../src/gui/editors/notation/NotationView.cpp:1628 +msgid "Switch from Note to Rest" +msgstr "Přepnout z noty na pomlku" + +#: ../src/gui/editors/notation/NotationView.cpp:1633 +msgid "Switch from Rest to Note" +msgstr "Přepnout z pomlky na notu" + +#: ../src/gui/editors/notation/NotationView.cpp:1690 +msgid "No accidental" +msgstr "Žádná posuvka" + +#: ../src/gui/editors/notation/NotationView.cpp:1691 +msgid "Follow previous accidental" +msgstr "Podle předchozí posuvky" + +#: ../src/gui/editors/notation/NotationView.cpp:1692 +msgid "Sharp" +msgstr "Křížek" + +#: ../src/gui/editors/notation/NotationView.cpp:1693 +msgid "Flat" +msgstr "Béčko" + +#: ../src/gui/editors/notation/NotationView.cpp:1694 +msgid "Natural" +msgstr "Přirozené" + +#: ../src/gui/editors/notation/NotationView.cpp:1695 +msgid "Double sharp" +msgstr "Dvojitý křížek" + +#: ../src/gui/editors/notation/NotationView.cpp:1696 +msgid "Double flat" +msgstr "Dvojité béčko" + +#: ../src/gui/editors/notation/NotationView.cpp:1717 +msgid "&Treble Clef" +msgstr "&Houslový klíč" + +#: ../src/gui/editors/notation/NotationView.cpp:1724 +msgid "&Alto Clef" +msgstr "&Violový klíč" + +#: ../src/gui/editors/notation/NotationView.cpp:1731 +msgid "Te&nor Clef" +msgstr "&Tenorový klíč" + +#: ../src/gui/editors/notation/NotationView.cpp:1738 +msgid "&Bass Clef" +msgstr "&Basový klíč" + +#: ../src/gui/editors/notation/NotationView.cpp:1745 +msgid "&Text" +msgstr "&Text" + +#: ../src/gui/editors/notation/NotationView.cpp:1751 +msgid "&Guitar Chord" +msgstr "&Kytarový akord" + +#: ../src/gui/editors/notation/NotationView.cpp:1784 +msgid "Select from Sta&rt" +msgstr "Vybrat od &začátku" + +#: ../src/gui/editors/notation/NotationView.cpp:1788 +msgid "Select to &End" +msgstr "Vybrat do &konce" + +#: ../src/gui/editors/notation/NotationView.cpp:1792 +msgid "Select Whole St&aff" +msgstr "Vybrat celou &osnovu" + +#: ../src/commands/edit/CutAndCloseCommand.h:53 +#: ../src/gui/editors/notation/NotationView.cpp:1796 +msgid "C&ut and Close" +msgstr "Vyjmout a &zavřít" + +#: ../src/gui/editors/notation/NotationView.cpp:1800 +msgid "Pa&ste..." +msgstr "&Vložit..." + +#: ../src/gui/editors/notation/NotationSelector.cpp:122 +#: ../src/gui/editors/notation/NotationView.cpp:1808 +msgid "Move to Staff Above" +msgstr "Přesunout na osnovu výše" + +#: ../src/gui/editors/notation/NotationSelector.cpp:126 +#: ../src/gui/editors/notation/NotationView.cpp:1812 +msgid "Move to Staff Below" +msgstr "Přesunout na osnovu níže" + +#: ../src/gui/editors/notation/NotationView.cpp:1826 +msgid "&Linear Layout" +msgstr "&Lineární uspořádání" + +#: ../src/gui/editors/notation/NotationView.cpp:1835 +msgid "&Continuous Page Layout" +msgstr "&Nekonečná stránka" + +#: ../src/gui/editors/notation/NotationView.cpp:1844 +msgid "&Multiple Page Layout" +msgstr "&Stránkové uspořádání" + +#: ../src/gui/editors/notation/NotationView.cpp:1854 +msgid "Show Ra&w Note Ruler" +msgstr "Zobrazit pravítko z&drojových not" + +#: ../src/gui/editors/notation/NotationView.cpp:1862 +msgid "Show &Annotations" +msgstr "Zobrazit &anotace" + +#: ../src/gui/editors/notation/NotationView.cpp:1866 +msgid "Show Lily&Pond Directives" +msgstr "Zobrazit direktivy Lily&Pond" + +#: ../src/gui/editors/notation/NotationView.cpp:1870 +msgid "Open L&yric Editor" +msgstr "Otevřít editor te&xtu melodie" + +#: ../src/gui/editors/notation/NotationView.cpp:1912 +msgid "Trip&let Insert Mode" +msgstr "Režim vkládání &triol" + +#: ../src/gui/editors/notation/NotationView.cpp:1926 +msgid "Grace Insert Mode" +msgstr "Respektovat režim vkládání" + +#: ../src/gui/editors/notation/NotationView.cpp:2180 +msgid "&Dump selected events to stderr" +msgstr "&Vypsat vybrané události do stderr" + +#: ../src/gui/editors/notation/NotationView.cpp:2248 +msgid "Ma&ke Ornament..." +msgstr "&Vytvořit melodickou ozdobu..." + +#: ../src/gui/editors/notation/NotationView.cpp:2252 +msgid "Trigger &Ornament..." +msgstr "Spouštěcí melodická &ozdoba..." + +#: ../src/gui/editors/notation/NotationView.cpp:2256 +msgid "Remove Ornament..." +msgstr "Odstranit melodickou ozdobu..." + +#: ../src/gui/editors/notation/NotationView.cpp:2261 +msgid "&None" +msgstr "Žá&dná" + +#: ../src/gui/editors/notation/NotationView.cpp:2289 +msgid "Convert Notation For..." +msgstr "Konvertovat notaci pro..." + +#: ../src/gui/editors/notation/NotationView.cpp:2298 +msgid "Show &Notes Toolbar" +msgstr "Zobrazit nástrojovou lištu pro ¬y" + +#: ../src/gui/editors/notation/NotationView.cpp:2299 +msgid "Show &Rests Toolbar" +msgstr "Zobrazit nástrojovou lištu pro po&mlky" + +#: ../src/gui/editors/notation/NotationView.cpp:2300 +msgid "Show &Accidentals Toolbar" +msgstr "Zobrazit nástrojovou lištu pro &posuvky" + +#: ../src/gui/editors/notation/NotationView.cpp:2301 +msgid "Show Cle&fs Toolbar" +msgstr "Zobrazit nástrojovou lištu pro notové &klíče" + +#: ../src/gui/editors/notation/NotationView.cpp:2303 +msgid "Show &Marks Toolbar" +msgstr "Zobrazit nástrojovou lištu pro &značky" + +#: ../src/gui/editors/notation/NotationView.cpp:2305 +msgid "Show &Group Toolbar" +msgstr "Zobrazit nástrojovou lištu pro &skupiny" + +#: ../src/gui/editors/notation/NotationView.cpp:2307 +msgid "Show &Layout Toolbar" +msgstr "Zobrazit nástrojovou lištu pro &uspořádání" + +#: ../src/gui/editors/notation/NotationView.cpp:2311 +msgid "Show M&eta Toolbar" +msgstr "Zobrazit nástrojovou lištu m&eta" + +#: ../src/gui/editors/notation/NotationView.cpp:2373 +msgid "Cursor &Up Staff" +msgstr "Posunout kurzor v osnově &nahoru" + +#: ../src/gui/editors/notation/NotationView.cpp:2377 +msgid "Cursor &Down Staff" +msgstr "Posunout kurzor v osnově &dolů" + +#: ../src/gui/editors/notation/NotationView.cpp:2381 +msgid "Cursor Pre&vious Segment" +msgstr "Kurzor na &předchozí segment" + +#: ../src/gui/editors/notation/NotationView.cpp:2385 +msgid "Cursor Ne&xt Segment" +msgstr "Kurzor na &následující segment" + +#: ../src/gui/editors/notation/NotationView.cpp:2475 +msgid "Push &Left" +msgstr "Odsunout v&levo" + +#: ../src/gui/editors/notation/NotationView.cpp:2479 +msgid "Push &Right" +msgstr "Odsunout v&pravo" + +#: ../src/gui/editors/notation/NotationView.cpp:2483 +msgid "Push &Up" +msgstr "Odsunout &nahoru" + +#: ../src/gui/editors/notation/NotationView.cpp:2487 +msgid "Push &Down" +msgstr "Odsunout &dolů" + +#: ../src/gui/editors/notation/NotationView.cpp:2491 +msgid "&Restore Positions" +msgstr "&Obnovit pozice" + +#: ../src/gui/editors/notation/NotationView.cpp:2495 +msgid "Make &Invisible" +msgstr "Z&neviditelnit" + +#: ../src/gui/editors/notation/NotationView.cpp:2499 +msgid "Make &Visible" +msgstr "Z&viditelnit" + +#: ../src/gui/editors/notation/NotationView.cpp:2503 +msgid "Toggle Dot" +msgstr "Přepnout tečku" + +#: ../src/gui/editors/notation/NotationView.cpp:2507 +#: ../src/gui/editors/notation/NotationView.cpp:2511 +msgid "Add Dot" +msgstr "Přidat tečku" + +#: ../src/gui/editors/notation/NotationView.cpp:2570 +#, c-format +msgid "" +"_n: 1 pixel\n" +"%n pixels" +msgstr "" +"_n: 1 pixel\n" +"%n pixely(ů)" + +#: ../src/gui/editors/notation/NotationView.cpp:2619 +msgid " Font: " +msgstr " Písmo: " + +#: ../src/gui/editors/notation/NotationView.cpp:2647 +msgid "Unknown font \"%1\", using default" +msgstr "Písmo \"%1\" je neznámé, použije se výchozí" + +#: ../src/gui/editors/notation/NotationView.cpp:2655 +msgid " Size: " +msgstr " Velikost: " + +#: ../src/gui/editors/notation/NotationView.cpp:2677 +msgid " Spacing: " +msgstr " Rozestupy: " + +#: ../src/gui/editors/notation/NotationView.cpp:2993 +#: ../src/gui/editors/notation/NotationView.cpp:3818 +msgid " Ready." +msgstr " Připraven." + +#: ../src/gui/editors/notation/NotationView.cpp:2998 +msgid "Laying out score..." +msgstr "Probíhá uspořádání partitury..." + +#: ../src/gui/editors/notation/NotationView.cpp:3011 +msgid "Laying out staff %1..." +msgstr "Probíhá uspořádání osnovy %1..." + +#: ../src/gui/editors/notation/NotationView.cpp:3020 +msgid "Reconciling staffs..." +msgstr "Probíhá vyrovnání osnov..." + +#: ../src/gui/editors/notation/NotationView.cpp:3885 +msgid "Sizing and allocating canvas..." +msgstr "Probíhá nastavení velikosti a přidělení zobrazovací plochy..." + +#: ../src/gui/editors/notation/NotationView.cpp:4050 +msgid "note" +msgstr "nota" + +#: ../src/gui/editors/notation/NotationView.cpp:4050 +msgid "rest" +msgstr "pomlka" + +#: ../src/gui/editors/notation/NotationView.cpp:4211 +msgid "%1 - Segment Track #%2 - Notation" +msgstr "%1 - Stopa segmentu #%2 - Notový zápis" + +#: ../src/gui/editors/notation/NotationView.cpp:4217 +msgid "%1 - All Segments - Notation" +msgstr "%1 - Všechny segmenty - Notový zápis" + +#: ../src/gui/editors/notation/NotationView.cpp:4222 +msgid "" +"_n: %1 - Segment - Notation\n" +"%1 - %n Segments - Notation" +msgstr "" +"_n: %1 - Segment - Notový zápis\n" +"%1 - %n Segmenty(ů) - Notový zápis" + +#: ../src/gui/editors/notation/NotationView.cpp:4243 +msgid "Grace" +msgstr "Respektovat" + +#: ../src/gui/editors/notation/NotationView.cpp:4247 +#: ../src/gui/editors/notation/NotationView.cpp:4251 +#: ../src/gui/editors/notation/NotationView.cpp:4255 +msgid "%1 %2" +msgstr "%1 %2" + +#: ../src/gui/editors/notation/NotationView.cpp:4271 +msgid "Hidden annotations" +msgstr "Skryté anotace" + +#: ../src/gui/editors/notation/NotationView.cpp:4293 +msgid "Hidden LilyPond directives" +msgstr "Skryté direktivy aplikace LilyPond" + +#: ../src/gui/editors/notation/NotationView.cpp:4326 +#, c-format +msgid "Unknown spacing action %1" +msgstr "Akce s neznámými rozestupy - %1" + +#: ../src/gui/editors/notation/NotationView.cpp:4384 +#, c-format +msgid "Unknown proportion action %1" +msgstr "Akce s neznámými proporcemi - %1" + +#: ../src/gui/editors/notation/NotationView.cpp:4431 +#, c-format +msgid "Unknown font action %1" +msgstr "Akce s neznámým písmem - %1" + +#: ../src/gui/editors/notation/NotationView.cpp:4449 +#, c-format +msgid "Unknown font size %1" +msgstr "Neznámá velikost písma - %1" + +#: ../src/gui/editors/notation/NotationView.cpp:4453 +#, c-format +msgid "Unknown font size action %1" +msgstr "Akce s neznámou velikostí písma - %1" + +#: ../src/gui/editors/notation/NotationView.cpp:4780 +msgid "" +"The Restricted paste type requires enough empty space (containing only " +"rests) at the paste position to hold all of the events to be pasted.\n" +"Not enough space was found.\n" +"If you want to paste anyway, consider using one of the other paste types " +"from the \"Paste...\" option on the Edit menu. You can also change the " +"default paste type to something other than Restricted if you wish." +msgstr "" +"Omezený typ vkládání vyžaduje dostatek volného místa (obsahující pouze " +"pomlky) na místě vložení, aby se do něj všechny události vešly.\n" +"Nebylo nalezeno dost místa.\n" +"Chcete-li i přesto provést vložení, zvažte použití jednoho z dalších typů " +"vkládání pod možností \"Vložit\" v nabídce Upravit. Pokud chcete, můžete " +"také změnit výchozí typ vkládání na jiný než Omezený." + +#: ../src/gui/editors/notation/NotationView.cpp:4800 +msgid "Can't paste multiple Segments into one" +msgstr "Nelze vložit několik segmentů do jednoho" + +#: ../src/gui/editors/notation/NotationView.cpp:4828 +#: ../src/gui/editors/notation/NotationView.cpp:4877 +msgid "Couldn't paste at this point." +msgstr "Nebylo možné provést vložení na tomto místě." + +#: ../src/gui/editors/notation/NotationView.cpp:4896 +msgid "Move Events to Staff Above" +msgstr "Přesunout události na osnovu výše" + +#: ../src/gui/editors/notation/NotationView.cpp:4924 +msgid "Move Events to Staff Below" +msgstr "Přesunout události na osnovu níže" + +#: ../src/gui/editors/notation/NotationView.cpp:5036 +msgid "Pushing selection left..." +msgstr "Probíhá odsunutí výběru doleva..." + +#: ../src/gui/editors/notation/NotationView.cpp:5047 +msgid "Pushing selection right..." +msgstr "Probíhá odsunutí výběru doprava..." + +#: ../src/gui/editors/notation/NotationView.cpp:5058 +msgid "Pushing selection up..." +msgstr "Probíhá odsunutí výběru nahoru..." + +#: ../src/gui/editors/notation/NotationView.cpp:5069 +msgid "Pushing selection down..." +msgstr "Probíhá odsunutí výběru dolů..." + +#: ../src/gui/editors/notation/NotationView.cpp:5080 +msgid "Restoring computed positions..." +msgstr "Probíhá obnova vypočtených pozic..." + +#: ../src/gui/editors/notation/NotationView.cpp:5089 +msgid "Making visible..." +msgstr "Probíhá zviditelnění..." + +#: ../src/gui/editors/notation/NotationView.cpp:5098 +msgid "Making invisible..." +msgstr "Probíhá zneviditelnění..." + +#: ../src/gui/editors/notation/NotationView.cpp:5185 +msgid "Beaming group..." +msgstr "Probíhá spojování skupiny trámcem..." + +#: ../src/gui/editors/notation/NotationView.cpp:5195 +msgid "Auto-beaming selection..." +msgstr "Probíhá automatické spojování výběru trámcem..." + +#: ../src/gui/editors/notation/NotationView.cpp:5205 +msgid "Breaking groups..." +msgstr "Probíhá rozdělování skupin..." + +#: ../src/gui/editors/notation/NotationView.cpp:5293 +msgid "Untupleting..." +msgstr "Probíhá rušení rytmických notových skupin..." + +#: ../src/gui/editors/notation/NotationView.cpp:5301 +msgid "Adding slur..." +msgstr "Probíhá přidání legata..." + +#: ../src/gui/editors/notation/NotationView.cpp:5302 +msgid "slur" +msgstr "legato" + +#: ../src/gui/editors/notation/NotationView.cpp:5307 +msgid "Adding phrasing slur..." +msgstr "Probíhá přidání frázovacího legata..." + +#: ../src/gui/editors/notation/NotationView.cpp:5308 +msgid "phrasing slur" +msgstr "frázovací legato" + +#: ../src/gui/editors/notation/NotationView.cpp:5313 +msgid "Adding glissando..." +msgstr "Probíhá přidání glissanda..." + +#: ../src/gui/editors/notation/NotationView.cpp:5314 +msgid "glissando" +msgstr "glissando" + +#: ../src/gui/editors/notation/NotationView.cpp:5319 +msgid "Adding crescendo..." +msgstr "Probíhá přidání crescenda..." + +#: ../src/gui/editors/notation/NotationView.cpp:5320 +#: ../src/gui/editors/notation/NotationView.cpp:5326 +msgid "dynamic" +msgstr "dynamika" + +#: ../src/gui/editors/notation/NotationView.cpp:5325 +msgid "Adding decrescendo..." +msgstr "Probíhá přidání decrescenda..." + +#: ../src/gui/editors/notation/NotationView.cpp:5331 +#: ../src/gui/editors/notation/NotationView.cpp:5337 +#: ../src/gui/editors/notation/NotationView.cpp:5343 +#: ../src/gui/editors/notation/NotationView.cpp:5349 +msgid "Adding octave..." +msgstr "Probíhá přidání oktávy..." + +#: ../src/gui/editors/notation/NotationView.cpp:5332 +#: ../src/gui/editors/notation/NotationView.cpp:5338 +#: ../src/gui/editors/notation/NotationView.cpp:5344 +#: ../src/gui/editors/notation/NotationView.cpp:5350 +msgid "ottava" +msgstr "ottava" + +#: ../src/gui/editors/notation/NotationView.cpp:5366 +msgid "Can't add overlapping %1 indications" +msgstr "Nelze přidat překrývající se označení způsobu hry - %1" + +#: ../src/gui/editors/notation/NotationView.cpp:5375 +msgid "Making chord..." +msgstr "Probíhá vytváření akordu..." + +#: ../src/gui/editors/notation/NotationView.cpp:5387 +msgid "Normalizing rests..." +msgstr "Probíhá normalizace pomlk..." + +#: ../src/gui/editors/notation/NotationView.cpp:5397 +msgid "Collapsing rests..." +msgstr "Probíhá sjednocování pomlk..." + +#: ../src/gui/editors/notation/NotationView.cpp:5417 +msgid "Tying notes..." +msgstr "Probíhá svazování not ligaturou..." + +#: ../src/gui/editors/notation/NotationView.cpp:5427 +msgid "Untying notes..." +msgstr "Probíhá rušení vázání not ligaturou..." + +#: ../src/gui/editors/notation/NotationView.cpp:5437 +msgid "Making notes viable..." +msgstr "Probíhá úprava not do realizovatelné podoby..." + +#: ../src/gui/editors/notation/NotationView.cpp:5447 +msgid "Removing counterpoint..." +msgstr "Probíhá odstranění kontrapunktu..." + +#: ../src/gui/editors/notation/NotationView.cpp:5457 +msgid "Pointing stems up..." +msgstr "Probíhá otáčení nožiček nahoru..." + +#: ../src/gui/editors/notation/NotationView.cpp:5467 +msgid "Pointing stems down..." +msgstr "Probíhá otáčení nožiček dolů..." + +#: ../src/gui/editors/notation/NotationView.cpp:5478 +msgid "Restoring computed stem directions..." +msgstr "Probíhá obnovení vypočtených směrů nožiček..." + +#: ../src/gui/editors/notation/NotationView.cpp:5488 +#: ../src/gui/editors/notation/NotationView.cpp:5498 +msgid "Positioning slurs..." +msgstr "Probíhá umísťování legata..." + +#: ../src/gui/editors/notation/NotationView.cpp:5509 +msgid "Restoring slur positions..." +msgstr "Probíhá obnova pozic legata..." + +#: ../src/gui/editors/notation/NotationView.cpp:5519 +#: ../src/gui/editors/notation/NotationView.cpp:5529 +msgid "Positioning ties..." +msgstr "Probíhá umísťování ligatury..." + +#: ../src/gui/editors/notation/NotationView.cpp:5540 +msgid "Restoring tie positions..." +msgstr "Probíhá obnova pozic ligatury..." + +#: ../src/gui/editors/notation/NotationView.cpp:5550 +msgid "Fixing notation quantization..." +msgstr "Probíhá oprava kvantizace notace..." + +#: ../src/gui/editors/notation/NotationView.cpp:5560 +msgid "Removing notation quantization..." +msgstr "Probíhá odstranění kvantizace notace..." + +#: ../src/gui/editors/notation/NotationView.cpp:5577 +msgid "Changing to %1 style..." +msgstr "Probíhá změna na styl %1..." + +#: ../src/gui/editors/notation/NotationView.cpp:5585 +#, c-format +msgid "Unknown style action %1" +msgstr "Akce s neznámým stylem - %1" + +#: ../src/gui/editors/notation/NotationView.cpp:5598 +#: ../src/gui/editors/notation/NotationView.cpp:5639 +#: ../src/gui/editors/notation/NotationView.cpp:5695 +msgid "No note duration selected" +msgstr "Nebyla vybrána doba trvání noty" + +#: ../src/gui/editors/notation/NotationView.cpp:5660 +msgid "No rest duration selected" +msgstr "Nebyla vybrána doba trvání pomlky" + +#: ../src/gui/editors/notation/NotationView.cpp:5746 +msgid "No note or rest duration selected" +msgstr "Nebyla vybrána doba trvání noty nebo pomlky" + +#: ../src/gui/editors/notation/NotationView.cpp:5757 +#: ../src/gui/editors/notation/NotationView.cpp:5768 +#: ../src/gui/editors/notation/NotationView.cpp:5779 +#: ../src/gui/editors/notation/NotationView.cpp:5790 +#: ../src/gui/editors/notation/NotationView.cpp:5801 +#: ../src/gui/editors/notation/NotationView.cpp:5812 +#: ../src/gui/editors/notation/NotationView.cpp:5823 +msgid "Forcing accidentals..." +msgstr "Probíhá nucená úprava posuvek..." + +#: ../src/gui/editors/notation/NotationView.cpp:5834 +msgid "Restoring accidentals..." +msgstr "Probíhá obnovení posuvek..." + +#: ../src/gui/editors/notation/NotationView.cpp:5845 +msgid "Showing cautionary accidentals..." +msgstr "Probíhá zobrazení varovných posuvek..." + +#: ../src/gui/editors/notation/NotationView.cpp:5855 +msgid "Cancelling cautionary accidentals..." +msgstr "Probíhá rušení varovných posuvek..." + +#: ../src/gui/editors/notation/NotationView.cpp:5884 +msgid "Interpreting selection..." +msgstr "Probíhá interpretace výběru..." + +#: ../src/gui/editors/notation/NotationView.cpp:5896 +msgid "Setting note durations..." +msgstr "Probíhá nastavení dob trvání not..." + +#: ../src/gui/editors/notation/NotationView.cpp:5904 +#: ../src/gui/editors/notation/NotationView.cpp:5912 +msgid "Adding dot..." +msgstr "Probíhá přidání tečky..." + +#: ../src/gui/editors/notation/NotationView.cpp:5934 +msgid "Text: " +msgstr "Text: " + +#: ../src/gui/editors/notation/NotationView.cpp:5948 +msgid "Fingering: " +msgstr "Prstoklad: " + +#: ../src/gui/editors/notation/NotationView.cpp:6036 +msgid "Ornament track %1 bar %2" +msgstr "Melodická ozdoba - stopa %1, taktová čára %2" + +#: ../src/gui/editors/notation/NotationView.cpp:6038 +#, c-format +msgid "Ornament bar %1" +msgstr "Taktová čára melodické ozdoby %1" + +#: ../src/gui/editors/notation/NotationView.cpp:6098 +msgid "Remove Ornaments" +msgstr "Odstranit melodické ozdoby" + +#: ../src/gui/editors/notation/NotationView.cpp:6145 +msgid "Estimated key signature shown" +msgstr "Zobrazené odhadované předznamenání" + +#: ../src/gui/editors/notation/NotationStaff.cpp:1249 +#: ../src/gui/editors/notation/NotationView.cpp:6202 +msgid "Sustain" +msgstr "Držet tón" + +#: ../src/gui/editors/notation/NotationView.cpp:6218 +msgid "" +"There is no sustain controller defined for this device.\n" +"Please ensure the device is configured correctly in the Manage MIDI Devices " +"dialog in the main window." +msgstr "" +"Pro toto zařízení není definován žádný ovládací prvek pro držení tónu.\n" +"Ujistěte se, že je zařízení správně konfigurováno v dialogu Správa zařízení " +"MIDI v hlavním okně." + +#: ../src/gui/editors/notation/NotationView.cpp:7250 +msgid "Can't insert note: No note duration selected" +msgstr "Nelze vložit notu. Nebyla vybrána doba trvání noty" + +#: ../src/gui/editors/notation/NotationEraser.cpp:61 +#: ../src/gui/editors/notation/NotationSelector.cpp:83 +msgid "Switch to Insert Tool" +msgstr "Přepnout na nástroj pro vkládání" + +#: ../src/gui/editors/notation/NotePixmapFactory.cpp:2303 +#: ../src/gui/editors/notation/NotePixmapFactory.cpp:2347 +msgid "..." +msgstr "..." + +#: ../src/gui/editors/notation/NoteFontFactory.cpp:200 +msgid "Can't obtain a default font -- no fonts found" +msgstr "Nelze získat výchozí písmo - nebylo nalezeno žádné písmo" + +#: ../src/gui/editors/notation/NoteFontMap.cpp:52 +#: ../src/gui/general/PresetGroup.cpp:49 +msgid "unknown error" +msgstr "neznámá chyba" + +#: ../src/gui/editors/notation/NoteFontMap.cpp:78 +msgid "Can't open font mapping file %1 or %2" +msgstr "Nelze otevřít soubor %1 nebo %2 pro mapování písma" + +#: ../src/gui/editors/notation/NoteFontMap.cpp:82 +#, c-format +msgid "Can't open font mapping file %1" +msgstr "Nelze otevřít soubor %1 pro mapování písma" + +#: ../src/gui/editors/notation/NotationStrings.cpp:52 +msgid "%1-dotted-%2" +msgstr "%1-tečkovaná-%2" + +#: ../src/gui/editors/notation/NotationStrings.cpp:54 +msgid "%1-dotted %2" +msgstr "%1-tečkovaná %2" + +#: ../src/gui/editors/notation/NotationStrings.cpp:57 +#, c-format +msgid "dotted-%1" +msgstr "tečkovaná-%1" + +#: ../src/gui/editors/notation/NotationStrings.cpp:59 +#, c-format +msgid "dotted %1" +msgstr "tečkovaná %1" + +#: ../src/gui/editors/notation/NotationStrings.cpp:83 +msgid "sixty-fourth note" +msgstr "1/64 nota" + +#: ../src/gui/editors/notation/NotationStrings.cpp:83 +msgid "thirty-second note" +msgstr "1/32 nota" + +#: ../src/gui/editors/notation/NotationStrings.cpp:84 +msgid "sixteenth note" +msgstr "1/16 nota" + +#: ../src/gui/editors/notation/NotationStrings.cpp:84 +msgid "eighth note" +msgstr "1/8 nota" + +#: ../src/gui/editors/notation/NotationStrings.cpp:85 +msgid "quarter note" +msgstr "1/4 nota" + +#: ../src/gui/editors/notation/NotationStrings.cpp:85 +msgid "half note" +msgstr "1/2 nota" + +#: ../src/gui/editors/notation/NotationStrings.cpp:86 +msgid "whole note" +msgstr "celá nota" + +#: ../src/gui/editors/notation/NotationStrings.cpp:86 +msgid "double whole note" +msgstr "dvoucelá nota" + +#: ../src/gui/editors/notation/NotationStrings.cpp:89 +msgid "sixty-fourth notes" +msgstr "1/64 noty" + +#: ../src/gui/editors/notation/NotationStrings.cpp:89 +msgid "thirty-second notes" +msgstr "1/32 noty" + +#: ../src/gui/editors/notation/NotationStrings.cpp:90 +msgid "sixteenth notes" +msgstr "1/16 noty" + +#: ../src/gui/editors/notation/NotationStrings.cpp:90 +msgid "eighth notes" +msgstr "1/8 noty" + +#: ../src/gui/editors/notation/NotationStrings.cpp:91 +msgid "quarter notes" +msgstr "1/4 noty" + +#: ../src/gui/editors/notation/NotationStrings.cpp:91 +msgid "half notes" +msgstr "1/2 noty" + +#: ../src/gui/editors/notation/NotationStrings.cpp:92 +msgid "whole notes" +msgstr "celé noty" + +#: ../src/gui/editors/notation/NotationStrings.cpp:92 +msgid "double whole notes" +msgstr "dvoucelé noty" + +#: ../src/gui/editors/notation/NotationStrings.cpp:96 +#: ../src/gui/editors/notation/NotationStrings.cpp:154 +msgid "%1 triplets" +msgstr "%1 trioly" + +#: ../src/gui/editors/notation/NotationStrings.cpp:100 +#: ../src/gui/editors/notation/NotationStrings.cpp:158 +msgid "%1 triplet" +msgstr "%1 triola" + +#: ../src/gui/editors/notation/NotationStrings.cpp:143 +msgid "64th" +msgstr "1/64" + +#: ../src/gui/editors/notation/NotationStrings.cpp:143 +msgid "32nd" +msgstr "1/32" + +#: ../src/gui/editors/notation/NotationStrings.cpp:143 +msgid "16th" +msgstr "1/16" + +#: ../src/gui/editors/notation/NotationStrings.cpp:143 +msgid "8th" +msgstr "1/8" + +#: ../src/gui/editors/notation/NotationStrings.cpp:144 +msgid "quarter" +msgstr "1/4" + +#: ../src/gui/editors/notation/NotationStrings.cpp:144 +msgid "half" +msgstr "1/2" + +#: ../src/gui/editors/notation/NotationStrings.cpp:144 +msgid "whole" +msgstr "celá" + +#: ../src/gui/editors/notation/NotationStrings.cpp:145 +msgid "double whole" +msgstr "dvoucelá" + +#: ../src/gui/editors/notation/NotationStrings.cpp:148 +msgid "64ths" +msgstr "1/64" + +#: ../src/gui/editors/notation/NotationStrings.cpp:148 +msgid "32nds" +msgstr "1/32" + +#: ../src/gui/editors/notation/NotationStrings.cpp:148 +msgid "16ths" +msgstr "1/16" + +#: ../src/gui/editors/notation/NotationStrings.cpp:148 +msgid "8ths" +msgstr "1/8" + +#: ../src/gui/editors/notation/NotationStrings.cpp:149 +msgid "quarters" +msgstr "1/4" + +#: ../src/gui/editors/notation/NotationStrings.cpp:149 +msgid "halves" +msgstr "1/2" + +#: ../src/gui/editors/notation/NotationStrings.cpp:149 +msgid "wholes" +msgstr "celé" + +#: ../src/gui/editors/notation/NotationStrings.cpp:150 +msgid "double wholes" +msgstr "dvoucelé" + +#: ../src/gui/editors/notation/NotationStrings.cpp:278 +msgid "%1 ticks" +msgstr "%1 jednotek metronomu" + +#: ../src/gui/editors/notation/FontViewFrame.cpp:100 +#, c-format +msgid "Error: Unable to match font name %1" +msgstr "Chyba: nelze přiřadit název písma %1" + +#: ../src/gui/editors/notation/FontViewFrame.cpp:108 +msgid "Warning: No good match for font name %1 (best is %2)" +msgstr "Varování: nesprávný odpovídající název písma %1 (nejlepší by byl %2)" + +#: ../src/gui/editors/notation/FontViewFrame.cpp:116 +#, c-format +msgid "Error: Unable to open best-match font %1" +msgstr "Chyba: nelze otevřít nejlépe odpovídající písmo %1" + +#: ../src/gui/editors/notation/TrackHeader.cpp:113 +msgid "Track %1 : \"%2\"" +msgstr "Stopa %1 : \"%2\"" + +#: ../src/gui/editors/notation/TrackHeader.cpp:119 +#, c-format +msgid "" +"\n" +"Notate for: %1" +msgstr "" +"\n" +"Notace pro: %1" + +#: ../src/gui/editors/notation/TrackHeader.cpp:121 +msgid "normal" +msgstr "normální" + +#: ../src/gui/editors/notation/TrackHeader.cpp:124 +msgid "small" +msgstr "malé" + +#: ../src/gui/editors/notation/TrackHeader.cpp:127 +msgid "tiny" +msgstr "drobné" + +#: ../src/gui/editors/notation/TrackHeader.cpp:131 +msgid "--" +msgstr "--" + +#: ../src/gui/editors/notation/TrackHeader.cpp:156 +msgid "" +"\n" +"Size: %1, Bracket: %2 " +msgstr "" +"\n" +"Velikost: %1, Závorka: %2 " + +#: ../src/gui/editors/notation/TrackHeader.cpp:183 +msgid "" +"\n" +"bars [%1-%2] in %3 (tr=%4) : \"%5\"" +msgstr "" +"\n" +"taktové čáry [%1-%2] v %3 (st=%4) : \"%5\"" + +#: ../src/gui/editors/notation/TrackHeader.cpp:190 +msgid "" +"\n" +"bars [%1-%2] (tr=%3) : \"%4\"" +msgstr "" +"\n" +"taktové čáry [%1-%2] (st=%3) : \"%4\"" + +#: ../src/gui/editors/notation/TrackHeader.cpp:240 +msgid "C#" +msgstr "C#" + +#: ../src/gui/editors/notation/TrackHeader.cpp:242 +msgid "Eb" +msgstr "Eb" + +#: ../src/gui/editors/notation/TrackHeader.cpp:245 +msgid "F#" +msgstr "F#" + +#: ../src/gui/editors/notation/TrackHeader.cpp:247 +msgid "G#" +msgstr "G#" + +#: ../src/gui/editors/notation/TrackHeader.cpp:249 +msgid "Bb" +msgstr "Bb" + +#: ../src/gui/editors/notation/TrackHeader.cpp:352 +msgid "%1: %2" +msgstr "%1: %2" + +#: ../src/gui/editors/notation/TrackHeader.cpp:355 +#, c-format +msgid " in %1" +msgstr " v %1" + +#: ../src/gui/editors/notation/NotationStaff.cpp:452 +msgid "Rendering staff %1..." +msgstr "Probíhá vykreslování osnovy %1..." + +#: ../src/gui/editors/notation/NotationStaff.cpp:515 +msgid "Rendering notes on staff %1..." +msgstr "Probíhá vykreslování not na osnově %1..." + +#: ../src/gui/editors/notation/NotationStaff.cpp:583 +msgid "Positioning staff %1..." +msgstr "Probíhá umísťování osnovy %1..." + +#: ../src/gui/editors/notation/NotationSelectionPaster.cpp:85 +msgid "Ready." +msgstr "Připraven." + +#: ../src/gui/editors/notation/RestInserter.cpp:62 +msgid "Dotted rest" +msgstr "Tečkovaná pomlka" + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:57 +#, c-format +msgid "Can't open style file %1" +msgstr "Nelze otevřít soubor stylu %1" + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:92 +msgid "type is a required attribute of note" +msgstr "typ je nutně požadovaným atributem noty" + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:101 +#, c-format +msgid "Unrecognised note name %1" +msgstr "Neznámý název písma %1" + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:108 +msgid "global element must precede note elements" +msgstr "globální prvek musí předcházet notovým prvkům" + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:137 +msgid "" +"global and note elements may have shape or charname attribute, but not both" +msgstr "" +"globální a notové prvky mohou mít atributy tvaru nebo názvu znaku, ale " +"nemohou mít obojí" + +#: ../src/gui/editors/notation/NotationVLayout.cpp:493 +msgid "" +"Spanned note at %1 has no HEIGHT_ON_STAFF property!\n" +"This is a bug (the program would previously have crashed by now)" +msgstr "" +"Nota v místě %1 nemá vlastnost HEIGHT_ON_STAFF!\n" +"Jedná se o chybu programu (program již pravděpodobně v této chvíli havaroval)" + +#: ../src/gui/editors/notation/NoteInserter.cpp:82 +msgid "Auto-Beam when appropriate" +msgstr "Automatické trámce tam, kde je to vhodné" + +#: ../src/gui/editors/notation/NoteInserter.cpp:103 +msgid "Dotted note" +msgstr "Tečkovaná nota" + +#: ../src/gui/editors/notation/NoteInserter.cpp:120 +msgid "Switch to Inserting Rests" +msgstr "Přepnout na vkládání pomlk" + +#: ../src/gui/editors/notation/NotationSelector.cpp:98 +msgid "Collapse Rests" +msgstr "Sjednotit pomlky" + +#: ../src/gui/editors/notation/NotationSelector.cpp:102 +msgid "Respell as Flat" +msgstr "Provést enharmonickou záměnu s béčkem" + +#: ../src/gui/editors/notation/NotationSelector.cpp:106 +msgid "Respell as Sharp" +msgstr "Provést enharmonickou záměnu s křížkem" + +#: ../src/gui/editors/notation/NotationSelector.cpp:110 +msgid "Respell as Natural" +msgstr "Provést enharmonickou záměnu přirozeně" + +#: ../src/gui/editors/notation/NotationSelector.cpp:114 +msgid "Collapse Notes" +msgstr "Sjednotit noty" + +#: ../src/gui/editors/notation/NotationSelector.cpp:130 +msgid "Make Invisible" +msgstr "Zneviditelnit" + +#: ../src/gui/editors/notation/NotationSelector.cpp:134 +msgid "Make Visible" +msgstr "Zviditelnit" + +#: ../src/gui/editors/eventlist/EventView.cpp:129 +msgid "Event filters" +msgstr "Filtry událostí" + +#: ../src/gui/editors/eventlist/EventView.cpp:138 +msgid "Rest" +msgstr "Pomlka" + +#: ../src/gui/editors/eventlist/EventView.cpp:139 +msgid "Indication" +msgstr "Označení způsobu hry" + +#: ../src/gui/editors/eventlist/EventView.cpp:141 +msgid "Other" +msgstr "Jiné" + +#: ../src/gui/editors/eventlist/EventView.cpp:161 +msgid "Triggered Segment Properties" +msgstr "Vlastnosti spouštěného segmentu" + +#: ../src/gui/editors/eventlist/EventView.cpp:166 +msgid "Label: " +msgstr "Popisek: " + +#: ../src/gui/editors/eventlist/EventView.cpp:176 +msgid "Base pitch: " +msgstr "Základní výška tónu: " + +#: ../src/gui/editors/eventlist/EventView.cpp:183 +msgid "Base velocity: " +msgstr "Základní rychlost: " + +#: ../src/gui/editors/eventlist/EventView.cpp:246 +msgid "Duration " +msgstr "Doba trvání " + +#: ../src/gui/editors/eventlist/EventView.cpp:247 +msgid "Event Type " +msgstr "Typ události " + +#: ../src/gui/editors/eventlist/EventView.cpp:248 +msgid "Pitch " +msgstr "Výška tónu " + +#: ../src/gui/editors/eventlist/EventView.cpp:249 +msgid "Velocity " +msgstr "Rychlost " + +#: ../src/gui/editors/eventlist/EventView.cpp:250 +msgid "Type (Data1) " +msgstr "Typ (data1) " + +#: ../src/gui/editors/eventlist/EventView.cpp:251 +msgid "Value (Data2) " +msgstr "Hodnota (data2) " + +#: ../src/gui/editors/eventlist/EventView.cpp:461 +msgid "(group %1) " +msgstr "(skupina %1) " + +#: ../src/gui/editors/eventlist/EventView.cpp:519 +msgid "" +msgstr "<žádné události na této úrovni filtru>" + +#: ../src/gui/editors/eventlist/EventView.cpp:521 +msgid "" +msgstr "<žádné události>" + +#: ../src/gui/editors/eventlist/EventView.cpp:696 +msgid "Segment label" +msgstr "Popisek segmentu" + +#: ../src/gui/editors/eventlist/EventView.cpp:696 +msgid "Label:" +msgstr "Popisek:" + +#: ../src/gui/editors/eventlist/EventView.cpp:1123 +msgid "&Insert Event" +msgstr "&Vložit událost" + +#: ../src/gui/editors/eventlist/EventView.cpp:1130 +msgid "&Delete Event" +msgstr "&Odstranit událost" + +#: ../src/gui/editors/eventlist/EventView.cpp:1137 +msgid "&Edit Event" +msgstr "&Upravit událost" + +#: ../src/gui/editors/eventlist/EventView.cpp:1144 +msgid "&Advanced Event Editor" +msgstr "&Rozšířené úpravy události" + +#: ../src/gui/editors/eventlist/EventView.cpp:1518 +msgid "Open in Event Editor" +msgstr "Otevřít v editoru událostí" + +#: ../src/gui/editors/eventlist/EventView.cpp:1519 +msgid "Open in Expert Event Editor" +msgstr "Otevřít v expertním režimu editoru událostí" + +#: ../src/gui/editors/eventlist/EventView.cpp:1577 +msgid "%1 - Triggered Segment: %2" +msgstr "%1 - Spouštěný segment: %2" + +#: ../src/gui/editors/eventlist/EventView.cpp:1592 +msgid "%1 - Segment Track #%2 - Event List" +msgstr "%1 - Stopa segmentu #%2 - Seznam událostí" + +#: ../src/gui/editors/eventlist/EventView.cpp:1598 +msgid "%1 - %2 Segments - Event List" +msgstr "%1 - %2 Segmenty - Seznam událostí" + +#: ../src/gui/rulers/TempoRuler.cpp:131 +msgid "Insert Tempo Change at Playback Position" +msgstr "Vložit změnu tempa na pozici přehrávání" + +#: ../src/gui/rulers/TempoRuler.cpp:136 +msgid "Delete Tempo Change" +msgstr "Odstranit změnu tempa" + +#: ../src/gui/rulers/TempoRuler.cpp:140 +msgid "Ramp Tempo to Next Tempo" +msgstr "Přejít z dosavadního na následující tempo" + +#: ../src/gui/rulers/TempoRuler.cpp:144 +msgid "Un-Ramp Tempo" +msgstr "Zrušit změnu tempa" + +#: ../src/gui/rulers/TempoRuler.cpp:149 +msgid "Edit Tempo..." +msgstr "Upravit tempo..." + +#: ../src/gui/rulers/TempoRuler.cpp:153 +msgid "Edit Time Signature..." +msgstr "Upravit taktové označení..." + +#: ../src/gui/rulers/TempoRuler.cpp:588 +msgid "%1.%2%3 (%4.%5%6 bpm)" +msgstr "%1.%2%3 (%4.%5%6 bpm)" + +#: ../src/gui/rulers/TempoRuler.cpp:596 +msgid "%1.%2%3 bpm" +msgstr "%1.%2%3 bpm" + +#: ../src/gui/rulers/TempoRuler.cpp:604 +msgid "%1 - %2.%3%4" +msgstr "%1 - %2.%3%4" + +#: ../src/gui/rulers/ControlRulerEventInsertCommand.cpp:36 +msgid "Insert Controller Event" +msgstr "Vložit událost prvku ovládání" + +#: ../src/gui/rulers/ControlChangeCommand.cpp:35 +msgid "Control Change" +msgstr "Změna ovládání" + +#: ../src/gui/rulers/PropertyViewRuler.cpp:72 +msgid "%1 controller" +msgstr "Ovládací prvek %1" + +#: ../src/gui/rulers/RawNoteRuler.cpp:453 +msgid "Track #%1, Segment \"%2\" (runtime id %3)" +msgstr "Stopa #%1, segment \"%2\" (runtime id %3)" + +#: ../src/gui/rulers/MarkerRuler.cpp:100 +msgid "Insert Marker" +msgstr "Vložit záložku" + +#: ../src/gui/rulers/MarkerRuler.cpp:104 +msgid "Insert Marker at Playback Position" +msgstr "Vložit záložku na pozici přehrávání" + +#: ../src/gui/rulers/MarkerRuler.cpp:109 +msgid "Delete Marker" +msgstr "Odstranit záložku" + +#: ../src/gui/rulers/MarkerRuler.cpp:114 +msgid "Edit Marker..." +msgstr "Upravit záložku..." + +#: ../src/gui/rulers/MarkerRuler.cpp:119 +msgid "" +"Click on a marker to move the playback pointer.\n" +"Shift-click to set a range between markers.\n" +"Double-click to open the marker editor." +msgstr "" +"Klepnutím na záložku posunete ukazatel přehrávání.\n" +"Shift + klepnutí nastaví rozsah mezi záložkami.\n" +"Poklepáním otevřete editor záložek." + +#: ../src/gui/rulers/ChordNameRuler.cpp:97 +msgid "" +"Chord name ruler.\n" +"Turn it on and off from the Settings->Rulers menu." +msgstr "" +"Pravítko názvů akordů.\n" +"Zapíná se a vypíná se v nabídce Nastavení->Pravítka." + +#: ../src/gui/rulers/ControlRulerEventEraseCommand.cpp:37 +msgid "Erase Controller Event(s)" +msgstr "Vymazat událost(i) ovládacího prvku" + +#: ../src/gui/general/EditView.cpp:901 +#: ../src/gui/rulers/ControllerEventsRuler.cpp:188 +msgid "Unsupported Event Type" +msgstr "Nepodporovaný typ události" + +#: ../src/gui/rulers/ControllerEventsRuler.cpp:203 +msgid "Controller Events" +msgstr "Události ovládacího prvku" + +#: ../src/gui/rulers/ControllerEventsRuler.cpp:278 +msgid "Controller Event Number" +msgstr "Číslo události ovládacího prvku" + +#: ../src/gui/rulers/ControllerEventsRuler.cpp:471 +msgid "Add line of controllers" +msgstr "Přidat řadu ovládacích prvků" + +#: ../src/gui/rulers/LoopRuler.cpp:89 +msgid "" +"Click and drag to move the playback pointer.\n" +"Shift-click and drag to set a range for looping or editing.\n" +"Shift-click to clear the loop or range.\n" +"Double-click to start playback." +msgstr "" +"Klepnutím a tažením posunete ukazatel přehrávání.\n" +"Shift + klepnutí a tažení nastaví úsek k opakování nebo k úpravám.\n" +"Shift + klepnutí zruší nastavené opakování nebo úsek.\n" +"Poklepání spustí přehrávání." + +#: ../src/gui/general/EditViewBase.cpp:228 +msgid "Set Segment Start Time..." +msgstr "Nastavit počáteční čas segmentu..." + +#: ../src/gui/general/EditViewBase.cpp:232 +msgid "Set Segment Duration..." +msgstr "Nastavit dobu trvání segmentu..." + +#: ../src/gui/general/PresetHandlerDialog.cpp:56 +msgid "Load track parameters preset" +msgstr "Načíst přednastavené parametry stopy" + +#: ../src/gui/general/PresetHandlerDialog.cpp:62 +msgid "Convert notation for..." +msgstr "Konvertovat notaci pro..." + +#: ../src/gui/general/PresetHandlerDialog.cpp:86 +msgid "Select preset track parameters for:" +msgstr "Vybrat přednastavené parametry stopy pro:" + +#: ../src/gui/general/PresetHandlerDialog.cpp:87 +msgid "Create appropriate notation for:" +msgstr "Vytvořit odpovídající notaci pro:" + +#: ../src/gui/general/PresetHandlerDialog.cpp:89 +msgid "Category" +msgstr "Kategorie" + +#: ../src/gui/general/PresetHandlerDialog.cpp:95 +msgid "Player Ability" +msgstr "Pokročilost hráče" + +#: ../src/gui/general/PresetHandlerDialog.cpp:97 +msgid "Amateur" +msgstr "Amatér" + +#: ../src/gui/general/PresetHandlerDialog.cpp:98 +msgid "Professional" +msgstr "Profesionál" + +#: ../src/gui/general/PresetHandlerDialog.cpp:104 +msgid "Only selected segments" +msgstr "Pouze vybrané segmenty" + +#: ../src/gui/general/PresetHandlerDialog.cpp:106 +msgid "All segments in this track" +msgstr "Všechny segmenty v této stopě" + +#: ../src/gui/general/PresetHandlerDialog.cpp:111 +msgid "Only for new segments" +msgstr "Pouze pro nové segmenty" + +#: ../src/gui/general/PresetHandlerDialog.cpp:113 +msgid "Convert existing segments" +msgstr "Konvertovat existující segmenty" + +#: ../src/gui/general/MidiPitchLabel.cpp:39 +#, c-format +msgid "C%1" +msgstr "C%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:39 +#, c-format +msgid "C#%1" +msgstr "C#%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:39 +#, c-format +msgid "D%1" +msgstr "D%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:39 +#, c-format +msgid "D#%1" +msgstr "D#%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:40 +#, c-format +msgid "E%1" +msgstr "E%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:40 +#, c-format +msgid "F%1" +msgstr "F%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:40 +#, c-format +msgid "F#%1" +msgstr "F#%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:40 +#, c-format +msgid "G%1" +msgstr "G%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:41 +#, c-format +msgid "G#%1" +msgstr "G#%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:41 +#, c-format +msgid "A%1" +msgstr "A%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:41 +#, c-format +msgid "A#%1" +msgstr "A#%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:41 +#, c-format +msgid "B%1" +msgstr "H%1" + +#: ../src/gui/general/PresetGroup.cpp:95 +#, c-format +msgid "Can't open preset file %1" +msgstr "Nelze otevřít soubor přednastavení %1" + +#: ../src/gui/general/EditView.cpp:744 +msgid "&Halve Durations" +msgstr "&Poloviční doby trvání" + +#: ../src/gui/general/EditView.cpp:748 +msgid "&Double Durations" +msgstr "&Dvojité doby trvání" + +#: ../src/gui/general/EditView.cpp:806 +msgid "Show Velocity Property Ruler" +msgstr "Zobrazit pravítko vlastnosti rychlosti" + +#: ../src/gui/general/EditView.cpp:825 +msgid "Insert item" +msgstr "Vložit položku" + +#: ../src/gui/general/EditView.cpp:831 +msgid "Erase selected items" +msgstr "Vymazat vybrané položky" + +#: ../src/gui/general/EditView.cpp:835 +msgid "Clear ruler" +msgstr "Vymazat pravítko" + +#: ../src/gui/general/EditView.cpp:839 +msgid "Insert line of controllers" +msgstr "Vložit řadu ovládacích prvků" + +#: ../src/gui/general/EditView.cpp:843 +msgid "Flip forward" +msgstr "Listovat vpřed" + +#: ../src/gui/general/EditView.cpp:847 +msgid "Flip backwards" +msgstr "Listovat vzad" + +#: ../src/gui/general/EditView.cpp:851 +msgid "Draw property line" +msgstr "Nakreslit řádek vlastnosti" + +#: ../src/gui/general/EditView.cpp:855 +msgid "Select all property values" +msgstr "Vybrat všechny hodnoty vlastnosti" + +#: ../src/gui/general/EditView.cpp:894 +msgid "%1 Controller %2 %3" +msgstr "%1 Ovládací prvek %2 %3" + +#: ../src/gui/general/EditView.cpp:1066 +msgid "I" +msgstr "I" + +#: ../src/gui/general/EditView.cpp:1066 +msgid "II" +msgstr "II" + +#: ../src/gui/general/EditView.cpp:1066 +msgid "III" +msgstr "III" + +#: ../src/gui/general/EditView.cpp:1066 +msgid "IV" +msgstr "IV" + +#: ../src/gui/general/EditView.cpp:1067 +msgid "V" +msgstr "V" + +#: ../src/gui/general/EditView.cpp:1067 +msgid "VI" +msgstr "VI" + +#: ../src/gui/general/EditView.cpp:1067 +msgid "VII" +msgstr "VII" + +#: ../src/gui/general/EditView.cpp:1067 +msgid "VIII" +msgstr "VIII" + +#: ../src/gui/general/EditView.cpp:1069 +msgid "%1 flat" +msgstr "%1 béčko" + +#: ../src/gui/general/EditView.cpp:1070 +msgid "%1 sharp" +msgstr "%1 křížek" + +#: ../src/gui/general/EditView.cpp:1085 +msgid "&Insert Note" +msgstr "&Vložit notu" + +#: ../src/gui/general/EditView.cpp:1091 +msgid "&Upper Octave" +msgstr "&Vyšší oktáva" + +#: ../src/gui/general/EditView.cpp:1096 +msgid "&Lower Octave" +msgstr "&Nižší oktáva" + +#: ../src/gui/general/EditView.cpp:1268 +msgid "Estimated time signature shown" +msgstr "Zobrazené odhadované označení taktu" + +#: ../src/gui/general/EditView.cpp:1431 +msgid "Halving durations..." +msgstr "Probíhá půlení dob trvání..." + +#: ../src/gui/general/EditView.cpp:1445 +msgid "Doubling durations..." +msgstr "Probíhá násobení dob trvání dvěma..." + +#: ../src/gui/general/EditView.cpp:1469 +msgid "Rescaling..." +msgstr "Probíhá změna délky..." + +#: ../src/gui/general/EditView.cpp:1489 +msgid "By number of semitones: " +msgstr "Zadejte o kolik půltónů:" + +#: ../src/gui/general/EditView.cpp:1496 ../src/gui/general/EditView.cpp:1518 +msgid "Transposing..." +msgstr "Probíhá transpozice..." + +#: ../src/gui/general/EditView.cpp:1536 +msgid "Transposing up one semitone..." +msgstr "Probíhá transpozice o půl tónu výš..." + +#: ../src/gui/general/EditView.cpp:1545 +msgid "Transposing up one octave..." +msgstr "Probíhá transpozice o oktávu výš..." + +#: ../src/gui/general/EditView.cpp:1554 +msgid "Transposing down one semitone..." +msgstr "Probíhá transpozice o půl tónu níž..." + +#: ../src/gui/general/EditView.cpp:1563 +msgid "Transposing down one octave..." +msgstr "Probíhá transpozice o oktávu níž..." + +#: ../src/gui/general/EditView.cpp:1575 +msgid "Inverting..." +msgstr "Probíhá invertování..." + +#: ../src/gui/general/EditView.cpp:1587 +msgid "Retrograding..." +msgstr "Probíhá návrat zpět..." + +#: ../src/gui/general/EditView.cpp:1599 +msgid "Retrograde inverting..." +msgstr "Probíhá zpětné invertování..." + +#: ../src/gui/general/EditView.cpp:1608 +msgid "Jogging left..." +msgstr "Probíhá krokový posun vlevo..." + +#: ../src/gui/general/EditView.cpp:1623 +msgid "Jogging right..." +msgstr "Probíhá krokový posun vpravo..." + +#: ../src/sound/AudioFileManager.cpp:660 +#, c-format +msgid "Downloading file %1" +msgstr "Probíhá stahování souboru %1" + +#: ../src/sound/AudioFileManager.cpp:735 +msgid "Converting audio file..." +msgstr "Probíhá konverze zvukového souboru..." + +#: ../src/sound/AudioFileManager.cpp:737 +msgid "Resampling audio file..." +msgstr "Probíhá převzorkování zvukového souboru..." + +#: ../src/sound/AudioFileManager.cpp:739 +msgid "Converting and resampling audio file..." +msgstr "Probíhá konverze a převzorkování zvukového souboru..." + +#: ../src/sound/AudioFileManager.cpp:741 +msgid "Importing audio file..." +msgstr "Probíhá import zvukového souboru..." + +#: ../src/sound/AudioFileManager.cpp:794 +msgid "Failed to convert or resample audio file on import" +msgstr "Nepodařilo se konvertovat nebo převzorkovat zvukový soubor při importu" + +#: ../src/sequencer/main.cpp:46 ../src/sequencer/main.cpp:86 +msgid "RosegardenSequencer" +msgstr "Sekvencer Rosegarden" + +#: ../src/sequencer/main.cpp:54 +msgid "JACK playback and capture ports" +msgstr "Porty přehrávání a zachytávání serveru JACK" + +#: ../src/commands/segment/SegmentSyncCommand.cpp:38 +#: ../src/commands/segment/SegmentSyncCommand.cpp:44 +#: ../src/commands/segment/SegmentSyncCommand.cpp:55 +#: ../src/commands/segment/SegmentSyncCommand.cpp:63 +msgid "Sync segment parameters" +msgstr "Synchronizovat parametry segmentu" + +#: ../src/commands/segment/RenameTrackCommand.h:52 +msgid "Rename Track" +msgstr "Přejmenovat stopu" + +#: ../src/commands/segment/SegmentRepeatToCopyCommand.cpp:39 +msgid "Turn Repeats into Copies" +msgstr "Převést opakování na kopie" + +#: ../src/commands/segment/SegmentTransposeCommand.cpp:36 +#: ../src/commands/segment/SegmentTransposeCommand.cpp:42 +msgid "Change segment transposition" +msgstr "Změnit transpozici segmentu" + +#: ../src/commands/edit/RescaleCommand.h:50 +#: ../src/commands/segment/AudioSegmentRescaleCommand.h:62 +#: ../src/commands/segment/SegmentRescaleCommand.h:58 +msgid "Stretch or S&quash..." +msgstr "Prodloužit nebo &zkrátit..." + +#: ../src/commands/segment/SegmentLabelCommand.h:52 +msgid "Re&label..." +msgstr "Změnit &popisek..." + +#: ../src/commands/segment/AudioSegmentResizeFromStartCommand.cpp:39 +#: ../src/commands/segment/SegmentResizeFromStartCommand.cpp:39 +msgid "Resize Segment" +msgstr "Změnit velikost segmentu" + +#: ../src/commands/segment/RemoveTempoChangeCommand.h:58 +msgid "Remove &Tempo Change..." +msgstr "Odstranit změnu &tempa..." + +#: ../src/commands/segment/SegmentEraseCommand.cpp:40 +#: ../src/commands/segment/SegmentEraseCommand.cpp:52 +msgid "Erase Segment" +msgstr "Vymazat segment" + +#: ../src/commands/segment/AudioSegmentRescaleCommand.cpp:126 +#: ../src/commands/segment/SegmentRescaleCommand.cpp:102 +msgid "(rescaled)" +msgstr "(změněna délka)" + +#: ../src/commands/segment/AudioSegmentRescaleCommand.cpp:127 +#: ../src/commands/segment/SegmentRescaleCommand.cpp:105 +msgid "%1 (rescaled)" +msgstr "%1 (změněna délka)" + +#: ../src/commands/segment/PasteToTriggerSegmentCommand.cpp:47 +msgid "Paste as New Triggered Segment" +msgstr "Vložit jako nový spouštěný segment" + +#: ../src/commands/segment/SegmentColourMapCommand.h:52 +msgid "Change Segment Color Map..." +msgstr "Změnit barevnou mapu segmentu..." + +#: ../src/commands/segment/SegmentQuickCopyCommand.h:55 +msgid "Quick-Copy Segment" +msgstr "Rychlé kopírování segmentu" + +#: ../src/commands/segment/AudioSegmentSplitCommand.cpp:42 +msgid "Split Audio Segment" +msgstr "Rozdělit zvukový segment" + +#: ../src/commands/segment/AudioSegmentSplitCommand.cpp:103 +#: ../src/commands/segment/SegmentSplitCommand.cpp:135 +msgid " (split)" +msgstr " (rozděleno)" + +#: ../src/commands/segment/AudioSegmentSplitCommand.cpp:104 +#: ../src/commands/segment/SegmentSplitByRecordingSrcCommand.cpp:120 +#: ../src/commands/segment/SegmentSplitByRecordingSrcCommand.cpp:122 +#: ../src/commands/segment/SegmentSplitCommand.cpp:136 +msgid "%1 (split)" +msgstr "%1 (rozděleno)" + +#: ../src/commands/segment/SegmentLabelCommand.cpp:40 +msgid "Label Segments" +msgstr "Označit segmenty popisky" + +#: ../src/commands/segment/OpenOrCloseRangeCommand.cpp:43 +msgid "Open or Close Range" +msgstr "Otevřít nebo zavřít úsek" + +#: ../src/commands/edit/TransposeCommand.h:55 +#: ../src/commands/segment/SegmentTransposeCommand.h:54 +msgid "Transpose by &Interval..." +msgstr "Transponovat o &interval..." + +#: ../src/commands/segment/SegmentAutoSplitCommand.cpp:148 +msgid "%1 (part)" +msgstr "%1 (část)" + +#: ../src/commands/segment/AudioSegmentInsertCommand.cpp:51 +#: ../src/commands/segment/SegmentInsertCommand.cpp:43 +#: ../src/commands/segment/SegmentInsertCommand.cpp:56 +msgid "Create Segment" +msgstr "Vytvořit segment" + +#: ../src/commands/segment/AudioSegmentInsertCommand.cpp:114 +msgid "%1 (inserted)" +msgstr "%1 (vloženo)" + +#: ../src/commands/segment/AudioSegmentInsertCommand.cpp:117 +msgid "unknown audio file" +msgstr "neznámý zvukový soubor" + +#: ../src/commands/segment/CreateTempoMapFromSegmentCommand.cpp:40 +msgid "Set Tempos from Beat Segment" +msgstr "Nastavit tempa ze segmentu doby" + +#: ../src/commands/segment/SegmentSplitByRecordingSrcCommand.h:52 +msgid "Split by &Recording Source..." +msgstr "Rozdělit podle záznamového zd&roje..." + +#: ../src/commands/segment/SegmentColourMapCommand.cpp:40 +msgid "Change Segment Color Map" +msgstr "Změnit barevnou mapu segmentu" + +#: ../src/commands/edit/CopyCommand.cpp:64 +#: ../src/commands/segment/SegmentQuickCopyCommand.cpp:57 +msgid "%1 (copied)" +msgstr "%1 (zkopírováno)" + +#: ../src/commands/segment/SegmentColourCommand.h:52 +msgid "Change Segment Color..." +msgstr "Změnit barvu segmentu..." + +#: ../src/commands/segment/SegmentSplitByPitchCommand.cpp:170 +msgid "%1 (upper)" +msgstr "%1 (horní)" + +#: ../src/commands/segment/SegmentSplitByPitchCommand.cpp:172 +msgid "%1 (lower)" +msgstr "%1 (spodní)" + +#: ../src/commands/segment/SegmentSingleRepeatToCopyCommand.cpp:39 +msgid "Turn Single Repeat into Copy" +msgstr "Převést jeden úsek opakování na kopii" + +#: ../src/commands/segment/AddTempoChangeCommand.h:58 +msgid "Add Te&mpo Change..." +msgstr "Přidat změnu te&mpa..." + +#: ../src/commands/segment/AudioSegmentAutoSplitCommand.h:57 +#: ../src/commands/segment/SegmentAutoSplitCommand.h:53 +msgid "&Split on Silence" +msgstr "&Rozdělit v pauzách" + +#: ../src/commands/segment/SetTriggerSegmentBaseVelocityCommand.cpp:39 +msgid "Set Base Velocity" +msgstr "Nastavit základní rychlost" + +#: ../src/commands/segment/DeleteRangeCommand.cpp:43 +#: ../src/commands/segment/EraseSegmentsStartingInRangeCommand.cpp:39 +msgid "Delete Range" +msgstr "Odstranit úsek" + +#: ../src/commands/segment/ChangeCompositionLengthCommand.h:53 +msgid "Change &Composition Start and End..." +msgstr "Změnit začátek a konec &skladby..." + +#: ../src/commands/segment/MoveTracksCommand.h:51 +msgid "Move Tracks..." +msgstr "Přesunout stopy..." + +#: ../src/commands/segment/SegmentColourCommand.cpp:39 +msgid "Change Segment Color" +msgstr "Změnit barvu segmentu" + +#: ../src/commands/segment/AudioSegmentDistributeCommand.h:66 +msgid "Distribute Audio Segments over MIDI" +msgstr "Distribuovat zvukové segmenty prostřednictvím MIDI" + +#: ../src/commands/segment/AudioSegmentAutoSplitCommand.cpp:147 +msgid "%1 (autosplit %2)" +msgstr "%1 (automatické rozdělení %2)" + +#: ../src/commands/segment/SetTriggerSegmentDefaultRetuneCommand.cpp:39 +msgid "Set Default Retune" +msgstr "Nastavit výchozí přeladění" + +#: ../src/commands/segment/AddTimeSignatureCommand.h:52 +msgid "Add Time Si&gnature Change..." +msgstr "Přidat změnu &taktového označení..." + +#: ../src/commands/segment/AddTriggerSegmentCommand.cpp:42 +msgid "Add Triggered Segment" +msgstr "Přidat spouštěný segment" + +#: ../src/commands/segment/SetTriggerSegmentDefaultTimeAdjustCommand.cpp:39 +msgid "Set Default Time Adjust" +msgstr "Nastavit výchozí korekci času" + +#: ../src/commands/segment/RemoveTimeSignatureCommand.h:58 +msgid "Remove &Time Signature Change..." +msgstr "Odstranit změnu ta&ktového označení..." + +#: ../src/commands/segment/SegmentCommandRepeat.cpp:39 +msgid "Repeat Segments" +msgstr "Opakovat segmenty" + +#: ../src/commands/segment/AddTracksCommand.h:55 +msgid "Add Tracks..." +msgstr "Přidat stopy..." + +#: ../src/commands/segment/ModifyDefaultTempoCommand.h:51 +msgid "Modify &Default Tempo..." +msgstr "Upravit &výchozí tempo..." + +#: ../src/commands/segment/SegmentSplitByPitchCommand.h:61 +msgid "Split by &Pitch..." +msgstr "Rozdělit podle &výšky tónu..." + +#: ../src/commands/segment/DeleteTriggerSegmentCommand.cpp:40 +msgid "Delete Triggered Segment" +msgstr "Odstranit spouštěný segment" + +#: ../src/commands/segment/SegmentSplitCommand.cpp:42 +msgid "Split Segment" +msgstr "Rozdělit segment" + +#: ../src/commands/segment/DeleteTracksCommand.h:51 +msgid "Delete Tracks..." +msgstr "Odstranit stopy..." + +#: ../src/commands/segment/InsertRangeCommand.cpp:42 +msgid "Insert Range" +msgstr "Vložit úsek" + +#: ../src/commands/segment/DeleteRangeCommand.h:62 +msgid "Rejoin Command" +msgstr "Příkaz k opětovnému spojení" + +#: ../src/commands/segment/SetTriggerSegmentBasePitchCommand.cpp:39 +msgid "Set Base Pitch" +msgstr "Nastavit základní výšku tónu" + +#: ../src/commands/segment/PasteConductorDataCommand.cpp:41 +msgid "Paste Tempos and Time Signatures" +msgstr "Vložit tempa a taktová označení" + +#: ../src/commands/segment/SegmentSyncClefCommand.cpp:34 +msgid "Sync segment clef" +msgstr "Synchronizovat klíč segmentu" + +#: ../src/commands/matrix/MatrixInsertionCommand.cpp:46 +#: ../src/commands/notation/NoteInsertionCommand.cpp:54 +msgid "Insert Note" +msgstr "Vložit notu" + +#: ../src/commands/matrix/MatrixEraseCommand.cpp:41 +msgid "Erase Note" +msgstr "Vymazat notu" + +#: ../src/commands/matrix/MatrixPercussionInsertionCommand.cpp:47 +msgid "Insert Percussion Note" +msgstr "Vložit notu pro bicí" + +#: ../src/commands/matrix/MatrixModifyCommand.cpp:43 +msgid "Move Note" +msgstr "Přesunout notu" + +#: ../src/commands/matrix/MatrixModifyCommand.cpp:43 +msgid "Modify Note" +msgstr "Upravit notu" + +#: ../src/commands/edit/PasteEventsCommand.cpp:98 +msgid "Paste into an existing gap [\"restricted\"]" +msgstr "Vložit do existující mezery [\"omezeno\"]" + +#: ../src/commands/edit/PasteEventsCommand.cpp:100 +msgid "Erase existing events to make room [\"simple\"]" +msgstr "Vymazat existující události a uvolnit tak místo [\"jednoduché\"]" + +#: ../src/commands/edit/PasteEventsCommand.cpp:102 +msgid "Move existing events out of the way [\"open-n-paste\"]" +msgstr "Odsunout existující události [\"otevřít a vložit\"]" + +#: ../src/commands/edit/PasteEventsCommand.cpp:104 +msgid "Overlay notes, tying against present notes [\"note-overlay\"]" +msgstr "Překrýt noty a svázat s existujícími notami [\"notové překrytí\"]" + +#: ../src/commands/edit/PasteEventsCommand.cpp:106 +msgid "Overlay notes, ignoring present notes [\"matrix-overlay\"]" +msgstr "Překrýt noty a ignorovat existující noty [\"maticové překrytí\"]" + +#: ../src/commands/edit/AddDotCommand.h:52 +msgid "&Add Dot" +msgstr "&Přidat tečku" + +#: ../src/commands/edit/RemoveMarkerCommand.h:55 +msgid "&Remove Marker" +msgstr "&Odstranit záložku" + +#: ../src/commands/edit/EventUnquantizeCommand.cpp:43 +#: ../src/commands/edit/EventUnquantizeCommand.cpp:54 +msgid "Unquantize Events" +msgstr "Zrušit kvantizaci událostí" + +#: ../src/commands/edit/ChangeVelocityCommand.h:53 +msgid "&Increase Velocity" +msgstr "Z&většit rychlost" + +#: ../src/commands/edit/ChangeVelocityCommand.h:54 +msgid "&Reduce Velocity" +msgstr "Z&menšit rychlost" + +#: ../src/commands/edit/CopyCommand.cpp:46 +msgid "(excerpt)" +msgstr "(výňatek)" + +#: ../src/commands/edit/CopyCommand.cpp:60 +msgid "(copied)" +msgstr "(zkopírováno)" + +#: ../src/commands/edit/EventInsertionCommand.cpp:39 +msgid "Insert Event" +msgstr "Vložit událost" + +#: ../src/commands/edit/InsertTriggerNoteCommand.cpp:55 +msgid "Insert Trigger Note" +msgstr "Vložit spouštěcí notu" + +#: ../src/commands/edit/CollapseNotesCommand.h:50 +msgid "Collapse &Equal-Pitch Notes" +msgstr "Sjednotit noty st&ejné tónové výšky" + +#: ../src/commands/edit/TransposeCommand.h:61 +msgid "&Up a Semitone" +msgstr "O půl tónu &výš" + +#: ../src/commands/edit/TransposeCommand.h:62 +msgid "&Down a Semitone" +msgstr "O půl tónu &níž" + +#: ../src/commands/edit/TransposeCommand.h:63 +msgid "Up an &Octave" +msgstr "O &oktávu výš" + +#: ../src/commands/edit/TransposeCommand.h:64 +msgid "Down an Octa&ve" +msgstr "O o&ktávu níž" + +#: ../src/commands/edit/TransposeCommand.h:65 +msgid "&Transpose by Semitones..." +msgstr "Transponovat o &půltóny..." + +#: ../src/commands/edit/SetNoteTypeCommand.h:56 +msgid "&Set Note Type" +msgstr "&Nastavit typ noty" + +#: ../src/commands/edit/EventEditCommand.h:55 +msgid "Edit E&vent" +msgstr "Upravit u&dálost" + +#: ../src/commands/edit/AddMarkerCommand.h:54 +msgid "&Add Marker" +msgstr "&Přidat záložku" + +#: ../src/commands/edit/SelectionPropertyCommand.h:66 +msgid "Set &Property" +msgstr "Nastavit &vlastnost" + +#: ../src/commands/edit/CutCommand.h:55 +msgid "Cu&t" +msgstr "Vyjmou&t" + +#: ../src/commands/edit/EventQuantizeCommand.cpp:114 +msgid "Heuristic Notation &Quantize" +msgstr "Heuristická &kvantizace notace" + +#: ../src/commands/edit/EventQuantizeCommand.cpp:116 +msgid "Grid &Quantize" +msgstr "Rastrová &kvantizace" + +#: ../src/commands/edit/ClearTriggersCommand.h:52 +msgid "&Clear Triggers" +msgstr "&Vymazat spouštěcí značky" + +#: ../src/commands/edit/RetrogradeCommand.h:51 +msgid "&Retrograde" +msgstr "&Zrcadlový" + +#: ../src/commands/edit/InvertCommand.h:51 +msgid "&Invert" +msgstr "&Invertovat" + +#: ../src/commands/edit/SetTriggerCommand.h:64 +msgid "Tri&gger Segment" +msgstr "&Spouštěcí segment" + +#: ../src/commands/edit/SetLyricsCommand.h:50 +msgid "Edit L&yrics" +msgstr "Upravit &text melodie" + +#: ../src/commands/edit/MoveAcrossSegmentsCommand.cpp:73 +msgid "&Move Events to Other Segment" +msgstr "&Přesunout události do jiného segmentu" + +#: ../src/commands/edit/RetrogradeInvertCommand.h:51 +msgid "Re&trograde Invert" +msgstr "Inver&ovat zrcadlový" + +#: ../src/commands/edit/ModifyMarkerCommand.h:55 +msgid "&Modify Marker" +msgstr "&Upravit záložku" + +#: ../src/commands/studio/AddControlParameterCommand.h:61 +msgid "&Add Control Parameter" +msgstr "&Přidat ovládací parametr" + +#: ../src/commands/studio/ModifyInstrumentMappingCommand.h:55 +msgid "Modify &Instrument Mapping" +msgstr "Upravit mapování &nástroje" + +#: ../src/commands/studio/RemoveControlParameterCommand.h:60 +msgid "&Remove Control Parameter" +msgstr "&Odstranit ovládací parametr" + +#: ../src/commands/studio/ReconnectDeviceCommand.h:55 +msgid "Reconnect Device" +msgstr "Znovu připojit zařízení" + +#: ../src/commands/studio/ModifyDeviceCommand.h:68 +msgid "Modify &MIDI Bank" +msgstr "Upravit banku &MIDI" + +#: ../src/commands/studio/CreateOrDeleteDeviceCommand.h:68 +msgid "Create Device" +msgstr "Vytvořit zařízení" + +#: ../src/commands/studio/ModifyDeviceMappingCommand.h:55 +msgid "Modify &Device Mapping" +msgstr "Upravit mapování &zařízení" + +#: ../src/commands/studio/RenameDeviceCommand.h:55 +msgid "Rename Device" +msgstr "Přejmenovat zařízení" + +#: ../src/commands/studio/ModifyControlParameterCommand.h:61 +msgid "&Modify Control Parameter" +msgstr "&Upravit ovládací parametr" + +#: ../src/commands/notation/TieNotesCommand.h:49 +msgid "&Tie" +msgstr "&Ligatura" + +#: ../src/commands/notation/ClefInsertionCommand.cpp:74 +msgid "Add Cle&f Change..." +msgstr "Přidat změnu &klíče..." + +#: ../src/commands/notation/GuitarChordInsertionCommand.cpp:40 +msgid "Insert Guitar Chord" +msgstr "Vložit kytarový akord" + +#: ../src/commands/notation/RespellCommand.cpp:47 +#, c-format +msgid "Respell with %1" +msgstr "Provést enharmonickou záměnu pomocí - %1" + +#: ../src/commands/notation/RespellCommand.cpp:50 +msgid "Do&uble Sharp" +msgstr "dv&ojitý křížek" + +#: ../src/commands/notation/RespellCommand.cpp:52 +msgid "&Sharp" +msgstr "&křížek" + +#: ../src/commands/notation/RespellCommand.cpp:54 +msgid "&Flat" +msgstr "&béčko" + +#: ../src/commands/notation/RespellCommand.cpp:56 +msgid "Dou&ble Flat" +msgstr "dvo&jité béčko" + +#: ../src/commands/notation/RespellCommand.cpp:58 +msgid "&Natural" +msgstr "&přirozené" + +#: ../src/commands/notation/RespellCommand.cpp:60 +msgid "N&one" +msgstr "žád&né" + +#: ../src/commands/notation/RespellCommand.cpp:66 +msgid "Respell Accidentals &Upward" +msgstr "Opravit posuvky nahor&u" + +#: ../src/commands/notation/RespellCommand.cpp:69 +msgid "Respell Accidentals &Downward" +msgstr "Opravit posuvky &dolů" + +#: ../src/commands/notation/RespellCommand.cpp:72 +msgid "&Restore Accidentals" +msgstr "&Obnovit posuvky" + +#: ../src/commands/notation/RespellCommand.cpp:75 +msgid "Respell Accidentals" +msgstr "Opravit posuvky" + +#: ../src/commands/notation/DeCounterpointCommand.h:55 +msgid "Split-and-Tie Overlapping &Chords" +msgstr "Rozdělit-a-svázat ligaturou překrývající se &akordy" + +#: ../src/commands/notation/BeamCommand.h:49 +msgid "&Beam Group" +msgstr "Skupina s &trámcem" + +#: ../src/commands/notation/AddTextMarkCommand.h:51 +msgid "Add Te&xt Mark..." +msgstr "Přidat te&xtovou značku..." + +#: ../src/commands/notation/RestoreSlursCommand.h:49 +msgid "&Restore Slur Positions" +msgstr "&Obnovit pozice legata" + +#: ../src/commands/notation/SustainInsertionCommand.h:56 +msgid "Add Pedal &Press" +msgstr "Přidat &sešlápnutí pedálu" + +#: ../src/commands/notation/SustainInsertionCommand.h:58 +msgid "Add Pedal &Release" +msgstr "Přidat &uvolnění pedálu" + +#: ../src/commands/notation/FixNotationQuantizeCommand.h:49 +msgid "Fi&x Notation Quantization" +msgstr "O&pravit kvantizaci notace" + +#: ../src/commands/notation/ChangeStemsCommand.h:51 +msgid "Stems &Up" +msgstr "Nožičky not &nahoru" + +#: ../src/commands/notation/ChangeStemsCommand.h:51 +msgid "Stems &Down" +msgstr "Nožičky not &dolů" + +#: ../src/commands/notation/MakeAccidentalsCautionaryCommand.cpp:43 +msgid "Use &Cautionary Accidentals" +msgstr "Použít &varovné posuvky" + +#: ../src/commands/notation/MakeAccidentalsCautionaryCommand.cpp:45 +msgid "Cancel C&autionary Accidentals" +msgstr "Zrušit v&arovné posuvky" + +#: ../src/commands/notation/SetVisibilityCommand.h:50 +msgid "Set Visibility" +msgstr "Nastavit viditelnost" + +#: ../src/commands/notation/ChangeStyleCommand.h:53 +msgid "Change &Note Style" +msgstr "Změnit styl ¬" + +#: ../src/commands/notation/TextInsertionCommand.cpp:41 +msgid "Insert Text" +msgstr "Vložit text" + +#: ../src/commands/notation/InterpretCommand.h:70 +msgid "&Interpret..." +msgstr "&Interpretace..." + +#: ../src/commands/notation/TupletCommand.h:53 +msgid "&Triplet" +msgstr "&Triola" + +#: ../src/commands/notation/TupletCommand.h:54 +msgid "Tu&plet..." +msgstr "Rytmická notová &skupina..." + +#: ../src/commands/notation/UnTupletCommand.h:50 +msgid "&Untuplet" +msgstr "&Zrušit rytmickou notovou skupinu" + +#: ../src/commands/notation/CollapseRestsCommand.h:54 +msgid "&Collapse Rests" +msgstr "&Sjednotit pomlky" + +#: ../src/commands/notation/AddIndicationCommand.cpp:145 +msgid "Add S&lur" +msgstr "Přidat &legato" + +#: ../src/commands/notation/AddIndicationCommand.cpp:147 +msgid "Add &Phrasing Slur" +msgstr "Přidat &frázovací legato" + +#: ../src/commands/notation/AddIndicationCommand.cpp:149 +msgid "Add Double-Octave Up" +msgstr "Přidat dvojitou oktávu nahoru" + +#: ../src/commands/notation/AddIndicationCommand.cpp:151 +msgid "Add Octave &Up" +msgstr "Přidat oktávu &nahoru" + +#: ../src/commands/notation/AddIndicationCommand.cpp:153 +msgid "Add Octave &Down" +msgstr "Přidat oktávu &dolů" + +#: ../src/commands/notation/AddIndicationCommand.cpp:155 +msgid "Add Double Octave Down" +msgstr "Přidat dvojitou oktávu dolů" + +#: ../src/commands/notation/AddIndicationCommand.cpp:160 +msgid "Add &Crescendo" +msgstr "Přidat &crescendo" + +#: ../src/commands/notation/AddIndicationCommand.cpp:162 +msgid "Add &Decrescendo" +msgstr "Přidat &decrescendo" + +#: ../src/commands/notation/AddIndicationCommand.cpp:164 +msgid "Add &Glissando" +msgstr "Přidat &glissando" + +#: ../src/commands/notation/AddIndicationCommand.cpp:167 +msgid "Add &%1%2" +msgstr "Přidat &%1%2" + +#: ../src/commands/notation/RemoveNotationQuantizeCommand.h:49 +msgid "Remo&ve Notation Quantization" +msgstr "&Odstranit kvantizaci notace" + +#: ../src/commands/notation/MakeChordCommand.h:50 +msgid "Make &Chord" +msgstr "Vytvořit &akord" + +#: ../src/commands/notation/MultiKeyInsertionCommand.h:63 +msgid "Change all to &Key %1..." +msgstr "Změnit vše na &tóninu %1..." + +#: ../src/commands/notation/KeyInsertionCommand.h:67 +#: ../src/commands/notation/MultiKeyInsertionCommand.h:65 +msgid "Add &Key Change..." +msgstr "Přidat změnu &tóniny..." + +#: ../src/commands/notation/RestoreStemsCommand.h:49 +msgid "&Restore Stems" +msgstr "&Obnovit nožičky" + +#: ../src/commands/notation/MakeNotesViableCommand.h:55 +#: ../src/commands/notation/MakeRegionViableCommand.h:52 +msgid "Tie Notes at &Barlines" +msgstr "Svázat noty ligaturou na &taktových čárách" + +#: ../src/commands/notation/AddSlashesCommand.h:46 +msgid "Slashes" +msgstr "Tremolo" + +#: ../src/commands/notation/ChangeSlurPositionCommand.h:51 +msgid "Slur &Above" +msgstr "Legato &nad" + +#: ../src/commands/notation/ChangeSlurPositionCommand.h:51 +msgid "Slur &Below" +msgstr "Legato &pod" + +#: ../src/commands/notation/NormalizeRestsCommand.h:54 +msgid "&Normalize Rests" +msgstr "&Normalizovat pomlky" + +#: ../src/commands/notation/TextChangeCommand.cpp:41 +msgid "Edit Text" +msgstr "Upravit text" + +#: ../src/commands/notation/RemoveMarksCommand.h:49 +msgid "&Remove All Marks" +msgstr "&Odstranit všechny značky" + +#: ../src/commands/notation/AutoBeamCommand.h:52 +msgid "&Auto-Beam" +msgstr "&Automatické trámce" + +#: ../src/commands/notation/UntieNotesCommand.h:49 +msgid "&Untie" +msgstr "&Zrušit ligaturu" + +#: ../src/commands/notation/AddMarkCommand.cpp:48 +msgid "S&forzando" +msgstr "S&forzando" + +#: ../src/commands/notation/AddMarkCommand.cpp:50 +msgid "Sta&ccato" +msgstr "Sta&ccato" + +#: ../src/commands/notation/AddMarkCommand.cpp:52 +msgid "R&inforzando" +msgstr "R&inforzando" + +#: ../src/commands/notation/AddMarkCommand.cpp:54 +msgid "T&enuto" +msgstr "T&enuto" + +#: ../src/commands/notation/AddMarkCommand.cpp:56 +msgid "Tri&ll" +msgstr "Try&lek" + +#: ../src/commands/notation/AddMarkCommand.cpp:58 +msgid "Trill &with Line" +msgstr "Trylek &s linkou" + +#: ../src/commands/notation/AddMarkCommand.cpp:60 +msgid "Trill Line" +msgstr "Trylková linka" + +#: ../src/commands/notation/AddMarkCommand.cpp:62 +msgid "&Turn" +msgstr "&Obal" + +#: ../src/commands/notation/AddMarkCommand.cpp:64 +msgid "&Accent" +msgstr "&Přízvuk" + +#: ../src/commands/notation/AddMarkCommand.cpp:66 +msgid "&Staccatissimo" +msgstr "&Staccatissimo" + +#: ../src/commands/notation/AddMarkCommand.cpp:68 +msgid "&Marcato" +msgstr "&Marcato" + +#: ../src/commands/notation/AddMarkCommand.cpp:70 +msgid "&Pause" +msgstr "&Korunka" + +#: ../src/commands/notation/AddMarkCommand.cpp:72 +msgid "&Up-Bow" +msgstr "Smyk &nahoru" + +#: ../src/commands/notation/AddMarkCommand.cpp:74 +msgid "&Down-Bow" +msgstr "Smyk &dolů" + +#: ../src/commands/notation/AddMarkCommand.cpp:76 +msgid "Mo&rdent" +msgstr "Mo&rdent" + +#: ../src/commands/notation/AddMarkCommand.cpp:78 +msgid "Inverted Mordent" +msgstr "Invertovaný mordent" + +#: ../src/commands/notation/AddMarkCommand.cpp:80 +msgid "Long Mordent" +msgstr "Dlouhý mordent" + +#: ../src/commands/notation/AddMarkCommand.cpp:82 +msgid "Lon&g Inverted Mordent" +msgstr "Dlou&hý invertovaný mordent" + +#: ../src/commands/notation/AddMarkCommand.cpp:84 +msgid "&%1%2" +msgstr "&%1%2" + +#: ../src/commands/notation/AddMarkCommand.cpp:89 +#, c-format +msgid "Add %1" +msgstr "Přidat %1" + +#: ../src/commands/notation/ResetDisplacementsCommand.h:49 +msgid "Restore Positions" +msgstr "Obnovit pozice" + +#: ../src/commands/notation/IncrementDisplacementsCommand.h:52 +msgid "Fine Reposition" +msgstr "Jemná úprava pozice" + +#: ../src/commands/notation/RestoreTiesCommand.h:49 +msgid "&Restore Tie Positions" +msgstr "&Obnovit pozice ligatury" + +#: ../src/commands/notation/ChangeTiePositionCommand.h:47 +msgid "Tie &Above" +msgstr "Ligatura &nad" + +#: ../src/commands/notation/ChangeTiePositionCommand.h:47 +msgid "Tie &Below" +msgstr "Ligatura &pod" + +#: ../src/commands/notation/KeyInsertionCommand.h:65 +msgid "Change to &Key %1..." +msgstr "Změnit na &tóninu %1..." + +#: ../src/commands/notation/RemoveFingeringMarksCommand.h:49 +msgid "&Remove Fingerings" +msgstr "&Odstranit prstoklady" + +#: ../src/commands/notation/BreakCommand.h:49 +msgid "&Unbeam" +msgstr "&Zrušit trámce" + +#: ../src/commands/notation/UnGraceCommand.h:48 +msgid "Ung&race" +msgstr "&Zrušit uhlazený vzhled" + +#: ../src/commands/notation/AddFingeringMarkCommand.cpp:45 +msgid "Add Other &Fingering..." +msgstr "Přidat další &prstoklad..." + +#: ../src/commands/notation/AddFingeringMarkCommand.cpp:47 +msgid "Add Fingering &0 (Thumb)" +msgstr "Přidat prstoklad &0 (palec)" + +#: ../src/commands/notation/AddFingeringMarkCommand.cpp:49 +#, c-format +msgid "Add Fingering &%1" +msgstr "Přidat prstoklad &%1" + +#: ../src/document/io/HydrogenXMLHandler.cpp:277 +msgid " imported from Hydrogen " +msgstr " importováno z Hydrogen " + +#: ../src/document/io/LilyPondExporter.cpp:404 +msgid "" +"LilyPond does not allow spaces or backslashes in filenames.\n" +"\n" +"Would you like to use\n" +"\n" +" %1\n" +"\n" +" instead?" +msgstr "" +"Aplikace LilyPond nedovoluje používat v názvech souborů mezery nebo zpětná " +"lomítka.\n" +"\n" +"Chcete použít\n" +"\n" +" %1\n" +"\n" +" namísto těchto znaků?" + +#: ../src/document/io/LilyPondExporter.cpp:2054 +msgid "warning: overlong bar truncated here" +msgstr "varování: příliš dlouhý takt byl zde zkrácen" + +#: ../src/document/io/LilyPondExporter.cpp:2060 +msgid "warning: bar too short, padding with rests" +msgstr "varování: takt je příliš krátký, bude doplněn pomlkami" + +#: ../src/document/MultiViewCommandHistory.cpp:318 +msgid "Nothing to undo" +msgstr "Neexistuje nic, co by se dalo vrátit zpět" + +#: ../src/document/MultiViewCommandHistory.cpp:320 +msgid "Nothing to redo" +msgstr "Neexistuje nic, u čeho by šlo zrušit vrácení zpět" + +#: ../src/document/MultiViewCommandHistory.cpp:328 +#: ../src/document/MultiViewCommandHistory.cpp:372 +#, c-format +msgid "Und&o %1" +msgstr "&Vrátit akci zpět - %1" + +#: ../src/document/MultiViewCommandHistory.cpp:330 +#: ../src/document/MultiViewCommandHistory.cpp:374 +#, c-format +msgid "Re&do %1" +msgstr "&Zrušit vrácení akce zpět - %1" + +#: ../src/document/RosegardenGUIDoc.cpp:328 +msgid "" +"The current file has been modified.\n" +"Do you want to save it?" +msgstr "" +"Aktuální soubor byl změněn.\n" +"Chcete jej uložit?" + +#: ../src/document/RosegardenGUIDoc.cpp:480 +#, c-format +msgid "" +"_n: Delete the 1 audio file recorded during the unsaved session?\n" +"Delete the %n audio files recorded during the unsaved session?" +msgstr "" +"_n: Chcete odstranit 1 zvukový soubor nahraný během neuložené relace?\n" +"Chcete odstranit %n zvukové(ých) soubory(ů) nahrané(ých) během neuložené " +"relace?" + +#: ../src/document/RosegardenGUIDoc.cpp:501 +msgid "" +"The following audio files were recorded during this session but have been " +"unloaded\n" +"from the audio file manager, and so are no longer in use in the document you " +"are saving.\n" +"\n" +"You may want to clean up these files to save disk space.\n" +"\n" +"Please select any you wish to delete permanently from the hard disk.\n" +msgstr "" +"Následující zvukové soubory byly zaznamenány během této relace, ale byly\n" +"vyřazeny ze správce zvukových souborů, takže již nejsou využívány " +"dokumentem,\n" +"který ukládáte.\n" +"\n" +"Možná budete chtít pro úsporu místa na disku tyto soubory smazat.\n" +"\n" +"Vyberte kterékoli z těch, které chcete z pevného disku trvale odstranit.\n" + +#: ../src/document/RosegardenGUIDoc.cpp:517 +#, c-format +msgid "" +"_n: About to delete 1 audio file permanently from the hard disk." +"
      There will be no way to recover this file.
      Are you sure?
      \n" +"\n" +"About to delete %n audio files permanently from the hard disk.
      There " +"will be no way to recover these files.
      Are you sure?
      " +msgstr "" +"_n: Chystáte se z pevného disku trvale odstranit 1 zvukový soubor. " +"
      Neexistuje způsob, jak tento soubor později obnovit.
      Skutečně chcete " +"pokračovat?
      \n" +"\n" +"Chystáte se z pevného disku trvale odstranit %n zvukové(ých) soubory(ů)." +"
      Neexistuje způsob, jak tyto soubory později obnovit.
      Skutečně chcete " +"pokračovat?
      " + +#: ../src/document/RosegardenGUIDoc.cpp:580 +msgid "Can't open file '%1'" +msgstr "Nelze otevřít soubor '%1'" + +#: ../src/document/RosegardenGUIDoc.cpp:585 +msgid "Reading file..." +msgstr "Probíhá čtení souboru..." + +#: ../src/document/RosegardenGUIDoc.cpp:603 +msgid "Could not open Rosegarden file" +msgstr "Nebylo možné otevřít soubor aplikace Rosegarden" + +#: ../src/document/RosegardenGUIDoc.cpp:641 +msgid "Error when parsing file '%1': \"%2\"" +msgstr "Chyba při syntaktické analýze souboru '%1': \"%2\"" + +#: ../src/document/RosegardenGUIDoc.cpp:689 +msgid "Generating audio previews..." +msgstr "Probíhá vytváření zvukových ukázek..." + +#: ../src/document/RosegardenGUIDoc.cpp:721 +msgid "Merge" +msgstr "Připojit" + +#: ../src/document/RosegardenGUIDoc.cpp:1605 +msgid "File load cancelled" +msgstr "Načítání souboru bylo zrušeno" + +#: ../src/document/RosegardenGUIDoc.cpp:1625 +msgid "" +"

      Audio and plugins not available

      This composition uses audio files " +"or plugins, but Rosegarden is currently running without audio because the " +"JACK audio server was not available on startup.

      Please exit " +"Rosegarden, start the JACK audio server and re-start Rosegarden if you wish " +"to load this complete composition.

      WARNING: If you re-save this " +"composition, all audio and plugin data and settings in it will be lost.

      " +msgstr "" +"

      Zvuk a zásuvné moduly nejsou k dispozici

      Tato skladba používá " +"zvukové soubory nebo zásuvné moduly, avšak aplikace Rosegarden je teď " +"spuštěna bez podpory zvuku, protože při spuštění nebyl dostupný server JACK." +"

      Ukončete aplikaci Rosegarden, spusťte zvukový server JACK a " +"restartujte Rosegarden, přejete-li si načíst tuto kompletní skladbu.

      VAROVÁNÍ: Pokud tuto skladbu znovu uložíte, bude ztracen veškerý " +"zvukový obsah i data zásuvných modulů s nastaveními.

      " + +#: ../src/document/RosegardenGUIDoc.cpp:1628 +msgid "" +"

      Audio and plugins not available

      This composition uses audio files " +"or plugins, but you are running a version of Rosegarden that was compiled " +"without audio support.

      WARNING: If you re-save this composition " +"from this version of Rosegarden, all audio and plugin data and settings in " +"it will be lost.

      " +msgstr "" +"

      Zvuk a zásuvné moduly nejsou k dispozici

      Tato skladba používá " +"zvukové soubory nebo zásuvné moduly, avšak vy používáte aplikaci Rosegarden, " +"která byla zkompilovaná bez podpory zvuku.

      VAROVÁNÍ: Pokud tuto " +"skladbu znovu uložíte, bude ztracen veškerý zvukový obsah i data zásuvných " +"modulů s nastaveními.

      " + +#: ../src/document/RosegardenGUIDoc.cpp:1665 +msgid "" +"

      Incorrect audio sample rate

      This composition contains audio files " +"that were recorded or imported with the audio server running at a different " +"sample rate (%1 Hz) from the current JACK server sample rate (%2 Hz).

      Rosegarden will play this composition at the correct speed, but any " +"audio files in it will probably sound awful.

      Please consider re-" +"starting the JACK server at the correct rate (%3 Hz) and re-loading this " +"composition before you do any more work with it.

      " +msgstr "" +"

      Nesprávná vzorkovací frekvence zvuku

      Tato skladba obsahuje " +"zvukové soubory, které byly nahrány nebo importovány pomocí zvukového " +"serveru nastaveného na jinou vzorkovací frekvenci (%1 Hz) - odlišnou od " +"aktuální vzorkovací frekvence serveru JACK (%2 Hz).

      Aplikace " +"Rosegarden přehraje tuto skladbu správnou rychlostí, ale jakékoli zvukové " +"soubory v ní budou pravděpodobně znít velmi nehezky.

      Zvažte, zda " +"nespustit server JACK se správnou frekvencí (%3 Hz) a nenačíst tuto skladbu " +"před jakoukoli další prací s ní znovu.

      " + +#: ../src/document/RosegardenGUIDoc.cpp:1675 +msgid "" +"

      Inconsistent audio sample rates

      This composition contains audio " +"files at more than one sample rate.

      Rosegarden will play them at the " +"correct speed, but any audio files that were recorded or imported at rates " +"different from the current JACK server sample rate (%1 Hz) will probably " +"sound awful.

      Please see the audio file manager dialog for more " +"details, and consider resampling any files that are at the wrong rate.

      " +msgstr "" +"

      Nekonzistentní vzorkovací frekvence zvuku

      Tato skladba obsahuje " +"zvukové soubory, které mají více vzorkovacích frekvencí.

      Aplikace " +"Rosegarden je přehraje správnou rychlostí, ale jakékoli zvukové soubory " +"nahrané nebo importované s odlišnými frekvencemi, než je aktuální vzorkovací " +"frekvence serveru JACK (%1 Hz), budou pravděpodobně znít velmi nehezky.

      Více informací naleznete v dialogu správce zvukových souborů. Zvažte " +"také možnost převzorkování všech souborů, které mají nyní chybnou frekvenci." +"

      " + +#: ../src/document/RosegardenGUIDoc.cpp:1676 +msgid "Inconsistent sample rates" +msgstr "Nekonzistentní vzorkovací frekvence" + +#: ../src/document/RosegardenGUIDoc.cpp:1690 +msgid "" +"

      Plugins not found

      The following audio plugins could not be loaded:" +"

        " +msgstr "" +"

        Zásuvné moduly nenalezeny

        Následující zásuvné moduly nebylo možné " +"načíst:

          " + +#: ../src/document/RosegardenGUIDoc.cpp:1698 +msgid "
        • %1 (from %2)
        • " +msgstr "
        • %1 (od %2)
        • " + +#: ../src/document/RosegardenGUIDoc.cpp:1712 +msgid "" +"This file contains one or more old element types that are now deprecated.\n" +"Support for these elements may disappear in future versions of Rosegarden.\n" +"We recommend you re-save this file from this version of Rosegarden to ensure " +"that it can still be re-loaded in future versions." +msgstr "" +"Tento soubor obsahuje jeden nebo několik starých typů prvků, které jsou nyní " +"potlačeny.\n" +"Podpora těchto prvků nemusí být v budoucích verzích aplikace Rosegarden " +"dostupná.\n" +"Doporučujeme, abyste znovu uložili tento soubor v této verzi aplikace " +"Rosegarden a zajistili si tak možnost načíst jej v budoucích verzích." + +#: ../src/document/RosegardenGUIDoc.cpp:2207 +msgid "Insert Recorded MIDI" +msgstr "Vložit zaznamenané MIDI" + +#: ../src/document/RosegardenGUIDoc.cpp:2560 +msgid "%1 (recorded)" +msgstr "%1 (zaznamenáno)" + +#: ../src/document/RoseXmlHandler.cpp:442 +msgid "" +"This file was written by Rosegarden %1, and it uses\n" +"a different file format that cannot be read by this version." +msgstr "" +"Tento soubor byl napsán aplikací Rosegarden %1 a používá\n" +"jiný formát souboru, který nelze přečíst v této verzi." + +#: ../src/document/RoseXmlHandler.cpp:452 +msgid "" +"This file was written by Rosegarden %1, which is more recent than this " +"version.\n" +"There may be some incompatibilities with the file format." +msgstr "" +"Tento soubor byl napsán v aplikaci Rosegarden %1, která je novější než tato " +"verze.\n" +"Formáty souborů mohou být z tohoto důvodu nekompatibilní." + +#: ../src/document/RoseXmlHandler.cpp:1687 +msgid "Loading plugins..." +msgstr "Probíhá načítání zásuvných modulů..." + +#: rc.cpp:6 rc.cpp:144 +#, no-c-format +msgid "Se&gment" +msgstr "Se&gment" + +#: rc.cpp:9 rc.cpp:84 rc.cpp:147 rc.cpp:303 +#, no-c-format +msgid "Edit &With" +msgstr "Upravit &pomocí" + +#: rc.cpp:12 rc.cpp:21 rc.cpp:30 rc.cpp:39 rc.cpp:345 +#, no-c-format +msgid "Actions Toolbar" +msgstr "Nástrojová lišta pro akce" + +#: rc.cpp:15 rc.cpp:33 rc.cpp:129 rc.cpp:285 +#, no-c-format +msgid "Time Toolbar" +msgstr "Nástrojová lišta pro čas" + +#: rc.cpp:18 rc.cpp:36 rc.cpp:57 rc.cpp:63 rc.cpp:120 rc.cpp:243 rc.cpp:342 +#, no-c-format +msgid "Transport Toolbar" +msgstr "Nástrojová lišta pro transport" + +#: rc.cpp:24 rc.cpp:42 rc.cpp:123 rc.cpp:348 +#, no-c-format +msgid "Zoom Toolbar" +msgstr "Nástrojová lišta pro zoom" + +#: rc.cpp:45 rc.cpp:60 rc.cpp:99 rc.cpp:228 rc.cpp:327 +#, no-c-format +msgid "T&ransport" +msgstr "T&ransport" + +#: rc.cpp:51 +#, no-c-format +msgid "Number of Stereo &Inputs" +msgstr "Počet stereo v&stupů" + +#: rc.cpp:54 +#, no-c-format +msgid "&Number of Submasters" +msgstr "&Počet řízených sekvencerů" + +#: rc.cpp:66 +#, no-c-format +msgid "&Import" +msgstr "&Importovat" + +#: rc.cpp:69 +#, no-c-format +msgid "&Merge" +msgstr "&Připojit" + +#: rc.cpp:72 +#, no-c-format +msgid "&Export" +msgstr "&Exportovat" + +#: rc.cpp:75 rc.cpp:141 rc.cpp:297 +#, no-c-format +msgid "&Composition" +msgstr "&Skladba" + +#: rc.cpp:78 +#, no-c-format +msgid "&Studio" +msgstr "&Studio" + +#: rc.cpp:81 +#, no-c-format +msgid "Se&gments" +msgstr "Se&gmenty" + +#: rc.cpp:90 +#, no-c-format +msgid "Trac&ks" +msgstr "S&topy" + +#: rc.cpp:93 +#, no-c-format +msgid "Set &Instrument" +msgstr "Nastavit &nástroj" + +#: rc.cpp:102 rc.cpp:234 rc.cpp:333 +#, no-c-format +msgid "&Toolbars" +msgstr "&Nástrojové lišty" + +#: rc.cpp:105 rc.cpp:237 rc.cpp:336 +#, no-c-format +msgid "&Rulers" +msgstr "&Pravítka" + +#: rc.cpp:111 rc.cpp:240 rc.cpp:339 +#, no-c-format +msgid "Tools Toolbar" +msgstr "Nástrojová lišta ovládacích nástrojů" + +#: rc.cpp:114 +#, no-c-format +msgid "Tracks Toolbar" +msgstr "Nástrojová lišta pro stopy" + +#: rc.cpp:117 +#, no-c-format +msgid "Editors Toolbar" +msgstr "Nástrojová lišta pro editory" + +#: rc.cpp:135 +#, no-c-format +msgid "&Layout Mode" +msgstr "Režim &uspořádání" + +#: rc.cpp:138 rc.cpp:294 +#, no-c-format +msgid "Add Event Ruler" +msgstr "Přidat pravítko událostí" + +#: rc.cpp:150 +#, no-c-format +msgid "N&ote" +msgstr "N&ota" + +#: rc.cpp:153 +#, no-c-format +msgid "Mar&ks" +msgstr "Znač&ky" + +#: rc.cpp:156 +#, no-c-format +msgid "&Ornaments" +msgstr "Melodické &ozdoby" + +#: rc.cpp:159 +#, no-c-format +msgid "&Fingerings" +msgstr "P&rstoklady" + +#: rc.cpp:162 +#, no-c-format +msgid "S&lashes" +msgstr "Tremo&la" + +#: rc.cpp:165 rc.cpp:219 +#, no-c-format +msgid "&Accidentals" +msgstr "Po&suvky" + +#: rc.cpp:168 +#, no-c-format +msgid "&Phrase" +msgstr "&Fráze" + +#: rc.cpp:171 +#, no-c-format +msgid "Slur &Position" +msgstr "&Pozice legata" + +#: rc.cpp:174 +#, no-c-format +msgid "Tie &Position" +msgstr "&Pozice ligatury" + +#: rc.cpp:177 +#, no-c-format +msgid "&Octaves" +msgstr "&Oktávy" + +#: rc.cpp:180 rc.cpp:306 +#, no-c-format +msgid "Ad&just" +msgstr "&Přizpůsobit" + +#: rc.cpp:183 +#, no-c-format +msgid "R&ests" +msgstr "P&omlky" + +#: rc.cpp:186 rc.cpp:213 +#, no-c-format +msgid "&Notes" +msgstr "&Noty" + +#: rc.cpp:189 rc.cpp:309 +#, no-c-format +msgid "&Quantize" +msgstr "&Kvantizovat" + +#: rc.cpp:195 rc.cpp:315 +#, no-c-format +msgid "Trans&pose" +msgstr "&Transponovat" + +#: rc.cpp:198 rc.cpp:318 +#, no-c-format +msgid "Convert" +msgstr "Konvertovat" + +#: rc.cpp:201 +#, no-c-format +msgid "&Fine Positioning" +msgstr "&Jemné doladění pozice" + +#: rc.cpp:204 +#, no-c-format +msgid "Fine Ti&ming" +msgstr "Je&mné časování" + +#: rc.cpp:207 +#, no-c-format +msgid "&Visibility" +msgstr "&Viditelnost" + +#: rc.cpp:216 +#, no-c-format +msgid "&Rests" +msgstr "P&omlky" + +#: rc.cpp:222 +#, no-c-format +msgid "&Clefs" +msgstr "Notové &klíče" + +#: rc.cpp:225 rc.cpp:324 +#, no-c-format +msgid "Local &Cursor" +msgstr "Lokální &kurzor" + +#: rc.cpp:246 +#, no-c-format +msgid "Notes Toolbar" +msgstr "Nástrojová lišta pro noty" + +#: rc.cpp:249 +#, no-c-format +msgid "Rests Toolbar" +msgstr "Nástrojová lišta pro pomlky" + +#: rc.cpp:252 +#, no-c-format +msgid "Clefs Toolbar" +msgstr "Nástrojová lišta pro notové klíče" + +#: rc.cpp:255 +#, no-c-format +msgid "Accidentals Toolbar" +msgstr "Nástrojová lišta pro posuvky" + +#: rc.cpp:258 +#, no-c-format +msgid "Group Toolbar" +msgstr "Nástrojová lišta pro skupinu" + +#: rc.cpp:261 +#, no-c-format +msgid "Marks Toolbar" +msgstr "Nástrojová lišta pro značky" + +#: rc.cpp:264 +#, no-c-format +msgid "Meta Toolbar" +msgstr "Nástrojová lišta meta" + +#: rc.cpp:267 +#, no-c-format +msgid "Layout Toolbar" +msgstr "Nástrojová lišta pro uspořádání" + +#: rc.cpp:270 rc.cpp:351 +#, no-c-format +msgid "Control Ruler actions" +msgstr "Akce ovládacího pravítka" + +#: rc.cpp:273 rc.cpp:354 +#, no-c-format +msgid "Property Ruler actions" +msgstr "Akce pravítka vlastností" + +#: rc.cpp:276 +#, no-c-format +msgid "&Action" +msgstr "&Akce" + +#: rc.cpp:279 +#, no-c-format +msgid "General Toolbar" +msgstr "Obecná nástrojová lišta" + +#: rc.cpp:291 +#, no-c-format +msgid "&Grid" +msgstr "&Rastr" + +#: rc.cpp:300 +#, no-c-format +msgid "&Segment" +msgstr "&Segment" + +#: rc.cpp:361 +#, no-c-format +msgid "Hide additional controls" +msgstr "Skrýt dodatečné ovládací prvky" + +#: rc.cpp:365 +#, no-c-format +msgid "Panic Button" +msgstr "Tlačítko nouzového zastavení v případě zaseknutí nástroje" + +#: rc.cpp:368 +#, no-c-format +msgid "Resets all MIDI devices if you've got stuck notes" +msgstr "Resetuje všechna zařízení MIDI, pokud došlo k zaseknutí not" + +#: rc.cpp:375 +#, no-c-format +msgid "Provides a metronome click for you to play along with" +msgstr "Poskytuje tikot metronomu pro hraní s metronomem" + +#: rc.cpp:378 +#, no-c-format +msgid "Shows MIDI activity in and out of Rosegarden" +msgstr "Zobrazuje vstupní a výstupní aktivity MIDI pro aplikaci Rosegarden" + +#: rc.cpp:381 +#, no-c-format +msgid "IN" +msgstr "VSTUP" + +#: rc.cpp:384 +#, no-c-format +msgid "OUT" +msgstr "VÝSTUP" + +#: rc.cpp:387 rc.cpp:390 +#, no-c-format +msgid "NO EVENTS" +msgstr "ŽÁDNÉ UDÁLOSTI" + +#: rc.cpp:397 +#, no-c-format +msgid "Record either MIDI or audio" +msgstr "Záznam MIDI nebo zvuku" + +#: rc.cpp:401 +#, no-c-format +msgid "Loop" +msgstr "Opakování" + +#: rc.cpp:404 +#, no-c-format +msgid "Turn on and off the loop markers (if set)" +msgstr "Zapínání a vypínání záložek opakování (jsou-li nastaveny)" + +#: rc.cpp:411 +#, no-c-format +msgid "Mutes all but the currently selected track" +msgstr "Ztlumení všech stop kromě aktuálně vybrané" + +#: rc.cpp:415 +#, no-c-format +msgid "Start loop or range here" +msgstr "Zde začít opakování nebo rozsah" + +#: rc.cpp:419 +#, no-c-format +msgid "End loop or range here" +msgstr "Zde ukončit opakování nebo rozsah" + +#: rc.cpp:422 +#, no-c-format +msgid "SIG" +msgstr "SIG" + +#: rc.cpp:425 +#, no-c-format +msgid "DIV" +msgstr "DIV" + +#: rc.cpp:428 +#, no-c-format +msgid "/16" +msgstr "/16" + +#: rc.cpp:431 +#, no-c-format +msgid "TEMPO" +msgstr "TEMPO" + +#: rc.cpp:434 +#, no-c-format +msgid "END" +msgstr "KONEC" + +#: rc.cpp:437 +#, no-c-format +msgid "BAR" +msgstr "TAKTOVÁ ČÁRA" + +#: rc.cpp:441 +#, no-c-format +msgid "Switch between real time, musical time, and frame count" +msgstr "Přepínání mezi skutečným časem, hudebním časem a počtem rámců" + +#: rc.cpp:445 +#, no-c-format +msgid "Show additional controls" +msgstr "Zobrazit dodatečné ovládací prvky" + +#: rc.cpp:449 +#, no-c-format +msgid "Rewind" +msgstr "Ukazatel přehrávání o takt zpět" + +#: rc.cpp:452 +#, no-c-format +msgid "Moves the current pointer position back one bar." +msgstr "Posune pozici aktuálního ukazatele o jednu taktovou čáru zpět." + +#: rc.cpp:456 +#, no-c-format +msgid "Rewind to beginning" +msgstr "Ukazatel přehrávání na začátek" + +#: rc.cpp:459 +#, no-c-format +msgid "" +"Moves the pointer position to the start of the composition. (This may mean " +"going forwards if the pointer is currently before the start.)" +msgstr "" +"Posune pozici ukazatele na začátek skladby. (To může znamenat i posun " +"směrem vpřed, pokud se ukazatel nachází před začátkem skladby.)" + +#: rc.cpp:463 +#, no-c-format +msgid "Play/Pause" +msgstr "Přehrát/pauza" + +#: rc.cpp:466 +#, no-c-format +msgid "" +"Plays from the current pointer position, or pauses playback if already in " +"progress." +msgstr "" +"Přehrává od současné pozice ukazatele nebo pozastaví přehrávání, pokud již " +"probíhá." + +#: rc.cpp:473 +#, no-c-format +msgid "Stops playback or recording." +msgstr "Zastaví přehrávání nebo záznam." + +#: rc.cpp:477 +#, no-c-format +msgid "Fast forward" +msgstr "Ukazatel přehrávání o takt dopředu" + +#: rc.cpp:480 +#, no-c-format +msgid "Moves the current pointer position forwards one bar." +msgstr "Posune pozici aktuálního ukazatele o jednu taktovou čáru dopředu." + +#: rc.cpp:484 +#, no-c-format +msgid "Fast forward to end" +msgstr "Ukazatel přehrávání na konec" + +#: rc.cpp:487 +#, no-c-format +msgid "" +"Moves the pointer position to the end of the composition. (This may mean " +"going backwards if the pointer is already beyond the end.)" +msgstr "" +"Posune pozici ukazatele na konec skladby. (To může znamenat i posun směrem " +"vzad, pokud se ukazatel nachází za koncem skladby.)" + +#: rc.cpp:491 +#, no-c-format +msgid "Display time to end" +msgstr "Zobrazit čas zbývající do konce" + +#: ../docs/en/tips.cpp:3 +msgid "" +"

          To configure a track to play using a particular instrument:

          \n" +"  * click on the track label and hold a moment
          \n" +"  * select an output device
          \n" +"  * select one of that device's available instruments (#1 - #16)" +"
          \n" +"  * adjust that instrument's output channel, program, bank, and\n" +"controllers via the instrument parameters box\n" +msgstr "" +"

          Chcete-li konfigurovat stopu tak, aby byla přehrávána pomocí určitého " +"nástroje:

          \n" +"  * klepněte na popisek stopy a chvíli podržte stisknuté tlačítko " +"myši
          \n" +"  * vyberte výstupní zařízení
          \n" +"  * vyberte jeden z nástrojů dostupných pro toto zařízení (#1 - " +"#16)
          \n" +"  * upravte výstupní kanál tohoto nástroje, program, banku a\n" +"ovládací prvky pomocí okna s parametry nástroje\n" + +#: ../docs/en/tips.cpp:13 +msgid "" +"

          ...that Rosegarden has an autosave feature?

          \n" +"You can select your autosave interval from Settings->Configure\n" +"Rosegarden.

          \n" +"When something goes awry, such as a power outage or a Rosegarden crash\n" +"(unfortunately, it happens...) simply load the file you were working on, and " +"you'll be given the\n" +"option to load the autosaved version, or the unmodified original.

          \n" +msgstr "" +"

          ...že aplikace Rosegarden obsahuje funkci automatického ukládání?" +"

          \n" +"Časový interval automatického ukládání lze vybrat z nabídky Nastavení-" +">Konfigurace aplikace\n" +"Rosegarden.

          \n" +"Pokud by se přihodilo něco nemilého jako např. výpadek napájení nebo " +"zaseknutí aplikace Rosegarden\n" +"(naneštěstí i takové věci se mohou stát...), jednoduše načtěte soubor, se " +"kterým jste pracovali, a budou vám nabídnuty možnosti\n" +"otevřít automaticky uloženou verzi nebo otevřít nezměněný originál.

          \n" + +#: ../docs/en/tips.cpp:23 +msgid "" +"

          \n" +"...that you can save the current document as your default studio by using\n" +"Composition -> Studio -> Save Current Document as Default Studio?\n" +msgstr "" +"

          \n" +"...že můžete uložit aktuální dokument jako výchozí studio pomocí nabídky\n" +"Skladba -> Studio -> Uložit aktuální dokument jako výchozí studio.\n" + +#: ../docs/en/tips.cpp:30 +msgid "" +"

          ...that your default studio is a complete Rosegarden composition that " +"gets\n" +"loaded every time you create a new document or import a MIDI file?

          \n" +msgstr "" +"

          ...že výchozí studio je kompletní skladbou aplikace Rosegarden, která se\n" +"načítá pokaždé při vytváření nového dokumentu nebo při importu souboru MIDI?" +"

          \n" + +#: ../docs/en/tips.cpp:36 +msgid "" +"

          ...that your default studio can contain instrument assignments, document " +"properties, LilyPond headers,\n" +"and many other things?

          The default studio is a complete Rosegarden " +"composition, so it can contain anything that you may wish to have available " +"in each\n" +"new document you create.

          \n" +msgstr "" +"

          ...že vaše výchozí studio může obsahovat přiřazení nástrojů, vlastnosti " +"dokumentu, hlavičky Lilypond\n" +"a mnoho dalších věcí?

          Výchozí studio je kompletní skladbou aplikace " +"Rosegraden, takže může obsahovat vše, co byste si mohli přát mít dostupné\n" +"při vytváření každého nového dokumentu.

          \n" + +#: ../docs/en/tips.cpp:43 +msgid "" +"

          ...that Rosegarden will detect and create a default connection for ALSA " +"soft\n" +"synth applications that are started after Rosegarden is already running?\n" +msgstr "" +"

          ...že aplikace Rosegarden detekuje a vytváří výchozí připojení pro " +"softwarové\n" +"syntetizéry ALSA, které se spouští potom, co je již spuštěna aplikace " +"Rosegarden?

          \n" + +#: ../docs/en/tips.cpp:49 +msgid "" +"

          ...that you can make your default studio override that in every " +"Rosegarden composition you load?

          If your studio setup does not change " +"very often, and you would prefer for\n" +"the settings in your default studio to take precedence over whatever\n" +"studio is saved with any files you happen to load, you can make your studio " +"the default for everything using Settings -> Configure Rosegarden ->\n" +"MIDI -> Always use default studio when loading files.

          \n" +msgstr "" +"

          ...že můžete přinutit vaše výchozí studio k tomu, aby nahradilo jakékoli " +"jiné, obsažené u každé skladby Rosegarden, kterou načítáte?

          Pokud se " +"vaše nastavení studia nemění příliš často a pokud byste raději,\n" +"aby mělo vaše výchozí studio přednost před jakýmkoli jiným studiem\n" +"uloženým s jakýmkoli souborem, který otevíráte, můžete nastavit vybrané " +"studio tak, aby bylo vaším výchozím nastavením pro všechno. Použijte " +"Nastavení ->\n" +"Konfigurace aplikace Rosegarden - MIDI -> Při načítání souborů vždy používat " +"výchozí studio.

          \n" + +#: ../docs/en/tips.cpp:57 +msgid "" +"

          If you have accidentally recorded a segment so short that it does not\n" +"appear on the canvas, which you can only hear during subsequent recording\n" +"sessions, you can gain access to it by using Composition -> Change\n" +"Composition Start and End and then setting the composition to start at a " +"negative number.

          \n" +msgstr "" +"

          Pokud jste náhodou zaznamenali tak krátký segment, že se neobjevuje\n" +"na zobrazovací ploše, což uslyšíte pouze během následujících nahrávacích\n" +"relací, můžete si tento segment zpřístupnit pomocí Skladba -> Změnit\n" +"začátek a konec skladby a následného nastavení skladby tak, aby začínala " +"záporným číslem.

          \n" + +#: ../docs/en/tips.cpp:65 +msgid "" +"

          ...that if you place a note at the wrong pitch using the notation or " +"matrix editor, you can move it one semitone at a time with the up and down " +"arrow keys on your keyboard?

          \n" +msgstr "" +"

          ...že pokud umístíte notu s chybnou výškou tónu v notovém nebo maticovém " +"editoru, můžete ji přesunout o půl tónu výš nebo níž pomocí kurzorových " +"šipek na klávesnici?

          \n" + +#: ../docs/en/tips.cpp:70 +msgid "" +"

          ...that you can toggle stem directions in the notation editor by " +"selecting\n" +"one or more notes and using Ctrl-PageUp and Ctrl-PageDown?

          \n" +msgstr "" +"

          ...že můžete přepínat směry nožiček v notovém editoru tak, že vyberete\n" +"jednu nebo více not a použijete kombinaci kláves Ctrl-PageUp a Ctrl-PageDown?" +"

          \n" + +#: ../docs/en/tips.cpp:76 +msgid "" +"

          ...that you can change the accidental used for a note in the notation " +"editor (without changing the pitch of the note) by selecting\n" +"it and using the up and down arrow keys with both Ctrl and Shift pressed?\n" +msgstr "" +"

          ...že můžete změnit posuvku použitou pro notu v notovém editoru (beze " +"změny výšky tónu noty) tak, že ji vyberete\n" +"a použijete kurzorové šipky nahoru nebo dolů společně se stisknutými " +"klávesami Ctrl a Shift?

          \n" + +#: ../docs/en/tips.cpp:82 ../docs/en/tips.cpp:93 +msgid "" +"

          ...that you can hold down the Shift key while repositioning segments on " +"the\n" +"segment canvas in order to avoid the \"snap-to\" effect and exert finer " +"control?

          \n" +msgstr "" +"

          ...že můžete podržet klávesu Shift při změně pozice segmentů na " +"zobrazovací\n" +"ploše segmentů, abyste se vyhnuli efektu \"přichytávání\" a mohli provést " +"jemnější doladění pozice?

          \n" + +#: ../docs/en/tips.cpp:88 +msgid "" +"

          ...that you can use the arrow tool to draw, move, and resize segments and " +"events as well as to select them?

          Drag a segment or event block to " +"move it, drag the right edge of a block to resize it, and drag with the " +"middle mouse button pressed to draw a new segment or event.

          (Of " +"course, the dedicated draw, move and resize tools are still quicker for " +"repeated operations.)

          \n" +msgstr "" +"

          ...že můžete použít nástroj šipky k tažení, přesunování a změnám " +"velikosti segmentů a událostí, stejně jako k jejich výběru?

          Tažením " +"bloku segmentu nebo události jej přesunete, tažením pravého okraje bloku " +"změníte jeho velikost, tažením se stisknutým prostředním tlačítkem myši " +"nakreslíte nový segment nebo událost.

          (Samozřejmě, že nástroje určené " +"výhradně na kreslení, přesunování nebo změnu velikosti budou vždy rychlejší " +"při provádění opakovaných operací.)

          \n" + +#: ../docs/en/tips.cpp:99 +msgid "" +"

          ...that you can hold down the Shift key while repositioning or resizing " +"events in the\n" +"matrix view in order to avoid the \"snap-to\" effect and exert finer control?" +"

          \n" +msgstr "" +"

          ...že můžete podržet klávesu Shift při změně pozice nebo velikosti " +"událostí\n" +"v maticovém pohledu, abyste se vyhnuli efektu \"přichytávání\" a mohli " +"provést jemnější doladění pozice či velikosti?

          \n" + +#: ../docs/en/tips.cpp:105 +msgid "" +"

          ...that you can edit multiple segments on multiple tracks simultaneously " +"in\n" +"the notation editor? Simply select the segments, then use Edit -> Open " +"in Notation Editor.

          \n" +msgstr "" +"

          ...že můžete v notovém editoru upravovat naráz několik segmentů z " +"několika stop?\n" +"Jednoduše vyberte segmenty a použijte možnost Upravit -> Otevřít v " +"notovém editoru.

          \n" + +#: ../docs/en/tips.cpp:111 +msgid "" +"

          ...that Rosegarden can export files for use by LilyPond, the high-quality " +"score typesetting system?

          \n" +"From the File menu, navigate to Export -> Export LilyPond File

          \n" +msgstr "" +"

          ...že aplikace Rosegarden může exportovat soubory pro použití v aplikaci " +"Lilypond, špičkovém systému pro sazby partitur?

          \n" +"Z nabídky Soubor projděte k možnosti Exportovat -> Exportovat " +"soubor Lilypond

          \n" + +#: ../docs/en/tips.cpp:117 +msgid "" +"

          ...that Rosegarden can print via LilyPond, the high-quality score " +"typesetting system?

          \n" +"From the File menu, navigate to Preview with LilyPond. The " +"file\n" +"will be exported, rendered, and a preview will appear in KPDF, or one of\n" +"several other PDF viewers, where it can then be printed as well.

          \n" +msgstr "" +"

          ...že aplikace Rosegarden může exportovat soubory pro použití v aplikaci " +"Lilypond, špičkovém systému pro sazby partitur?

          \n" +"Z nabídky Soubor projděte k možnosti Náhled s aplikací LilyPond. Soubor\n" +"bude vyexportován, vykreslen a zobrazen v náhledu v aplikaci KPDF nebo\n" +"v některém jiném prohlížeči souborů PDF, odkud jej můžete také vytisknout.\n" + +#: ../docs/en/tips.cpp:125 +msgid "" +"

          ...that if you use the quantizer from within the notation view, you can " +"tell it to quantize only the timing used for notation -- making it possible " +"to have good looking notation and a human MIDI performance?

          \n" +msgstr "" +"

          ...že pokud použijete kvantizér z notačního pohledu, můžete mu přikázat, " +"aby kvantizoval pouze dělení dob použité v notaci -- čímž se dá dosáhnout " +"hezkého vzhledu notového zápisu a a lidského výkonu MIDI?

          \n" + +#: ../docs/en/tips.cpp:130 +msgid "" +"

          ...that you can change segment labels using the controls on the Segment " +"Parameters box\n" +"in the main window?

          \n" +msgstr "" +"

          ...že lze měnit popisky segmentů pomocí ovládacích prvků v dialogu " +"Parametry segmentu\n" +"v hlavním okně?

          \n" + +#: ../docs/en/tips.cpp:136 +msgid "" +"

          ...that the number of tracks in new documents is based on the contents " +"of\n" +"your autoload.rg file?\n" +"

          \n" +"Whether you prefer to start with three tracks or 43, create a document that\n" +"contains the desired number of tracks, plus any other studio or document " +"properties settings\n" +"you wish to configure, and use Composition -> Studio -> Save Current " +"Document as Default\n" +"Studio to make this your new default.

          \n" +msgstr "" +"

          ...že počet stop v novém dokumentu je určen obsahem \n" +"souboru autoload.rg?\n" +"

          \n" +"Ať si již přejete začínat se třemi stopami nebo 43, vytvořte dokument, " +"který\n" +"bude obsahovat požadovaný počet stop a jakékoli další vlastnosti studia nebo " +"nastavení dokumentu,\n" +"které chcete konfigurovat, a pomocí možnosti Skladba -> Studio -> Uložit " +"aktuální dokument jako výchozí\n" +"studio toto nové nastavení určete jako výchozí.

          \n" + +#: ../docs/en/tips.cpp:147 +msgid "" +"

          ...that you can change the name of a track by double clicking on the " +"label? (The\n" +"label must be visible for this to work.)

          \n" +msgstr "" +"

          ...že můžete změnit název stopy poklepáním na popisek? (Popisek\n" +"musí být pro tuto operaci viditelný.)

          \n" + +#: ../docs/en/tips.cpp:153 +msgid "" +"

          ...that you can configure what happens when you double-click on a segment?" +"

          Go to Settings -> Configure Rosegarden and choose your " +"preferred editing window under the Behaviour tab.

          \n" +msgstr "" +"

          ...že lze konfigurovat akci, která se provede při poklepání na segment? " +"

          Přejděte na možnost Nastavení -> Konfigurace aplikace Rosegarden a vyberte svoje oblíbené editační okno na záložce Chování.

          \n" + +#: ../docs/en/tips.cpp:158 +msgid "" +"

          ...that Rosegarden is being developed as a community effort with\n" +"contributions from around the world?

          \n" +"The four most active developers live in London (England), Cannes, " +"Barcelona,\n" +"and... Christiansburg? (Christiansburg is a town of about 50,000 in\n" +"southwestern Virginia, USA.)

          \n" +"We have had contributors from elsewhere in the US, UK, Spain, Mexico, " +"Argentina, Germany,\n" +"Sweden, Russia, Japan, Finland, and Italy, just to name a few...

          \n" +msgstr "" +"

          ...že aplikace Rosegarden je vyvíjena jako komunitní projekt,\n" +"do kterého přispívají lidé z celého světa?

          \n" +"Čtyři nejaktivnější vývojáři žijí v Londýně (Anglie), Cannes, Barceloně,\n" +"a... Christiansburg? (Christiansburg je město s asi 50 000 obyvateli\n" +"v jihozápadní Virginii, USA.)

          \n" +"Měli jsme různé přispěvatele pocházející\n" +"z USA, UK, Španělska, Mexika, Argentiny, Německa,\n" +"Švédska, Ruska, Japonska, Finska a Itálie, abychom jmenovali alespoň několik " +"z nich...

          \n" + +#: ../docs/en/tips.cpp:169 +msgid "" +"

          ...that Rosegarden is available in Spanish, French, German, Russian, " +"Welsh, Swedish, Italian and Estonian\n" +"translations? (Just to name a few.)

          \n" +"If you're interested in translating Rosegarden to another language, drop us " +"a\n" +"line at rosegarden-devel@lists.sourceforge.net.

          \n" +msgstr "" +"

          ...že aplikace Rosegarden je dostupná ve španělštině, francouzštině, " +"němčině, ruštině, welštině, švédštině, italštině a estonštině?\n" +"(Abychom jmenovali alespoň některé jazyky.)

          \n" +"Máte-li zájem přeložit aplikaci Rosegarden do jiného jazyka, dejte nám vědět " +"a\n" +"na adresu rosegarden-devel@lists.sourceforge.net.

          \n" + +#: ../docs/en/tips.cpp:177 +msgid "" +"

          ...that you can change the total number of bars in the composition via\n" +"Composition -> Change Composition Start and End?

          \n" +msgstr "" +"

          ...že lze změnit celkový počet taktových čar ve skladbě přes možnost " +"Skladba -> Změnit začátek a konec skladby?

          \n" + +#: ../docs/en/tips.cpp:183 +msgid "" +"

          ...that you can see the difference between performance and display " +"duration\n" +"of duration-quantized notes in the notation editor?

          \n" +"Use Settings -> Show Raw Note Ruler to turn on this handy\n" +"feature.

          \n" +"Note that this feature does not work in page layout view.

          \n" +msgstr "" +"

          ...že můžete sledovat rozdíly mezi provedením a zobrazenou dobou trvání\n" +"u not s provedenou kvantizací doby trvání v notovém editoru?

          \n" +"Pomocí možnosti Nastavení -> Zobrazit pravítko zdrojových not lze " +"tuto šikovnou funkci\n" +"zapnout.

          \n" +"Tato funkce nefunguje v pohledu stránkového uspořádání.

          \n" + +#: ../docs/en/tips.cpp:192 +msgid "" +"

          ...that you can add tempo and time-signature changes by double-clicking " +"on the values displayed in the transport window or tempo rulers?

          \n" +msgstr "" +"

          ...že můžete přidat změny tempa a taktového označení poklepáním na " +"hodnoty zobrazené v okně transportu nebo na pravítcích tempa?

          \n" + +#: ../docs/en/tips.cpp:197 +msgid "" +"

          ...that the transport window can display musical time, sample frame " +"count, and a visual metronome as well as real time?

          Just click on the " +"small button at the extreme top left of the window.

          \n" +msgstr "" +"

          ...že okno transportu může zobrazovat hudební čas, počet vzorkovacích " +"rámců a vizuální metronom, stejně jako skutečný čas?

          Stačí klepnout " +"na malé tlačítko v okně úplně nahoře vlevo.

          \n" + +#: ../docs/en/tips.cpp:202 +msgid "" +"

          ...that you can select all notes of a particular pitch in the matrix " +"view, by shift-clicking on that pitch on the piano keyboard at the left?" +"

          If you shift-click-drag, you can select whole ranges too.

          \n" +msgstr "" +"

          ...že můžete vybrat všechny noty s určitou výškou tónu v maticovém " +"pohledu klepnutím a současným podržením klávesy Shift na dané výšce na " +"klaviatuře vlevo?

          Chcete-li, můžete klepnutím, současným podržením " +"klávesy Shift a tažením kurzoru vybírat také celé rozsahy.

          \n" + +#: ../docs/en/tips.cpp:207 +msgid "" +"

          ...that you can set a loop in the main window by clicking-and-dragging on " +"the time ruler with Shift pressed?

          (If the ruler isn't visible, use " +"Settings -> Show Rulers.)

          \n" +msgstr "" +"

          ...že můžete nastavit opakování v hlavním okně klepnutím a tažením na " +"časovém pravítku při současném stisknutí klávesy Shift?

          (Není-li " +"pravítko viditelné, použijte možnost Nastavení -> Zobrazit pravítka.)" +"

          \n" + +#: ../docs/en/tips.cpp:212 +msgid "" +"

          ...that if you're editing a section in the matrix or notation view, you " +"can\n" +"set that section to loop while you edit it?

          Select it and use " +"Tools ->\n" +"Local Cursor -> Set Loop to Selection, then hit Play.



          \n" +"This feature does not work quite as well for compositions that include " +"sampled\n" +"audio.\n" +msgstr "" +"

          ...že pokud upravujete sekci v maticovém nebo notovém pohledu, můžete " +"nastavit,\n" +"aby se sekce opakovala i v průběhu, kdy provádíte její úpravu?" +"

          Vyberte ji, použijte možnost Nástroje ->\n" +"Lokální kurzor -> Nastavit opakování výběru a potom stiskněte Přehrát.

          \n" +"Tato funkce však nefunguje zcela správně pro skladby, které obsahují " +"vzorkované\n" +"audio.\n" + +#: ../docs/en/tips.cpp:221 +msgid "" +"

          ...if you have more than one note or controller event at the same time, " +"you\n" +"can use the [ and ] keys to flip the stack of events around on the " +"controller\n" +"and velocity rulers in order to bring the item you wish to adjust into\n" +"focus.

          \n" +msgstr "" +"

          ...že pokud máte více než jednu notovou událost nebo událost ovládacího " +"prvku současně, lze\n" +"použít klávesy [ and ] k přepínání zásobníku událostí okolo ovládacího " +"prvku \n" +"a pravítek rychlosti, abyste událost, kterou chcete upravit, mohli\n" +"zaměřit.

          \n" + +#: ../docs/en/tips.cpp:229 +msgid "" +"

          ...that the notation view shows you notes using their display duration, " +"while the\n" +"matrix allows you to edit their performance duration?

          \n" +"Be careful with tied notes in the matrix. It is not apparent that they " +"are\n" +"tied, and if you split up a pair of tied notes, subsequent notation views " +"will\n" +"be confused and unhappy. This is an old bug that has been on our TODO list\n" +"for years. Sorry about that, folks. Patches welcome.\n" +"

          \n" +msgstr "" +"

          ...že notační pohled zobrazuje noty s použitím jejich zobrazované délky, " +"zatímco\n" +"matice umožňuje editovat jejich délku trvání?



          \n" +"Opatrně se svázanými notami v matici. Není to na první pohled zřejmé, že " +"jsou\n" +"svázané, a pokud rozpojíte pár svázaných not, následné notační pohledy " +"budou\n" +"zmatené a nebude se jim to líbit. Toto je stará chyba, která je v našem " +"úkolníčku\n" +"již léta. Omlouváme se. Opravy jsou vítané.\n" +"

          \n" + +#: ../docs/en/tips.cpp:240 +msgid "" +"

          If you're working with a human performance and you need to insert some " +"new\n" +"notes, these new notes will sound for their entire written duration. To " +"blend\n" +"these new notes into a human performance, select them, then use Adjust -> " +"Interpret... \n" +"from the notation view to interpret any marks and massage their " +"performance\n" +"durations to something less mechanical.

          \n" +msgstr "" +"

          Pokud pracujete s lidským provedením a potřebujete vložit nějaké nové\n" +"noty, budou tyto nové noty znít po celou dobu jejich zapsaného trvání. " +"Chcete-li tyto\n" +"nové noty přizpůsobit lidskému provedení, vyberte je a použijte možnost " +"Přizpůsobit -> Interpretace...\n" +"z notového pohledu. Tím lze interpretovat jakékoli značky a dodat době " +"trvání jejich provedení\n" +"poněkud méně mechanický výraz.

          \n" + +#: ../docs/en/tips.cpp:249 +msgid "" +"

          ...that Rosegarden can export certain things to LilyPond that it cannot " +"yet\n" +"display within its own native interface?

          These new directives can be " +"inserted\n" +"via the T text insert tool in the notation view.

          \n" +"Load the example files\n" +"lilypond-alternative-endings.rg and lilypond-directives.rg for " +"a\n" +"demonstration of how to use the new exportable directives.

          \n" +"Use File -> Preview with\n" +"LilyPond to see what they look like on the exported page.

          \n" +"Be sure to turn on\n" +"Settings -> Show LilyPond Directives and Show Annotations " +"within\n" +"the notation view.

          \n" +msgstr "" +"

          ...že aplikace Rosegarden může nyní jisté věci, které dosud neumí " +"zobrazit ve svém rozhraní,\n" +"exportovat do aplikace LilyPond?

          Tyto nové direktivy lze vložit přes " +"nástroj pro vkládání\n" +"textu T v notačním pohledu.

          \n" +"Načtěte soubory s příkladem lilypond-alternative-endings.rg a " +"lilypond-directives.rg,\n" +"abyste si vyzkoušeli, jak používat nové exportovatelné direktivy.

          \n" +"Pomocí možnosti Soubor -> Náhled s aplikací LilyPond

          si prohlédněte, " +"jak budou na exportované stránce vypadat.

          \n" +"Zapněte při tom možnost\n" +"Nastavení -> Zobrazit direktivy LilyPond a Zobrazit anotace\n" +"v notačním pohledu.

          \n" + +#: ../docs/en/tips.cpp:264 +msgid "" +"

          ...that Rosegarden has track parameters allowing you to Create " +"segments with: certain\n" +"properties by default?

          You can pre-select the clef, transposition, " +"colour, and specify\n" +"the highest and lowest playable notes (notes outside this range display in\n" +"red by default). Then draw a segment with the pencil, or record one, and " +"any\n" +"new segments created on this track will take these properties as segment\n" +"parameters.

          \n" +"These parameters do not apply to audio tracks.

          \n" +msgstr "" +"

          ...že aplikace Rosegarden obsahuje nyní parametry stop, aby bylo možné " +"Vytvářet segmenty s: určitými\n" +"vlastnostmi?

          Lze předvolit klíč, transpozici, barvu a specifikovat\n" +"nejvyšší a nejnižší hratelné noty (noty vně tohoto rozsahu se budou " +"zobrazovat\n" +"ve výchozím nastavení červeně). Potom pomocí tužky nakreslete nějaký segment " +"nebo jej nahrajte.\n" +"Jakékoli nové segmenty na této stopě budou mít potom tyto vlastnosti jako " +"parametry\n" +"segmentu.

          \n" +"Tyto parametry se nevztahují na zvukové stopy.

          \n" + +#: ../docs/en/tips.cpp:275 +msgid "" +"

          ...that Rosegarden has a database of preset parameters describing more " +"than 300\n" +"musical instruments from the real world, grouped into several convenient\n" +"categories?

          Each preset contains a clef, transposition, and playable " +"range\n" +"suggestions for both amateur and professional players.

          Click the\n" +"Load button in the new track parameters box to get started! (If " +"you\n" +"do not see a Load button, be sure your parameter panel is set for\n" +"tabbed mode, rather than stacked mode.)

          (Special thanks to " +"Magnus\n" +"Johansson for assembling this extraordinary database.)

          \n" +msgstr "" +"

          ...že aplikace Rosegarden má nyní databází přednastavených parametrů, " +"která popisuje více než 300\n" +"skutečných hudebních nástrojů, seskupených do několika příhodných\n" +"kategorií?

          Každý přednastavený nástroj obsahuje klíč, transpozici a " +"návrhy hratelných\n" +"rozsahů pro amatérské i profesionální hráče.

          Klepnutím na tlačítko\n" +"Načíst v okénku nových parametrů stopy můžete začít! (Pokud " +"nevidíte\n" +"tlačítko Načíst, ujistěte se, že panel parametrů je nastavený do " +"záložkového\n" +"režimu a ne do zarovnávacího režimu.)

          (Zvláštní dík " +"patříMagnusi\n" +"Johanssonovi za sestavení této výjimečné databáze.)

          \n" + +#: ../docs/en/tips.cpp:287 +msgid "" +"

          ...that when exporting to Lilypond, you can merge tracks that have the " +"same name onto a single staff?

          For example, if there are three voices " +"in a single part, write each\n" +"voice as an independent segment/staff, each on a separate track. Give all\n" +"three tracks the same name, and select [x] Merge tracks that have the " +"same\n" +"name from the options dialog that appears when you export to, or " +"preview\n" +"with LilyPond.

          \n" +"The tracks must have a non-default name for this to work.

          \n" +msgstr "" +"

          ...že stopy se stejným názvem můžete exportovat na jedinou, spojenou " +"osnovu\n" +"v aplikaci LilyPond?

          Například, existují-li tři hlasy v jednom partu, " +"zapište každý z nich\n" +"jako nezávislý segment/osnovu, každý na samostatnou stopu. Všechny tyto tři " +"stopy\n" +"pojmenujte stejně a z dialogu možností, který se objeví při exportu do nebo " +"při náhledu\n" +"s aplikací LilyPond, vyberte možnost [x] Spojit stopy se stejným názvem

          \n" +"Stopy musí mít jiný než výchozí název, aby tato funkce fungovala správně." +"

          \n" + +#: ../docs/en/tips.cpp:297 +msgid "" +" \t \n" +"

          ...that you can use the mouse wheel to scroll up and down, scroll left " +"and right, and zoom in and out?

          Just roll the wheel to scroll up or " +"down. Hold Alt as well to scroll left or right, or hold Ctrl to zoom in and " +"out.

          \t \n" +msgstr "" +"\t\n" +"

          ...že můžete použít kolečko myši k procházení nahoru a dolů, vpravo i " +"vlevo, a k přibližování a oddalování?

          Jednoduše otáčejte kolečkem k " +"procházení nahoru nebo dolů. Podržte tlačítko Alt, chcete-li procházet vlevo " +"nebo vpravo, podržte tlačítko Ctrl k přibližování nebo oddalování.

          \t \n" + +#: ../docs/en/tips.cpp:303 +msgid "" +" \t \n" +"

          ...that you can time-stretch an audio segment -- stretching or squashing " +"a\n" +"sample to a different duration without changing its pitch -- just by\n" +"dragging its right edge with the Ctrl key pressed?

          \n" +msgstr "" +"\t\n" +"

          ...že můžete časově natáhnout zvukový segment - natahovat nebo zkracovat " +"a\n" +"vzorek na různou dobu trvání beze změny výšky tónů - pouhým tažením\n" +"pravého okraje se stisknutým tlačítkem Ctrl?

          \n" + +#: ../docs/en/tips.cpp:311 +msgid "" +" \t \n" +"

          ...that you can add audio to your Rosegarden composition just by dragging " +"an audio file from your file manager and dropping it on the Rosegarden " +"segment canvas? (Make sure you drop it on an audio track!)

          You can " +"also drop audio files from Rosegarden's audio file manager window onto the " +"segment canvas, and from other programs onto the audio file manager.

          \n" +msgstr "" +"\t\n" +"

          ...že můžete přidat zvuk do své skladby v aplikaci Rosegarden pouhým " +"přetažením zvukového souboru ze svého souborového manažeru a puštěním na " +"segment v zobrazovací ploše aplikace Rosegarden? (Ujistěte se, že skutečně " +"přetahujete zvukový soubor!)

          Můžete také přetahovat zvukové soubory z " +"okna správce zvukových souborů aplikace Rosegarden na segment v zobrazovací " +"ploše a z jiných programů do správce zvukových souborů.

          \n" + +#: ../docs/en/tips.cpp:317 +msgid "" +" \t \n" +"

          ...that you can set the tempo to match the duration of an audio segment " +"if you know it's an exact number of bars or beats long?

          Just select " +"the audio segment and use Composition -> Tempo and Time Signature -> Set " +"Tempo to Audio Segment Duration.

          \n" +msgstr "" +"\t\n" +"

          ...že můžete nastavit tempo tak, aby odpovídalo trvání zvukového " +"segmentu, pokud víte, že reprezentuje přesný počet taktů nebo dob?

          " +"Jednoduše vyberte zvukový segment a použijte možnost Skladba -> Tempo a " +"taktové označení -> Nastavit tempo a dobu trvání zvukového segmentu.\n" + +#: ../data/fonts/mappings/fonts.cpp:1 +msgid "Feta Pixmaps" +msgstr "Feta Pixmaps" + +#: ../data/fonts/mappings/fonts.cpp:2 ../data/fonts/mappings/fonts.cpp:7 +msgid "GNU Lilypond" +msgstr "GNU Lilypond" + +#: ../data/fonts/mappings/fonts.cpp:3 ../data/fonts/mappings/fonts.cpp:8 +msgid "Copyright (c) 1997--2003 Han-Wen Nienhuys and Jan Nieuwenhuizen" +msgstr "Copyright (c) 1997--2003 Han-Wen Nienhuys a Jan Nieuwenhuizen" + +#: ../data/fonts/mappings/fonts.cpp:4 ../data/fonts/mappings/fonts.cpp:9 +#: ../data/fonts/mappings/fonts.cpp:14 ../data/fonts/mappings/fonts.cpp:19 +#: ../data/fonts/mappings/fonts.cpp:24 ../data/fonts/mappings/fonts.cpp:29 +#: ../data/fonts/mappings/fonts.cpp:34 ../data/fonts/mappings/fonts.cpp:39 +#: ../data/fonts/mappings/fonts.cpp:44 ../data/fonts/mappings/fonts.cpp:49 +#: ../data/fonts/mappings/fonts.cpp:54 +msgid "Chris Cannam" +msgstr "Chris Cannam" + +#: ../data/fonts/mappings/fonts.cpp:5 ../data/fonts/mappings/fonts.cpp:40 +msgid "pixmap" +msgstr "pixmap" + +#: ../data/fonts/mappings/fonts.cpp:6 +msgid "Feta" +msgstr "Feta" + +#: ../data/fonts/mappings/fonts.cpp:10 ../data/fonts/mappings/fonts.cpp:15 +#: ../data/fonts/mappings/fonts.cpp:20 ../data/fonts/mappings/fonts.cpp:25 +#: ../data/fonts/mappings/fonts.cpp:30 ../data/fonts/mappings/fonts.cpp:35 +#: ../data/fonts/mappings/fonts.cpp:45 ../data/fonts/mappings/fonts.cpp:50 +#: ../data/fonts/mappings/fonts.cpp:55 +msgid "scalable" +msgstr "s možností změny velikosti" + +#: ../data/fonts/mappings/fonts.cpp:11 +msgid "Fughetta" +msgstr "Fughetta" + +#: ../data/fonts/mappings/fonts.cpp:12 +msgid "" +"Created by Blake Hodgetts; freely redistributable. See http://www.efn.org/" +"~bch/aboutfonts.html" +msgstr "" +"Vytvořil Blake Hodgetts; volně šiřitelné. Viz http://www.efn.org/~bch/" +"aboutfonts.html" + +#: ../data/fonts/mappings/fonts.cpp:13 +msgid "Copyright 1995-1999 Blake Hodgetts" +msgstr "Copyright 1995-1999 Blake Hodgetts" + +#: ../data/fonts/mappings/fonts.cpp:16 +msgid "Inkpen" +msgstr "Inkpen" + +#: ../data/fonts/mappings/fonts.cpp:17 +msgid "Inkpen is part of Sibelius, but other fonts may use the same mappings." +msgstr "" +"Inkpen je součástí aplikace Sibelius, ale ostatní písma mohou používat " +"stejné mapování." + +#: ../data/fonts/mappings/fonts.cpp:18 ../data/fonts/mappings/fonts.cpp:28 +msgid "Copyright Sibelius Software Ltd" +msgstr "Copyright Sibelius Software Ltd" + +#: ../data/fonts/mappings/fonts.cpp:21 +msgid "Maestro" +msgstr "Maestro" + +#: ../data/fonts/mappings/fonts.cpp:22 +msgid "Maestro is part of Finale, but other fonts use the same mappings." +msgstr "" +"Maestro je součástí aplikace Finale, ale ostatní písma mohou používat stejné " +"mapování." + +#: ../data/fonts/mappings/fonts.cpp:23 ../data/fonts/mappings/fonts.cpp:33 +msgid "Copyright Coda Inc" +msgstr "Copyright Coda Inc" + +#: ../data/fonts/mappings/fonts.cpp:27 +msgid "Opus is part of Sibelius, but other fonts may use the same mappings." +msgstr "" +"Opus je součástí aplikace Sibelius, ale ostatní písma mohou používat stejné " +"mapování." + +#: ../data/fonts/mappings/fonts.cpp:31 +msgid "Petrucci" +msgstr "Petrucci" + +#: ../data/fonts/mappings/fonts.cpp:32 +msgid "Petrucci is part of Finale, but other fonts use the same mappings." +msgstr "" +"Petrucci je součástí aplikace Finale, ale ostatní písma mohou používat " +"stejné mapování." + +#: ../data/fonts/mappings/fonts.cpp:36 +msgid "RG21" +msgstr "RG21" + +#: ../data/fonts/mappings/fonts.cpp:37 +msgid "Rosegarden 2.1" +msgstr "Rosegarden 2.1" + +#: ../data/fonts/mappings/fonts.cpp:38 +msgid "Copyright (c) 1994--2001 Chris Cannam" +msgstr "Copyright (c) 1994--2001 Chris Cannam" + +#: ../data/fonts/mappings/fonts.cpp:41 +msgid "Sonata" +msgstr "Sonata" + +#: ../data/fonts/mappings/fonts.cpp:42 +msgid "Adobe" +msgstr "Adobe" + +#: ../data/fonts/mappings/fonts.cpp:43 +msgid "Copyright Adobe Inc" +msgstr "Copyright Adobe Inc" + +#: ../data/fonts/mappings/fonts.cpp:46 +msgid "Steinberg" +msgstr "Steinberg" + +#: ../data/fonts/mappings/fonts.cpp:47 +msgid "The Steinberg Notation font is part of Cubase." +msgstr "Notační písmo Steinberg je součástí aplikace Cubase." + +#: ../data/fonts/mappings/fonts.cpp:48 +msgid "Copyright Steinberg Inc" +msgstr "Copyright Steinberg Inc" + +#: ../data/fonts/mappings/fonts.cpp:51 +msgid "Xinfonia" +msgstr "Xinfonia" + +#: ../data/fonts/mappings/fonts.cpp:52 +msgid "xemo.org" +msgstr "xemo.org" + +#: ../data/fonts/mappings/fonts.cpp:53 +msgid "Copyright 2001-2003 Xemus Software LLC" +msgstr "Copyright 2001-2003 Xemus Software LLC" + +#: ../data/styles/styles.cpp:1 +msgid "Classical" +msgstr "Klasický" + +#: ../data/styles/styles.cpp:2 +msgid "Cross" +msgstr "Křížový" + +#: ../data/styles/styles.cpp:3 +msgid "Mensural" +msgstr "Menzurální" + +#: ../data/styles/styles.cpp:4 +msgid "Triangle" +msgstr "Trojúhelníkový" diff --git a/po/cy.po b/po/cy.po new file mode 100644 index 0000000..0ab44b3 --- /dev/null +++ b/po/cy.po @@ -0,0 +1,13229 @@ +# translation of cy.po to Cymraeg +# translation of rosegarden.po to Cymraeg +# This file is distributed under the same license as the PACKAGE package. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. +# Kgyfieithu , 2003. +# KGyfieithu , 2003. +# KD at KGyfieithu , 2003. +# +msgid "" +msgstr "" +"Project-Id-Version: cy\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-04-24 18:19-0400\n" +"PO-Revision-Date: 2003-12-02 16:23+0000\n" +"Last-Translator: KD at KGyfieithu \n" +"Language-Team: Cymraeg \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.2\n" + +#: ../src/gui/dialogs/RescaleDialog.cpp:51 rc.cpp:192 rc.cpp:312 +#, no-c-format +msgid "Rescale" +msgstr "Ail-raddu" + +#: ../src/gui/dialogs/RescaleDialog.cpp:56 +#, fuzzy +msgid "Duration of selection" +msgstr "Torri'r dewisiad..." + +#: ../src/gui/dialogs/RescaleDialog.cpp:62 +msgid "Adjust times of following events accordingly" +msgstr "" + +#: ../src/gui/dialogs/PitchDialog.cpp:45 +#: ../src/gui/dialogs/RescaleDialog.cpp:72 +#: ../src/gui/dialogs/TimeDialog.cpp:51 ../src/gui/dialogs/TimeDialog.cpp:68 +#: ../src/gui/studio/BankEditorDialog.cpp:109 +msgid "Reset" +msgstr "Ail-osod" + +#: ../src/commands/segment/SegmentSplitByPitchCommand.cpp:46 +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:46 +msgid "Split by Pitch" +msgstr "Hollti gan Draw" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:54 +msgid "Starting split pitch" +msgstr "Traw a holltwyd sy'n dechrau:" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:57 +msgid "Range up and down to follow music" +msgstr "Symud i fyny ac i lawr i ddilyn y cerdd" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:63 +msgid "Duplicate non-note events" +msgstr "Dyblygu digwyddiadau di-nodyn" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:66 +msgid "Clef handling:" +msgstr "Trin cleff:" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:69 +msgid "Leave clefs alone" +msgstr "Gadael i'r cleffau fod" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:70 +msgid "Guess new clefs" +msgstr "Amcangyfrif cleffau newydd" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:71 +msgid "Use treble and bass clefs" +msgstr "Defnyddio cleffau trebl a bas" + +#: ../src/gui/dialogs/DocumentConfigureDialog.cpp:64 +#, fuzzy +msgid "Document Properties" +msgstr "Golygu Priod&weddau'r Ddogfen..." + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:45 +#: ../src/gui/editors/notation/NotationView.cpp:6048 +#, fuzzy +msgid "Make Ornament" +msgstr "Enw'r arwydd" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:183 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:179 +#: ../src/gui/dialogs/EventEditDialog.cpp:128 +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:49 +#: ../src/gui/studio/DeviceEditorDialog.cpp:74 +#: ../src/gui/studio/NameSetEditor.cpp:72 +#: ../src/gui/widgets/ColourTable.cpp:51 +msgid "Name" +msgstr "Enw" + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:51 +msgid "" +"The name is used to identify both the ornament\n" +"and the triggered segment that stores\n" +"the ornament's notes." +msgstr "" + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:54 +#, fuzzy +msgid "Name: " +msgstr "Enw:" + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:57 +#: ../src/gui/editors/eventlist/EventView.cpp:717 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:92 +#, fuzzy +msgid "Base pitch" +msgstr "Traw'r cywair:" + +#: ../src/gui/dialogs/TextEventDialog.cpp:57 +#: ../src/gui/editors/eventlist/EventView.cpp:140 +msgid "Text" +msgstr "Testun" + +#: ../src/gui/dialogs/TextEventDialog.cpp:66 +msgid "Specification" +msgstr "Penodiad" + +#: ../src/gui/dialogs/TextEventDialog.cpp:68 +msgid "Preview" +msgstr "Rhagolygu" + +#: ../src/gui/dialogs/TextEventDialog.cpp:72 +msgid "Text: " +msgstr "Testun:" + +#: ../src/gui/dialogs/TextEventDialog.cpp:79 +msgid "Style: " +msgstr "Arddull:" + +#: ../src/gui/dialogs/TextEventDialog.cpp:90 +msgid "Dynamic" +msgstr "Dinamig" + +#: ../src/gui/dialogs/TextEventDialog.cpp:93 +msgid "Direction" +msgstr "Cyfeiriad" + +#: ../src/gui/dialogs/TextEventDialog.cpp:96 +msgid "Local Direction" +msgstr "Cyfeiriad Lleol" + +#: ../src/gui/dialogs/TempoDialog.cpp:63 +#: ../src/gui/dialogs/TextEventDialog.cpp:99 +#: ../src/gui/editors/tempo/TempoView.cpp:91 +msgid "Tempo" +msgstr "Tempo" + +#: ../src/gui/dialogs/TextEventDialog.cpp:102 +msgid "Local Tempo" +msgstr "Tempo Lleol" + +#: ../src/gui/dialogs/TextEventDialog.cpp:105 +msgid "Lyric" +msgstr "Geiriau" + +#: ../src/gui/dialogs/TextEventDialog.cpp:108 +#: ../src/gui/editors/notation/NotationView.cpp:4242 +#, fuzzy +msgid "Chord" +msgstr "Cord" + +#: ../src/gui/dialogs/TextEventDialog.cpp:111 +msgid "Annotation" +msgstr "Anodiad" + +#: ../src/gui/dialogs/TextEventDialog.cpp:114 +#, fuzzy +msgid "LilyPond Directive" +msgstr "Ffeiliau Lilypond" + +#: ../src/gui/dialogs/TextEventDialog.cpp:138 +msgid "Verse: " +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:148 +#, fuzzy +msgid "Dynamic: " +msgstr "Dinamig" + +#: ../src/gui/dialogs/TextEventDialog.cpp:152 +msgid "ppp" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:153 +msgid "pp" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:154 +msgid "p" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:155 +msgid "mp" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:156 +msgid "mf" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:157 +msgid "f" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:158 +#, fuzzy +msgid "ff" +msgstr "i ffwrdd" + +#: ../src/gui/dialogs/TextEventDialog.cpp:159 +#, fuzzy +msgid "fff" +msgstr "i ffwrdd" + +#: ../src/gui/dialogs/TextEventDialog.cpp:160 +msgid "rfz" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:161 +msgid "sf" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:165 +#, fuzzy +msgid "Direction: " +msgstr "Cyfeiriad" + +#: ../src/gui/dialogs/TextEventDialog.cpp:174 +msgid " ," +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:175 +msgid "D.C. al Fine" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:176 +msgid "D.S. al Fine" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:177 +#, fuzzy +msgid "Fine" +msgstr "Hidl" + +#: ../src/gui/dialogs/TextEventDialog.cpp:178 +msgid "D.S. al Coda" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:179 +#, fuzzy +msgid "to Coda" +msgstr "Cord" + +#: ../src/gui/dialogs/TextEventDialog.cpp:180 +#, fuzzy +msgid "Coda" +msgstr "Cleff" + +#: ../src/gui/dialogs/TextEventDialog.cpp:184 +#, fuzzy +msgid "Local Direction: " +msgstr "Cyfeiriad Lleol" + +#: ../src/gui/dialogs/TextEventDialog.cpp:188 +#, fuzzy +msgid "accel." +msgstr "Sianel" + +#: ../src/gui/dialogs/TextEventDialog.cpp:189 +msgid "ritard." +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:190 +msgid "ralletando" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:191 +#, fuzzy +msgid "a tempo" +msgstr "Tempo newydd" + +#: ../src/gui/dialogs/TextEventDialog.cpp:192 +#, fuzzy +msgid "legato" +msgstr "Cyfreithiol" + +#: ../src/gui/dialogs/TextEventDialog.cpp:193 +#, fuzzy +msgid "simile" +msgstr "Hidl" + +#: ../src/gui/dialogs/TextEventDialog.cpp:194 +msgid "pizz." +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:195 +#, fuzzy +msgid "arco" +msgstr "&Marcato" + +#: ../src/gui/dialogs/TextEventDialog.cpp:196 +msgid "non vib." +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:197 +msgid "sul pont." +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:198 +#: ../src/gui/dialogs/TextEventDialog.cpp:200 +msgid "sul tasto" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:199 +msgid "con legno" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:201 +msgid "sul G" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:202 +msgid "ordinario" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:203 +#, fuzzy +msgid "Muta in " +msgstr "Lleiafrif" + +#: ../src/gui/dialogs/TextEventDialog.cpp:204 +msgid "volti subito " +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:205 +msgid "soli" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:206 +msgid "div." +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:210 +#, fuzzy +msgid "Tempo: " +msgstr "Tempo" + +#: ../src/gui/dialogs/TextEventDialog.cpp:214 +#: ../src/gui/dialogs/TextEventDialog.cpp:238 +#, fuzzy +msgid "Grave" +msgstr "Gwyrdd" + +#: ../src/gui/dialogs/TextEventDialog.cpp:215 +#: ../src/gui/dialogs/TextEventDialog.cpp:239 +#, fuzzy +msgid "Adagio" +msgstr "Sain" + +#: ../src/gui/dialogs/TextEventDialog.cpp:216 +#: ../src/gui/dialogs/TextEventDialog.cpp:240 +msgid "Largo" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:217 +#: ../src/gui/dialogs/TextEventDialog.cpp:241 +#, fuzzy +msgid "Lento" +msgstr "Cyfreithiol" + +#: ../src/gui/dialogs/TextEventDialog.cpp:218 +#: ../src/gui/dialogs/TextEventDialog.cpp:242 +msgid "Andante" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:219 +#: ../src/gui/dialogs/TextEventDialog.cpp:243 +#, fuzzy +msgid "Moderato" +msgstr "Addasu A&rwydd" + +#: ../src/gui/dialogs/TextEventDialog.cpp:220 +#: ../src/gui/dialogs/TextEventDialog.cpp:244 +msgid "Allegretto" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:221 +#: ../src/gui/dialogs/TextEventDialog.cpp:245 +#, fuzzy +msgid "Allegro" +msgstr "Popeth" + +#: ../src/gui/dialogs/TextEventDialog.cpp:222 +#: ../src/gui/dialogs/TextEventDialog.cpp:246 +#, fuzzy +msgid "Vivace" +msgstr "Golygu" + +#: ../src/gui/dialogs/TextEventDialog.cpp:223 +#: ../src/gui/dialogs/TextEventDialog.cpp:247 +#, fuzzy +msgid "Presto" +msgstr "saib" + +#: ../src/gui/dialogs/TextEventDialog.cpp:224 +#: ../src/gui/dialogs/TextEventDialog.cpp:248 +#, fuzzy +msgid "Prestissimo" +msgstr "Cyflwyniad" + +#: ../src/gui/dialogs/TextEventDialog.cpp:225 +#: ../src/gui/dialogs/TextEventDialog.cpp:249 +#, fuzzy +msgid "Maestoso" +msgstr "Metronom" + +#: ../src/gui/dialogs/TextEventDialog.cpp:226 +#: ../src/gui/dialogs/TextEventDialog.cpp:250 +#, fuzzy +msgid "Sostenuto" +msgstr "T&enuto" + +#: ../src/gui/dialogs/TextEventDialog.cpp:227 +#: ../src/gui/dialogs/TextEventDialog.cpp:251 +#, fuzzy +msgid "Tempo Primo" +msgstr "Tempo wrth amser" + +#: ../src/gui/dialogs/TextEventDialog.cpp:234 +#, fuzzy +msgid "Local Tempo: " +msgstr "Tempo Lleol" + +#: ../src/gui/dialogs/TextEventDialog.cpp:255 +#, fuzzy +msgid "Directive: " +msgstr "Cyfeiriad" + +#: ../src/gui/dialogs/TextEventDialog.cpp:312 +msgid "Example" +msgstr "Enghraifft" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:65 +msgid "Event Filter" +msgstr "Hidlen Ddigwyddiadau" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:86 +#, fuzzy +msgid "Note Events" +msgstr "Symud Digwyddiadau" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:90 +msgid "lowest:" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:93 +msgid "highest:" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:96 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:141 +#: ../src/gui/widgets/PitchChooser.cpp:53 +msgid "Pitch:" +msgstr "Traw:" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:99 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:163 +msgid "Velocity:" +msgstr "Buanedd:" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:102 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:129 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:257 +msgid "Duration:" +msgstr "Parhad:" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:107 +#: ../src/gui/dialogs/EventFilterDialog.cpp:114 +#: ../src/gui/dialogs/EventFilterDialog.cpp:121 +msgid "include" +msgstr "cynnwys" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:108 +#: ../src/gui/dialogs/EventFilterDialog.cpp:115 +#: ../src/gui/dialogs/EventFilterDialog.cpp:122 +msgid "exclude" +msgstr "gwahardd" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:136 +#: ../src/gui/dialogs/EventFilterDialog.cpp:155 +#: ../src/gui/editors/eventlist/EventView.cpp:172 +#: ../src/gui/editors/eventlist/EventView.cpp:179 +#: ../src/gui/editors/eventlist/EventView.cpp:186 +#, fuzzy +msgid "edit" +msgstr "Golygu" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:141 +#: ../src/gui/dialogs/EventFilterDialog.cpp:157 +msgid "choose a pitch using a staff" +msgstr "dewis traw gan ddefnyddio erwydd" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:182 +#: ../src/gui/dialogs/EventFilterDialog.cpp:188 +msgid "longest" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:200 +#, fuzzy +msgid "Include all" +msgstr "cynnwys" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:203 +msgid "Include entire range of values" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:206 +#, fuzzy +msgid "Exclude all" +msgstr "gwahardd" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:209 +msgid "Exclude entire range of values" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:233 +#: ../src/gui/dialogs/EventFilterDialog.cpp:234 +#, fuzzy +msgid "shortest" +msgstr "saib" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:333 +#, fuzzy +msgid "Lowest pitch" +msgstr "Traw'r nodyn:" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:343 +#, fuzzy +msgid "Highest pitch" +msgstr "Traw'r cywair:" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:56 +#: ../src/gui/editors/notation/NotationView.cpp:1619 +#: ../src/gui/editors/notation/NotationView.cpp:6088 +msgid "Use Ornament" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:260 +#: ../src/gui/configuration/NotationConfigurationPage.h:64 +#: ../src/gui/configuration/NotationConfigurationPage.h:65 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:63 +msgid "Notation" +msgstr "Nodiant" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:68 +#, fuzzy +msgid "Display as: " +msgstr "Dangos fel amseriad cyffredin" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:84 +#, fuzzy +msgid "Trill" +msgstr "&Siglnod" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:84 +msgid "Trill with line" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:84 +msgid "Trill line only" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:85 +#, fuzzy +msgid "Turn" +msgstr "&Tro" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:85 +msgid "Mordent" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:85 +#, fuzzy +msgid "Inverted mordent" +msgstr "Mewnosod Digwyddiad" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:86 +msgid "Long mordent" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:86 +msgid "Long inverted mordent" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:94 +#, fuzzy +msgid "Text mark" +msgstr "Testun:" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:98 +#, fuzzy +msgid " Text: " +msgstr "Testun:" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:104 +#, fuzzy +msgid "Performance" +msgstr "Newid Rhaglen" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:109 +msgid "Perform using triggered segment: " +msgstr "" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:75 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:123 +#, fuzzy +msgid "Perform with timing: " +msgstr "Cynnull efo amseriad newydd:" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:81 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:129 +msgid "As stored" +msgstr "" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:82 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:130 +msgid "Truncate if longer than note" +msgstr "" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:83 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:131 +msgid "End at same time as note" +msgstr "" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:84 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:132 +msgid "Stretch or squash segment to note duration" +msgstr "" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:86 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:134 +msgid "Adjust pitch to note" +msgstr "" + +#: ../src/gui/dialogs/PitchPickerDialog.cpp:40 +msgid "Pitch Selector" +msgstr "Dewisydd Traw" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:44 +#, fuzzy +msgid "Audio Segment Duration" +msgstr "Parhad" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:50 +msgid "The selected audio segment contains:" +msgstr "" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:59 +#, fuzzy +msgid "beat(s)" +msgstr "Curiad" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:60 +msgid "bar(s)" +msgstr "" + +#: ../src/gui/dialogs/TupletDialog.cpp:51 +msgid "Tuplet" +msgstr "Plygyn" + +#: ../src/gui/dialogs/TupletDialog.cpp:58 +msgid "New timing for tuplet group" +msgstr "Amseriad newydd i gasgliad plygau" + +#: ../src/gui/dialogs/TupletDialog.cpp:76 +msgid "Play " +msgstr "Chwarae" + +#: ../src/gui/dialogs/TupletDialog.cpp:98 +msgid "in the time of " +msgstr "yn amser" + +#: ../src/gui/dialogs/TupletDialog.cpp:104 +msgid "Timing is already correct: update display only" +msgstr "" + +#: ../src/gui/dialogs/TupletDialog.cpp:114 +msgid "Timing calculations" +msgstr "Cyfrifiadau amseriad" + +#: ../src/gui/dialogs/TupletDialog.cpp:120 +msgid "Selected region:" +msgstr "Ardal dewisedig:" + +#: ../src/gui/dialogs/TupletDialog.cpp:129 +msgid "Group with current timing:" +msgstr "Cynnull efo amseriad cyfredol:" + +#: ../src/gui/dialogs/TupletDialog.cpp:135 +msgid "Group with new timing:" +msgstr "Cynnull efo amseriad newydd:" + +#: ../src/gui/dialogs/TupletDialog.cpp:141 +msgid "Gap created by timing change:" +msgstr "Bwlch a greuwyd gan newid amseriad:" + +#: ../src/gui/dialogs/TupletDialog.cpp:149 +msgid "Unchanged at end of selection:" +msgstr "Heb ei newid wrth ddiwedd y ddewisiad:" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:63 rc.cpp:372 +#, no-c-format +msgid "Metronome" +msgstr "Metronom" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:77 +#, fuzzy +msgid "Metronome Instrument" +msgstr "Gosod Offeryn" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:82 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:150 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:183 +#: ../src/gui/studio/DeviceEditorDialog.cpp:73 +#: ../src/gui/studio/DeviceManagerDialog.cpp:105 +#: ../src/gui/studio/DeviceManagerDialog.cpp:163 +#: ../src/gui/studio/RemapInstrumentDialog.cpp:66 +msgid "Device" +msgstr "Dyfais" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:101 +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:89 +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:215 +#: ../src/gui/studio/DeviceEditorDialog.cpp:195 +#: ../src/gui/studio/DeviceEditorDialog.cpp:218 +#: ../src/gui/studio/DeviceEditorDialog.cpp:230 +#: ../src/gui/studio/DeviceManagerDialog.cpp:196 +#: ../src/gui/studio/DeviceManagerDialog.cpp:440 +#: ../src/gui/studio/DeviceManagerDialog.cpp:452 +msgid "No connection" +msgstr "Dim cysylltiad" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:112 +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:111 +#: ../src/gui/editors/parameters/InstrumentParameterBox.cpp:53 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1209 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:159 +#: ../src/gui/general/PresetHandlerDialog.cpp:92 +#: ../src/gui/studio/MidiMixerWindow.cpp:204 +#: ../src/gui/studio/RemapInstrumentDialog.cpp:67 +msgid "Instrument" +msgstr "Offeryn" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:118 +#, fuzzy +msgid "Beats" +msgstr "Curiad" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:184 +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:123 +msgid "Resolution" +msgstr "Cydraniad" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:309 +#: ../src/gui/configuration/NotationConfigurationPage.cpp:139 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:205 +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:125 +#: ../src/gui/editors/matrix/MatrixView.cpp:2132 +#: ../src/gui/editors/notation/NotationView.cpp:1582 +#: ../src/gui/widgets/QuantizeParameters.cpp:128 +#: ../src/gui/widgets/QuantizeParameters.cpp:301 +msgid "None" +msgstr "Dim" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:126 +msgid "Bars only" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:127 +#, fuzzy +msgid "Bars and beats" +msgstr "Pwysleisio curiadau" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:128 +msgid "Bars, beats, and divisions" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:132 +#, fuzzy +msgid "Bar velocity" +msgstr "Buanedd y nodyn:" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:139 +#, fuzzy +msgid "Beat velocity" +msgstr "Buanedd y nodyn:" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:146 +#, fuzzy +msgid "Sub-beat velocity" +msgstr "Buanedd y nodyn:" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:155 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:324 +#, fuzzy +msgid "Pitch" +msgstr "Traw:" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:160 +#, fuzzy +msgid "for Bar" +msgstr "Bar Dechrau" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:161 +#, fuzzy +msgid "for Beat" +msgstr "Curiad" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:162 +msgid "for Sub-beat" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:166 +#, fuzzy +msgid "Metronome Activated" +msgstr "Gosodiadau Metronôm" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:167 +#, fuzzy +msgid "Playing" +msgstr "Chwarae" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:168 +#, fuzzy +msgid "Recording" +msgstr "Ail-&raddu..." + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:46 +msgid "Choose Text Encoding" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:50 +msgid "" +"\n" +"This file contains text in an unknown language encoding.\n" +"\n" +"Please select one of the following estimated text encodings\n" +"for use with the text in this file:\n" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:61 +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:77 +msgid "Japanese Shift-JIS" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:62 +msgid "Unicode variable-width" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:63 +msgid "Western Europe" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:64 +msgid "Western Europe + Euro" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:65 +msgid "Eastern Europe" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:66 +msgid "Southern Europe" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:67 +msgid "Northern Europe" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:68 +#, fuzzy +msgid "Cyrillic" +msgstr "Geiriau" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:69 +msgid "Arabic" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:70 +#, fuzzy +msgid "Greek" +msgstr "Gwyrdd" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:71 +msgid "Hebrew" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:72 +msgid "Turkish" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:73 +msgid "Nordic" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:74 +msgid "Thai" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:75 +#, fuzzy +msgid "Baltic" +msgstr "Curiad" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:76 +msgid "Celtic" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:78 +msgid "Traditional Chinese" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:79 +#, fuzzy +msgid "Simplified Chinese" +msgstr "Cysoni" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:80 +msgid "Russian" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:81 +msgid "Ukrainian" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:82 +#, fuzzy +msgid "Tamil" +msgstr "&Siglnod" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:117 +#, c-format +msgid "Microsoft Code Page %1" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:123 +#: ../src/gui/editors/matrix/MatrixView.cpp:1490 +#, fuzzy +msgid "%1 (%2)" +msgstr "&%1%2" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:142 +msgid "" +"\n" +"Example text from file:" +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:59 +#: ../src/gui/editors/tempo/TempoView.cpp:92 +msgid "Time Signature" +msgstr "Arwydd Amseriad" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:82 +msgid "Time signature" +msgstr "Arwydd amseriad" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:116 +msgid "Time where signature takes effect" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:83 +#: ../src/gui/dialogs/TempoDialog.cpp:128 +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:129 +#: ../src/gui/general/PresetHandlerDialog.cpp:101 +msgid "Scope" +msgstr "Cwmpas" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:141 +#, c-format +msgid "Insertion point is at start of measure %1." +msgstr "Mae'r pwynt mewnosod wrth ddechrau'r measure %1." + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:145 +#, c-format +msgid "Insertion point is in the middle of measure %1." +msgstr "Mae'r pwynt mewnosod yng nghanol measure %1." + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:150 +msgid "Insertion point is at start of composition." +msgstr "Mae'r pwynt mewnosod wrth ddechrau'r cyfansoddiad." + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:155 +msgid "Start measure %1 here" +msgstr "Dechrau measure %1 yma" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:159 +#, fuzzy, c-format +msgid "Change time from start of measure %1" +msgstr "Newid amser o ddechrau measure %1" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:166 +#, c-format +msgid "Time change will take effect at the start of measure %1." +msgstr "Bydd y newid amser yn cymryd effaith o ddechrau measure %1." + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:176 +#, fuzzy +msgid "Hide the time signature" +msgstr "Gwneud yr arwydd amseriad newydd yn gudd." + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:181 +#, fuzzy +msgid "Hide the affected bar lines" +msgstr "Clymu nodau wrth linellau bar ayyb" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:186 +msgid "Show as common time" +msgstr "Dangos fel amseriad cyffredin" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:191 +msgid "Correct the durations of following measures" +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:280 +msgid "Display as common time" +msgstr "Dangos fel amseriad cyffredin" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:284 +msgid "Display as cut common time" +msgstr "Dangos fel amseriad cyffredin wedi'i dorri" + +#: ../src/gui/dialogs/ConfigureDialog.cpp:66 +#, fuzzy +msgid "Configure Rosegarden" +msgstr "Rosegarden" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:53 +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:61 +msgid "Edit Marker" +msgstr "Golygu Arwydd" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:78 +#, fuzzy +msgid "Marker Time" +msgstr "Amser yr arwydd" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:94 +msgid "Marker Properties" +msgstr "Priodweddau Arwydd" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:100 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:554 +msgid "Text:" +msgstr "Testun:" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:104 +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:85 +msgid "Description:" +msgstr "Disgrifiad:" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:46 +msgid "Merge File" +msgstr "Cyfuno Ffeil" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:53 +msgid "Merge new file " +msgstr "Cyfuno ffeil newydd" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:56 +msgid "At start of existing composition" +msgstr "Wrth ddechrau cyfansoddiad sy'n bodoli" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:57 +msgid "From end of existing composition" +msgstr "O ddiwedd cyfansoddiad sy'n bodoli" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:61 +msgid "The file has different time signatures or tempos." +msgstr "Mae'r ffeil efo arwyddion amseriad neu tempi gwahanol." + +#: ../src/gui/dialogs/FileMergeDialog.cpp:62 +msgid "Import these as well" +msgstr "Mewnosod y rhain hefyd" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:171 +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:44 +msgid "Sequencer status" +msgstr "Cyflwr y dilyniannydd" + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:48 +msgid "Sequencer status:" +msgstr "Cyflwr y dilyniannydd:" + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:50 +msgid "Status not available." +msgstr "Nid yw'r cyflwr ar gael." + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:57 +msgid "Sequencer is not running or is not responding." +msgstr "Nid yw'r dilyniannydd yn rhedeg, neu nid yw'n ymateb." + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:64 +msgid "Sequencer is not returning a valid status report." +msgstr "Nid yw'r dilyniannydd yn dychwelyd adroddiad cyflwr dilys." + +#: ../src/gui/dialogs/AddTracksDialog.cpp:46 +#, fuzzy +msgid "Add Tracks" +msgstr "Ychwanegu Traciau..." + +#: ../src/gui/dialogs/AddTracksDialog.cpp:54 +#, fuzzy +msgid "How many tracks do you want to add?" +msgstr "Faint o draciau yr ydych eisiau eu ychwanegu? (mwyaf 24)" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:62 +#, fuzzy +msgid "Add tracks" +msgstr "Ymladd" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:64 +msgid "At the top" +msgstr "" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:65 +#, fuzzy +msgid "Above the current selected track" +msgstr "Distewi pob un trac ond yr yn sydd wedi'i ddewis yn gyfredol" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:66 +#, fuzzy +msgid "Below the current selected track" +msgstr "Distewi pob un trac ond yr yn sydd wedi'i ddewis yn gyfredol" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:67 +msgid "At the bottom" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:75 +msgid "Event Properties" +msgstr "Priodweddau Digwyddiadau" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:81 +msgid "Event type:" +msgstr "Math y ddigwyddiad:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:117 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:251 +#: ../src/gui/editors/segment/MarkerEditor.cpp:97 +msgid "Absolute time:" +msgstr "Amseriad llwyr:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:156 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:323 +msgid "Controller name:" +msgstr "Enw'r rheolydd:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:157 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:530 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:562 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:563 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:602 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:631 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:267 +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:269 +#: ../src/gui/editors/segment/MarkerEditor.cpp:279 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:272 +#: ../src/gui/studio/AudioMixerWindow.cpp:388 +#: ../src/gui/studio/AudioMixerWindow.cpp:519 +#: ../src/gui/studio/AudioMixerWindow.cpp:683 +#: ../src/gui/studio/AudioMixerWindow.cpp:722 +#: ../src/gui/studio/AudioMixerWindow.cpp:904 +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:121 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:174 +msgid "Meta string:" +msgstr "Llinyn meta:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:179 +msgid "Load data" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:181 +#, fuzzy +msgid "Save data" +msgstr "Cadw fel..." + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:192 +#, fuzzy +msgid "Notation Properties" +msgstr "Paramedrau Nodiant" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:198 +msgid "Lock to changes in performed values" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:205 +#, fuzzy +msgid "Notation time:" +msgstr "Nodiad" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:217 +#, fuzzy +msgid "Notation duration:" +msgstr "Yn chwarae ffeil sain" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:283 +msgid "Note pitch:" +msgstr "Traw'r nodyn:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:291 +msgid "Note velocity:" +msgstr "Buanedd y nodyn:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:317 +msgid "Controller number:" +msgstr "Rhif y rheolydd:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:326 +msgid "Controller value:" +msgstr "Gwerth y rheolydd:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:354 +msgid "Key pitch:" +msgstr "Traw'r cywair:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:362 +msgid "Key pressure:" +msgstr "Gwasgedd yr allwedd:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:390 +msgid "Channel pressure:" +msgstr "Gwasgedd y sianel:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:418 +msgid "Program change:" +msgstr "Newid y rhaglen:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:461 +msgid "Data length:" +msgstr "Hyd y data:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:462 +#, fuzzy +msgid "Data:" +msgstr "Curiad" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:480 +msgid "Pitchbend MSB:" +msgstr "Plygu traw MSB:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:488 +msgid "Pitchbend LSB:" +msgstr "Plygu traw LSB:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:523 +#, fuzzy +msgid "Indication:" +msgstr "Dangosiad" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:553 +msgid "Text type:" +msgstr "Math y testun:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:596 +msgid "Clef type:" +msgstr "Math y clef:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:625 +msgid "Key name:" +msgstr "Enw'r cywair:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:674 +msgid "Unsupported event type:" +msgstr "Math o ddigwyddiad na chynhelir:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:931 +#, fuzzy +msgid "Edit Event Time" +msgstr "Golygu Digwyddiad" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:943 +#, fuzzy +msgid "Edit Event Notation Time" +msgstr "Golygu Digwyddiad" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:955 +#, fuzzy +msgid "Edit Duration" +msgstr "Parhad" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:968 +#, fuzzy +msgid "Edit Notation Duration" +msgstr "Parhad" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:981 +#, fuzzy +msgid "Edit Pitch" +msgstr "%1 Traw" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:991 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:1016 +msgid "*.syx|System exclusive files (*.syx)" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:992 +#, fuzzy +msgid "Load System Exclusive data in File" +msgstr "Cyfyngedig i'r Cysawd" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:1017 +#, fuzzy +msgid "Save System Exclusive data to..." +msgstr "Cyfyngedig i'r Cysawd" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:46 +msgid "Locate audio file" +msgstr "Lleoli ffeil sain" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:50 +msgid "&Skip" +msgstr "&Osgoi" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:51 +#, fuzzy +msgid "Skip &All" +msgstr "Dewis &Popeth" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:52 +msgid "&Locate" +msgstr "&Lleoli" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:57 +msgid "" +"Can't find file \"%1\".\n" +"Would you like to try and locate this file or skip it?" +msgstr "" +"Methu canfod ffeil \"%1\". \n" +"Ydych eisiau ceisio lleoli'r ffeil yma neu'i osgoi?" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:71 +#, fuzzy +msgid "" +"%1|Requested file (%2)\n" +"*.wav|WAV files (*.wav)" +msgstr "ffeiliau *.wav|WAV (*.wav)" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:74 +msgid "Select an Audio File" +msgstr "Dewis Ffeil Sain" + +#: ../src/gui/dialogs/ClefDialog.cpp:53 ../src/gui/dialogs/ClefDialog.cpp:62 +#: ../src/gui/dialogs/ClefDialog.cpp:79 ../src/gui/dialogs/ClefDialog.cpp:90 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:278 +msgid "Clef" +msgstr "Cleff" + +#: ../src/gui/dialogs/ClefDialog.cpp:65 +msgid "Existing notes following clef change" +msgstr "Nodau mewn bod ar ol newid cleff" + +#: ../src/gui/dialogs/ClefDialog.cpp:71 +msgid "Lower clef" +msgstr "Clef is" + +#: ../src/gui/dialogs/ClefDialog.cpp:77 +msgid "Up an Octave" +msgstr "I Fyny Wythfed" + +#: ../src/gui/dialogs/ClefDialog.cpp:84 +msgid "Down an Octave" +msgstr "I lawr Wythfed" + +#: ../src/gui/dialogs/ClefDialog.cpp:88 +msgid "Higher clef" +msgstr "Cleff uwch" + +#: ../src/gui/dialogs/ClefDialog.cpp:96 +#: ../src/gui/dialogs/KeySignatureDialog.cpp:152 +msgid "Maintain current pitches" +msgstr "Cynnal trawiau cyfredol" + +#: ../src/gui/dialogs/ClefDialog.cpp:99 +msgid "Transpose into appropriate octave" +msgstr "Trawsgyweirio i'r wythfed addas" + +#: ../src/gui/dialogs/ClefDialog.cpp:231 +#, fuzzy +msgid "%1 down an octave" +msgstr "I lawr Wythfed" + +#: ../src/gui/dialogs/ClefDialog.cpp:234 +#, fuzzy +msgid "%1 down two octaves" +msgstr "I lawr Wythfed" + +#: ../src/gui/dialogs/ClefDialog.cpp:237 +#, fuzzy +msgid "%1 up an octave" +msgstr "I Fyny Wythfed" + +#: ../src/gui/dialogs/ClefDialog.cpp:240 +msgid "%1 up two octaves" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:249 +msgid "Treble" +msgstr "Trebl" + +#: ../src/gui/dialogs/ClefDialog.cpp:251 +#, fuzzy +msgid "French violin" +msgstr "Cysoni" + +#: ../src/gui/dialogs/ClefDialog.cpp:253 +#, fuzzy +msgid "Soprano" +msgstr "S&forzando" + +#: ../src/gui/dialogs/ClefDialog.cpp:255 +#, fuzzy +msgid "Mezzo-soprano" +msgstr "S&forzando" + +#: ../src/gui/dialogs/ClefDialog.cpp:257 +msgid "Alto" +msgstr "Alto" + +#: ../src/gui/dialogs/ClefDialog.cpp:259 +msgid "Tenor" +msgstr "Tenor" + +#: ../src/gui/dialogs/ClefDialog.cpp:261 +#, fuzzy +msgid "C-baritone" +msgstr "Amrywiad" + +#: ../src/gui/dialogs/ClefDialog.cpp:263 +#, fuzzy +msgid "F-baritone" +msgstr "Amrywiad" + +#: ../src/gui/dialogs/ClefDialog.cpp:265 +msgid "Bass" +msgstr "Bas" + +#: ../src/gui/dialogs/ClefDialog.cpp:267 +#, fuzzy +msgid "Sub-bass" +msgstr "Bas" + +#: ../src/gui/dialogs/CountdownDialog.cpp:52 +#, fuzzy +msgid "Recording..." +msgstr "Ail-&raddu..." + +#: ../src/gui/dialogs/CountdownDialog.cpp:60 +#, fuzzy +msgid "Recording time remaining: " +msgstr "Amser recordio sain ar ol:" + +#: ../src/gui/dialogs/CountdownDialog.cpp:120 +msgid "Just how big is your hard disk?" +msgstr "Faint mor fawr yn union yw'ch disg galed?" + +#: ../src/gui/dialogs/CountdownDialog.cpp:154 +#, fuzzy +msgid "Recording beyond end of composition: " +msgstr "Amser recordio sain ar ol:" + +#: ../src/gui/dialogs/IntervalDialog.cpp:52 +msgid "Specify Interval" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:58 +msgid "Reference note:" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:59 +#, fuzzy +msgid "Target note:" +msgstr "chwarter nodyn" + +#: ../src/gui/dialogs/IntervalDialog.cpp:68 +#: ../src/gui/dialogs/IntervalDialog.cpp:315 +msgid "a perfect unison" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:76 +msgid "Effect on Key" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:77 +#, fuzzy +msgid "Transpose within key" +msgstr "Trawsgyweirio i'r gywair yma" + +#: ../src/gui/dialogs/IntervalDialog.cpp:79 +#, fuzzy +msgid "Change key for selection" +msgstr "Heb ei newid wrth ddiwedd y ddewisiad:" + +#: ../src/gui/dialogs/IntervalDialog.cpp:89 +msgid "" +"Adjust segment transposition in opposite direction (maintain audible pitch)" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:190 +#: ../src/gui/dialogs/IntervalDialog.cpp:220 +msgid "a diminished" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:192 +#: ../src/gui/dialogs/IntervalDialog.cpp:222 +msgid "an augmented" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:194 +#: ../src/gui/dialogs/IntervalDialog.cpp:224 +msgid "a doubly diminished" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:196 +#: ../src/gui/dialogs/IntervalDialog.cpp:226 +msgid "a doubly augmented" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:198 +#: ../src/gui/dialogs/IntervalDialog.cpp:228 +msgid "a triply diminished" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:200 +#: ../src/gui/dialogs/IntervalDialog.cpp:230 +msgid "a triply augmented" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:202 +msgid "a quadruply diminished" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:204 +#: ../src/gui/dialogs/IntervalDialog.cpp:232 +msgid "a quadruply augmented" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:206 +#: ../src/gui/dialogs/IntervalDialog.cpp:234 +msgid "a perfect" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:208 +#: ../src/gui/dialogs/IntervalDialog.cpp:236 +msgid "an (unknown, %1)" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:216 +#, fuzzy +msgid "a minor" +msgstr "Cyfuno" + +#: ../src/gui/dialogs/IntervalDialog.cpp:218 +msgid "a major" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:239 +#, fuzzy +msgid "an (unknown)" +msgstr "Anhysbys" + +#: ../src/gui/dialogs/IntervalDialog.cpp:248 +#: ../src/gui/dialogs/IntervalDialog.cpp:251 +#, fuzzy +msgid "%1 octave" +msgstr "I Fyny Wythfed" + +#: ../src/gui/dialogs/IntervalDialog.cpp:254 +#, fuzzy +msgid "%1 unison" +msgstr "Uned" + +#: ../src/gui/dialogs/IntervalDialog.cpp:258 +#, fuzzy +msgid "%1 second" +msgstr "Ail Werth" + +#: ../src/gui/dialogs/IntervalDialog.cpp:261 +#, fuzzy +msgid "%1 third" +msgstr "Arall" + +#: ../src/gui/dialogs/IntervalDialog.cpp:264 +#, fuzzy +msgid "%1 fourth" +msgstr "%1 lleddf" + +#: ../src/gui/dialogs/IntervalDialog.cpp:267 +#, fuzzy +msgid "%1 fifth" +msgstr "Traw:" + +#: ../src/gui/dialogs/IntervalDialog.cpp:270 +#, fuzzy +msgid "%1 sixth" +msgstr "Traw:" + +#: ../src/gui/dialogs/IntervalDialog.cpp:273 +#, fuzzy +msgid "%1 seventh" +msgstr "Ail-feintio Digwyddiad" + +#: ../src/gui/dialogs/IntervalDialog.cpp:276 +#: ../src/gui/studio/DeviceManagerDialog.cpp:329 +#: ../src/gui/studio/DeviceManagerDialog.cpp:363 +#, fuzzy, c-format +msgid "%1" +msgstr "%1%" + +#: ../src/gui/dialogs/IntervalDialog.cpp:287 +msgid "" +"_n: up 1 octave and %1\n" +"up %n octaves and %1" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:291 +#, c-format +msgid "" +"_n: up 1 octave\n" +"up %n octaves" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:295 +#, fuzzy, c-format +msgid "up %1" +msgstr "Sain" + +#: ../src/gui/dialogs/IntervalDialog.cpp:303 +msgid "" +"_n: down 1 octave and %1\n" +"down %n octaves and %1" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:307 +#, fuzzy, c-format +msgid "" +"_n: down 1 octave\n" +"down %n octaves" +msgstr "I lawr Wythfed" + +#: ../src/gui/dialogs/IntervalDialog.cpp:311 +#, fuzzy, c-format +msgid "down %1" +msgstr "Ychwanegu %1" + +#: ../src/gui/dialogs/EventEditDialog.cpp:81 +msgid "Intrinsics" +msgstr "Cynhenidion" + +#: ../src/gui/dialogs/EventEditDialog.cpp:85 +msgid "Event type: " +msgstr "Math y ddigwyddiad:" + +#: ../src/gui/dialogs/EventEditDialog.cpp:91 +msgid "Absolute time: " +msgstr "Amseriad llwyr:" + +#: ../src/gui/dialogs/EventEditDialog.cpp:101 +msgid "Duration: " +msgstr "Parhad:" + +#: ../src/gui/dialogs/EventEditDialog.cpp:114 +msgid "Sub-ordering: " +msgstr "Is-drefnu:" + +#: ../src/gui/dialogs/EventEditDialog.cpp:125 +msgid "Persistent properties" +msgstr "Priodweddau parhaol" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:169 +#: ../src/gui/dialogs/EventEditDialog.cpp:133 +#: ../src/gui/studio/BankEditorDialog.cpp:129 +#: ../src/gui/studio/DeviceEditorDialog.cpp:75 +msgid "Type" +msgstr "Math" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:184 +#: ../src/gui/dialogs/EventEditDialog.cpp:135 +#: ../src/gui/dialogs/EventParameterDialog.cpp:89 +#: ../src/gui/dialogs/EventParameterDialog.cpp:93 +#: ../src/gui/dialogs/EventParameterDialog.cpp:115 +msgid "Value" +msgstr "Gwerth" + +#: ../src/gui/dialogs/EventEditDialog.cpp:155 +msgid "Non-persistent properties" +msgstr "Priodweddau di-barhaol" + +#: ../src/gui/dialogs/EventEditDialog.cpp:156 +msgid "These are cached values, lost if the event is modified." +msgstr "sMae rhain yn werthoedd o'r storfa, a gollir os addasir y digwyddiad." + +#: ../src/gui/dialogs/EventEditDialog.cpp:170 +msgid "Name " +msgstr "Enw" + +#: ../src/gui/dialogs/EventEditDialog.cpp:172 +msgid "Type " +msgstr "Math" + +#: ../src/gui/dialogs/EventEditDialog.cpp:174 +msgid "Value " +msgstr "Gwerth" + +#: ../src/gui/dialogs/EventEditDialog.cpp:188 +msgid "Make persistent" +msgstr "Gwneud yn barhaol" + +#: ../src/gui/dialogs/EventEditDialog.cpp:292 +msgid "Delete this property" +msgstr "Dileu'r priodwedd yma" + +#: ../src/gui/dialogs/EventEditDialog.cpp:433 +#, fuzzy +msgid "" +"Are you sure you want to delete the \"%1\" property?\n" +"\n" +"Removing necessary properties may cause unexpected behavior." +msgstr "" +"Ydych yn sicr yr ydych eisiau dileu'r priodwedd \"%1\"?\n" +"\n" +"Gall gwaredu priodweddau angenrheidiol achosi ymddygiad annisgwyl." + +#: ../src/gui/dialogs/EventEditDialog.cpp:436 +#: ../src/gui/dialogs/EventEditDialog.cpp:469 +msgid "Edit Event" +msgstr "Golygu Digwyddiad" + +#: ../src/gui/dialogs/EventEditDialog.cpp:465 +msgid "" +"Are you sure you want to make the \"%1\" property persistent?\n" +"\n" +"This could cause problems if it overrides a different computed value later " +"on." +msgstr "" +"Ydych yn sicr yr ydych eisiau gwneud y priodwedd \"%1\" yn barhaol?\n" +"\n" +"Gall hyn achosi problemau os mae'n newid gwerth gwahanol sydd wedi'i cyfrifo " +"yn hwyrach." + +#: ../src/gui/dialogs/EventEditDialog.cpp:470 +msgid "Make &Persistent" +msgstr "Gwneud yn &Barhaol" + +#: ../src/gui/dialogs/PasteNotationDialog.cpp:52 +msgid "Paste type" +msgstr "Math gludo" + +#: ../src/gui/dialogs/PasteNotationDialog.cpp:72 +msgid "Make this the default paste type" +msgstr "Gwneud hwn yn fath gludo rhagosodedig" + +#: ../src/gui/dialogs/LyricEditDialog.cpp:53 +msgid "Edit Lyrics" +msgstr "Golygu Geiriau" + +#: ../src/gui/dialogs/LyricEditDialog.cpp:62 +msgid "Lyrics for this segment" +msgstr "Geiriau i'r cylchran yma" + +#: ../src/gui/dialogs/LyricEditDialog.cpp:70 +#, fuzzy +msgid "Add Verse" +msgstr "Ychwanegu decrescendo..." + +#: ../src/gui/dialogs/LyricEditDialog.cpp:84 +#: ../src/gui/dialogs/LyricEditDialog.cpp:106 +#, c-format +msgid "Verse %1" +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:59 +#, fuzzy +msgid "Import from Device..." +msgstr "Mewnforio Rhengau oddiwrth Dyfais ..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2163 +#: ../src/gui/application/RosegardenGUIApp.cpp:2229 +#: ../src/gui/application/RosegardenGUIApp.cpp:7780 +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:87 +#: ../src/sound/AudioFileManager.cpp:664 +#, c-format +msgid "Cannot download file %1" +msgstr "Methu lawrlwytho ffeil %1" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:99 +#, fuzzy, c-format +msgid "Cannot open file %1" +msgstr "Methu agor ffeil '%1'" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:106 +#, fuzzy, c-format +msgid "No devices found in file %1" +msgstr "Ni chanfuwyd Dyfais yn y ffeil" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:113 +msgid "Source device" +msgstr "Dyfais tarddiad" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:118 +#, fuzzy +msgid "Import from: " +msgstr "Mewnforio Stiwdio o Ffeil" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:140 +#: ../src/gui/studio/DeviceEditorDialog.cpp:148 +#, c-format +msgid "Device %1" +msgstr "Dyfais %1" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:155 +#, fuzzy +msgid "Import banks" +msgstr "Mewnforio Rhengau" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:156 +#, fuzzy +msgid "Import key mappings" +msgstr "Allforio trawstiau" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:157 +#, fuzzy +msgid "Import controllers" +msgstr "rheolydd %1" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:160 +msgid "Import device name" +msgstr "Mewnforio dyfais o'r enw" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:166 +#, fuzzy +msgid "Bank import behavior" +msgstr "Ymddygiad mewnforio" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:168 +#, fuzzy +msgid "Merge banks" +msgstr "Cyfuno Rhengau" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:169 +#, fuzzy +msgid "Overwrite banks" +msgstr "Ysgrifennu dros Rhengau" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:367 +msgid "Bank %1:%2" +msgstr "Rheng %1:%2" + +#: ../src/commands/segment/SegmentSplitByRecordingSrcCommand.cpp:42 +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:48 +#, fuzzy +msgid "Split by Recording Source" +msgstr "Nid oes offeryn Recordio wedi'i ddewis" + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:53 +#, fuzzy +msgid "Recording Source" +msgstr "Nid oes offeryn Recordio wedi'i ddewis" + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:57 +#, fuzzy +msgid "Channel:" +msgstr "Sianel" + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:64 +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:75 +#, fuzzy +msgid "any" +msgstr "Unrhyw" + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:69 +#, fuzzy +msgid "Device:" +msgstr "Dyfais" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:46 +#, fuzzy +msgid "Select Unused Audio Files" +msgstr "Dewis Ffeil Sain" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:53 +#: ../src/gui/editors/segment/PlayListView.cpp:36 +#, fuzzy +msgid "File name" +msgstr "Enw ffeil:" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:54 +#, fuzzy +msgid "File size" +msgstr "Enw ffeil:" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:55 +msgid "Last modified date" +msgstr "" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:60 +msgid " (not found) " +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:105 +#, fuzzy +msgid "Audio File Manager" +msgstr "Rheolydd Ffeiliau Sain Rosegarden" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:126 +msgid "" +"* Some audio files are encoded at a sample rate different from that of the " +"JACK audio server.\n" +"Rosegarden will play them at the correct speed, but they will sound " +"terrible.\n" +"Please consider resampling such files externally, or adjusting the sample " +"rate of the JACK server." +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:132 +#, fuzzy +msgid "&Add Audio File..." +msgstr "Ychwanegu Ffeil Sain" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:135 +#, fuzzy +msgid "&Unload Audio File" +msgstr "Ychwanegu Ffeil Sain" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:140 +#, fuzzy +msgid "&Play Preview" +msgstr "Chwarae Rhagolwg" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:151 +msgid "&Insert into Selected Audio Track" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:155 +#, fuzzy +msgid "Unload &all Audio Files" +msgstr "Gwaredu Pob Ffeil Sain" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:159 +#, fuzzy +msgid "Unload all &Unused Audio Files" +msgstr "Gwaredu Pob Ffeil Sain" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:163 +#, fuzzy +msgid "&Delete Unused Audio Files..." +msgstr "Gwaredu Pob Ffeil Sain" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:167 +#, fuzzy +msgid "&Export Audio File..." +msgstr "Allforio Ffeil Sain" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:173 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:180 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:91 +msgid "Duration" +msgstr "Parhad" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:181 +msgid "Envelope" +msgstr "Amlen" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:182 +msgid "Sample rate" +msgstr "Graddfa samplo" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:183 +msgid "Channels" +msgstr "Sianeli" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:282 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:488 +msgid "*.wav|WAV files (*.wav)" +msgstr "ffeiliau *.wav|WAV (*.wav)" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:489 +msgid "Choose a name to save this file as" +msgstr "Dewis enw i gadw'r ffeil" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:499 +msgid "Exporting audio file..." +msgstr "Allforio ffeil sain ..." + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:609 +#, fuzzy +msgid "" +"This will unload audio file \"%1\" and remove all associated segments. Are " +"you sure?" +msgstr "Wir ddileu ffeil sain \"%1\" a pob cylchran sain sy'n ymwneud a fo?" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:692 +#, fuzzy +msgid "" +"*.wav|WAV files (*.wav)\n" +"*.*|All files" +msgstr "ffeiliau *.wav|WAV (*.wav)" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:697 +msgid "" +"*.wav *.flac *.ogg *.mp3|Audio files (*.wav *.flac *.ogg *.mp3)\n" +"*.wav|WAV files (*.wav)\n" +"*.flac|FLAC files (*.flac)\n" +"*.ogg|Ogg files (*.ogg)\n" +"*.mp3|MP3 files (*.mp3)\n" +"*.*|All files" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:704 +#, fuzzy +msgid "Select one or more audio files" +msgstr "Dewis un neu mwy o Ffeiliau Sain" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:763 +msgid "" +"This will unload all audio files and remove their associated segments.\n" +"This action cannot be undone, and associations with these files will be " +"lost.\n" +"Files will not be removed from your disk.\n" +"Are you sure?" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:800 +msgid "" +"This will unload all audio files that are not associated with any segments " +"in this composition.\n" +"This action cannot be undone, and associations with these files will be " +"lost.\n" +"Files will not be removed from your disk.\n" +"Are you sure?" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:865 +msgid "" +"The following audio files are not used in the current composition.\n" +"\n" +"Please select the ones you wish to delete permanently from the hard disk.\n" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:875 +#, c-format +msgid "" +"_n: About to delete 1 audio file permanently from the hard disk.
          This " +"action cannot be undone, and there will be no way to recover this file." +"
          Are you sure?
          \n" +"\n" +"About to delete %n audio files permanently from the hard disk.
          This " +"action cannot be undone, and there will be no way to recover these files." +"
          Are you sure?
          " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:525 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:888 +#, fuzzy +msgid "File %1 could not be deleted." +msgstr "Nid yw'r ffeil penodol mewn bod" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:921 +msgid "Change Audio File label" +msgstr "Newid label y Ffeil Sain" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6466 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:922 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1099 +msgid "Enter new label" +msgstr "Mewnosod label newydd" + +#: ../src/gui/application/RosegardenGUIView.cpp:1538 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1086 +#, fuzzy +msgid "Adding audio file..." +msgstr "Allforio ffeil sain ..." + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1107 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1112 +#, fuzzy +msgid "Failed to add audio file. " +msgstr "Methodd y dilyniannydd ychwanegu ffeil sain %1" + +#: ../src/document/RosegardenGUIDoc.cpp:2789 +#: ../src/gui/application/RosegardenGUIApp.cpp:2736 +#: ../src/gui/application/RosegardenGUIView.cpp:1574 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1122 +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:180 +msgid "Generating audio preview..." +msgstr "Creu rhagolwg sain ...." + +#: ../src/gui/application/RosegardenGUIView.cpp:1581 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1130 +msgid "" +"Try copying this file to a directory where you have write permission and re-" +"add it" +msgstr "" +"Ceisiwch copio'r ffeil yma i gyfeiriadur lle mae ganddoch ganiatadau " +"ysgrifennu, a'i ail-ychwanegu." + +#: ../src/gui/dialogs/TransportDialog.cpp:90 rc.cpp:357 +#, no-c-format +msgid "Rosegarden Transport" +msgstr "Cludiant Rosegarden" + +#: ../src/gui/dialogs/TransportDialog.cpp:925 +#: ../src/gui/dialogs/TransportDialog.cpp:985 +msgid "PITCH WHEEL" +msgstr "OLWYN TRAW" + +#: ../src/gui/dialogs/TransportDialog.cpp:929 +#: ../src/gui/dialogs/TransportDialog.cpp:989 +msgid "CONTROLLER" +msgstr "RHEOLYDD" + +#: ../src/gui/dialogs/TransportDialog.cpp:933 +#: ../src/gui/dialogs/TransportDialog.cpp:993 +msgid "PROG CHNGE" +msgstr "NEWID RHAGLEN" + +#: ../src/gui/dialogs/TransportDialog.cpp:938 +#: ../src/gui/dialogs/TransportDialog.cpp:998 +msgid "PRESSURE" +msgstr "GWASGEDD" + +#: ../src/gui/dialogs/TransportDialog.cpp:942 +#: ../src/gui/dialogs/TransportDialog.cpp:1002 +#, fuzzy +msgid "SYS MESSAGE" +msgstr "CYFYNG CYSAWD" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:177 +#: ../src/gui/dialogs/QuantizeDialog.cpp:40 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:127 +msgid "Quantize" +msgstr "Cwanteiddio" + +#: ../src/gui/dialogs/QuantizeDialog.cpp:52 +msgid "Advanced" +msgstr "" + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:42 +#, fuzzy +msgid "Export Devices..." +msgstr "Allforio Dyfais fel ..." + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:47 +#, fuzzy +msgid "Export devices" +msgstr "Allforio Dyfais fel ..." + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:49 +#, fuzzy +msgid "Export all devices" +msgstr "Allforio Dyfais fel ..." + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:50 +msgid "Export selected device only" +msgstr "" + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:51 +msgid " (\"%1\")" +msgstr "" + +#: ../src/gui/dialogs/CompositionLengthDialog.cpp:44 +msgid "Change Composition Length" +msgstr "Newid Hyd y Cyfansoddiad" + +#: ../src/gui/dialogs/CompositionLengthDialog.cpp:50 +msgid "Set the Start and End bar markers for this Composition" +msgstr "Gosod nodwyr Dechrau a Diwedd y bar am y Cyfansoddiad yma" + +#: ../src/gui/dialogs/CompositionLengthDialog.cpp:54 +msgid "Start Bar" +msgstr "Bar Dechrau" + +#: ../src/gui/dialogs/CompositionLengthDialog.cpp:62 +msgid "End Bar" +msgstr "Bar Diwedd" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:62 +#, fuzzy +msgid "LilyPond Export/Preview" +msgstr "Lilypond" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:85 +#, fuzzy +msgid "General options" +msgstr "Ffurfweddiad Cyffredinol" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:90 +#, fuzzy +msgid "Advanced options" +msgstr "Dangos &Anodiadau" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:112 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:95 +msgid "Headers" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:106 +msgid "Basic options" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:113 +msgid "Compatibility level" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:117 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:118 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:119 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:120 +#, fuzzy, c-format +msgid "LilyPond %1" +msgstr "Lilypond" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:125 +#, fuzzy +msgid "Paper size" +msgstr "Agor Ffeil" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:129 +msgid "A3" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:130 +msgid "A4" +msgstr "A4" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:131 +msgid "A5" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:132 +msgid "A6" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:133 +msgid "Legal" +msgstr "Cyfreithiol" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:134 +msgid "US Letter" +msgstr "Llythyr UD" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:135 +msgid "Tabloid" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:136 +msgid "do not specify" +msgstr "dim penodi" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:152 +#, fuzzy +msgid "Font size" +msgstr "Enw ffeil:" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:157 +#, fuzzy +msgid "%1 pt" +msgstr "%1 (rhan)" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:169 +#, fuzzy +msgid "Staff level options" +msgstr "Dangos &Anodiadau" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:176 +#, fuzzy +msgid "Export content" +msgstr "Allforio Dyfais fel ..." + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:179 +#, fuzzy +msgid "All tracks" +msgstr "Ymladd" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:180 +#, fuzzy +msgid "Non-muted tracks" +msgstr "Ymladd" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:181 +#, fuzzy +msgid "Selected track" +msgstr "Dewis Trac &Nesaf" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:182 +#, fuzzy +msgid "Selected segments" +msgstr "Dewis &Pob Cylchran" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:188 +msgid "Merge tracks that have the same name" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:198 +#, fuzzy +msgid "Notation options" +msgstr "Paramedrau Nodiant" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:206 +#, fuzzy +msgid "First" +msgstr "saib" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:207 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:538 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:557 +msgid "All" +msgstr "Popeth" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:211 +msgid "Export tempo marks " +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:215 +#, fuzzy +msgid "Export lyrics" +msgstr "Allforio \\blociau geiriau" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:225 +msgid "Export beamings" +msgstr "Allforio trawstiau" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:232 +msgid "Export track staff brackets" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:244 +#, fuzzy +msgid "Layout options" +msgstr "Maint ffont Lilypad" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:257 +#, fuzzy +msgid "Lyrics alignment" +msgstr "Geiriau i'r cylchran yma" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:261 +msgid "Ragged bottom (systems will not be spread vertically across the page)" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:267 +msgid "Miscellaneous options" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:274 +msgid "Enable \"point and click\" debugging" +msgstr "Alluogi dat-namu \"pwytio a clicio\"" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:279 +msgid "Export \\midi block" +msgstr "Allforio \\bloc midi" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:284 +#, fuzzy +msgid "No markers" +msgstr "&Gwaredu Pob Arwydd" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:285 +#, fuzzy +msgid "Rehearsal marks" +msgstr "&Gwaredu Pob Arwydd" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:286 +#, fuzzy +msgid "Marker text" +msgstr "Amser yr arwydd" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:290 +#, fuzzy +msgid "Export markers" +msgstr "Allforio fel..." + +#: ../src/gui/dialogs/AudioSplitDialog.cpp:57 +msgid "Autosplit Audio Segment" +msgstr "Hunan-hollti Cylchran Sain" + +#: ../src/gui/dialogs/AudioSplitDialog.cpp:70 +msgid "AutoSplit Segment \"" +msgstr "Hunan-Hollti Cylchran\"" + +#: ../src/gui/dialogs/AudioSplitDialog.cpp:84 +msgid "Threshold" +msgstr "Trothwy" + +#: ../src/gui/dialogs/AudioSplitDialog.cpp:142 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:70 +msgid "Audio Plugin" +msgstr "Ategyn Sain" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:94 +#: ../src/gui/widgets/AudioFaderBox.cpp:136 +#, fuzzy +msgid "Editor" +msgstr "Golygu" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:100 +msgid "Plugin" +msgstr "Ategyn" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:105 +msgid "Category:" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:110 +#, fuzzy +msgid "Plugin:" +msgstr "Ategyn" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:114 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:398 +msgid "Select a plugin from this list." +msgstr "Dewis ategyn o'r rhestr yma." + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:119 +msgid "Bypass" +msgstr "Osgoi" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:121 +msgid "Bypass this plugin." +msgstr "Osgoi'r ategyn yma." + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:127 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:390 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:130 +msgid "Input and output port counts." +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:132 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:391 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:135 +msgid "Unique ID of plugin." +msgstr "ID unigryw yr ategyn." + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:149 +#, fuzzy +msgid "Copy plugin parameters" +msgstr "Paramedrau Nodiant" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:155 +#, fuzzy +msgid "Paste plugin parameters" +msgstr "Paramedrau Nodiant" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:161 +#, fuzzy +msgid "Set to defaults" +msgstr "Gosod Tempo Eang a Rhagosodedig" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:225 +msgid "(any)" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:226 +#, fuzzy +msgid "(unclassified)" +msgstr "di-derfyn" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:247 +msgid "(none)" +msgstr "(dim)" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:389 +#: ../src/gui/editors/parameters/AudioInstrumentParameterPanel.cpp:132 +#: ../src/gui/editors/parameters/AudioInstrumentParameterPanel.cpp:361 +#: ../src/gui/studio/AudioMixerWindow.cpp:685 +#: ../src/gui/studio/AudioMixerWindow.cpp:724 +#: ../src/gui/studio/AudioMixerWindow.cpp:906 +#: ../src/gui/widgets/AudioFaderBox.cpp:79 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:427 +msgid "This plugin has too many controls to edit here." +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:438 +#, fuzzy, c-format +msgid "Id: %1" +msgstr "Ychwanegu %1" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:490 +msgid "mono" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:492 +msgid "stereo" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:494 +msgid "%1 in, %2 out" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:518 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:704 +#, fuzzy +msgid "Program: " +msgstr "Rhaglen" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:522 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:532 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:708 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:716 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:745 +#, fuzzy +msgid "" +msgstr "" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:56 +msgid "Set the %1 property of the event selection:" +msgstr "Gosod priodwedd %1 y dewisiad digwyddiad:" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:61 +msgid "Pattern" +msgstr "Patrwm" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:66 +msgid "Flat - set %1 to value" +msgstr "Lleddf - gosod %1 i'r gwerth" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:70 +msgid "Alternating - set %1 to max and min on alternate events" +msgstr "Eiledu - gosod %1 i'r mwyaf a'r lleiaf ar bob yn ail ddigwyddiad" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:74 +msgid "Crescendo - set %1 rising from min to max" +msgstr "Crescendo - gosod %1 i godi o'r lleiaf i'r mwyaf" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:78 +msgid "Diminuendo - set %1 falling from max to min" +msgstr "Diminuendo - gosod %1 i syrthio o'r mwyaf i'r lleiaf" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:82 +msgid "Ringing - set %1 alternating from max to min with both dying to zero" +msgstr "" +"Atseinio - gosod %1 i fynd bob yn ail o'r mwyaf i'r lleiaf, efo'r dau yn " +"distewi i sero" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:123 +#: ../src/gui/dialogs/EventParameterDialog.cpp:150 +msgid "First Value" +msgstr "Gwerth Cyntaf" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:124 +#: ../src/gui/dialogs/EventParameterDialog.cpp:151 +msgid "Second Value" +msgstr "Ail Werth" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:132 +#: ../src/gui/dialogs/EventParameterDialog.cpp:142 +#, fuzzy +msgid "Low Value" +msgstr "Gwerth LSB" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:133 +#: ../src/gui/dialogs/EventParameterDialog.cpp:141 +#, fuzzy +msgid "High Value" +msgstr "Gwerth Cyntaf" + +#: ../src/gui/dialogs/TempoDialog.cpp:56 ../src/gui/rulers/TempoRuler.cpp:127 +msgid "Insert Tempo Change" +msgstr "Mewnosod Newid Tempo" + +#: ../src/gui/dialogs/TempoDialog.cpp:69 +#, fuzzy +msgid "New tempo:" +msgstr "Tempo newydd" + +#: ../src/gui/dialogs/TempoDialog.cpp:76 +msgid "Tap" +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:81 +#, fuzzy +msgid "Tempo is fixed until the following tempo change" +msgstr "Nodau mewn bod ar ol newid cywair" + +#: ../src/gui/dialogs/TempoDialog.cpp:82 +#, fuzzy +msgid "Tempo ramps to the following tempo" +msgstr "Nodau mewn bod ar ol newid cywair" + +#: ../src/gui/dialogs/TempoDialog.cpp:83 +#, fuzzy +msgid "Tempo ramps to:" +msgstr "Tempo wrth amser" + +#: ../src/gui/dialogs/TempoDialog.cpp:120 +#, fuzzy +msgid "Time of tempo change" +msgstr "Nid oes newidiadau tempo eraill." + +#: ../src/gui/dialogs/TempoDialog.cpp:138 +msgid "The pointer is currently at " +msgstr "Ar hyn o bryd mae'r pwyntydd wrth" + +#: ../src/gui/dialogs/TempoDialog.cpp:154 +msgid "Apply this tempo from here onwards" +msgstr "Gweithredu'r tempo yma o hyn ymlaen" + +#: ../src/gui/dialogs/TempoDialog.cpp:158 +msgid "Replace the last tempo change" +msgstr "Amnewid y newid tempo diwethaf" + +#: ../src/gui/dialogs/TempoDialog.cpp:164 +msgid "Apply this tempo from the start of this bar" +msgstr "Gweithredu'r tempo yma o ddechrau'r bar yma" + +#: ../src/gui/dialogs/TempoDialog.cpp:167 +msgid "Apply this tempo to the whole composition" +msgstr "Gweithredu'r tempo yma i'r holl gyfansoddiad" + +#: ../src/gui/dialogs/TempoDialog.cpp:172 +msgid "Also make this the default tempo" +msgstr "Hefyd, gwneud hyn yn dempo rhagosodedig" + +#: ../src/gui/dialogs/TempoDialog.cpp:256 +msgid "%1.%2 s," +msgstr "%1.%2 s," + +#: ../src/gui/dialogs/TempoDialog.cpp:262 +#, c-format +msgid "at the start of measure %1." +msgstr "wrth ddechrau'r measure %1." + +#: ../src/gui/dialogs/TempoDialog.cpp:266 +#, c-format +msgid "in the middle of measure %1." +msgstr "yng nghanol measure %1." + +#: ../src/gui/dialogs/TempoDialog.cpp:285 +#, fuzzy +msgid " (at %1.%2 s, in measure %3)" +msgstr " (wrth %1.%2 s, mewn bar %3)" + +#: ../src/gui/dialogs/TempoDialog.cpp:302 +msgid "There are no preceding tempo changes." +msgstr "Nid oes newidiadau tempo cyn hyn." + +#: ../src/gui/dialogs/TempoDialog.cpp:310 +msgid "There are no other tempo changes." +msgstr "Nid oes newidiadau tempo eraill." + +#: ../src/gui/dialogs/TempoDialog.cpp:328 +msgid " bpm" +msgstr "" + +#: ../src/gui/dialogs/AudioPlayingDialog.cpp:42 +msgid "Playing audio file" +msgstr "Yn chwarae ffeil sain" + +#: ../src/gui/dialogs/AudioPlayingDialog.cpp:47 +msgid "Playing audio file \"%1\"" +msgstr "Yn chwarae ffeil sain \"%1\"" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:52 +#: ../src/gui/editors/matrix/MatrixView.cpp:2655 +#, fuzzy +msgid "Trigger Segment" +msgstr "Dileu Cylchran" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:61 +#, fuzzy +msgid "Trigger segment: " +msgstr "Dileu Cylchran" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:59 +msgid "Key Change" +msgstr "Newid Allwedd" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:77 +msgid "Key signature" +msgstr "Arwydd cywair" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:80 +#, fuzzy +msgid "Key transposition" +msgstr "Cysoni" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:86 +msgid "Existing notes following key change" +msgstr "Nodau mewn bod ar ol newid cywair" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:98 +msgid "Flatten" +msgstr "Lleddfu" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:100 +msgid "Key" +msgstr "Cywair" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:105 +msgid "Sharpen" +msgstr "Meinhau" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:109 +msgid "Major" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:110 +#: ../src/gui/dialogs/KeySignatureDialog.cpp:369 +#, fuzzy +msgid "Minor" +msgstr "Cyfuno" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:123 +msgid "Transpose key according to segment transposition" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:126 +msgid "Use specified key. Do not transpose" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:134 +msgid "Apply to current segment only" +msgstr "Gweithredu i'r cylchran gyfredol yn unig" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:137 +msgid "Apply to all segments at this time" +msgstr "Gweithredu i bob cylchran wrth yr amser yma" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:141 +msgid "Exclude percussion segments" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:155 +msgid "Maintain current accidentals" +msgstr "Cynnal hapnodau cyfredol" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:158 +msgid "Transpose into this key" +msgstr "Trawsgyweirio i'r gywair yma" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:331 +msgid "No such key" +msgstr "Dim cywair o'r fath" + +#: ../src/gui/dialogs/InterpretDialog.cpp:44 +#: ../src/gui/editors/notation/NotationSelector.cpp:118 +msgid "Interpret" +msgstr "Dehongli" + +#: ../src/gui/dialogs/InterpretDialog.cpp:50 +msgid "Interpretations to apply" +msgstr "Dehongliadau i weithredu" + +#: ../src/gui/dialogs/InterpretDialog.cpp:53 +msgid "Apply text dynamics (p, mf, ff etc)" +msgstr "Gweithredu deinameg testun (p, mf, ff, ayyb)" + +#: ../src/gui/dialogs/InterpretDialog.cpp:55 +msgid "Apply hairpin dynamics" +msgstr "Gweithredu deinameg bachdro" + +#: ../src/gui/dialogs/InterpretDialog.cpp:57 +msgid "Stress beats" +msgstr "Pwysleisio curiadau" + +#: ../src/gui/dialogs/InterpretDialog.cpp:59 +msgid "Articulate slurs, staccato, tenuto etc" +msgstr "Seinio llithriadau, staccato, tenuto, ayyb" + +#: ../src/gui/dialogs/InterpretDialog.cpp:61 +msgid "All available interpretations" +msgstr "Pob dehongliad sydd ar gael" + +#: ../src/gui/application/RosegardenGUIApp.cpp:316 +#, fuzzy +msgid "" +"Attempted to launch JACK audio daemon failed. Audio will be disabled.\n" +"Please check configuration (Settings -> Configure Rosegarden -> Audio -> " +"Startup)\n" +" and restart." +msgstr "" +"Methwyd cais i ymgychwyn yr ellyll sain JACK. Analluogir sain.\n" +"Gwiriwch eich ffurfweddiad (Gosodiadau -> Ffurfweddu Rosegarden -> " +"Dilyniannydd -> Rheoli JACK)\n" +"ac ail-ddechreuwch." + +#: ../src/gui/application/RosegardenGUIApp.cpp:325 +msgid "Starting sequencer..." +msgstr "Dechrau dilyniannydd..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:333 +#, fuzzy +msgid "Initializing plugin manager..." +msgstr "Ymgychwyn rheolydd ategynnau..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:338 +#, fuzzy +msgid "Initializing view..." +msgstr "Ymgychwyn golwg..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:354 +#, fuzzy +msgid "Special Parameters" +msgstr "Paramedrau Cylchrannau" + +#: ../src/gui/application/RosegardenGUIApp.cpp:430 +msgid "Starting sequence manager..." +msgstr "Cychwyn rheolydd dilyniannydd..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:456 +msgid "Clearing studio data..." +msgstr "Gwaredu data stiwdio..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:475 +#: ../src/gui/editors/notation/NotationView.cpp:558 +msgid "Starting..." +msgstr "Dechrau..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:556 +#, fuzzy +msgid "Import Rosegarden &Project file..." +msgstr "Mewnforio ffeil &Rosegarden 2.1..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:560 +msgid "Import &MIDI file..." +msgstr "Mewnforio ffeil &MIDI..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:564 +msgid "Import &Rosegarden 2.1 file..." +msgstr "Mewnforio ffeil &Rosegarden 2.1..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:568 +#, fuzzy +msgid "Import &Hydrogen file..." +msgstr "Mewnforio ffeil &Rosegarden 2.1..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:572 +msgid "Merge &File..." +msgstr "Cyfuno &Ffeil..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:576 +msgid "Merge &MIDI file..." +msgstr "Cyfuno ffeil &MIDI..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:580 +msgid "Merge &Rosegarden 2.1 file..." +msgstr "Cyfuno ffeil &Rosegarden 2.1..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:584 +#, fuzzy +msgid "Merge &Hydrogen file..." +msgstr "Mewnforio ffeil &Rosegarden 2.1..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:588 +#, fuzzy +msgid "Export Rosegarden &Project file..." +msgstr "Mewnforio ffeil &Rosegarden 2.1..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:592 +msgid "Export &MIDI file..." +msgstr "Allforio ffeil &MIDI..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:596 +#, fuzzy +msgid "Export &LilyPond file..." +msgstr "Allforio ffeil &Lilypond..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:600 +msgid "Export Music&XML file..." +msgstr "Allforio ffeil Music&XML..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:604 +msgid "Export &Csound score file..." +msgstr "Allforio ffeil sgor &Csound..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:608 +msgid "Export M&up file..." +msgstr "Allforio ffeil &Mup..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:612 +#: ../src/gui/editors/notation/NotationView.cpp:1500 +#, fuzzy +msgid "Print &with LilyPond..." +msgstr "Allforio ffeil Lilypond..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:616 +#: ../src/gui/editors/notation/NotationView.cpp:1504 +#, fuzzy +msgid "Preview with Lil&yPond..." +msgstr "Allforio ffeil Lilypond..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:620 +#, fuzzy +msgid "Play&list" +msgstr "Chwarae" + +#: ../src/gui/application/RosegardenGUIApp.cpp:627 +#, fuzzy +msgid "Rosegarden &Tutorial" +msgstr "Rosegarden" + +#: ../src/gui/application/RosegardenGUIApp.cpp:631 +msgid "&Bug Reporting Guidelines" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:645 +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:348 +#: ../src/gui/editors/segment/MarkerEditor.cpp:378 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:388 +#: ../src/gui/general/EditViewBase.cpp:190 +#: ../src/gui/studio/BankEditorDialog.cpp:318 +#: ../src/gui/studio/DeviceManagerDialog.cpp:227 +msgid "Und&o" +msgstr "Da&twneud" + +#: ../src/gui/application/RosegardenGUIApp.cpp:651 +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:354 +#: ../src/gui/editors/segment/MarkerEditor.cpp:384 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:394 +#: ../src/gui/general/EditViewBase.cpp:196 +#: ../src/gui/studio/BankEditorDialog.cpp:324 +#: ../src/gui/studio/DeviceManagerDialog.cpp:233 +msgid "Re&do" +msgstr "Ail&wneud" + +#: ../src/gui/application/RosegardenGUIApp.cpp:665 +#: ../src/gui/editors/notation/NotationView.cpp:2297 +msgid "Show T&ools Toolbar" +msgstr "Dangos Bar &Offer" + +#: ../src/gui/application/RosegardenGUIApp.cpp:669 +msgid "Show Trac&ks Toolbar" +msgstr "Dangos Bar Tra&ciau" + +#: ../src/gui/application/RosegardenGUIApp.cpp:673 +msgid "Show &Editors Toolbar" +msgstr "Dangos Bar &Golygyddion" + +#: ../src/gui/application/RosegardenGUIApp.cpp:677 +#: ../src/gui/editors/notation/NotationView.cpp:2309 +msgid "Show Trans&port Toolbar" +msgstr "Dangos Bar C&ludydd" + +#: ../src/gui/application/RosegardenGUIApp.cpp:681 +msgid "Show &Zoom Toolbar" +msgstr "Dangos Bar Ch&wyddo" + +#: ../src/gui/application/RosegardenGUIApp.cpp:688 +msgid "Show Tra&nsport" +msgstr "Dangos Clu&diant" + +#: ../src/gui/application/RosegardenGUIApp.cpp:693 +msgid "Show Track &Labels" +msgstr "Dangos &Labeli Trac" + +#: ../src/gui/application/RosegardenGUIApp.cpp:698 +#, fuzzy +msgid "Show Playback Position R&uler" +msgstr "Pwyntydd Chwarae i'r &Cyrchydd" + +#: ../src/gui/application/RosegardenGUIApp.cpp:703 +msgid "Show Te&mpo Ruler" +msgstr "Dangos Rhesydd Te&mpo" + +#: ../src/gui/application/RosegardenGUIApp.cpp:708 +msgid "Show Cho&rd Name Ruler" +msgstr "Dangos Rhesydd Enwau Co&rdiau" + +#: ../src/gui/application/RosegardenGUIApp.cpp:714 +msgid "Show Segment Pre&views" +msgstr "Dangos Rha&golygon Cylchrannau" + +#: ../src/gui/application/RosegardenGUIApp.cpp:719 +#, fuzzy +msgid "Show Special &Parameters" +msgstr "Dangos Paramedrau &Offerynnau" + +#: ../src/gui/application/RosegardenGUIApp.cpp:753 +#: ../src/gui/editors/matrix/MatrixView.cpp:641 +#: ../src/gui/editors/notation/NotationView.cpp:1772 +#, fuzzy +msgid "&Select and Edit" +msgstr "Dewis i Ddi&wedd" + +#: ../src/gui/application/RosegardenGUIApp.cpp:758 +#: ../src/gui/editors/matrix/MatrixView.cpp:646 +msgid "&Draw" +msgstr "&Dylunio" + +#: ../src/commands/edit/EraseCommand.h:50 +#: ../src/gui/application/RosegardenGUIApp.cpp:763 +#: ../src/gui/editors/matrix/MatrixView.cpp:651 +#: ../src/gui/editors/notation/NotationView.cpp:1766 +msgid "&Erase" +msgstr "&Dileu" + +#: ../src/gui/application/RosegardenGUIApp.cpp:768 +#: ../src/gui/editors/matrix/MatrixView.cpp:656 +msgid "&Move" +msgstr "&Symud" + +#: ../src/gui/application/RosegardenGUIApp.cpp:775 +msgid "&Resize" +msgstr "&Ail-feintio" + +#: ../src/gui/application/RosegardenGUIApp.cpp:782 rc.cpp:87 +#, no-c-format +msgid "&Split" +msgstr "&Hollti" + +#: ../src/commands/segment/SegmentJoinCommand.h:53 +#: ../src/gui/application/RosegardenGUIApp.cpp:789 +msgid "&Join" +msgstr "&Uno" + +#: ../src/gui/application/RosegardenGUIApp.cpp:795 +msgid "&Harmonize" +msgstr "&Cydgordio" + +#: ../src/gui/application/RosegardenGUIApp.cpp:806 +#: ../src/gui/rulers/TempoRuler.cpp:157 +#, fuzzy +msgid "Open Tempo and Time Signature Editor" +msgstr "Agor yn y Golygydd Digwyddiadau" + +#: ../src/commands/segment/CutRangeCommand.cpp:41 +#: ../src/gui/application/RosegardenGUIApp.cpp:812 +#, fuzzy +msgid "Cut Range" +msgstr "To&rri a Cau" + +#: ../src/commands/edit/CopyCommand.cpp:73 +#: ../src/gui/application/RosegardenGUIApp.cpp:816 +#, fuzzy +msgid "Copy Range" +msgstr "Newid Allwedd" + +#: ../src/commands/segment/PasteRangeCommand.cpp:45 +#: ../src/gui/application/RosegardenGUIApp.cpp:820 +#, fuzzy +msgid "Paste Range" +msgstr "Math gludo" + +#: ../src/gui/application/RosegardenGUIApp.cpp:828 +#, fuzzy +msgid "Insert Range..." +msgstr "Mewnosod Saib" + +#: ../src/gui/application/RosegardenGUIApp.cpp:832 +#: ../src/gui/editors/notation/NotationView.cpp:1804 +msgid "De&lete" +msgstr "Di&leu" + +#: ../src/gui/application/RosegardenGUIApp.cpp:836 +msgid "Select &All Segments" +msgstr "Dewis &Pob Cylchran" + +#: ../src/gui/application/RosegardenGUIApp.cpp:852 +#, fuzzy +msgid "Edit Mar&kers..." +msgstr "Golygu Arwyddion..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:856 +msgid "Edit Document P&roperties..." +msgstr "Golygu Priod&weddau'r Ddogfen..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:864 +msgid "Open in &Default Editor" +msgstr "Agor yn y &Golygydd Rhagosodedig" + +#: ../src/gui/application/RosegardenGUIApp.cpp:870 +#: ../src/gui/general/EditViewBase.cpp:206 +msgid "Open in Matri&x Editor" +msgstr "Agor yn y Golygydd Matric&s" + +#: ../src/gui/application/RosegardenGUIApp.cpp:876 +#: ../src/gui/general/EditViewBase.cpp:212 +#, fuzzy +msgid "Open in &Percussion Matrix Editor" +msgstr "Agor yn y Golygydd Matric&s" + +#: ../src/gui/application/RosegardenGUIApp.cpp:882 +#: ../src/gui/general/EditViewBase.cpp:218 +msgid "Open in &Notation Editor" +msgstr "Agor yn y Golygydd &Nodiant" + +#: ../src/gui/application/RosegardenGUIApp.cpp:888 +#: ../src/gui/general/EditViewBase.cpp:224 +msgid "Open in &Event List Editor" +msgstr "Agor yn y Golygydd &Rhestr Digwyddiadau" + +#: ../src/commands/edit/EventQuantizeCommand.cpp:120 +#: ../src/commands/edit/EventUnquantizeCommand.cpp:87 +#: ../src/gui/application/RosegardenGUIApp.cpp:894 +msgid "&Quantize..." +msgstr "Cw&anteiddio..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:908 +#: ../src/gui/editors/matrix/MatrixView.cpp:686 +msgid "Repeat Last Quantize" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:928 +#, fuzzy +msgid "Split at Time..." +msgstr "Dechrau..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:932 +#: ../src/gui/general/EditView.cpp:796 +msgid "Jog &Left" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:936 +#: ../src/gui/general/EditView.cpp:800 +msgid "Jog &Right" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:940 +#, fuzzy +msgid "Set Start Time..." +msgstr "Dechrau..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:944 +#, fuzzy +msgid "Set Duration..." +msgstr "Parhad" + +#: ../src/gui/application/RosegardenGUIApp.cpp:953 +msgid "Turn Re&peats into Copies" +msgstr "Trosi Aila&droddion i mewn i Gopiau" + +#: ../src/gui/application/RosegardenGUIApp.cpp:958 +#, fuzzy +msgid "Manage Tri&ggered Segments" +msgstr "Rheoli Cylchrannau &Sain" + +#: ../src/gui/application/RosegardenGUIApp.cpp:962 +#, fuzzy +msgid "Set Tempos from &Beat Segment" +msgstr "Gosod &Tempo i Barhad Cylchran Sain" + +#: ../src/gui/application/RosegardenGUIApp.cpp:966 +msgid "Set &Tempo to Audio Segment Duration" +msgstr "Gosod &Tempo i Barhad Cylchran Sain" + +#: ../src/gui/application/RosegardenGUIApp.cpp:972 +#, fuzzy +msgid "Manage A&udio Files" +msgstr "Newid label y Ffeil Sain" + +#: ../src/gui/application/RosegardenGUIApp.cpp:977 +#, fuzzy +msgid "Show Segment Labels" +msgstr "Addasu label Cylchran" + +#: ../src/gui/application/RosegardenGUIApp.cpp:986 +#, fuzzy +msgid "Add &Track" +msgstr "Ychwanegu Traciau..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:990 +#, fuzzy +msgid "&Add Tracks..." +msgstr "Ychwanegu Traciau..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:996 +#, fuzzy +msgid "D&elete Track" +msgstr "&Dileu Trac" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1002 +msgid "Move Track &Down" +msgstr "Symud Trac i &Lawr" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1008 +msgid "Move Track &Up" +msgstr "Symud Trac i &Fyny" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1012 +msgid "Select &Next Track" +msgstr "Dewis Trac &Nesaf" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1017 +msgid "Select &Previous Track" +msgstr "Dewis Trac &Blaenorol" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1022 +#, fuzzy +msgid "Mute or Unmute Track" +msgstr "Ymladd" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1027 +msgid "Arm or Un-arm Track for Record" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1034 +#, fuzzy +msgid "&Mute all Tracks" +msgstr "Ymladd" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1040 +msgid "&Unmute all Tracks" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1044 +msgid "&Remap Instruments..." +msgstr "&Ail-fapio Offerynnau..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:1053 +#, fuzzy +msgid "&Audio Mixer" +msgstr "Pylydd Sain" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1059 +#, fuzzy +msgid "Midi Mi&xer" +msgstr "Pylydd Sain" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1065 +#, fuzzy +msgid "Manage MIDI &Devices" +msgstr "Rheoli Dyfeisiau MIDI" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1071 +msgid "Manage S&ynth Plugins" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1075 +#, fuzzy +msgid "Modify MIDI &Filters" +msgstr "Addasu &Hidlau MIDI..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:1079 +msgid "MIDI Thru Routing" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1085 +#, fuzzy +msgid "Manage &Metronome" +msgstr "Metronom" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1089 +msgid "&Save Current Document as Default Studio" +msgstr "&Cadw'r Ddogfen Gyfredol fel Stiwdio Rhagosodedig" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1093 +msgid "&Import Default Studio" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1097 +#, fuzzy +msgid "Im&port Studio from File..." +msgstr "&Mewnforio Stiwdio o Ffeil..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:1101 +msgid "&Reset MIDI Network" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1105 +#, fuzzy +msgid "Set Quick Marker at Playback Position" +msgstr "Mewnosod Newid Tempo" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1109 +msgid "Jump to Quick Marker" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1142 +#: ../src/gui/editors/matrix/MatrixView.cpp:782 +#: ../src/gui/editors/notation/NotationView.cpp:2397 +#: ../src/gui/studio/AudioMixerWindow.cpp:105 +#: ../src/gui/studio/MidiMixerWindow.cpp:81 +msgid "&Play" +msgstr "&Chwarae" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1153 +#: ../src/gui/editors/matrix/MatrixView.cpp:791 +#: ../src/gui/editors/notation/NotationView.cpp:2406 +#: ../src/gui/studio/AudioMixerWindow.cpp:114 +#: ../src/gui/studio/MidiMixerWindow.cpp:90 +msgid "&Stop" +msgstr "&Aros" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1160 +#: ../src/gui/editors/matrix/MatrixView.cpp:802 +#: ../src/gui/editors/notation/NotationView.cpp:2417 +#: ../src/gui/studio/AudioMixerWindow.cpp:125 +#: ../src/gui/studio/MidiMixerWindow.cpp:101 +msgid "&Fast Forward" +msgstr "&Brys Ymlaen " + +#: ../src/gui/application/RosegardenGUIApp.cpp:1168 +#: ../src/gui/editors/matrix/MatrixView.cpp:796 +#: ../src/gui/editors/notation/NotationView.cpp:2411 +#: ../src/gui/studio/AudioMixerWindow.cpp:119 +#: ../src/gui/studio/MidiMixerWindow.cpp:95 +msgid "Re&wind" +msgstr "Ail-&ddirwyn" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1175 +msgid "P&unch in Record" +msgstr "Recordio gan Ddisg&yn i Mewn" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1182 +#: ../src/gui/studio/AudioMixerWindow.cpp:143 +#: ../src/gui/studio/MidiMixerWindow.cpp:119 +msgid "&Record" +msgstr "&Recordio" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1189 +#: ../src/gui/editors/matrix/MatrixView.cpp:808 +#: ../src/gui/editors/notation/NotationView.cpp:2423 +#: ../src/gui/studio/AudioMixerWindow.cpp:131 +#: ../src/gui/studio/MidiMixerWindow.cpp:107 +msgid "Rewind to &Beginning" +msgstr "Ail-ddirwyn i'r &Dechrau" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1196 +#: ../src/gui/editors/matrix/MatrixView.cpp:814 +#: ../src/gui/editors/notation/NotationView.cpp:2429 +#: ../src/gui/studio/AudioMixerWindow.cpp:137 +#: ../src/gui/studio/MidiMixerWindow.cpp:113 +msgid "Fast Forward to &End" +msgstr "Brys Ymlaen i'r Diw&edd" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1203 +#: ../src/gui/editors/matrix/MatrixView.cpp:832 +#: ../src/gui/editors/notation/NotationView.cpp:2447 +msgid "Scro&ll to Follow Playback" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1209 +#: ../src/gui/editors/matrix/MatrixView.cpp:838 +#: ../src/gui/editors/notation/NotationView.cpp:2453 +#: ../src/gui/studio/AudioMixerWindow.cpp:149 +#: ../src/gui/studio/MidiMixerWindow.cpp:125 +#, fuzzy +msgid "Panic" +msgstr "Tremio" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1213 +msgid "Segment Debug Dump " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1283 +msgid " Zoom: " +msgstr "Chwyddo:" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1719 +#, fuzzy +msgid "File \"%1\" does not exist" +msgstr "Nid yw'r ffeil penodol mewn bod" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1725 +msgid "File \"%1\" is actually a directory" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1734 +msgid "You do not have read permission for \"%1\"" +msgstr "Nid oes ganddoch ganiatad i ddarllen \"%1\"." + +#: ../src/gui/application/RosegardenGUIApp.cpp:1802 +msgid "" +"An auto-save file for this document has been found\n" +"Do you want to open it instead ?" +msgstr "" +"Canfuwyd ffeil hunan-gadw am y ddogfen yma.\n" +"Ydych eisiau ei agor yn lle?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1896 +#, fuzzy +msgid "Example Files" +msgstr "Enghraifft" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2100 +msgid "Opening a new application window..." +msgstr "Agor ffenestr cymhwysiad newydd..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2110 +msgid "Creating new document..." +msgstr "Creu dogfen newydd..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2154 +#, c-format +msgid "" +"Malformed URL\n" +"%1" +msgstr "" +"URL annilys\n" +"%1" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2179 +#: ../src/gui/application/RosegardenGUIApp.cpp:2240 +msgid "Opening file..." +msgstr "Agor ffeil..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2201 +#: ../src/gui/application/RosegardenGUIApp.cpp:2220 +msgid "Open File" +msgstr "Agor Ffeil" + +#: ../src/document/RosegardenGUIDoc.cpp:1225 +#: ../src/gui/application/RosegardenGUIApp.cpp:2258 +msgid "Saving file..." +msgstr "Cadw ffeil..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2330 +msgid "This is not a valid filename.\n" +msgstr "Nid yw hwn yn enw dilys i'r ffeil.\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2335 +msgid "This is not a local file.\n" +msgstr "Nid yw hwn yn ffeil lleol.\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2342 +#: ../src/gui/studio/BankEditorDialog.cpp:1640 +#: ../src/gui/studio/DeviceManagerDialog.cpp:787 +msgid "You have specified a directory" +msgstr "Rydych wedi penodi cyfeiriadur" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2348 +#: ../src/gui/studio/BankEditorDialog.cpp:1646 +#: ../src/gui/studio/DeviceManagerDialog.cpp:793 +msgid "The specified file exists. Overwrite?" +msgstr "Mae'r ffeil penodol mewn bod. Ysgrifennu drosto?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2362 +msgid "Saving file with a new filename..." +msgstr "Cadw'r ffeil efo enw ffeil newydd..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2364 +#, fuzzy +msgid "Rosegarden files" +msgstr "Ffeiliau Rosegarden-4" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2365 +#: ../src/gui/application/RosegardenGUIApp.cpp:4860 +#: ../src/gui/application/RosegardenGUIApp.cpp:4904 +#: ../src/gui/application/RosegardenGUIApp.cpp:4942 +#: ../src/gui/application/RosegardenGUIApp.cpp:4975 +#: ../src/gui/application/RosegardenGUIApp.cpp:5009 +#: ../src/gui/application/RosegardenGUIApp.cpp:5116 +msgid "All files" +msgstr "Pob ffeil" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2366 +msgid "Save as..." +msgstr "Cadw fel..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2404 +msgid "Closing file..." +msgstr "Cau'r ffeil..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2421 +#: ../src/gui/editors/notation/NotationView.cpp:4618 +msgid "Printing..." +msgstr "Argraffu..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2433 +#: ../src/gui/editors/notation/NotationView.cpp:4635 +msgid "Previewing..." +msgstr "Rhagolygu..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2440 +msgid "Exiting..." +msgstr "Terfynu..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2463 +msgid "Cutting selection..." +msgstr "Torri'r dewisiad..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2474 +#: ../src/gui/editors/matrix/MatrixView.cpp:1614 +#: ../src/gui/editors/notation/NotationView.cpp:4763 +msgid "Copying selection to clipboard..." +msgstr "Copio'r dewisiad i'r gludfwrdd..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2484 +#: ../src/gui/editors/eventlist/EventView.cpp:878 +#: ../src/gui/editors/matrix/MatrixView.cpp:1625 +#: ../src/gui/editors/notation/NotationView.cpp:4796 +#: ../src/gui/editors/notation/NotationView.cpp:4841 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:352 +msgid "Clipboard is empty" +msgstr "Mae'r gludfwrdd yn wag" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2487 +#: ../src/gui/editors/eventlist/EventView.cpp:882 +#: ../src/gui/editors/matrix/MatrixView.cpp:1629 +#: ../src/gui/editors/notation/NotationView.cpp:4804 +#: ../src/gui/editors/notation/NotationView.cpp:4845 +msgid "Inserting clipboard contents..." +msgstr "Mewnosod cynnyws y gludfwrdd..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2556 +#, fuzzy +msgid "Duration of empty range to insert" +msgstr "Torri'r dewisiad..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2631 +msgid "This function needs no more than one segment to be selected." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2654 +msgid "Can't join Audio segments" +msgstr "Methu uno cylchrannau Sain" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2707 +#, fuzzy +msgid "rescaling an audio file" +msgstr "Yn chwarae ffeil sain" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2723 +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:172 +#, fuzzy +msgid "Rescaling audio file..." +msgstr "Allforio ffeil sain ..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2767 +msgid "" +"The audio file path does not exist or is not writable.\n" +"You must set the audio file path to a valid directory in Document Properties " +"before %1.\n" +"Would you like to set it now?" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2769 +#: ../src/gui/application/RosegardenGUIApp.cpp:5291 +#: ../src/gui/application/RosegardenGUIApp.cpp:5339 +#: ../src/gui/editors/segment/TrackButtons.cpp:419 +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:159 +#, fuzzy +msgid "Set audio file path" +msgstr "Llwybr ffeil sain:" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2833 +#, fuzzy +msgid "Jog Selection" +msgstr "Gwaredu'r Dewisiad" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2978 +#, fuzzy, c-format +msgid "" +"_n: Split Segment at Time\n" +"Split %n Segments at Time" +msgstr "Parhad" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3013 +#: ../src/gui/general/EditViewBase.cpp:619 +#, fuzzy +msgid "Segment Start Time" +msgstr "Paramedrau Cylchrannau" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3023 +#, fuzzy +msgid "Set Segment Start Times" +msgstr "Dangos Paramedrau &Cylchrannau" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3024 +#: ../src/gui/general/EditViewBase.cpp:626 +#, fuzzy +msgid "Set Segment Start Time" +msgstr "Dangos Paramedrau &Cylchrannau" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3056 +#: ../src/gui/general/EditViewBase.cpp:644 +#, fuzzy +msgid "Segment Duration" +msgstr "Parhad" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3068 +#, fuzzy +msgid "Set Segment Durations" +msgstr "Gosod &Tempo i Barhad Cylchran Sain" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3069 +#: ../src/gui/general/EditViewBase.cpp:652 +#, fuzzy +msgid "Set Segment Duration" +msgstr "Gosod &Tempo i Barhad Cylchran Sain" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3176 +#: ../src/gui/application/RosegardenGUIApp.cpp:5875 +msgid "Set Global Tempo" +msgstr "Gosod Tempo Eang" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3234 +#: ../src/gui/general/EditViewBase.cpp:477 +msgid "Toggle the toolbar..." +msgstr "Dangos/cuddio'r bar offer..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3244 +msgid "Toggle the tools toolbar..." +msgstr "Dangos/cuddio'r bar offer..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3254 +msgid "Toggle the tracks toolbar..." +msgstr "Dangos/cuddio'r bar traciau..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3264 +msgid "Toggle the editor toolbar..." +msgstr "Dangos/cuddio'r bar golygydd..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3274 +msgid "Toggle the transport toolbar..." +msgstr "Dangos/cuddio'r bar cludiant..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3284 +msgid "Toggle the zoom toolbar..." +msgstr "Dangos/cuddio'r bar chwyddo..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3294 +msgid "Toggle the Transport" +msgstr "Dangos/cuddio'r Cludiant" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3377 +#: ../src/gui/general/EditViewBase.cpp:487 +msgid "Toggle the statusbar..." +msgstr "Dangos/cuddio'r bar cyflwr..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3434 +msgid "" +"The join tool isn't implemented yet. Instead please highlight the segments " +"you want to join and then use the menu option:\n" +"\n" +" Segments->Collapse Segments.\n" +msgstr "" +"Nid yw'r erfyn uno wedi'i gyflawni eto. Yn lle, amlygwch y cylchrannau yr " +"ydych eisiau eu uno, ac wedyn defnyddiwch y dewisiad dewislen:\n" +"\n" +"Cylchrannau -> Dat-ehangu Cylchrannau.\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3437 +msgid "Join tool not yet implemented" +msgstr "Nid yw'r erfyn uno wedi'i gyflawni eto." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3675 +msgid "Revert modified document to previous saved version?" +msgstr "Cildroi'r ddogfen wedi'i haddasu i'r fersiwn wedi'i chadw o'r blaen?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3691 +#, fuzzy +msgid "" +"*.rgp|Rosegarden Project files\n" +"*|All files" +msgstr "" +"*.rose|Ffeiliau Rosegarden-2\n" +"*|Pob ffeil" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3692 +#, fuzzy +msgid "Import Rosegarden Project File" +msgstr "Mewnforio ffeil &Rosegarden 2.1..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3717 +msgid "Failed to import project file \"%1\"" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3739 +msgid "Open MIDI File" +msgstr "Agor Ffeil MIDI" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3756 +msgid "Merge MIDI File" +msgstr "Cyfuno Ffeil MIDI" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3866 +msgid "Importing MIDI file..." +msgstr "Mewnforio ffeil MIDI..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3903 +msgid "Calculating notation..." +msgstr "Enrhifo nodiant..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3950 +msgid "Calculate Notation" +msgstr "Enrhifo Nodiant" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3991 +#: ../src/gui/application/RosegardenGUIApp.cpp:4008 +msgid "" +"*.rose|Rosegarden-2 files\n" +"*|All files" +msgstr "" +"*.rose|Ffeiliau Rosegarden-2\n" +"*|Pob ffeil" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3992 +#: ../src/gui/application/RosegardenGUIApp.cpp:4009 +msgid "Open Rosegarden 2.1 File" +msgstr "Agor Ffeil Rosegarden 2.1" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4026 +msgid "Importing Rosegarden 2.1 file..." +msgstr "Mewnforio ffeil Rosegarden 2.1..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4052 +msgid "Can't load Rosegarden 2.1 file. It appears to be corrupted." +msgstr "Methu llwytho'r ffeil Rosegarden 2.1. Ymddengys ei fod yn llygredig." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4078 +#: ../src/gui/application/RosegardenGUIApp.cpp:4095 +#, fuzzy +msgid "" +"*.h2song|Hydrogen files\n" +"*|All files" +msgstr "" +"*.rg|Ffeiliau Rosegarden-4\n" +"*|Pob ffeil" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4079 +#: ../src/gui/application/RosegardenGUIApp.cpp:4096 +#, fuzzy +msgid "Open Hydrogen File" +msgstr "Agor Ffeil Rosegarden 2.1" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4113 +#, fuzzy +msgid "Importing Hydrogen file..." +msgstr "Mewnforio ffeil Rosegarden 2.1..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4139 +#, fuzzy +msgid "Can't load Hydrogen file. It appears to be corrupted." +msgstr "Methu llwytho'r ffeil Rosegarden 2.1. Ymddengys ei fod yn llygredig." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4527 +#, fuzzy +msgid "Export and import of Rosegarden Project files" +msgstr "Mewnforio ffeil Rosegarden 2.1..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4529 +#, fuzzy +msgid "The Rosegarden Project Packager helper script" +msgstr "Ffeiliau Rosegarden-4" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4533 +msgid "%1 - for project file support" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4550 +msgid "The Rosegarden LilyPondView helper script" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4554 +#, fuzzy +msgid "%1 - for LilyPond preview support" +msgstr "Maint ffont Lilypad" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4570 +msgid "The Rosegarden Audio File Importer helper script" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4574 +#, fuzzy +msgid "%1 - for audio file import" +msgstr "Llwybr ffeil sain:" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4585 +msgid "" +"

          Helper programs not found

          Rosegarden could not find one or more " +"helper programs which it needs to provide some features. The following " +"features will not be available:

          " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4586 +#: ../src/gui/application/RosegardenGUIApp.cpp:4592 +#, fuzzy +msgid "
            " +msgstr "(rhagosod)" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4588 +#: ../src/gui/application/RosegardenGUIApp.cpp:4594 +msgid "
          • %1
          • " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4590 +#: ../src/gui/application/RosegardenGUIApp.cpp:4596 +msgid "
          " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4591 +msgid "" +"

          To fix this, you should install the following additional programs:

          " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4603 +msgid "Helper programs not found" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4686 +msgid "Starting the sequencer..." +msgstr "Cychwyn y dilyniannydd..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4712 +msgid "Couldn't start the sequencer" +msgstr "Methu cychwyn y dilyniannydd" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4789 +msgid "Clearing down jackd..." +msgstr "Gwaredu data jackd..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4803 +msgid "Starting jackd..." +msgstr "Dechrau jackd..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4842 +msgid "" +"The Rosegarden sequencer process has exited unexpectedly. Sound and " +"recording will no longer be available for this session.\n" +"Please exit and restart Rosegarden to restore sound capability." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4846 +msgid "" +"The Rosegarden sequencer could not be started, so sound and recording will " +"be unavailable for this session.\n" +"For assistance with correct audio and MIDI configuration, go to http://" +"rosegardenmusic.com." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4856 +#, fuzzy +msgid "Exporting Rosegarden Project file..." +msgstr "Mewnforio ffeil Rosegarden 2.1..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4859 +#, fuzzy +msgid "Rosegarden Project files\n" +msgstr "Ffeiliau Rosegarden-4" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4861 +#: ../src/gui/application/RosegardenGUIApp.cpp:4905 +#: ../src/gui/application/RosegardenGUIApp.cpp:4943 +#: ../src/gui/application/RosegardenGUIApp.cpp:4976 +#: ../src/gui/application/RosegardenGUIApp.cpp:5010 +#: ../src/gui/application/RosegardenGUIApp.cpp:5116 +msgid "Export as..." +msgstr "Allforio fel..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4875 +#, c-format +msgid "Saving Rosegarden file to package failed: %1" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4889 +msgid "Failed to export to project file \"%1\"" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4900 +#: ../src/gui/application/RosegardenGUIApp.cpp:4915 +msgid "Exporting MIDI file..." +msgstr "Allforio ffeil MIDI..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4903 +msgid "Standard MIDI files\n" +msgstr "Ffeiliau MIDI safonol\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4934 +#: ../src/gui/application/RosegardenGUIApp.cpp:4966 +#: ../src/gui/application/RosegardenGUIApp.cpp:4999 +#: ../src/gui/application/RosegardenGUIApp.cpp:5103 +#: ../src/gui/application/RosegardenGUIApp.cpp:5140 +#: ../src/gui/editors/notation/NotationView.cpp:4733 +msgid "Export failed. The file could not be opened for writing." +msgstr "Methodd yr allforio. Methu agor y ffeil i ysgrifennu." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4940 +#: ../src/gui/application/RosegardenGUIApp.cpp:4952 +msgid "Exporting Csound score file..." +msgstr "Allforio ffeil sgor Csound..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4972 +#: ../src/gui/application/RosegardenGUIApp.cpp:4985 +msgid "Exporting Mup file..." +msgstr "Allforio ffeil Mup..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4975 +msgid "Mup files\n" +msgstr "Ffeiliau Mup\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5005 +#: ../src/gui/application/RosegardenGUIApp.cpp:5089 +#: ../src/gui/editors/notation/NotationView.cpp:4719 +#, fuzzy +msgid "Exporting LilyPond file..." +msgstr "Allforio ffeil Lilypond..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:5008 +#, fuzzy +msgid "LilyPond files" +msgstr "Ffeiliau Lilypond" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5023 +#: ../src/gui/editors/notation/NotationView.cpp:4653 +#, fuzzy +msgid "Printing LilyPond file..." +msgstr "Allforio ffeil Lilypond..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:5028 +#: ../src/gui/application/RosegardenGUIApp.cpp:5052 +#: ../src/gui/editors/notation/NotationView.cpp:4658 +#: ../src/gui/editors/notation/NotationView.cpp:4682 +#, fuzzy +msgid "Failed to open a temporary file for LilyPond export." +msgstr "Dewis un neu mwy o Ffeiliau Sain" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5047 +#: ../src/gui/editors/notation/NotationView.cpp:4677 +#, fuzzy +msgid "Previewing LilyPond file..." +msgstr "Allforio ffeil Lilypond..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:5080 +#: ../src/gui/editors/notation/NotationView.cpp:4710 +#, fuzzy +msgid "LilyPond Preview Options" +msgstr "Maint ffont Lilypad" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5081 +#: ../src/gui/editors/notation/NotationView.cpp:4711 +#, fuzzy +msgid "LilyPond preview options" +msgstr "Maint ffont Lilypad" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5112 +#: ../src/gui/application/RosegardenGUIApp.cpp:5126 +msgid "Exporting MusicXML file..." +msgstr "Allforio ffeil MusicXML..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:5115 +msgid "XML files" +msgstr "Ffeiliau XML" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5289 +#: ../src/gui/editors/segment/TrackButtons.cpp:417 +msgid "" +"The audio file path does not exist or is not writable.\n" +"Please set the audio file path to a valid directory in Document Properties " +"before recording audio.\n" +"Would you like to set it now?" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5337 +msgid "" +"The audio file path does not exist or is not writable.\n" +"Please set the audio file path to a valid directory in Document Properties " +"before you start to record audio.\n" +"Would you like to set it now?" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5780 +#, fuzzy +msgid "Move playback pointer to time" +msgstr "Pwyntydd Chwarae i'r &Cyrchydd" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5793 +#: ../src/gui/editors/matrix/MatrixView.cpp:2240 +msgid "%1%" +msgstr "%1%" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5861 +#, c-format +msgid "Replace Tempo Change at %1" +msgstr "Ailosod Newid Tempo wrth %1" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5891 +msgid "Set Global and Default Tempo" +msgstr "Gosod Tempo Eang a Rhagosodedig" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5914 +#, fuzzy +msgid "Move Tempo Change" +msgstr "Gwaredu Newid &Tempo..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:5949 +#, fuzzy +msgid "new marker" +msgstr "&Gwaredu Pob Arwydd" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5950 +#, fuzzy +msgid "no description" +msgstr "Disgrifiad" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6363 +#, c-format +msgid "Sequencer failed to add audio file %1" +msgstr "Methodd y dilyniannydd ychwanegu ffeil sain %1" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6388 +#, c-format +msgid "Sequencer failed to remove audio file id %1" +msgstr "Methodd y dilyniannydd waredu ffeil sain %1" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6448 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1086 +msgid "Modify Segment label" +msgstr "Addasu label Cylchran" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6450 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1088 +msgid "Modify Segments label" +msgstr "Addasu label Cylchrannau" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6452 +msgid "Relabelling selection..." +msgstr "Ail-labelu dewisiad..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:7539 +#, fuzzy +msgid "Play List" +msgstr "Chwarae" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7567 +msgid "http://rosegarden.sourceforge.net/tutorial/en/chapter-0.html" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7574 +msgid "http://rosegarden.sourceforge.net/tutorial/bug-guidelines.html" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7650 +msgid "Queueing MIDI panic events for tranmission..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7708 +msgid "Are you sure you want to save this as your default studio?" +msgstr "Ydych yn sicr yr ydych eisiau cadw hwn fel eich stiwdio rhagosodedig?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7713 +msgid "Saving current document as default studio..." +msgstr "Cadw'r ddogfen cyfredol fel stiwdio rhagosodedig..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:7738 +#, fuzzy +msgid "" +"Are you sure you want to import your default studio and lose the current one?" +msgstr "Ydych yn sicr yr ydych eisiau cadw hwn fel eich stiwdio rhagosodedig?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7773 +msgid "Import Studio from File" +msgstr "Mewnforio Stiwdio o Ffeil" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7807 +#, fuzzy +msgid "Import Studio" +msgstr "Mewnforio Stiwdio o Ffeil" + +#: ../src/gui/application/RosegardenGUIApp.cpp:8015 +msgid "" +"

          Newer version available

          A newer version of Rosegarden may be " +"available.
          Please consult the Rosegarden website for more information.

          " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:8016 +#, fuzzy +msgid "Newer version available" +msgstr "Wedi ei leoli (lle ar gael)" + +#: ../src/gui/application/RosegardenApplication.cpp:104 +#, c-format +msgid "Failed to load soundfont %1" +msgstr "" + +#: ../src/gui/application/main.cpp:311 +msgid "Rosegarden - A sequencer and musical notation editor" +msgstr "Rosegarden - Dilyniannydd a golygydd nodiant cerddorol" + +#: ../src/gui/application/main.cpp:315 +msgid "Don't use the sequencer (support editing only)" +msgstr "" + +#: ../src/gui/application/main.cpp:316 +#, fuzzy +msgid "Don't show the splash screen" +msgstr "dim dangos sgrin-lluchio" + +#: ../src/gui/application/main.cpp:317 +msgid "Don't automatically run in the background" +msgstr "" + +#: ../src/gui/application/main.cpp:318 +msgid "Attach to a running sequencer process, if found" +msgstr "" + +#: ../src/gui/application/main.cpp:319 +msgid "Ignore installed version - for devs only" +msgstr "" + +#: ../src/gui/application/main.cpp:320 +msgid "file to open" +msgstr "ffeil i agor" + +#: ../src/gui/application/main.cpp:370 +msgid "Installation contains the wrong version of Rosegarden." +msgstr "Mae'r gosodiad yn cynnwys y fersiwn anghywir o Rosegarden." + +#: ../src/gui/application/main.cpp:371 +#, fuzzy +msgid "" +" The wrong versions of Rosegarden's data files were\n" +" found in the standard KDE installation directories.\n" +" (I am %1, but the installed files are for version %2.)\n" +"\n" +" This may mean one of the following:\n" +"\n" +" 1. This is a new upgrade of Rosegarden, and it has not yet been\n" +" installed. If you compiled it yourself, check that you have\n" +" run \"make install\" and that the procedure completed\n" +" successfully.\n" +"\n" +" 2. The upgrade was installed in a non-standard directory,\n" +" and an old version was found in a standard directory. If so,\n" +" you will need to add the correct directory to your KDEDIRS\n" +" environment variable before you can run it." +msgstr "" +"Canfuwyd y fersiynau anghywir o'r ffeiliau data Rosegarden\n" +"yn y cyfeiriaduron gosodiad a ddefnyddir gan KDE yn arferol.\n" +"(%1 ydw i, ond mae'r ffeiliau sydd wedi eu gosod i fersiwn %2.)\n" +"\n" +"Gall hyn olygu un o'r canlynol:\n" +"\n" +"1. Diweddariad newydd o Rosegarden yw hon, ac nid yw wedi\n" +" ei gosod eto. Os ydych wedi ei crynhoi eich hunan, gwiriwch\n" +" eich bod chi wedi rhedeg \"make install\", a bod y weithdrefn\n" +" wedi cwblhau yn llwyddiannus.\n" +"\n" +"2. Gosodwyd y ddiweddariad mewn cyfeiriadur anarferol, \n" +" a chanfuwyd hen fersiwn mewn cyfeiriadur arferol. Os felly, \n" +" bydd rhaid i chi ychwanegu'r cyfeiriadur cywir i'ch newidyn\n" +" amgylchedd KDEDIRS cyn i chi gael ei rhedeg." + +#: ../src/gui/application/main.cpp:383 ../src/gui/application/main.cpp:401 +msgid "Installation problem" +msgstr "Problem gosodiad" + +#: ../src/gui/application/main.cpp:389 +msgid "Rosegarden does not appear to have been installed." +msgstr "Ymddengys nad yw Rosegarden wedi cael ei osod." + +#: ../src/gui/application/main.cpp:390 +#, fuzzy +msgid "" +" One or more of Rosegarden's data files could not be\n" +" found in the standard KDE installation directories.\n" +"\n" +" This may mean one of the following:\n" +"\n" +" 1. Rosegarden has not been correctly installed. If you compiled\n" +" it yourself, check that you have run \"make install\" and that\n" +" the procedure completed successfully.\n" +"\n" +" 2. Rosegarden has been installed in a non-standard directory,\n" +" and you need to add this directory to your KDEDIRS environment\n" +" variable before you can run it. This may be the case if you\n" +" installed into $HOME or a local third-party package directory\n" +" like /usr/local or /opt." +msgstr "" +"Roedd yn amhosibl canfod un neu fwy o'r ffeiliau data Rosegarden\n" +"yn y cyfeiriaduron gosodiad a ddefnyddir gan KDE yn arferol.\n" +"\n" +"Gall hyn olygu un o'r canlynol:\n" +"\n" +"1. Nid yw Rosegarden wedi ei osod yn gywir. Os ydych wedi \n" +" ei grynhoi eich hunan, gwiriwch\n" +" eich bod chi wedi rhedeg \"make install\", a bod y weithdrefn\n" +" wedi cwblhau yn llwyddiannus.\n" +"\n" +"2. Mae Rosegarden wedi cael ei osod mewn cyfeiriadur anarferol, \n" +" a rhaid i chi ychwanegu'r cyfeiriadur yma i'ch newidyn\n" +" amgylchedd KDEDIRS cyn i chi gael ei rhedeg. Gall hyn ddigwydd\n" +" os rydych wedi gosod i mewn i $HOME neu cyfeiriadur pecyn\n" +" trydydd-blaid lleol fel /usr/local neu /opt." + +#: ../src/gui/application/main.cpp:414 +msgid "Rosegarden" +msgstr "Rosegarden" + +#: ../src/gui/application/main.cpp:416 +msgid "" +"Copyright 2000 - 2008 Guillaume Laurent, Chris Cannam, Richard Bown\n" +"Parts copyright 1994 - 2004 Chris Cannam, Andy Green, Richard Bown, " +"Guillaume Laurent\n" +"LilyPond fonts copyright 1997 - 2005 Han-Wen Nienhuys and Jan Nieuwenhuizen" +msgstr "" + +#: ../src/gui/application/main.cpp:428 +msgid "Chord labelling code" +msgstr "" + +#: ../src/gui/application/main.cpp:429 +msgid "" +"LilyPond output\n" +"assorted other patches\n" +"i18n-ization" +msgstr "" + +#: ../src/gui/application/main.cpp:430 +msgid "" +"UI improvements\n" +"bug fixes" +msgstr "" + +#: ../src/gui/application/main.cpp:431 +msgid "" +"Segment colours\n" +"Other UI and bug fixes" +msgstr "" + +#: ../src/gui/application/main.cpp:432 +msgid "" +"Russian translation\n" +"i18n-ization" +msgstr "" + +#: ../src/gui/application/main.cpp:433 ../src/gui/application/main.cpp:434 +msgid "German translation" +msgstr "" + +#: ../src/gui/application/main.cpp:435 +msgid "Welsh translation" +msgstr "" + +#: ../src/gui/application/main.cpp:436 +#, fuzzy +msgid "French translation" +msgstr "Cysoni" + +#: ../src/gui/application/main.cpp:437 +#, fuzzy +msgid "" +"French translation\n" +"Bug fixes" +msgstr "Cysoni" + +#: ../src/gui/application/main.cpp:438 ../src/gui/application/main.cpp:439 +msgid "Italian translation" +msgstr "" + +#: ../src/gui/application/main.cpp:440 ../src/gui/application/main.cpp:441 +msgid "Swedish translation" +msgstr "" + +#: ../src/gui/application/main.cpp:442 +msgid "Estonian translation" +msgstr "" + +#: ../src/gui/application/main.cpp:443 ../src/gui/application/main.cpp:444 +#, fuzzy +msgid "Dutch translation" +msgstr "Cysoni" + +#: ../src/gui/application/main.cpp:445 +msgid "HSpinBox class" +msgstr "" + +#: ../src/gui/application/main.cpp:446 +msgid "Transposition by interval" +msgstr "" + +#: ../src/gui/application/main.cpp:447 +msgid "Original designs for rotary controllers" +msgstr "" + +#: ../src/gui/application/main.cpp:448 +#, fuzzy +msgid "Japanese translation" +msgstr "Cysoni" + +#: ../src/gui/application/main.cpp:449 +msgid "" +"Auto-scroll deceleration\n" +"Rests outside staves and other bug fixes" +msgstr "" + +#: ../src/gui/application/main.cpp:450 +#, fuzzy +msgid "Simplified Chinese translation" +msgstr "Cysoni" + +#: ../src/gui/application/main.cpp:451 +msgid "LIRC infrared remote-controller support" +msgstr "" + +#: ../src/gui/application/main.cpp:452 +msgid "MTC slave timing implementation" +msgstr "" + +#: ../src/gui/application/main.cpp:453 +#, fuzzy +msgid "Czech translation" +msgstr "Cysoni" + +#: ../src/gui/application/main.cpp:454 +msgid "SCons/bksys building system" +msgstr "" + +#: ../src/gui/application/main.cpp:455 +msgid "icons, icons, icons" +msgstr "" + +#: ../src/gui/application/main.cpp:456 ../src/gui/application/main.cpp:457 +#: ../src/gui/application/main.cpp:458 ../src/gui/application/main.cpp:459 +#, fuzzy +msgid "Spanish translation" +msgstr "Cysoni" + +#: ../src/gui/application/main.cpp:460 ../src/gui/application/main.cpp:461 +#, fuzzy +msgid "Catalan translation" +msgstr "Cysoni" + +#: ../src/gui/application/main.cpp:462 +msgid "" +"1.2.3 splash screen photo\n" +"Gave birth to D. Michael McIntyre, bought him a good flute once\n" +"upon a time, and always humored him when he came over to play her\n" +"some new instrument, even though she really hated his playing.\n" +"Born October 19, 1951, died September 21, 2007, R. I. P." +msgstr "" + +#: ../src/gui/application/main.cpp:463 +msgid "Initial guitar chord editing code" +msgstr "" + +#: ../src/gui/application/main.cpp:464 +#, fuzzy +msgid "Polish translation" +msgstr "Cysoni" + +#: ../src/gui/application/main.cpp:465 +#, fuzzy +msgid "Basque translation" +msgstr "Cysoni" + +#: ../src/gui/application/main.cpp:466 +msgid "Klearlook theme" +msgstr "" + +#: ../src/_translatorinfo.cpp:1 ../src/gui/application/main.cpp:468 +msgid "" +"_: NAME OF TRANSLATORS\n" +"Your names" +msgstr "Kevin Donnelly, ar ran KGyfieithu - meddalwedd rhydd yn Gymraeg" + +#: ../src/_translatorinfo.cpp:3 ../src/gui/application/main.cpp:468 +msgid "" +"_: EMAIL OF TRANSLATORS\n" +"Your emails" +msgstr "kyfieithu@dotmon.com" + +#: ../src/gui/application/main.cpp:719 +msgid "Welcome!" +msgstr "" + +#: ../src/gui/application/main.cpp:731 +msgid "" +"

          Welcome to Rosegarden!

          Welcome to the Rosegarden audio and MIDI " +"sequencer and musical notation editor.

          • If you have not already " +"done so, you may wish to install some DSSI synth plugins, or a separate " +"synth program such as QSynth. Rosegarden does not synthesize sounds from " +"MIDI on its own, so without these you will hear nothing.

          • Rosegarden uses the JACK audio server for recording and " +"playback of audio, and for playback from DSSI synth plugins. These features " +"will only be available if the JACK server is running.

          • Rosegarden has comprehensive documentation: see the Help menu " +"for the handbook, tutorials, and other information!

          Rosegarden " +"was brought to you by a team of volunteers across the world. To learn more, " +"go to http://www.rosegardenmusic." +"com/.

          " +msgstr "" + +#: ../src/gui/application/RosegardenGUIView.cpp:257 +msgid "No non-audio segments in composition" +msgstr "Dim cylchrannau di-sain yn y cyfansoddiad" + +#: ../src/gui/application/RosegardenGUIView.cpp:333 +msgid "Selection must contain only audio or non-audio segments" +msgstr "Rhaid i'r dewisiad gynnwys dim ond cylchrannau sain neu di-sain" + +#: ../src/gui/application/RosegardenGUIView.cpp:431 +#: ../src/gui/application/RosegardenGUIView.cpp:576 +#: ../src/gui/application/RosegardenGUIView.cpp:612 +#: ../src/gui/application/RosegardenGUIView.cpp:776 +msgid "No non-audio segments selected" +msgstr "Dim cylchrannau di-sain wedi'w dewis" + +#: ../src/gui/application/RosegardenGUIView.cpp:851 +msgid "" +"You've not yet defined an audio editor for Rosegarden to use.\n" +"See Settings -> Configure Rosegarden -> Audio." +msgstr "" + +#: ../src/gui/application/RosegardenGUIView.cpp:1559 +#: ../src/gui/application/RosegardenGUIView.cpp:1564 +#, fuzzy +msgid "Can't add dropped file. " +msgstr "Methu agor ffeil '%1'" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1014 +#: ../src/gui/seqmanager/SequenceManager.cpp:1150 +msgid "" +"The JACK Audio subsystem has failed or it has stopped Rosegarden from " +"processing audio.\n" +"Please restart Rosegarden to continue working with audio.\n" +"Quitting other running applications may improve Rosegarden's performance." +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1020 +#: ../src/gui/seqmanager/SequenceManager.cpp:1156 +msgid "" +"The JACK Audio subsystem has stopped Rosegarden from processing audio, " +"probably because of a processing overload.\n" +"An attempt to restart the audio service has been made, but some problems may " +"remain.\n" +"Quitting other running applications may improve Rosegarden's performance." +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1031 +msgid "" +"Run out of processor power for real-time audio processing. Cannot continue." +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1057 +msgid "" +"A serious error has occurred in the ALSA MIDI subsystem. It may not be " +"possible to continue sequencing. Please check console output for more " +"information." +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1078 +#, fuzzy +msgid "JACK Audio subsystem is losing sample frames." +msgstr "Nid yw'r is-gysawd sain ar gael - methu recordio sain" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1096 +msgid "" +"Failed to read audio data from disc in time to service the audio subsystem." +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1100 +msgid "" +"Failed to write audio data to disc fast enough to service the audio " +"subsystem." +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1104 +#, fuzzy +msgid "The audio mixing subsystem is failing to keep up." +msgstr "Nid yw'r is-gysawd sain ar gael - methu recordio sain" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1108 +#, fuzzy +msgid "The audio subsystem is failing to keep up." +msgstr "Nid yw'r is-gysawd sain ar gael - methu recordio sain" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1112 +msgid "Unknown sequencer failure mode!" +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1170 +msgid "" +"

          System timer resolution is too low

          Rosegarden was unable to find " +"a high-resolution timing source for MIDI performance.

          This may mean " +"you are using a Linux system with the kernel timer resolution set too low. " +"Please contact your Linux distributor for more information.

          Some Linux " +"distributors already provide low latency kernels, see http://rosegarden.wiki." +"sourceforge.net/Low+latency+kernels for instructions.

          " +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1188 +msgid "" +"

          System timer resolution is too low

          Rosegarden was unable to find " +"a high-resolution timing source for MIDI performance.

          You may be able " +"to solve this problem by loading the RTC timer kernel module. To do this, " +"try running sudo modprobe snd-rtctimer in a terminal window and then " +"restarting Rosegarden.

          Alternatively, check whether your Linux " +"distributor provides a multimedia-optimized kernel. See http://rosegarden.wiki." +"sourceforge.net/Low+latency+kernels for notes about this.

          " +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1312 +msgid "" +"

          Both MIDI and Audio subsystems have failed to initialize.

          You may " +"continue without the sequencer, but we suggest closing Rosegarden, running " +"\"alsaconf\" as root, and starting Rosegarden again. If you wish to run " +"with no sequencer by design, then use \"rosegarden --nosequencer\" to avoid " +"seeing this error in the future.

          " +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1314 +msgid "" +"

          The MIDI subsystem has failed to initialize.

          You may continue " +"without the sequencer, but we suggest closing Rosegarden, running \"modprobe " +"snd-seq-midi\" as root, and starting Rosegarden again. If you wish to run " +"with no sequencer by design, then use \"rosegarden --nosequencer\" to avoid " +"seeing this error in the future.

          " +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1316 +msgid "" +"

          The Rosegarden sequencer module version does not match the GUI module " +"version.

          You have probably mixed up files from two different versions " +"of Rosegarden. Please check your installation.

          " +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1322 +#, fuzzy, c-format +msgid "

          Sequencer startup failed

          %1" +msgstr "Cyflwr y dilyniannydd:" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1330 +msgid "" +"

          Failed to connect to JACK audio server.

          Rosegarden could not " +"connect to the JACK audio server. This probably means the JACK server is " +"not running.

          If you want to be able to play or record audio files or " +"use plugins, you should exit Rosegarden and start the JACK server before " +"running Rosegarden again.

          " +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1331 +msgid "Failed to connect to JACK" +msgstr "" + +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:46 +msgid "Modify MIDI filters..." +msgstr "Addasu Hidlau MIDI..." + +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:58 +msgid "THRU events to ignore" +msgstr "Digwyddiadau Thru i anwybyddu" + +#: ../src/gui/editors/eventlist/EventView.cpp:131 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:60 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:96 +msgid "Note" +msgstr "Nodyn" + +#: ../src/gui/editors/eventlist/EventView.cpp:132 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:61 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:97 +msgid "Program Change" +msgstr "Newid Rhaglen" + +#: ../src/gui/editors/eventlist/EventView.cpp:136 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:62 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:98 +msgid "Key Pressure" +msgstr "Gwasgedd Allwedd" + +#: ../src/gui/editors/eventlist/EventView.cpp:137 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:63 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:99 +msgid "Channel Pressure" +msgstr "Gwasgedd Sianel" + +#: ../src/gui/editors/eventlist/EventView.cpp:134 +#: ../src/gui/general/EditView.cpp:899 +#: ../src/gui/rulers/ControllerEventsRuler.cpp:198 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:64 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:100 +msgid "Pitch Bend" +msgstr "Plygu Traw" + +#: ../src/gui/editors/eventlist/EventView.cpp:133 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:65 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:101 +msgid "Controller" +msgstr "Rheolydd" + +#: ../src/gui/editors/eventlist/EventView.cpp:135 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:66 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:102 +msgid "System Exclusive" +msgstr "Cyfyngedig i'r Cysawd" + +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:94 +msgid "RECORD events to ignore" +msgstr "Digwyddiadau RECORD i anwybyddu" + +#: ../src/gui/widgets/TimeWidget.cpp:101 +#, fuzzy +msgid "Note:" +msgstr "Nodyn" + +#: ../src/gui/widgets/TimeWidget.cpp:108 ../src/gui/widgets/TimeWidget.cpp:145 +msgid "" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:151 +#, fuzzy +msgid "Units:" +msgstr "Uned" + +#: ../src/gui/widgets/TimeWidget.cpp:173 +#, fuzzy +msgid "Time:" +msgstr "Amser: %1" + +#: ../src/gui/widgets/TimeWidget.cpp:184 +#, fuzzy +msgid "units" +msgstr "Uned" + +#: ../src/gui/widgets/TimeWidget.cpp:193 +msgid "Measures:" +msgstr "Bariau:" + +#: ../src/gui/widgets/TimeWidget.cpp:193 +#, fuzzy +msgid "Measure:" +msgstr "Bariau:" + +#: ../src/gui/widgets/TimeWidget.cpp:212 +#, fuzzy +msgid "beats:" +msgstr "Curiad" + +#: ../src/gui/widgets/TimeWidget.cpp:212 +#, fuzzy +msgid "beat:" +msgstr "Curiad" + +#: ../src/gui/widgets/TimeWidget.cpp:230 +#, fuzzy +msgid "%1:" +msgstr "B%1" + +#: ../src/gui/widgets/TimeWidget.cpp:254 +#, fuzzy +msgid "Seconds:" +msgstr "Ail Werth" + +#: ../src/gui/widgets/TimeWidget.cpp:273 +#, fuzzy +msgid "msec:" +msgstr "Enw:" + +#: ../src/gui/widgets/TimeWidget.cpp:407 ../src/gui/widgets/TimeWidget.cpp:531 +msgid "(%1/%2 time)" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:452 +msgid "(starting %1.%2 qpm, %2.%3 bpm)" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:458 +msgid "(starting %1.%2 bpm)" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:464 +msgid "(%1.%2 qpm, %2.%3 bpm)" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:470 +#, fuzzy +msgid "(%1.%2 bpm)" +msgstr "%1.%2 s," + +#: ../src/gui/editors/notation/TrackHeader.cpp:239 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:60 +msgid "C" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:241 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:61 +#, fuzzy +msgid "D" +msgstr "I" + +#: ../src/gui/editors/notation/TrackHeader.cpp:243 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:62 +msgid "E" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:244 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:63 +msgid "F" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:246 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:64 +msgid "G" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:248 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:65 +#, fuzzy +msgid "A" +msgstr "A4" + +#: ../src/gui/editors/notation/TrackHeader.cpp:250 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:66 +msgid "B" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:70 +msgid "-2" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:71 +msgid "-1" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:72 +msgid "0" +msgstr "0" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:73 +#, fuzzy +msgid "1" +msgstr "%1%" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:74 +msgid "2" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:75 +msgid "3" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:76 +#, fuzzy +msgid "4" +msgstr "A4" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:77 +msgid "5" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:78 +msgid "6" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:79 +msgid "7" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:83 +#, fuzzy +msgid "double flat" +msgstr "Lleddf dwbl" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:84 +#, fuzzy +msgid "flat" +msgstr "Lleddf" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:85 +#, fuzzy +msgid "natural" +msgstr "Naturiol" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:86 +#, fuzzy +msgid "sharp" +msgstr "Llon" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:87 +#, fuzzy +msgid "double sharp" +msgstr "Llon dwbl" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:234 +#, fuzzy, c-format +msgid "In %1" +msgstr "Dat-&wneud %1" + +#: ../src/gui/studio/AudioMixerWindow.cpp:587 +#: ../src/gui/widgets/AudioRouteMenu.cpp:236 +#: ../src/gui/widgets/AudioRouteMenu.cpp:259 +#, fuzzy +msgid "Master" +msgstr "Meistr MMC" + +#: ../src/gui/studio/AudioMixerWindow.cpp:528 +#: ../src/gui/widgets/AudioRouteMenu.cpp:238 +#: ../src/gui/widgets/AudioRouteMenu.cpp:261 +#, c-format +msgid "Sub %1" +msgstr "" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:244 +#, fuzzy +msgid "In %1 R" +msgstr "[ %1 ]" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:245 +#, fuzzy +msgid "In %1 L" +msgstr "[ %1 ]" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:247 +#, fuzzy +msgid "Master R" +msgstr "Meistr MMC" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:248 +#, fuzzy +msgid "Master L" +msgstr "Meistr MMC" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:250 +msgid "Sub %1 R" +msgstr "" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:251 +msgid "Sub %1 L" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:391 +#: ../src/gui/studio/AudioMixerWindow.cpp:522 +#: ../src/gui/widgets/AudioFaderBox.cpp:82 +msgid "Audio plugin button" +msgstr "Botwm ategyn sain" + +#: ../src/gui/editors/parameters/AudioInstrumentParameterPanel.cpp:129 +#: ../src/gui/editors/parameters/AudioInstrumentParameterPanel.cpp:357 +#: ../src/gui/widgets/AudioFaderBox.cpp:91 +#, fuzzy +msgid "" +msgstr "" + +#: ../src/gui/widgets/AudioFaderBox.cpp:93 +#, fuzzy +msgid "Synth plugin button" +msgstr "Botwm ategyn sain" + +#: ../src/gui/widgets/AudioFaderBox.cpp:153 +msgid "Set the audio pan position in the stereo field" +msgstr "Gosod lleoliad y panio sain yn y faes stereo" + +#: ../src/gui/widgets/AudioFaderBox.cpp:155 +#, fuzzy +msgid "Open synth plugin's native editor" +msgstr "Agor yn y Golygydd Matric&s" + +#: ../src/gui/widgets/AudioFaderBox.cpp:157 +#, fuzzy +msgid "Mono or Stereo Instrument" +msgstr "Offeryn Sain Mono neu Stereo" + +#: ../src/gui/widgets/AudioFaderBox.cpp:159 +#, fuzzy +msgid "Record level" +msgstr "Safon recordio =" + +#: ../src/gui/widgets/AudioFaderBox.cpp:161 +#, fuzzy +msgid "Playback level" +msgstr "Safon chwarae =" + +#: ../src/gui/studio/AudioMixerWindow.cpp:345 +#: ../src/gui/studio/AudioMixerWindow.cpp:347 +#: ../src/gui/studio/AudioMixerWindow.cpp:503 +#: ../src/gui/studio/AudioMixerWindow.cpp:505 +#: ../src/gui/widgets/AudioFaderBox.cpp:163 +#, fuzzy +msgid "Audio level" +msgstr "Ychwanegu Ffeil Sain" + +#: ../src/gui/widgets/AudioFaderBox.cpp:170 +msgid "In:" +msgstr "" + +#: ../src/gui/widgets/AudioFaderBox.cpp:173 +msgid "Out:" +msgstr "" + +#: ../src/gui/widgets/ProgressDialog.cpp:48 +#: ../src/gui/widgets/ProgressDialog.cpp:53 +#: ../src/gui/widgets/ProgressDialog.cpp:76 +msgid "Processing..." +msgstr "Prosesu..." + +#: ../src/gui/configuration/ColourConfigurationPage.h:60 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:130 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:346 +#: ../src/gui/widgets/ColourTable.cpp:52 +msgid "Color" +msgstr "Lliw" + +#: ../src/gui/widgets/ColourTable.cpp:68 +msgid "Modify Color Name" +msgstr "Addasu Enw'r Lliw" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:129 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:983 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:882 +#: ../src/gui/widgets/ColourTable.cpp:68 +msgid "Enter new name" +msgstr "Mewnosod enw newydd" + +#: ../src/gui/widgets/ColourTable.cpp:107 +msgid "Default Color" +msgstr "Lliw Rhagosod" + +#: ../src/gui/widgets/Rotary.cpp:108 +msgid "" +"Click and drag up and down or left and right to modify.\n" +"Double click to edit value directly." +msgstr "" + +#: ../src/gui/widgets/Rotary.cpp:433 +#, fuzzy +msgid "Select a new value" +msgstr "Dileu'r priodwedd yma" + +#: ../src/gui/widgets/Rotary.cpp:434 +#, fuzzy +msgid "Enter a new value" +msgstr "Mewnosod enw newydd" + +#: ../src/gui/widgets/QuantizeParameters.cpp:80 +#, fuzzy +msgid "Quantizer" +msgstr "Cwanteiddio" + +#: ../src/gui/widgets/QuantizeParameters.cpp:86 +#, fuzzy +msgid "Quantizer type:" +msgstr "Math y Cwanteiddydd" + +#: ../src/gui/widgets/QuantizeParameters.cpp:88 +msgid "Grid quantizer" +msgstr "Cwanteiddydd Rhwydell" + +#: ../src/gui/widgets/QuantizeParameters.cpp:89 +#, fuzzy +msgid "Legato quantizer" +msgstr "Cwanteiddydd Rhwydell" + +#: ../src/gui/widgets/QuantizeParameters.cpp:90 +msgid "Heuristic notation quantizer" +msgstr "Cwanteiddydd nodiant darganfyddol" + +#: ../src/gui/widgets/QuantizeParameters.cpp:94 +msgid "Quantize for notation only (leave performance unchanged)" +msgstr "Cwanteiddio am nodiant yn unig (dim newid i'r perfformiad)" + +#: ../src/gui/widgets/QuantizeParameters.cpp:104 +msgid "Notation parameters" +msgstr "Paramedrau Nodiant" + +#: ../src/gui/widgets/QuantizeParameters.cpp:109 +#: ../src/gui/widgets/QuantizeParameters.cpp:150 +msgid "Base grid unit:" +msgstr "Uned rhwydell sail:" + +#: ../src/gui/widgets/QuantizeParameters.cpp:114 +msgid "Complexity:" +msgstr "Cymhlethder:" + +#: ../src/gui/widgets/QuantizeParameters.cpp:118 +msgid "Very high" +msgstr "Uchel iawn" + +#: ../src/gui/widgets/QuantizeParameters.cpp:119 +msgid "High" +msgstr "Uchel" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:224 +#: ../src/gui/widgets/QuantizeParameters.cpp:120 +msgid "Normal" +msgstr "Arferol" + +#: ../src/gui/widgets/QuantizeParameters.cpp:121 +msgid "Low" +msgstr "Isel" + +#: ../src/gui/widgets/QuantizeParameters.cpp:122 +msgid "Very low" +msgstr "Isel iawn" + +#: ../src/gui/widgets/QuantizeParameters.cpp:125 +msgid "Tuplet level:" +msgstr "Safon plygyn:" + +#: ../src/gui/widgets/QuantizeParameters.cpp:129 +msgid "2-in-the-time-of-3" +msgstr "2-yn-amseriad-3" + +#: ../src/gui/editors/notation/NotationView.cpp:4241 +#: ../src/gui/widgets/QuantizeParameters.cpp:130 +msgid "Triplet" +msgstr "Tripled" + +#: ../src/gui/widgets/QuantizeParameters.cpp:138 +msgid "Any" +msgstr "Unrhyw" + +#: ../src/gui/widgets/QuantizeParameters.cpp:141 +#, fuzzy +msgid "Permit counterpoint" +msgstr "Gwaredu gwrthpwynt" + +#: ../src/gui/widgets/QuantizeParameters.cpp:145 +msgid "Grid parameters" +msgstr "Paramedrau Rhwydell" + +#: ../src/gui/widgets/QuantizeParameters.cpp:154 +msgid "Swing:" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:159 +msgid "Iterative amount:" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:165 +msgid "Quantize durations as well as start times" +msgstr "Cwanteiddio parhadau wrth ymyl amserau dechrau" + +#: ../src/gui/widgets/QuantizeParameters.cpp:169 +msgid "After quantization" +msgstr "Ar ol cwanteiddio" + +#: ../src/gui/widgets/QuantizeParameters.cpp:183 +#, fuzzy +msgid "Show advanced options" +msgstr "Dangos &Anodiadau" + +#: ../src/gui/widgets/QuantizeParameters.cpp:192 +msgid "Re-beam" +msgstr "Ail-drawstio" + +#: ../src/gui/widgets/QuantizeParameters.cpp:194 +msgid "Add articulations (staccato, tenuto, slurs)" +msgstr "Ychwanegu seiniadau (staccato, tenuto, llithriadau)" + +#: ../src/gui/widgets/QuantizeParameters.cpp:195 +msgid "Tie notes at barlines etc" +msgstr "Clymu nodau wrth linellau bar ayyb" + +#: ../src/gui/widgets/QuantizeParameters.cpp:196 +msgid "Split-and-tie overlapping chords" +msgstr "Hollti-a-clymu cordiau sy'n croesi" + +#: ../src/gui/widgets/QuantizeParameters.cpp:307 +#, fuzzy +msgid "Full quantize" +msgstr "Cwanteiddydd Rhwydell" + +#: ../src/gui/widgets/QuantizeParameters.cpp:450 +#, fuzzy +msgid "Show Advanced Options" +msgstr "Dangos &Anodiadau" + +#: ../src/gui/widgets/QuantizeParameters.cpp:454 +#, fuzzy +msgid "Hide Advanced Options" +msgstr "Anodiadau cudd" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:257 +#: ../src/gui/configuration/MatrixConfigurationPage.h:56 +#: ../src/gui/configuration/MatrixConfigurationPage.h:57 +#: ../src/gui/editors/matrix/MatrixView.cpp:2709 +msgid "Matrix" +msgstr "Matrics" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:64 +msgid "Printable headers" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:92 +#, fuzzy +msgid "Dedication" +msgstr "Dangosiad" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:96 +#: ../src/gui/editors/segment/PlayListView.cpp:35 +#, fuzzy +msgid "Title" +msgstr "Tripled" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:100 +#, fuzzy +msgid "Subtitle" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:104 +#, fuzzy +msgid "Subsubtitle" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:108 +#, fuzzy +msgid "Poet" +msgstr "saib" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:116 +#, fuzzy +msgid "Composer" +msgstr "Lliw" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:120 +#, fuzzy +msgid "Meter" +msgstr "Mesurydd VU Sain" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:124 +#, fuzzy +msgid "Arranger" +msgstr "Tripled" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:128 +#, fuzzy +msgid "Piece" +msgstr "Traw:" + +#: ../data/fonts/mappings/fonts.cpp:26 +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:132 +msgid "Opus" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:136 +#, fuzzy +msgid "Copyright" +msgstr "Hawlfraint:" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:140 +#, fuzzy +msgid "Tagline" +msgstr "Tripled" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:155 +#, fuzzy +msgid "The composition comes here." +msgstr "Newid Hyd y Cyfansoddiad" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:172 +msgid "Non-printable headers" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:213 +msgid "Add New Property" +msgstr "Ychwanegu Priodwedd Newydd" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:217 +msgid "Delete Property" +msgstr "Dileu Priodwedd" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:236 +msgid "{new property %1}" +msgstr "{priodwedd newydd %1}" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:236 +msgid "{new property}" +msgstr "{priodwedd newydd}" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:243 +msgid "{undefined}" +msgstr "{aniffiniedig}" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:87 +#, fuzzy +msgid "Double-click opens segment in" +msgstr "Golygydd rhagosodedig (am glic-dwbl ar gylchran)" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:91 +#, fuzzy +msgid "Notation editor" +msgstr "Nodiad" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:92 +#, fuzzy +msgid "Matrix editor" +msgstr "Gwaredu'r Dewisiad" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:93 +#, fuzzy +msgid "Event List editor" +msgstr "Agor yn y Golygydd &Rhestr Digwyddiadau" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:99 +msgid "Number of count-in measures when recording" +msgstr "Nifer o fariau cyfrif-i-mewn wrth recordio" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:109 +#, fuzzy +msgid "Auto-save interval" +msgstr "Ysbaid hunan-gadw (mewn eiliadau)" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:112 +msgid "Every 30 seconds" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:113 +msgid "Every minute" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:114 +msgid "Every five minutes" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:115 +msgid "Every half an hour" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:116 +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:277 +#: ../src/gui/configuration/NotationConfigurationPage.cpp:157 +#, fuzzy +msgid "Never" +msgstr "Datsain" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:140 +#, fuzzy +msgid "Use JACK transport" +msgstr "Modd cludiant JACK" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:173 +msgid "Unknown" +msgstr "Anhysbys" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:179 +msgid "No MIDI, audio OK" +msgstr "Dim MIDI, sain iawn" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:182 +msgid "MIDI OK, no audio" +msgstr "MIDI iawn, dim sain" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:185 +msgid "MIDI OK, audio OK" +msgstr "MIDI iawn, sain iawn" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:188 +msgid "No driver" +msgstr "Dim gyrrydd" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:195 +#, fuzzy +msgid "Details..." +msgstr "Dileu Traciau..." + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:204 +#, fuzzy +msgid "Behavior" +msgstr "Ymddygiad" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:219 +msgid "Side-bar parameter box layout" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:223 +msgid "Vertically stacked" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:225 +msgid "Tabbed" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:233 +msgid "Note name style" +msgstr "Ardull enw nodyn" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:237 +msgid "Always use US names (e.g. quarter, 8th)" +msgstr "Defnyddio enwau UD o hyd (ee chwarter, 8ed)" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:238 +#, fuzzy +msgid "Localized (where available)" +msgstr "Wedi ei leoli (lle ar gael)" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:252 +#, fuzzy +msgid "Show textured background on" +msgstr "Defnyddio cefndiroedd gweadog ar ardaloedd cynfas" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:254 +msgid "Main window" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:275 +msgid "Use bundled Klearlook theme" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:278 +msgid "When not running under KDE" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:279 +#: ../src/gui/configuration/NotationConfigurationPage.cpp:159 +#, fuzzy +msgid "Always" +msgstr "Slaesau" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:287 +msgid "Presentation" +msgstr "Cyflwyniad" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:423 +msgid "" +"Changes to the textured background in the main window will not take effect " +"until you restart Rosegarden." +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:168 +#: ../src/gui/configuration/GeneralConfigurationPage.h:78 +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:207 +#: ../src/gui/configuration/MatrixConfigurationPage.cpp:59 +msgid "General" +msgstr "Cyffredinol" + +#: ../src/gui/configuration/GeneralConfigurationPage.h:79 +msgid "General Configuration" +msgstr "Ffurfweddiad Cyffredinol" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:92 +msgid "Base octave number for MIDI pitch display" +msgstr "Rhif wythfed y bas i ddangos traw MIDI" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:107 +msgid "Always use default studio when loading files" +msgstr "Defnyddio'r stiwdio rhagosod o hyd wrth lwytho ffeiliau" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:119 +#, fuzzy +msgid "Send all MIDI Controllers at start of each playback" +msgstr "" +"Anfon Rheolyddion MIDI wrth ddechrau chwarae\n" +"(bydd yn achosi oedi cychwynnol sylweddol)" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:121 +msgid "" +"Rosegarden can send all MIDI Controllers (Pan, Reverb etc) to all MIDI " +"devices every\n" +"time you hit play if you so wish. Please note that this option will usually " +"incur a\n" +"delay at the start of playback due to the amount of data being transmitted." +msgstr "" +"Gall Rosegarden anfon pob Rheolydd MIDI (Panio, Datsain, ayyb) i bob dyfais " +"MIDI\n" +"bob tro yr ydych yn gwasgu Chwarae, os ydych eisiau. Noder: bydd y dewisiad " +"yma\n" +"fel arfer yn achosi oedi wrth ddechrau'r chwarae o achos cymaint y ddata " +"sy'n cael ei trosglwyddo." + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:138 +#, fuzzy +msgid "Sequencer timing source" +msgstr "Terfynodd y dilyniannydd" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:163 +msgid "Load SoundFont to SoundBlaster card at startup" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:164 +msgid "" +"Check this box to enable soundfont loading on EMU10K-based cards when " +"Rosegarden is launched" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:173 +msgid "Path to 'asfxload' or 'sfxload' command" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:180 +msgid "SoundFont" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:223 +#, fuzzy +msgid "MIDI Clock and System messages" +msgstr "Anfon negeseuon Cloc a Cysawd MIDI" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:229 +#, fuzzy +msgid "Send MIDI Clock, Start and Stop" +msgstr "Anfon negeseuon Cloc a Cysawd MIDI" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:230 +msgid "Accept Start, Stop and Continue" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:241 +#, fuzzy +msgid "MIDI Machine Control mode" +msgstr "Trefnu Paramedrau Rheoli" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:248 +msgid "MMC Master" +msgstr "Meistr MMC" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:249 +msgid "MMC Slave" +msgstr "Gwas MMC" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:260 +msgid "MIDI Time Code mode" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:267 +#, fuzzy +msgid "MTC Master" +msgstr "Meistr MMC" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:268 +#, fuzzy +msgid "MTC Slave" +msgstr "Gwas MMC" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:281 +msgid "Automatically connect sync output to all devices in use" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:292 +#, fuzzy +msgid "MIDI Sync" +msgstr "Hwyrni MIDI" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:308 +msgid "sfxload path" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:315 +msgid "Soundfont path" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:67 +msgid "%1 minutes %2.%3%4 seconds (%5 units, %6 measures)" +msgstr "%1 o funudau %2.%3%4 o eiliadau (%5 o unedau, %6 o fariau)" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:133 +msgid "Filename:" +msgstr "Enw ffeil:" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:136 +msgid "Formal duration (to end marker):" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:141 +#, fuzzy +msgid "Playing duration:" +msgstr "Yn chwarae ffeil sain" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:146 +#, fuzzy +msgid "Tracks:" +msgstr "Tra&ciau" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:147 +msgid "%1 used, %2 total" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:152 +msgid "Segments:" +msgstr "Cylchrannau" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:153 +msgid "%1 MIDI, %2 audio, %3 total" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:161 +msgid "Statistics" +msgstr "Ystadegau" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:170 +#: ../src/gui/editors/parameters/InstrumentParameterBox.cpp:155 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:92 +#, fuzzy +msgid "Track" +msgstr "Tra&ciau" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:171 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:125 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:90 +msgid "Label" +msgstr "Labelu" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:172 +#, fuzzy +msgid "Time" +msgstr "Amser" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:174 +#, fuzzy +msgid "Events" +msgstr "Rhestr Digwyddiadau" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:175 +msgid "Polyphony" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:176 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:126 +msgid "Repeat" +msgstr "Ailadrodd" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:178 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:128 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:305 +#: ../src/gui/general/EditView.cpp:1488 +msgid "Transpose" +msgstr "Trawsgyweirio" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:179 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:129 +msgid "Delay" +msgstr "Oedi" + +#: ../src/gui/configuration/AudioConfigurationPage.h:61 +#: ../src/gui/configuration/AudioPropertiesPage.h:58 +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:204 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:523 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:524 +msgid "Audio" +msgstr "Sain" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:204 +#: ../src/gui/configuration/MIDIConfigurationPage.h:62 +#, fuzzy +msgid "MIDI" +msgstr "II" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:317 +#, fuzzy +msgid "Segment Summary" +msgstr "Cylchrannau" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:63 +msgid "Audio file path:" +msgstr "Llwybr ffeil sain:" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:137 +#: ../src/gui/configuration/AudioPropertiesPage.cpp:68 +msgid "Choose..." +msgstr "Dewis..." + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:73 +msgid "Disk space remaining:" +msgstr "Lle ar ôl ar y ddisg:" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:78 +msgid "Equivalent minutes of 16-bit stereo:" +msgstr "Munudau cywerth o stereo 16-did:" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:90 +msgid "Modify audio path" +msgstr "Addasu llwybr sain" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:113 +msgid "%1 out of %2 (%3% used)" +msgstr "" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:144 +msgid "minutes at" +msgstr "munudau wrth" + +#: ../src/gui/configuration/MIDIConfigurationPage.h:63 +#, fuzzy +msgid "MIDI Settings" +msgstr "Gosodiadau Lliw" + +#: ../src/gui/configuration/AudioConfigurationPage.h:62 +#: ../src/gui/configuration/AudioPropertiesPage.h:59 +msgid "Audio Settings" +msgstr "Gosodiadau Sain" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:87 +msgid "Default layout mode" +msgstr "Modd haenlun rhagosodedig" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:91 +msgid "Linear layout" +msgstr "Haenlun llinellog" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:92 +msgid "Continuous page layout" +msgstr "Haenlun tudalen parhaus" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:93 +msgid "Multiple page layout" +msgstr "Haenlun tudalennau lluosol" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:101 +msgid "Default spacing" +msgstr "Bylchu rhagosodedig" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:125 +#, fuzzy +msgid "Default duration factor" +msgstr "Parhad" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:141 +msgid "Full" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:152 +msgid "Show track headers (linear layout only)" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:158 +msgid "When needed" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:166 +msgid "" +"\"Always\" and \"Never\" mean what they usually mean\n" +"\"When needed\" means \"when staves are too many to all fit in the current " +"window\"" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:178 +msgid "Show non-notation events as question marks" +msgstr "Dangos digwyddiadau di-nodiant fel gofynnodau" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:188 +msgid "Show notation-quantized notes in a different color" +msgstr "Dangos nodau wedi eu cwanteiddio yn y nodiant mewn lliw gwahanol" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:198 +msgid "Show \"invisible\" events in grey" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:208 +msgid "Show notes outside suggested playable range in red" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:218 +msgid "Highlight superimposed notes with a halo effect" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:231 +msgid "When recording MIDI, split-and-tie long notes at barlines" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:242 +msgid "Layout" +msgstr "Haenlun" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:255 +msgid "Default note style for new notes" +msgstr "Arddull nodyn rhagosodedig i nodau newydd" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:287 +msgid "When inserting notes..." +msgstr "Wrth fewnosod nodau..." + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:294 +msgid "Split notes into ties to make durations match" +msgstr "Hollti nodau i mewn i glymau i wneud i'r parhadau gydweddu" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:295 +msgid "Ignore existing durations" +msgstr "Anwybyddu parhadau mewn bod" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:305 +msgid "Auto-beam on insert when appropriate" +msgstr "Hunan-drawstio wrth mewnosod, lle addas" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:317 +#: ../src/gui/editors/notation/NotationEraser.cpp:54 +msgid "Collapse rests after erase" +msgstr "Dat-ehangu seibiau ar ol dileu" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:328 +msgid "Default paste type" +msgstr "Math gludo rhagosodedig" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:350 +msgid "Editing" +msgstr "Golygu" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:362 +#, fuzzy +msgid "Accidentals in one octave..." +msgstr "Trawsgyweirio i fyny un wythfed..." + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:364 +msgid "Affect only that octave" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:365 +#, fuzzy +msgid "Require cautionaries in other octaves" +msgstr "Nid oes newidiadau tempo eraill." + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:366 +msgid "Affect all subsequent octaves" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:374 +#, fuzzy +msgid "Accidentals in one bar..." +msgstr "Bar Hapnodau" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:376 +msgid "Affect only that bar" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:377 +msgid "Require cautionary resets in following bar" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:378 +msgid "Require explicit resets in following bar" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:386 +msgid "Key signature cancellation style" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:388 +msgid "Cancel only when entering C major or A minor" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:389 +msgid "Cancel whenever removing sharps or flats" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:390 +msgid "Cancel always" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:400 +#, fuzzy +msgid "Accidentals" +msgstr "&Hapnodau" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:441 +msgid "Notation font" +msgstr "Ffont Nodiant" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:467 +msgid "Origin:" +msgstr "Tarddiad:" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:471 +msgid "Copyright:" +msgstr "Hawlfraint:" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:475 +msgid "Mapped by:" +msgstr "Wedi ei fapio gan:" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:479 +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:81 +msgid "Type:" +msgstr "Math:" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:508 +msgid "Font size for single-staff views" +msgstr "Maint ffont i olygon erwydd sengl" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:516 +msgid "Font size for multi-staff views" +msgstr "Maint ffont i olygon erwydd lluosol" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:524 +msgid "Font size for printing (pt)" +msgstr "Maint wynebfath ar gyfer argraffu (pt)" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:541 +#, fuzzy +msgid "Text font" +msgstr "Testun:" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:549 +msgid "Sans-serif font" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:664 +#, fuzzy +msgid "%1 (smooth)" +msgstr "%1 (wedi'i hollti)" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:667 +#, fuzzy +msgid "%1 (jaggy)" +msgstr "%1 (rhan)" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:58 +msgid "JACK latency" +msgstr "Hwyrni JACK" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:61 +msgid "" +"Use the \"Fetch JACK latencies\" button to discover the latency values set " +"at\n" +"the sequencer. It's recommended that you use the returned values but it's " +"also\n" +"possible to override them manually using the sliders. Note that if you " +"change\n" +"your JACK server parameters you should always fetch the latency values " +"again.\n" +"The latency values will be stored by Rosegarden for use next time." +msgstr "" +"Defynyddiwch y botwm \"Nol hwyrnioedd JACK\" i ddarganfod y gwerthoedd " +"hwyrni sydd wedi eu gosod\n" +"wrth y dilyniannydd. Y peth gorau yw defnyddio'r gwerthoedd a ddangosir, " +"ond mae'n bosibl hefyd\n" +"i'w newid a llaw gan ddefnyddio'r llithryddion. Noder: ar ol i chi newid " +"paramedrau eich\n" +"gweinydd JACK, dylech nol y gwerthoedd hwyrni eto. Bydd Rosegarden yn " +"cadw'r gwerthoedd\n" +"hwyrni i ddeffnyddio'r tro nesaf." + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:65 +msgid "JACK playback latency (in ms)" +msgstr "Hwyrni chwarae JACK (mewn ms)" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:66 +msgid "JACK record latency (in ms)" +msgstr "Hwyrni recordio JACK (mewn ms)" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:68 +msgid "Fetch JACK latencies" +msgstr "Nol hwyrnioedd JACK" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:121 +msgid "JACK Latency" +msgstr "Hwyrni JACK" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:92 +#, fuzzy +msgid "Audio preview scale" +msgstr "Ychwanegu Ffeil Sain" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:96 +msgid "Linear - easier to see loud peaks" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:97 +msgid "Meter scaling - easier to see quiet activity" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:105 +#, fuzzy +msgid "Record audio files as" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:107 +msgid "16-bit PCM WAV format (smaller files)" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:108 +msgid "32-bit float WAV format (higher quality)" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:117 +msgid "External audio editor" +msgstr "Golygydd sain allanol" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:145 +msgid "Create JACK outputs" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:150 +#, fuzzy +msgid "for individual audio instruments" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:157 +#, fuzzy +msgid "for submasters" +msgstr "Dangos Rhes&yddion" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:184 +#, fuzzy +msgid "" +"Rosegarden can start the JACK audio daemon (jackd) for you automatically if " +"it isn't already running when Rosegarden starts.\n" +"\n" +"This is recommended for beginners and those who use Rosegarden as their main " +"audio application, but it might not be to the liking of advanced users.\n" +"\n" +"If you want to start JACK automatically, make sure the command includes a " +"full path where necessary as well as any command-line arguments you want to " +"use.\n" +"\n" +"For example: /usr/local/bin/jackd -d alsa -d hw -r44100 -p 2048 -n 2\n" +"\n" +msgstr "" +"Gall Rosegarden gychwyn yr ellyll sain JACK (jackd) i chi\n" +"yn ymysgogol os nid yw'n rhedeg eisoes pan dechreua Rosegarden.\n" +"\n" +"Argymhellir hyn ar gyfer dechreuwyr a'r rhai sy'n defnyddio Rosegarden fel " +"eu prif\n" +"gymhwysiad sain, ond gall defnyddwyr uwch fod yn anfodlon efo fo.\n" +"\n" +"Os ydych eisiau cychwyn JACK yn ymysgogol, sicrhewch fod y gorchymyn yn " +"cynnwys\n" +"llwybr cyfan lle bo angen, ac unrhyw argymhellion llinell gorchymyn yr " +"hoffech ddefnyddio.\n" +"\n" +"Er enghraifft: /usr/local/bin/jackd -d alsa -d hw -r44100 -p 2048 -n 2\n" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:196 +msgid "Start JACK when Rosegarden starts" +msgstr "Cychwyn JACK pan dechreua Rosegarden" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:201 +msgid "JACK command" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:214 +#, fuzzy +msgid "JACK Startup" +msgstr "Ymgychwyn" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:224 +#, fuzzy +msgid "External audio editor path" +msgstr "Golygydd sain allanol" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:262 +msgid "External audio editor \"%1\" not found or not executable" +msgstr "" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:70 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:448 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:863 +msgid "Add New Color" +msgstr "Ychwanegu Lliw Newydd" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:74 +msgid "Delete Color" +msgstr "Dileu Lliw" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:93 +msgid "Color Map" +msgstr "Map Lliw" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:128 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:983 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:882 +msgid "New Color Name" +msgstr "Enw'r Lliw Newydd" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:130 +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:59 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:984 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:883 +#: ../src/gui/studio/DeviceManagerDialog.cpp:115 +#: ../src/gui/studio/DeviceManagerDialog.cpp:174 +msgid "New" +msgstr "Newydd" + +#: ../src/gui/configuration/LatencyConfigurationPage.h:62 +msgid "Latency" +msgstr "Hwyrni" + +#: ../src/gui/configuration/LatencyConfigurationPage.h:63 +msgid "Sequencer Latency" +msgstr "Hwyrni Dilyniannydd" + +#: ../src/gui/configuration/ColourConfigurationPage.h:61 +msgid "Color Settings" +msgstr "Gosodiadau Lliw" + +#: ../src/gui/studio/MidiDeviceListViewItem.cpp:55 +#: ../src/gui/studio/MidiKeyMapListViewItem.cpp:44 +#, fuzzy +msgid "Key Mapping" +msgstr "Newid Allwedd" + +#: ../src/gui/studio/BankEditorDialog.cpp:97 +msgid "Manage MIDI Banks and Programs" +msgstr "Rheoli Rhengau MIDI a Rhaglenni" + +#: ../src/gui/studio/BankEditorDialog.cpp:128 +msgid "MIDI Device" +msgstr "Dyfais MIDI" + +#: ../src/gui/studio/BankEditorDialog.cpp:130 +#: ../src/gui/studio/BankEditorDialog.cpp:219 +msgid "MSB" +msgstr "MSB" + +#: ../src/gui/studio/BankEditorDialog.cpp:131 +#: ../src/gui/studio/BankEditorDialog.cpp:218 +msgid "LSB" +msgstr "LSB" + +#: ../src/gui/studio/BankEditorDialog.cpp:140 +#, fuzzy +msgid "Add Bank" +msgstr "Ychwanegu Traciau..." + +#: ../src/gui/studio/BankEditorDialog.cpp:141 +#, fuzzy +msgid "Add Key Mapping" +msgstr "Ychwanegu &Newid Cywair..." + +#: ../src/gui/studio/BankEditorDialog.cpp:153 +msgid "Add a Bank to the current device" +msgstr "Ychwanegu Rheng i'r dyfais cyfredol" + +#: ../src/gui/studio/BankEditorDialog.cpp:157 +#, fuzzy +msgid "Add a Percussion Key Mapping to the current device" +msgstr "Ychwanegu Rheng i'r dyfais cyfredol" + +#: ../src/gui/studio/BankEditorDialog.cpp:161 +#, fuzzy +msgid "Delete the current Bank or Key Mapping" +msgstr "Dileu y Rheng cyfredol" + +#: ../src/gui/studio/BankEditorDialog.cpp:165 +#, fuzzy +msgid "Delete all Banks and Key Mappings from the current Device" +msgstr "Dileu pob Rheng o'r Dyfais cyfredol" + +#: ../src/gui/studio/BankEditorDialog.cpp:167 +#: ../src/gui/studio/DeviceManagerDialog.cpp:117 +#, fuzzy +msgid "Import..." +msgstr "&Mewnforio" + +#: ../src/gui/studio/BankEditorDialog.cpp:168 +#: ../src/gui/studio/DeviceManagerDialog.cpp:118 +#, fuzzy +msgid "Export..." +msgstr "Allforio fel..." + +#: ../src/gui/studio/BankEditorDialog.cpp:176 +msgid "" +"Import Bank and Program data from a Rosegarden file to the current Device" +msgstr "" +"Mewnforio data Rheng a Rhaglen oddiwrth ffeil Rosegarden i'r Dyfais cyfredol" + +#: ../src/gui/studio/BankEditorDialog.cpp:179 +msgid "" +"Export all Device and Bank information to a Rosegarden format interchange " +"file" +msgstr "" +"Allforio gwybodaeth pob Dyfais a Rheng i ffeil rhyngnewid fformat Rosegarden" + +#: ../src/gui/studio/BankEditorDialog.cpp:190 +msgid "Copy all Program names from current Bank to clipboard" +msgstr "Copio pob enw Rhaglen o'r Rheng cyfredol i'r gludfwrdd" + +#: ../src/gui/studio/BankEditorDialog.cpp:194 +msgid "Paste Program names from clipboard to current Bank" +msgstr "Gludo enwau Rhaglen o'r gludfwrdd i'r Rheng cyfredol" + +#: ../src/gui/studio/BankEditorDialog.cpp:216 +msgid "Show Variation list based on " +msgstr "Dangos rhestr Amrywiad wedi'i seilio ar" + +#: ../src/gui/studio/BankEditorDialog.cpp:1010 +msgid "" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1046 +#, fuzzy +msgid "" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1048 +#, fuzzy +msgid "" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1089 +msgid "Really delete this bank?" +msgstr "Wir dileu y rheng yma?" + +#: ../src/gui/studio/BankEditorDialog.cpp:1137 +#, fuzzy +msgid "Really delete this key mapping?" +msgstr "Wir dileu y rheng yma?" + +#: ../src/gui/studio/BankEditorDialog.cpp:1187 +msgid "Really delete all banks for " +msgstr "Wir dileu pob rheng am" + +#: ../src/gui/studio/BankEditorDialog.cpp:1476 +msgid "Import Banks from Device in File" +msgstr "Mewnforio Rhengau o Ddyfais mewn Ffeil" + +#: ../src/gui/studio/BankEditorDialog.cpp:1623 +#: ../src/gui/studio/DeviceManagerDialog.cpp:770 +msgid "Export Device as..." +msgstr "Allforio Dyfais fel ..." + +#: ../src/gui/studio/BankEditorDialog.cpp:1694 +msgid "" +"There are unsaved changes.\n" +"Do you want to apply the changes before exiting the Bank Editor or discard " +"the changes ?" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1697 +#, fuzzy +msgid "Unsaved Changes" +msgstr "Newid Allwedd" + +#: ../src/gui/studio/NameSetEditor.cpp:68 +msgid "Librarian" +msgstr "Rhaglengellydd" + +#: ../src/gui/studio/NameSetEditor.cpp:75 +msgid "Email" +msgstr "Ebost" + +#: ../src/gui/studio/NameSetEditor.cpp:80 +#, fuzzy +msgid "" +"The librarian maintains the Rosegarden device data for this device.\n" +"If you've made modifications to suit your own device, it might be worth\n" +"liaising with the librarian in order to publish your information for the " +"benefit\n" +"of others." +msgstr "" +"Mae'r rhaglengellydd yn cynnal y gwybodaeth generig Rheng a Rhaglen ar gyfer " +"y ddyfais yma.\n" +"Os ydych wedi gwneud addasiadau i Reng ar gyfer eich dyfais eich hun, " +"efallai bydd hi'n werth\n" +"cysylltu a'r rhaglengellydd er mwyn cyhoeddi eich gwybodaeth Rheng i fantais " +"eraill." + +#: ../src/gui/studio/MidiBankListViewItem.cpp:51 +#: ../src/gui/studio/MidiDeviceListViewItem.cpp:48 +#, fuzzy +msgid "Percussion Bank" +msgstr "Trawiad" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:84 +#: ../src/gui/studio/MidiBankListViewItem.cpp:51 +#: ../src/gui/studio/MidiDeviceListViewItem.cpp:48 +msgid "Bank" +msgstr "Rheng" + +#: ../src/gui/studio/ChangeRecordDeviceCommand.h:39 +#, fuzzy +msgid "Change Record Device" +msgstr "Ychwanegu Dyfais Recordio" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:61 +#: ../src/gui/studio/DeviceManagerDialog.cpp:96 +msgid "Manage MIDI Devices" +msgstr "Rheoli Dyfeisiau MIDI" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:98 +#, fuzzy +msgid "Play devices" +msgstr "Chwarae Rhagolwg" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:76 +#: ../src/gui/studio/DeviceManagerDialog.cpp:106 +#: ../src/gui/studio/DeviceManagerDialog.cpp:165 +msgid "Connection" +msgstr "Cysylltiad" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:119 +#, fuzzy +msgid "Banks..." +msgstr "Rheoli Rhengau ...." + +#: ../src/gui/studio/DeviceManagerDialog.cpp:120 +#, fuzzy +msgid "Control Events..." +msgstr "Digwyddiadau Rheolydd" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:126 +#, fuzzy +msgid "Create a new Play device" +msgstr "Creu Dyfais" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:129 +#: ../src/gui/studio/DeviceManagerDialog.cpp:184 +#, fuzzy +msgid "Delete the selected device" +msgstr "Dileu Dyfais" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:132 +#, fuzzy +msgid "" +"Import Bank, Program and Controller data from a Rosegarden file to the " +"selected device" +msgstr "" +"Mewnforio data Rheng a Rhaglen oddiwrth ffeil Rosegarden i'r Dyfais cyfredol" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:135 +#, fuzzy +msgid "Export Bank and Controller data to a Rosegarden interchange file" +msgstr "" +"Allforio gwybodaeth pob Dyfais a Rheng i ffeil rhyngnewid fformat Rosegarden" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:138 +msgid "View and edit Banks and Programs for the selected device" +msgstr "" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:141 +msgid "" +"View and edit Control Events for the selected device - these are special " +"Event types that you can define against your device and control through " +"Control Rulers or the Instrument Parameter Box " +msgstr "" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:156 +#, fuzzy +msgid "Record devices" +msgstr "" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:164 +#, fuzzy +msgid "Current" +msgstr "ar hyn o bryd" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:181 +#, fuzzy +msgid "Create a new Record device" +msgstr "" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:360 +#: ../src/gui/studio/DeviceEditorDialog.cpp:378 +#: ../src/gui/studio/DeviceManagerDialog.cpp:486 +#: ../src/gui/studio/DeviceManagerDialog.cpp:501 +msgid "New Device" +msgstr "Dyfais Newydd" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:703 +#, fuzzy +msgid "Import from Device in File" +msgstr "Mewnforio Rhengau o Ddyfais mewn Ffeil" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:55 +msgid "Remap Instrument assigments..." +msgstr "Ail-fapio gosodiadau'r Offerynnau ..." + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:62 +msgid "Device or Instrument" +msgstr "Dyfais neu Offeryn" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:65 +msgid "Remap Tracks by all Instruments on a Device or by single Instrument" +msgstr "Ail-fapio Traciau gan pob Offeryn ar Ddyfais neu gan Offeryn sengl" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:74 +msgid "Choose Source and Destination" +msgstr "Dewis Tarddiad a Cyrchfan" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:77 +msgid "From" +msgstr "Oddiwrth" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:78 +msgid "To" +msgstr "I" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:120 +#: ../src/gui/studio/RemapInstrumentDialog.cpp:121 +msgid "" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:155 +#, fuzzy +msgid "Show Audio &Faders" +msgstr "Dangos Rhes&yddion" + +#: ../src/gui/studio/AudioMixerWindow.cpp:160 +#, fuzzy +msgid "Show Synth &Faders" +msgstr "Dangos Rhes&yddion" + +#: ../src/gui/studio/AudioMixerWindow.cpp:165 +#, fuzzy +msgid "Show &Submasters" +msgstr "Dangos Rhes&yddion" + +#: ../src/gui/studio/AudioMixerWindow.cpp:170 +#, fuzzy +msgid "Show &Plugin Buttons" +msgstr "Botwm ategyn sain" + +#: ../src/gui/studio/AudioMixerWindow.cpp:175 +#, fuzzy +msgid "Show &Unassigned Faders" +msgstr "Dangos Rhes&yddion" + +#: ../src/gui/studio/AudioMixerWindow.cpp:184 +#, c-format +msgid "" +"_n: 1 Input\n" +"%n Inputs" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:194 +msgid "No Submasters" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:203 +#, fuzzy, c-format +msgid "" +"_n: 1 Submaster\n" +"%n Submasters" +msgstr "Nifer o fewnbynnau sain JACK" + +#: ../src/gui/studio/AudioMixerWindow.cpp:279 +#, fuzzy +msgid "Audio Mixer" +msgstr "Pylydd Sain" + +#: ../src/gui/studio/AudioMixerWindow.cpp:311 +#, fuzzy +msgid "Record input source" +msgstr "Nid oes offeryn Recordio wedi'i ddewis" + +#: ../src/gui/studio/AudioMixerWindow.cpp:322 +msgid "Output destination" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:336 +#: ../src/gui/studio/AudioMixerWindow.cpp:495 +msgid "Pan" +msgstr "Tremio" + +#: ../src/gui/studio/AudioMixerWindow.cpp:355 +msgid "Mono or stereo" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:364 +#: ../src/gui/studio/AudioMixerWindow.cpp:513 +msgid "Mute" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:373 rc.cpp:408 +#, no-c-format +msgid "Solo" +msgstr "Unawd" + +#: ../src/gui/studio/AudioMixerWindow.cpp:382 +#, fuzzy +msgid "Arm recording" +msgstr "Recordio" + +#: ../src/gui/studio/AudioMixerWindow.cpp:400 +#, fuzzy, c-format +msgid "Audio %1" +msgstr "Sain" + +#: ../src/gui/studio/AudioMixerWindow.cpp:404 +#, fuzzy, c-format +msgid "Synth %1" +msgstr "Dat-&wneud %1" + +#: ../src/gui/studio/AudioMixerWindow.cpp:578 +#: ../src/gui/studio/AudioMixerWindow.cpp:580 +#, fuzzy +msgid "Audio master output level" +msgstr "Ychwanegu Ffeil Sain" + +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:71 +msgid "Manage Synth Plugins" +msgstr "" + +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:78 +#, fuzzy +msgid "Synth plugins" +msgstr "Botwm ategyn sain" + +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:145 +#, fuzzy +msgid "Controls" +msgstr "Rheolydd" + +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:152 +#, fuzzy +msgid "Editor >>" +msgstr "Golygu" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:66 +#: ../src/gui/studio/MidiProgramsEditor.cpp:169 +msgid "Bank and Program details" +msgstr "Manylion Rheng a Rhaglen" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:67 +#, fuzzy +msgid "Programs" +msgstr "Rhaglen" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2711 +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:88 +#: ../src/gui/studio/MidiProgramsEditor.cpp:93 +msgid "Percussion" +msgstr "Trawiad" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:99 +msgid "MSB Value" +msgstr "Gwerth MSB" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:107 +msgid "" +"Selects a MSB controller Bank number (MSB/LSB pairs are always unique for " +"any Device)" +msgstr "" +"Dewis rhif Rheng y rheolydd MSB (mae parau MSB/LSB o hyd yn unigryw am " +"unrhyw Dyfais)" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:111 +msgid "" +"Selects a LSB controller Bank number (MSB/LSB pairs are always unique for " +"any Device)" +msgstr "" +"Dewis rhif Rheng y rheolydd LSB (mae parau MSB/LSB o hyd yn unigryw am " +"unrhyw Dyfais)" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:116 +msgid "LSB Value" +msgstr "Gwerth LSB" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:254 +#: ../src/gui/studio/MidiProgramsEditor.cpp:541 +#, fuzzy, c-format +msgid "Key Mapping: %1" +msgstr "Newid Allwedd" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:476 +msgid "" +msgstr "" + +#: ../src/gui/studio/MidiKeyMappingEditor.cpp:57 +#: ../src/gui/studio/MidiKeyMappingEditor.cpp:81 +msgid "Key Mapping details" +msgstr "" + +#: ../src/gui/studio/MidiKeyMappingEditor.cpp:58 +#, fuzzy +msgid "Pitches" +msgstr "Traw:" + +#: ../src/gui/studio/MidiMixerWindow.cpp:152 +#, fuzzy +msgid "MIDI Mixer" +msgstr "Cyfuno MIDI" + +#: ../src/gui/studio/MidiMixerWindow.cpp:199 +msgid "Volume" +msgstr "Swn" + +#: ../src/gui/studio/AudioPluginOSCGUIManager.cpp:444 +#, fuzzy +msgid "Rosegarden Plugin" +msgstr "Rosegarden" + +#: ../src/gui/studio/AudioPluginOSCGUIManager.cpp:447 +#, fuzzy, c-format +msgid "Rosegarden: %1" +msgstr "Rosegarden" + +#: ../src/gui/studio/AudioPluginOSCGUIManager.cpp:449 +#, fuzzy +msgid "Rosegarden: %1: %2" +msgstr "Rosegarden" + +#: ../src/gui/studio/AudioPluginOSCGUIManager.cpp:450 +#, fuzzy, c-format +msgid "Plugin slot %1" +msgstr "Ategyn" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:92 +msgid "Add Play Device" +msgstr "Ychwanegu Dyfais Chwarae" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:93 +msgid "Add Record Device" +msgstr "Ychwanegu Dyfais Recordio" + +#: ../src/commands/studio/CreateOrDeleteDeviceCommand.h:68 +#: ../src/gui/studio/DeviceEditorDialog.cpp:94 +msgid "Delete Device" +msgstr "Dileu Dyfais" + +#: ../src/gui/editors/segment/PlayList.cpp:77 +#: ../src/gui/studio/DeviceEditorDialog.cpp:156 +#: ../src/gui/studio/DeviceEditorDialog.cpp:361 +msgid "Play" +msgstr "Chwarae" + +#: ../src/commands/segment/SegmentRecordCommand.cpp:37 +#: ../src/gui/studio/DeviceEditorDialog.cpp:156 +#: ../src/gui/studio/DeviceEditorDialog.cpp:379 rc.cpp:394 +#, no-c-format +msgid "Record" +msgstr "Recordio" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:256 +msgid "Apply pending changes?" +msgstr "Gweithredu newidiadau sy'n disgwyl? " + +#: ../src/gui/studio/DeviceEditorDialog.cpp:359 +#: ../src/gui/studio/DeviceEditorDialog.cpp:377 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentEraser.cpp:82 +msgid "Click on a segment to delete it" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSplitter.cpp:166 +msgid "" +"Click on a segment to split it in two; hold Shift to avoid snapping to beat " +"grid" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSplitter.cpp:168 +msgid "Click on a segment to split it in two" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:81 +#, fuzzy +msgid "Click and drag to select segments" +msgstr "Newid i Erfyn Dewis" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentMover.cpp:154 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:238 +msgid "Move Segment" +msgstr "Symud Cylchran" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentMover.cpp:154 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:239 +msgid "Move Segments" +msgstr "Symud Cylchrannau" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:217 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:169 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:141 +#: ../src/gui/editors/segment/segmentcanvas/SegmentMover.cpp:210 +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:255 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:359 +msgid "Hold Shift to avoid snapping to beat grid" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:485 +msgid "" +"Click and drag to select segments; middle-click and drag to draw an empty " +"segment" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:384 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:502 +msgid "" +"Click and drag to resize a segment; hold Ctrl as well to rescale its contents" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:386 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:504 +msgid "Click and drag to rescale segment" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:509 +msgid "Click and drag to move segments; hold Ctrl as well to copy them" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:511 +msgid "Click and drag to copy segments" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:515 +msgid "" +"Click and drag to move segment; hold Ctrl as well to copy it; double-click " +"to edit" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:517 +msgid "Click and drag to copy segment" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:157 +msgid "" +"The audio file path does not exist or is not writable.\n" +"You must set the audio file path to a valid directory in Document Properties " +"before rescaling an audio file.\n" +"Would you like to set it now?" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:261 +msgid "" +"Hold Shift to avoid snapping to beat grid; hold Ctrl as well to rescale " +"contents" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentMover.cpp:325 +msgid "Click and drag to move a segment" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentPencil.cpp:225 +msgid "Hold Shift to avoid snapping to bar lines" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentPencil.cpp:283 +#, fuzzy +msgid "Record or drop audio here" +msgstr "Recordio ai MIDI neu sain" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentPencil.cpp:289 +msgid "" +"Click and drag to draw an empty segment. Control+Alt click and drag to draw " +"in overlap mode." +msgstr "" + +#: ../src/gui/editors/segment/TrackLabel.cpp:77 +msgid "" +"Click and hold with left mouse button to assign this Track to an Instrument." +msgstr "" + +#: ../src/gui/editors/segment/TrackLabel.cpp:191 +msgid "Change track name" +msgstr "" + +#: ../src/gui/editors/segment/TrackLabel.cpp:192 +#, fuzzy +msgid "Enter new track name" +msgstr "Mewnosod enw newydd" + +#: ../src/gui/editors/segment/TrackEditor.cpp:648 +msgid "Turn Repeating Segment into Real Copies" +msgstr "Trosi Cylchran wedi ei Ailadrodd i mewn i Copiau go Iawn" + +#: ../src/gui/editors/segment/TrackEditor.cpp:650 +msgid "Turn Repeating Segments into Real Copies" +msgstr "Trosi Cylchrannau wedi ei Ailadrodd i mewn i Copiau go Iawn" + +#: ../src/gui/editors/segment/TrackEditor.cpp:814 +msgid "" +"You can't drop files into Rosegarden from this client. Try using Konqueror " +"instead." +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:85 +#, fuzzy +msgid "Manage Triggered Segments" +msgstr "Rheoli Cylchrannau &Sain" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:89 +#, fuzzy +msgid "ID" +msgstr "I" + +#: ../src/gui/editors/eventlist/EventView.cpp:735 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:93 +#, fuzzy +msgid "Base velocity" +msgstr "Buanedd y nodyn:" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:94 +#, fuzzy +msgid "Triggers" +msgstr "Tripled" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:115 +msgid "Add a Triggered Segment" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:119 +msgid "Delete a Triggered Segment" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:123 +#, fuzzy +msgid "Delete All Triggered Segments" +msgstr "Dewis &Pob Cylchran" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:127 +msgid "Close the Triggered Segment Manager" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:169 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:245 +#, fuzzy +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:248 +msgid "" +"_n: %1 on 1 track\n" +"%1 on %n tracks" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:284 +msgid "" +"This will remove all triggered segments from the whole composition. Are you " +"sure?" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:288 +#, fuzzy +msgid "Remove all triggered segments" +msgstr "&Gwaredu Pob Arwydd" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:313 +#, fuzzy +msgid "Trigger Segment Duration" +msgstr "Gosod &Tempo i Barhad Cylchran Sain" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:336 +#, c-format +msgid "" +"_n: This triggered segment is used 1 time in the current composition. Are " +"you sure you want to remove it?\n" +"This triggered segment is used %n times in the current composition. Are you " +"sure you want to remove it?" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:400 +msgid "Pa&ste as New Triggered Segment" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1169 +#: ../src/gui/editors/segment/MarkerEditor.cpp:399 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:412 +#: ../src/gui/editors/tempo/TempoView.cpp:622 +msgid "&Musical Times" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1179 +#: ../src/gui/editors/segment/MarkerEditor.cpp:409 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:422 +#: ../src/gui/editors/tempo/TempoView.cpp:632 +#, fuzzy +msgid "&Real Times" +msgstr "Gwir-amser:" + +#: ../src/gui/editors/eventlist/EventView.cpp:1189 +#: ../src/gui/editors/segment/MarkerEditor.cpp:419 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:432 +#: ../src/gui/editors/tempo/TempoView.cpp:642 +#, fuzzy +msgid "Ra&w Times" +msgstr "Gwir-amser:" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:83 +msgid "Manage Markers" +msgstr "Rheoli Arwyddion" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:86 +msgid "Marker time " +msgstr "Amser yr arwydd" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:87 +#, fuzzy +msgid "Marker text " +msgstr "Amser yr arwydd" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:88 +msgid "Marker description " +msgstr "Disgrifiad yr arwydd" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:95 +msgid "Pointer position" +msgstr "Lleoliad y cyrchydd" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:100 +msgid "Real time:" +msgstr "Gwir-amser:" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:103 +msgid "In measure:" +msgstr "" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:121 +msgid "Add a Marker" +msgstr "Ychwanegu Arwydd" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:125 +msgid "Delete a Marker" +msgstr "Dileu Arwydd" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:129 +msgid "Delete All Markers" +msgstr "Dileu Pob Arwydd" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:133 +msgid "Close the Marker Editor" +msgstr "Cau'r Golygydd Arwyddion" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:296 +#, fuzzy +msgid "Remove all markers" +msgstr "&Gwaredu Pob Arwydd" + +#: ../src/gui/editors/segment/PlayList.cpp:76 +#, fuzzy +msgid "Add..." +msgstr "..." + +#: ../src/gui/editors/segment/PlayList.cpp:78 +#, fuzzy +msgid "Move Up" +msgstr "Symud Trac i &Fyny" + +#: ../src/gui/editors/segment/PlayList.cpp:79 +#, fuzzy +msgid "Move Down" +msgstr "Symud Trac i &Lawr" + +#: ../src/gui/editors/segment/PlayList.cpp:124 +#, fuzzy +msgid "Select one or more Rosegarden files" +msgstr "Dewis un neu mwy o Ffeiliau Sain" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:73 +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:55 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:89 +#, fuzzy +msgid "Manage Control Events" +msgstr "Trefnu Paramedrau Rheoli" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:91 +#, fuzzy +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:99 +msgid " Control Events for %1 (device %2)" +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:104 +#, fuzzy +msgid "Control Event name " +msgstr "Enw'r rheolydd" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:105 +#, fuzzy +msgid "Control Event type " +msgstr "Math y rheolydd" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:106 +#, fuzzy +msgid "Control Event value " +msgstr "Gwerth y rheolydd" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:107 +msgid "Description " +msgstr "Disgrifiad" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:108 +msgid "Min " +msgstr "Lleiafrif" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:109 +msgid "Max " +msgstr "Uchafrif" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:110 +msgid "Default " +msgstr "Rhagosod" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:111 +msgid "Color " +msgstr "Lliw" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:112 +#, fuzzy +msgid "Position on instrument panel" +msgstr "Wedi canfod math anhysbys o Offeryn" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:136 +msgid "Add a Control Parameter to the Studio" +msgstr "Ychwanegu Paramedr Rheoli i'r Stiwdio" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:140 +msgid "Delete a Control Parameter from the Studio" +msgstr "Dileu Paramedr Rheoli o'r Stiwdio" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:144 +msgid "Close the Control Parameter editor" +msgstr "Cau'r golygydd Paramedr Rheoli" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:221 +#, fuzzy +msgid "" +msgstr "(rhagosod)" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:62 +msgid "Edit Control Parameter" +msgstr "Golygu Paramedr Rheoli" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:71 +#, fuzzy +msgid "Control Event Properties" +msgstr "Priodweddau'r Paramedr Rheoli" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:77 +msgid "Name:" +msgstr "Enw:" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:93 +#, fuzzy +msgid "Control Event value:" +msgstr "Gwerth y rheolydd:" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:97 +msgid "Minimum value:" +msgstr "Gwerth lleiaf:" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:101 +msgid "Maximum value:" +msgstr "Gwerth uchaf:" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:105 +msgid "Default value:" +msgstr "Gwerth rhagosod:" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:109 +msgid "Color:" +msgstr "Lliw:" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:113 +#, fuzzy +msgid "Instrument Parameter Box position:" +msgstr "Paramedrau Offerynnau" + +#: ../src/gui/editors/segment/TrackButtons.cpp:209 +#: ../src/gui/editors/segment/TrackButtons.cpp:585 +#: ../src/gui/editors/segment/TrackButtons.cpp:935 +#: ../src/gui/editors/segment/TrackButtons.cpp:1127 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/TrackButtons.cpp:352 +#: ../src/gui/editors/segment/TrackButtons.cpp:1094 +#, fuzzy +msgid "" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:130 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:662 +#: ../src/gui/editors/segment/TrackButtons.cpp:354 +#: ../src/gui/editors/segment/TrackButtons.cpp:1096 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/TrackButtons.cpp:1058 +#, fuzzy +msgid "Mute track" +msgstr "Ymladd" + +#: ../src/gui/editors/segment/TrackButtons.cpp:1063 +msgid "Record on this track" +msgstr "" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:88 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:1015 +#, fuzzy +msgid "Segment" +msgstr "Cylch&rannau" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:89 +#, fuzzy +msgid "Segment Parameters" +msgstr "Paramedrau Cylchrannau" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:366 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:697 +msgid "%1 ms" +msgstr "%1 ms" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1031 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:910 +msgid "Highest playable note" +msgstr "" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1051 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:930 +msgid "Lowest playable note" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:93 +#, fuzzy +msgid "Track Parameters" +msgstr "Paramedrau Rhwydell" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:137 +#, fuzzy +msgid "Playback parameters" +msgstr "Safon chwarae =" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:172 +#, fuzzy +msgid "Recording filters" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:191 +msgid "Channel" +msgstr "Sianel" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:203 +#, fuzzy +msgid "Staff export options" +msgstr "Dangos &Anodiadau" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:220 +#, fuzzy +msgid "Notation size:" +msgstr "Nodiad" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:225 +#, fuzzy +msgid "Small" +msgstr "Popeth" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:226 +msgid "Tiny" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:233 +#, fuzzy +msgid "Bracket type:" +msgstr "Math y testun:" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:237 +msgid "-----" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:238 +msgid "[----" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:239 +msgid "----]" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:240 +msgid "[---]" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:241 +msgid "{----" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:242 +msgid "----}" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:243 +msgid "{[---" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:244 +msgid "---]}" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:253 +#, fuzzy +msgid "Create segments with" +msgstr "Creu Cylchran" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:264 +#, fuzzy +msgid "Preset" +msgstr "saib" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:272 +msgid "Load" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:282 +#, fuzzy +msgid "treble" +msgstr "Trebl" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:283 +#, fuzzy +msgid "bass" +msgstr "Bas" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:284 +#, fuzzy +msgid "crotales" +msgstr "Wythfed &Is" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:285 +msgid "xylophone" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:286 +msgid "guitar" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:287 +msgid "contrabass" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:288 +#, fuzzy +msgid "celesta" +msgstr "Di&leu" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:289 +msgid "old celesta" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:290 +msgid "french" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:291 +msgid "soprano" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:292 +#, fuzzy +msgid "mezzosoprano" +msgstr "S&forzando" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:293 +#, fuzzy +msgid "alto" +msgstr "Alto" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:294 +#, fuzzy +msgid "tenor" +msgstr "Tenor" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:295 +#, fuzzy +msgid "baritone" +msgstr "Amrywiad" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:296 +#, fuzzy +msgid "varbaritone" +msgstr "Amrywiad" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:297 +#, fuzzy +msgid "subbass" +msgstr "Bas" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:327 +#, fuzzy +msgid "Lowest" +msgstr "Isel" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:329 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:336 +msgid "---" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:331 +msgid "Choose the lowest suggested playable note, using a staff" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:334 +#, fuzzy +msgid "Highest" +msgstr "Uchel" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:338 +msgid "Choose the highest suggested playable note, using a staff" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:666 +#, fuzzy +msgid "[ Track %1 - %2 ]" +msgstr "Rhaglenni %1 - %2" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:985 +msgid "The instrument preset database is corrupt. Check your installation." +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:173 +#: ../src/gui/editors/parameters/InstrumentParameterBox.cpp:54 +msgid "Instrument Parameters" +msgstr "Paramedrau Offerynnau" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:85 +msgid "Variation" +msgstr "Amrywiad" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:86 +msgid "Program" +msgstr "Rhaglen" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:87 +#, fuzzy +msgid "Channel out" +msgstr "Sianel" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:215 +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:221 +msgid "[ %1 ]" +msgstr "[ %1 ]" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:58 +#: ../src/gui/editors/matrix/MatrixMover.cpp:71 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:67 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:77 +#, fuzzy +msgid "Switch to Draw Tool" +msgstr "Newid i Erfyn Dileu" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:75 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:69 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:71 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:81 +#: ../src/gui/editors/notation/ClefInserter.cpp:57 +#: ../src/gui/editors/notation/GuitarChordInserter.cpp:63 +#: ../src/gui/editors/notation/NotationSelector.cpp:87 +#: ../src/gui/editors/notation/NoteInserter.cpp:113 +#: ../src/gui/editors/notation/RestInserter.cpp:72 +#: ../src/gui/editors/notation/TextInserter.cpp:61 +msgid "Switch to Erase Tool" +msgstr "Newid i Erfyn Dileu" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:62 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:73 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:75 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:85 +#, fuzzy +msgid "Switch to Move Tool" +msgstr "Newid i Erfyn Dileu" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:68 +#: ../src/gui/editors/matrix/MatrixMover.cpp:81 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:79 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:93 +#, fuzzy +msgid "Switch to Resize Tool" +msgstr "Newid i Erfyn Dileu" + +#: ../src/gui/editors/matrix/MatrixSelector.cpp:446 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:579 +msgid "Click and drag to select; middle-click and drag to draw new note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixResizer.cpp:324 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:597 +msgid "Click and drag to resize selected notes" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixSelector.cpp:599 +msgid "Click and drag to resize note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:471 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:604 +msgid "Click and drag to move selected notes; hold Ctrl as well to copy" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:473 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:606 +#, fuzzy +msgid "Click and drag to copy selected notes" +msgstr "Newid i Erfyn Dewis" + +#: ../src/gui/editors/matrix/MatrixSelector.cpp:610 +msgid "Click and drag to move note; hold Ctrl as well to copy" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixSelector.cpp:612 +msgid "Click and drag to copy note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:54 +#: ../src/gui/editors/matrix/MatrixMover.cpp:67 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:65 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:63 +#: ../src/gui/editors/notation/ClefInserter.cpp:53 +#: ../src/gui/editors/notation/GuitarChordInserter.cpp:59 +#: ../src/gui/editors/notation/NotationEraser.cpp:67 +#: ../src/gui/editors/notation/NoteInserter.cpp:109 +#: ../src/gui/editors/notation/RestInserter.cpp:68 +#: ../src/gui/editors/notation/TextInserter.cpp:57 +msgid "Switch to Select Tool" +msgstr "Newid i Erfyn Dewis" + +#: ../src/gui/editors/matrix/MatrixResizer.cpp:218 +msgid "Resize Event" +msgstr "Ail-feintio Digwyddiad" + +#: ../src/gui/editors/matrix/MatrixResizer.cpp:221 +msgid "Resize Events" +msgstr "Ail-feintio Digwyddiadau" + +#: ../src/gui/editors/matrix/MatrixResizer.cpp:326 +#, fuzzy +msgid "Click and drag to resize a note" +msgstr "Newid i Erfyn Dewis" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:328 +#, fuzzy +msgid "Copy and Move Event" +msgstr "Symud Digwyddiad" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:330 +#, fuzzy +msgid "Copy and Move Events" +msgstr "Symud Digwyddiadau" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:334 +msgid "Move Event" +msgstr "Symud Digwyddiad" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:336 +msgid "Move Events" +msgstr "Symud Digwyddiadau" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:465 +msgid "Click and drag to move a note; hold Ctrl as well to copy it" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:467 +msgid "Click and drag to copy a note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixPainter.cpp:361 +msgid "Click and drag to draw a note; Shift to avoid snapping to grid" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixPainter.cpp:363 +msgid "Click and drag to draw a note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:437 +#: ../src/gui/editors/matrix/MatrixView.cpp:3053 +msgid "Couldn't apply piano roll layout" +msgstr "Methu gweithredu haenlun rholyn piano" + +#: ../src/gui/editors/matrix/MatrixView.cpp:663 +msgid "Resi&ze" +msgstr "Ail-f&eintio" + +#: ../src/gui/editors/matrix/MatrixView.cpp:669 +#: ../src/gui/editors/notation/NotationView.cpp:1919 +msgid "C&hord Insert Mode" +msgstr "Modd Mewnosod &Cord" + +#: ../src/gui/editors/matrix/MatrixView.cpp:676 +#: ../src/gui/editors/notation/NotationView.cpp:1778 +msgid "Ste&p Recording" +msgstr "Recordio Cama&u" + +#: ../src/gui/editors/matrix/MatrixView.cpp:694 +#, fuzzy +msgid "&Legato" +msgstr "Cyfreithiol" + +#: ../src/gui/editors/matrix/MatrixView.cpp:708 +#, fuzzy +msgid "Set to Current Velocity" +msgstr "&Cynyddu Buanedd" + +#: ../src/gui/editors/matrix/MatrixView.cpp:712 +msgid "Set Event &Velocities..." +msgstr "Gosod &Buaneddau Digwyddiadau" + +#: ../src/gui/editors/matrix/MatrixView.cpp:716 +#, fuzzy +msgid "Trigger Se&gment..." +msgstr "Dileu Cylchran" + +#: ../src/gui/editors/matrix/MatrixView.cpp:720 +#, fuzzy +msgid "Remove Triggers..." +msgstr "Gwaredu Newid &Tempo..." + +#: ../src/gui/editors/eventlist/EventView.cpp:1153 +#: ../src/gui/editors/matrix/MatrixView.cpp:724 +#: ../src/gui/editors/tempo/TempoView.cpp:606 +msgid "Select &All" +msgstr "Dewis &Popeth" + +#: ../src/gui/editors/matrix/MatrixView.cpp:732 +#: ../src/gui/editors/notation/NotationView.cpp:2325 +msgid "Cursor &Back" +msgstr "Cyrchydd Yn &Ol" + +#: ../src/gui/editors/matrix/MatrixView.cpp:736 +#: ../src/gui/editors/notation/NotationView.cpp:2329 +msgid "Cursor &Forward" +msgstr "Cyrchydd Ym&laen" + +#: ../src/gui/editors/matrix/MatrixView.cpp:740 +#: ../src/gui/editors/notation/NotationView.cpp:2333 +msgid "Cursor Ba&ck Bar" +msgstr "Cyrchydd Y&n Ol Un Far" + +#: ../src/gui/editors/matrix/MatrixView.cpp:744 +#: ../src/gui/editors/notation/NotationView.cpp:2337 +msgid "Cursor For&ward Bar" +msgstr "Cyrchydd Y&mlaen Un Far" + +#: ../src/gui/editors/matrix/MatrixView.cpp:748 +#: ../src/gui/editors/notation/NotationView.cpp:2341 +msgid "Cursor Back and Se&lect" +msgstr "Cyrchydd Yn Ol a De&wis" + +#: ../src/gui/editors/matrix/MatrixView.cpp:752 +#: ../src/gui/editors/notation/NotationView.cpp:2345 +msgid "Cursor Forward and &Select" +msgstr "Cyrchydd Ymlaen a D&ewis" + +#: ../src/gui/editors/matrix/MatrixView.cpp:756 +#: ../src/gui/editors/notation/NotationView.cpp:2349 +msgid "Cursor Back Bar and Select" +msgstr "Cyrchydd Yn Ol Un Far a Dewis" + +#: ../src/gui/editors/matrix/MatrixView.cpp:760 +#: ../src/gui/editors/notation/NotationView.cpp:2353 +msgid "Cursor Forward Bar and Select" +msgstr "Cyrchydd Ymlaen Un Far a Dewis" + +#: ../src/gui/editors/matrix/MatrixView.cpp:764 +#: ../src/gui/editors/notation/NotationView.cpp:2363 +msgid "Cursor to St&art" +msgstr "Cyrchydd i'r De&chrau" + +#: ../src/gui/editors/matrix/MatrixView.cpp:770 +#: ../src/gui/editors/notation/NotationView.cpp:2369 +msgid "Cursor to &End" +msgstr "Cyrchydd i'r Diwe&dd" + +#: ../src/gui/editors/matrix/MatrixView.cpp:776 +#: ../src/gui/editors/notation/NotationView.cpp:2391 +msgid "Cursor to &Playback Pointer" +msgstr "Cyrchydd i'r &Pwyntydd Chwarae" + +#: ../src/gui/editors/matrix/MatrixView.cpp:820 +#: ../src/gui/editors/notation/NotationView.cpp:2435 +msgid "Playback Pointer to &Cursor" +msgstr "Pwyntydd Chwarae i'r &Cyrchydd" + +#: ../src/gui/editors/matrix/MatrixView.cpp:826 +#: ../src/gui/editors/notation/NotationView.cpp:2441 +msgid "&Solo" +msgstr "&Unawd" + +#: ../src/gui/editors/matrix/MatrixView.cpp:841 +#: ../src/gui/editors/notation/NotationView.cpp:2456 +msgid "Set Loop to Selection" +msgstr "Gosod Dolen i'r Dewisiad" + +#: ../src/gui/editors/matrix/MatrixView.cpp:845 +#: ../src/gui/editors/notation/NotationView.cpp:2460 +msgid "Clear L&oop" +msgstr "Gwaredu'r Dd&olen" + +#: ../src/gui/editors/eventlist/EventView.cpp:1157 +#: ../src/gui/editors/matrix/MatrixView.cpp:849 +#: ../src/gui/editors/notation/NotationView.cpp:2464 +#: ../src/gui/editors/tempo/TempoView.cpp:610 +msgid "Clear Selection" +msgstr "Gwaredu'r Dewisiad" + +#: ../src/gui/editors/eventlist/EventView.cpp:1149 +#: ../src/gui/editors/matrix/MatrixView.cpp:854 +#: ../src/gui/editors/notation/NotationView.cpp:2471 +msgid "&Filter Selection" +msgstr "Dewisiad &Hidlen" + +#: ../src/gui/editors/matrix/MatrixView.cpp:879 +msgid "&No Snap" +msgstr "&Dim Cipio" + +#: ../src/gui/editors/matrix/MatrixView.cpp:884 +msgid "Snap to Bea&t" +msgstr "Cipio at Curia&d" + +#: ../src/gui/editors/matrix/MatrixView.cpp:888 +msgid "Snap to &Bar" +msgstr "Cipio at &Far" + +#: ../src/gui/editors/matrix/MatrixView.cpp:908 +#, fuzzy, c-format +msgid "Snap to %1" +msgstr "Cipio at 1/2" + +#: ../src/gui/editors/matrix/MatrixView.cpp:917 +#, fuzzy +msgid "Show Instrument Parameters" +msgstr "Dangos Paramedrau &Offerynnau" + +#: ../src/gui/editors/matrix/MatrixView.cpp:922 +#: ../src/gui/editors/notation/NotationView.cpp:1850 +msgid "Show Ch&ord Name Ruler" +msgstr "Dangos Rhesydd Enwau C&ordiau" + +#: ../src/gui/editors/matrix/MatrixView.cpp:926 +#: ../src/gui/editors/notation/NotationView.cpp:1858 +msgid "Show &Tempo Ruler" +msgstr "Dangos Rhesydd &Tempo" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1238 +#: ../src/gui/editors/notation/NotationView.cpp:3245 +#, c-format +msgid "" +"_n: 1 event selected \n" +" %n events selected " +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1241 +#: ../src/gui/editors/notation/NotationView.cpp:3247 +msgid " No selection " +msgstr " Dim dewisiad" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1348 +#: ../src/gui/editors/matrix/MatrixView.cpp:1360 +#: ../src/gui/editors/matrix/MatrixView.cpp:2079 +#: ../src/gui/editors/notation/NotationView.cpp:5869 +msgid "Quantizing..." +msgstr "Cwanteiddio..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:1370 +#: ../src/gui/editors/notation/NotationView.cpp:5407 +msgid "Collapsing notes..." +msgstr "Dat-ehangu nodau..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:1381 +#, fuzzy +msgid "Making legato..." +msgstr "Gwneud addurnodau..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:1476 +#, fuzzy +msgid "Note: %1 (%2.%3s)" +msgstr "Amser: %1 (%2.%3s)" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1531 +#: ../src/gui/editors/notation/NotationView.cpp:7206 +msgid "Time: %1 (%2.%3s)" +msgstr "Amser: %1 (%2.%3s)" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1604 +#: ../src/gui/editors/notation/NotationView.cpp:4744 +#: ../src/gui/editors/notation/NotationView.cpp:4773 +msgid "Cutting selection to clipboard..." +msgstr "Torri'r dewisiad i'r gludfwrdd... " + +#: ../src/gui/editors/eventlist/EventView.cpp:912 +#: ../src/gui/editors/matrix/MatrixView.cpp:1636 +#: ../src/gui/editors/notation/NotationSelectionPaster.cpp:82 +msgid "Couldn't paste at this point" +msgstr "Methu gludo wrth y fan yma" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1647 +#: ../src/gui/editors/notation/NotationView.cpp:4754 +msgid "Deleting selection..." +msgstr "Dileu'r dewisiad..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:1833 +#: ../src/gui/editors/notation/NotationView.cpp:5617 +#, c-format +msgid "Unknown note insert action %1" +msgstr "Gweithrediad anhysbys %1 wrth fewnosod nodyn" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1837 +#: ../src/gui/editors/matrix/MatrixView.cpp:2857 +#: ../src/gui/editors/notation/NotationView.cpp:5621 +msgid "Inserting note" +msgstr "Mewnosod nodyn" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2091 +msgid "Unquantizing..." +msgstr "Dad-gwanteiddio..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:2120 +msgid " Grid: " +msgstr "Rhwydell:" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2134 +msgid "Unit" +msgstr "Uned" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2136 +msgid "Beat" +msgstr "Curiad" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2138 +msgid "Bar" +msgstr "Bar" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2159 +#, fuzzy +msgid " Velocity: " +msgstr "Buanedd:" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2170 +msgid " Quantize: " +msgstr "Cwanteiddio:" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2584 +msgid "Raising velocities..." +msgstr "Codi buaneddau..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:2596 +msgid "Lowering velocities..." +msgstr "Iselhau buaneddau..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:2611 +msgid "Set Event Velocities" +msgstr "Gosod Buaneddau Digwyddiadau" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2616 +msgid "Setting Velocities..." +msgstr "Gosod Buaneddau..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:2665 +#, fuzzy +msgid "Remove Triggers" +msgstr "&Gwaredu Arwydd" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2723 +msgid "%1 - Segment Track #%2 - %3" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2730 +#, fuzzy +msgid "%1 - All Segments - %2" +msgstr "Parhad" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2737 +#, fuzzy +msgid "" +"_n: %1 - 1 Segment - %2\n" +"%1 - %n Segments - %2" +msgstr "Parhad" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2885 +#, fuzzy +msgid "Can't insert note: No grid duration selected" +msgstr "Dim parhad nodau wedi'i ddewis" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2935 +#, fuzzy +msgid " Chord " +msgstr "Cord" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:105 +#, fuzzy +msgid "Click on a note to delete it" +msgstr "Newid i Erfyn Dewis" + +#: ../src/gui/editors/tempo/TempoView.cpp:89 +msgid "Filter" +msgstr "Hidl" + +#: ../src/gui/editors/eventlist/EventView.cpp:245 +#: ../src/gui/editors/tempo/TempoView.cpp:117 +msgid "Time " +msgstr "Amser" + +#: ../src/gui/editors/tempo/TempoView.cpp:118 +#, fuzzy +msgid "Type " +msgstr "Math" + +#: ../src/gui/editors/tempo/TempoView.cpp:119 +#, fuzzy +msgid "Value " +msgstr "Gwerth" + +#: ../src/gui/editors/tempo/TempoView.cpp:120 +#, fuzzy +msgid "Properties " +msgstr "Priodweddau Digwyddiadau" + +#: ../src/gui/editors/tempo/TempoView.cpp:208 +msgid "Common, hidden" +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:210 +msgid "Hidden" +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:213 +msgid "Common" +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:220 +#, fuzzy +msgid "Time Signature " +msgstr "Arwydd Amseriad" + +#: ../src/gui/editors/tempo/TempoView.cpp:245 +#, fuzzy +msgid "%1.%2%3" +msgstr "&%1%2" + +#: ../src/gui/editors/tempo/TempoView.cpp:255 +msgid "%1.%2%3 qpm (%4.%5%6 bpm) " +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:264 +#, fuzzy +msgid "Tempo " +msgstr "Tempo" + +#: ../src/gui/editors/tempo/TempoView.cpp:271 +#, fuzzy +msgid "" +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:463 +#, fuzzy +msgid "Delete Tempo or Time Signature" +msgstr "Arwydd Amseriad" + +#: ../src/gui/editors/tempo/TempoView.cpp:602 +#, fuzzy +msgid "&Edit Item" +msgstr "Golygu Digw&yddiad" + +#: ../src/gui/editors/tempo/TempoView.cpp:834 +msgid "%1 - Tempo and Time Signature Editor" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordEditorDialog.cpp:43 +msgid "Guitar Chord Editor" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordEditorDialog.cpp:51 +#, fuzzy +msgid "Start fret" +msgstr "Bar Dechrau" + +#: ../src/gui/editors/guitar/GuitarChordEditorDialog.cpp:58 +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:51 +msgid "Root" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordEditorDialog.cpp:62 +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:55 +#, fuzzy +msgid "Extension" +msgstr "Trawiad" + +#: ../src/gui/editors/guitar/Fingering.cpp:118 +msgid "couldn't parse fingering '%1' in '%2'" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:45 +#, fuzzy +msgid "Guitar Chord Selector" +msgstr "Dewisydd Traw" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:64 +msgid "beginner" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:65 +msgid "common" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:66 +#, fuzzy +msgid "all" +msgstr "Popeth" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:86 +#, fuzzy +msgid "Fingerings" +msgstr "Ychwanegu llithriad..." + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:419 +#, fuzzy +msgid "couldn't open file '%1'" +msgstr "Methu agor ffeil '%1'" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:428 +#, c-format +msgid "couldn't parse chord dictionnary : %1" +msgstr "" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:87 +#, fuzzy, c-format +msgid "Note Font Viewer: %1" +msgstr "&Ffont i'r Nodau" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:93 +#, fuzzy +msgid " Component: " +msgstr "Ffont:" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:101 +#, fuzzy +msgid " View: " +msgstr "Maint:" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:104 +msgid "Glyphs" +msgstr "" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:105 +#, fuzzy +msgid "Codes" +msgstr "Cleff" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:107 +#, fuzzy +msgid " Page: " +msgstr "Bylchu:" + +#: ../src/gui/editors/notation/ClefInserter.cpp:64 +#: ../src/gui/editors/notation/GuitarChordInserter.cpp:71 +#: ../src/gui/editors/notation/RestInserter.cpp:79 +#: ../src/gui/editors/notation/TextInserter.cpp:68 +msgid "Switch to Inserting Notes" +msgstr "Newid i Fewnosod Nodau" + +#: ../src/gui/editors/notation/NotationView.cpp:522 +msgid "Close track headers" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:917 +msgid "Preparing to print..." +msgstr "Paratoi argraffu..." + +#: ../src/gui/editors/notation/NotationView.cpp:1516 +msgid "Note &Font" +msgstr "&Ffont i'r Nodau" + +#: ../src/gui/editors/notation/NotationView.cpp:1539 +msgid "Si&ze" +msgstr "Ma&int" + +#: ../src/gui/editors/notation/NotationView.cpp:1545 +#, fuzzy +msgid "Show Track Headers" +msgstr "Dangos &Labeli Trac" + +#: ../src/gui/editors/notation/NotationView.cpp:1550 +#, fuzzy +msgid "S&pacing" +msgstr "B&ylchu" + +#: ../src/gui/editors/notation/NotationView.cpp:1572 +#, fuzzy +msgid "Du&ration Factor" +msgstr "Parhad" + +#: ../src/gui/editors/notation/NotationView.cpp:1598 +msgid "Note &Style" +msgstr "A&rddull y Nodau" + +#: ../src/gui/editors/notation/NotationView.cpp:1624 +msgid "Insert Rest" +msgstr "Mewnosod Saib" + +#: ../src/gui/editors/notation/NotationView.cpp:1628 +msgid "Switch from Note to Rest" +msgstr "Newid o Nodyn i Saib" + +#: ../src/gui/editors/notation/NotationView.cpp:1633 +msgid "Switch from Rest to Note" +msgstr "Newid o Saib i Nodyn" + +#: ../src/gui/editors/notation/NotationView.cpp:1690 +msgid "No accidental" +msgstr "Dim hapnod" + +#: ../src/gui/editors/notation/NotationView.cpp:1691 +#, fuzzy +msgid "Follow previous accidental" +msgstr "Gorfod hapnodau..." + +#: ../src/gui/editors/notation/NotationView.cpp:1692 +msgid "Sharp" +msgstr "Llon" + +#: ../src/gui/editors/notation/NotationView.cpp:1693 +msgid "Flat" +msgstr "Lleddf" + +#: ../src/gui/editors/notation/NotationView.cpp:1694 +msgid "Natural" +msgstr "Naturiol" + +#: ../src/gui/editors/notation/NotationView.cpp:1695 +msgid "Double sharp" +msgstr "Llon dwbl" + +#: ../src/gui/editors/notation/NotationView.cpp:1696 +msgid "Double flat" +msgstr "Lleddf dwbl" + +#: ../src/gui/editors/notation/NotationView.cpp:1717 +msgid "&Treble Clef" +msgstr "Cleff y &Trebl" + +#: ../src/gui/editors/notation/NotationView.cpp:1724 +msgid "&Alto Clef" +msgstr "Cleff yr &Alto" + +#: ../src/gui/editors/notation/NotationView.cpp:1731 +msgid "Te&nor Clef" +msgstr "Cleff y Te&nor" + +#: ../src/gui/editors/notation/NotationView.cpp:1738 +msgid "&Bass Clef" +msgstr "Cleff y &Bas" + +#: ../src/gui/editors/notation/NotationView.cpp:1745 +msgid "&Text" +msgstr "&Testun" + +#: ../src/gui/editors/notation/NotationView.cpp:1751 +#, fuzzy +msgid "&Guitar Chord" +msgstr "Dewisydd Traw" + +#: ../src/gui/editors/notation/NotationView.cpp:1784 +msgid "Select from Sta&rt" +msgstr "Dewis o Dech&rau" + +#: ../src/gui/editors/notation/NotationView.cpp:1788 +msgid "Select to &End" +msgstr "Dewis i Ddi&wedd" + +#: ../src/gui/editors/notation/NotationView.cpp:1792 +msgid "Select Whole St&aff" +msgstr "Dewis yr Holl E&rwydd" + +#: ../src/commands/edit/CutAndCloseCommand.h:53 +#: ../src/gui/editors/notation/NotationView.cpp:1796 +msgid "C&ut and Close" +msgstr "To&rri a Cau" + +#: ../src/gui/editors/notation/NotationView.cpp:1800 +msgid "Pa&ste..." +msgstr "Gl&udo..." + +#: ../src/gui/editors/notation/NotationSelector.cpp:122 +#: ../src/gui/editors/notation/NotationView.cpp:1808 +msgid "Move to Staff Above" +msgstr "" + +#: ../src/gui/editors/notation/NotationSelector.cpp:126 +#: ../src/gui/editors/notation/NotationView.cpp:1812 +msgid "Move to Staff Below" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1826 +msgid "&Linear Layout" +msgstr "&Haenlun Llinellol" + +#: ../src/gui/editors/notation/NotationView.cpp:1835 +msgid "&Continuous Page Layout" +msgstr "Haenlun &Tudalen Barhaus" + +#: ../src/gui/editors/notation/NotationView.cpp:1844 +msgid "&Multiple Page Layout" +msgstr "Haenlun &Tudalennau Lluosol" + +#: ../src/gui/editors/notation/NotationView.cpp:1854 +msgid "Show Ra&w Note Ruler" +msgstr "Dangos Rhesydd Nodau C&raidd" + +#: ../src/gui/editors/notation/NotationView.cpp:1862 +msgid "Show &Annotations" +msgstr "Dangos &Anodiadau" + +#: ../src/gui/editors/notation/NotationView.cpp:1866 +msgid "Show Lily&Pond Directives" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1870 +msgid "Open L&yric Editor" +msgstr "Agor Golygydd G&eiriau" + +#: ../src/gui/editors/notation/NotationView.cpp:1912 +msgid "Trip&let Insert Mode" +msgstr "Modd Mewnosod Tri&pled" + +#: ../src/gui/editors/notation/NotationView.cpp:1926 +#, fuzzy +msgid "Grace Insert Mode" +msgstr "Modd Mewnosod Tri&pled" + +#: ../src/gui/editors/notation/NotationView.cpp:2180 +msgid "&Dump selected events to stderr" +msgstr "&Dadlwytho digwyddiadau dewisiedig i stderr" + +#: ../src/gui/editors/notation/NotationView.cpp:2248 +#, fuzzy +msgid "Ma&ke Ornament..." +msgstr "Gwneud addurnodau..." + +#: ../src/gui/editors/notation/NotationView.cpp:2252 +msgid "Trigger &Ornament..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2256 +#, fuzzy +msgid "Remove Ornament..." +msgstr "Gwaredu gwrthpwynt" + +#: ../src/gui/editors/notation/NotationView.cpp:2261 +msgid "&None" +msgstr "&Dim" + +#: ../src/gui/editors/notation/NotationView.cpp:2289 +#, fuzzy +msgid "Convert Notation For..." +msgstr "Allforio ffeil sain ..." + +#: ../src/gui/editors/notation/NotationView.cpp:2298 +msgid "Show &Notes Toolbar" +msgstr "Dangos Bar &Nodau" + +#: ../src/gui/editors/notation/NotationView.cpp:2299 +msgid "Show &Rests Toolbar" +msgstr "Dangos Bar &Seibiau" + +#: ../src/gui/editors/notation/NotationView.cpp:2300 +msgid "Show &Accidentals Toolbar" +msgstr "Dangos Bar &Hapnodau" + +#: ../src/gui/editors/notation/NotationView.cpp:2301 +msgid "Show Cle&fs Toolbar" +msgstr "Dangos Bar &Cleffau" + +#: ../src/gui/editors/notation/NotationView.cpp:2303 +msgid "Show &Marks Toolbar" +msgstr "Dangos Bar &Arwyddion" + +#: ../src/gui/editors/notation/NotationView.cpp:2305 +msgid "Show &Group Toolbar" +msgstr "Dangos Bar &Casglu" + +#: ../src/gui/editors/notation/NotationView.cpp:2307 +msgid "Show &Layout Toolbar" +msgstr "Dangos Bar &Haenlunio" + +#: ../src/gui/editors/notation/NotationView.cpp:2311 +msgid "Show M&eta Toolbar" +msgstr "Dangos Bar &Meta" + +#: ../src/gui/editors/notation/NotationView.cpp:2373 +msgid "Cursor &Up Staff" +msgstr "Cyrchydd i &Fyny Un Erwydd" + +#: ../src/gui/editors/notation/NotationView.cpp:2377 +msgid "Cursor &Down Staff" +msgstr "Cyrchydd i &Lawr Un Erwydd" + +#: ../src/gui/editors/notation/NotationView.cpp:2381 +msgid "Cursor Pre&vious Segment" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2385 +#, fuzzy +msgid "Cursor Ne&xt Segment" +msgstr "Creu Cylchran" + +#: ../src/gui/editors/notation/NotationView.cpp:2475 +msgid "Push &Left" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2479 +msgid "Push &Right" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2483 +msgid "Push &Up" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2487 +#, fuzzy +msgid "Push &Down" +msgstr "Coesau I &Lawr" + +#: ../src/gui/editors/notation/NotationView.cpp:2491 +#, fuzzy +msgid "&Restore Positions" +msgstr "&Adfer Coesau a Gyfrifwyd" + +#: ../src/gui/editors/notation/NotationView.cpp:2495 +#, fuzzy +msgid "Make &Invisible" +msgstr "Gwneud Nodau yn Ddic&honol" + +#: ../src/gui/editors/notation/NotationView.cpp:2499 +#, fuzzy +msgid "Make &Visible" +msgstr "Gwneud Nodau yn Ddic&honol" + +#: ../src/gui/editors/notation/NotationView.cpp:2503 +#, fuzzy +msgid "Toggle Dot" +msgstr "nodyn cyfan" + +#: ../src/gui/editors/notation/NotationView.cpp:2507 +#: ../src/gui/editors/notation/NotationView.cpp:2511 +#, fuzzy +msgid "Add Dot" +msgstr "Ychwanegu %1" + +#: ../src/gui/editors/notation/NotationView.cpp:2570 +#, c-format +msgid "" +"_n: 1 pixel\n" +"%n pixels" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2619 +msgid " Font: " +msgstr "Ffont:" + +#: ../src/gui/editors/notation/NotationView.cpp:2647 +msgid "Unknown font \"%1\", using default" +msgstr "Ffont anhysbys \"%1\"; yn defnyddio'r rhagosod" + +#: ../src/gui/editors/notation/NotationView.cpp:2655 +msgid " Size: " +msgstr "Maint:" + +#: ../src/gui/editors/notation/NotationView.cpp:2677 +msgid " Spacing: " +msgstr "Bylchu:" + +#: ../src/gui/editors/notation/NotationView.cpp:2993 +#: ../src/gui/editors/notation/NotationView.cpp:3818 +msgid " Ready." +msgstr " Yn Barod." + +#: ../src/gui/editors/notation/NotationView.cpp:2998 +msgid "Laying out score..." +msgstr "Haenlunio'r sgor..." + +#: ../src/gui/editors/notation/NotationView.cpp:3011 +msgid "Laying out staff %1..." +msgstr "Haenlunio erwydd %1..." + +#: ../src/gui/editors/notation/NotationView.cpp:3020 +msgid "Reconciling staffs..." +msgstr "Cysoni erwyddau..." + +#: ../src/gui/editors/notation/NotationView.cpp:3885 +msgid "Sizing and allocating canvas..." +msgstr "Meintio a dosrannu'r cynfas..." + +#: ../src/gui/editors/notation/NotationView.cpp:4050 +msgid "note" +msgstr "nodyn" + +#: ../src/gui/editors/notation/NotationView.cpp:4050 +msgid "rest" +msgstr "saib" + +#: ../src/gui/editors/notation/NotationView.cpp:4211 +msgid "%1 - Segment Track #%2 - Notation" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4217 +#, fuzzy +msgid "%1 - All Segments - Notation" +msgstr "Parhad" + +#: ../src/gui/editors/notation/NotationView.cpp:4222 +#, fuzzy +msgid "" +"_n: %1 - Segment - Notation\n" +"%1 - %n Segments - Notation" +msgstr "Parhad" + +#: ../src/gui/editors/notation/NotationView.cpp:4243 +#, fuzzy +msgid "Grace" +msgstr "Gwyrdd" + +#: ../src/gui/editors/notation/NotationView.cpp:4247 +#: ../src/gui/editors/notation/NotationView.cpp:4251 +#: ../src/gui/editors/notation/NotationView.cpp:4255 +#, fuzzy +msgid "%1 %2" +msgstr "&%1%2" + +#: ../src/gui/editors/notation/NotationView.cpp:4271 +msgid "Hidden annotations" +msgstr "Anodiadau cudd" + +#: ../src/gui/editors/notation/NotationView.cpp:4293 +msgid "Hidden LilyPond directives" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4326 +#, c-format +msgid "Unknown spacing action %1" +msgstr "Gweithrediad bylchu anhysbys %1" + +#: ../src/gui/editors/notation/NotationView.cpp:4384 +#, fuzzy, c-format +msgid "Unknown proportion action %1" +msgstr "Gweithrediad ffont anhysbys %1" + +#: ../src/gui/editors/notation/NotationView.cpp:4431 +#, c-format +msgid "Unknown font action %1" +msgstr "Gweithrediad ffont anhysbys %1" + +#: ../src/gui/editors/notation/NotationView.cpp:4449 +#, c-format +msgid "Unknown font size %1" +msgstr "Maint ffont anhysbys %1" + +#: ../src/gui/editors/notation/NotationView.cpp:4453 +#, c-format +msgid "Unknown font size action %1" +msgstr "Gweithrediad maint ffont anhysbys %1" + +#: ../src/gui/editors/notation/NotationView.cpp:4780 +#, fuzzy +msgid "" +"The Restricted paste type requires enough empty space (containing only " +"rests) at the paste position to hold all of the events to be pasted.\n" +"Not enough space was found.\n" +"If you want to paste anyway, consider using one of the other paste types " +"from the \"Paste...\" option on the Edit menu. You can also change the " +"default paste type to something other than Restricted if you wish." +msgstr "" +"Mae angen ar y math gludo Cyfyngedig digon o le gwag\n" +"(yn cynnwys dim ond seibiau) wrth y lleoliad gludo\n" +"i gadw yr holl ddigwyddiadau i gael eu gludo.\n" +"Doedd dim digon o le.\n" +"Os ydych eisiau gludo beth bynnag, ystyriwch defnyddio\n" +"un o'r mathau gludo eraill o'r dewisiad \"Gludo\" ar y\n" +"ddewislen Golygu. Cewch hefyd newid y math gludo\n" +"rhagosodedig i rhwybeth arall yn lle Cyfyngedig\n" +"os hoffech chi." + +#: ../src/gui/editors/notation/NotationView.cpp:4800 +msgid "Can't paste multiple Segments into one" +msgstr "Methu gludo Cylchrannau lluosol i mewn i un" + +#: ../src/gui/editors/notation/NotationView.cpp:4828 +#: ../src/gui/editors/notation/NotationView.cpp:4877 +msgid "Couldn't paste at this point." +msgstr "Methu gludo wrth y fan yma." + +#: ../src/gui/editors/notation/NotationView.cpp:4896 +#, fuzzy +msgid "Move Events to Staff Above" +msgstr "Wedi cael digwyddiad tu allan o Gylchran" + +#: ../src/gui/editors/notation/NotationView.cpp:4924 +#, fuzzy +msgid "Move Events to Staff Below" +msgstr "Wedi cael digwyddiad tu allan o Gylchran" + +#: ../src/gui/editors/notation/NotationView.cpp:5036 +#, fuzzy +msgid "Pushing selection left..." +msgstr "Torri'r dewisiad..." + +#: ../src/gui/editors/notation/NotationView.cpp:5047 +#, fuzzy +msgid "Pushing selection right..." +msgstr "Torri'r dewisiad..." + +#: ../src/gui/editors/notation/NotationView.cpp:5058 +#, fuzzy +msgid "Pushing selection up..." +msgstr "Torri'r dewisiad..." + +#: ../src/gui/editors/notation/NotationView.cpp:5069 +#, fuzzy +msgid "Pushing selection down..." +msgstr "Torri'r dewisiad..." + +#: ../src/gui/editors/notation/NotationView.cpp:5080 +#, fuzzy +msgid "Restoring computed positions..." +msgstr "Adfer cyfeiriadau coesau a gyfrifwyd..." + +#: ../src/gui/editors/notation/NotationView.cpp:5089 +#, fuzzy +msgid "Making visible..." +msgstr "Gwneud nodau yn ddichonol" + +#: ../src/gui/editors/notation/NotationView.cpp:5098 +#, fuzzy +msgid "Making invisible..." +msgstr "Gwneud nodau yn ddichonol" + +#: ../src/gui/editors/notation/NotationView.cpp:5185 +msgid "Beaming group..." +msgstr "Trawstio'r casgliad..." + +#: ../src/gui/editors/notation/NotationView.cpp:5195 +msgid "Auto-beaming selection..." +msgstr "Hunan-drawstio'r dewisiad..." + +#: ../src/gui/editors/notation/NotationView.cpp:5205 +msgid "Breaking groups..." +msgstr "Torri casgliadau..." + +#: ../src/gui/editors/notation/NotationView.cpp:5293 +msgid "Untupleting..." +msgstr "Dad-wneud plygyn..." + +#: ../src/gui/editors/notation/NotationView.cpp:5301 +msgid "Adding slur..." +msgstr "Ychwanegu llithriad..." + +#: ../src/gui/editors/notation/NotationView.cpp:5302 +msgid "slur" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5307 +#, fuzzy +msgid "Adding phrasing slur..." +msgstr "Ychwanegu llithriad..." + +#: ../src/gui/editors/notation/NotationView.cpp:5308 +msgid "phrasing slur" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5313 +#, fuzzy +msgid "Adding glissando..." +msgstr "Ychwanegu crescendo..." + +#: ../src/gui/editors/notation/NotationView.cpp:5314 +#, fuzzy +msgid "glissando" +msgstr "Ychwanegu crescendo..." + +#: ../src/gui/editors/notation/NotationView.cpp:5319 +msgid "Adding crescendo..." +msgstr "Ychwanegu crescendo..." + +#: ../src/gui/editors/notation/NotationView.cpp:5320 +#: ../src/gui/editors/notation/NotationView.cpp:5326 +#, fuzzy +msgid "dynamic" +msgstr "Dinamig" + +#: ../src/gui/editors/notation/NotationView.cpp:5325 +msgid "Adding decrescendo..." +msgstr "Ychwanegu decrescendo..." + +#: ../src/gui/editors/notation/NotationView.cpp:5331 +#: ../src/gui/editors/notation/NotationView.cpp:5337 +#: ../src/gui/editors/notation/NotationView.cpp:5343 +#: ../src/gui/editors/notation/NotationView.cpp:5349 +#, fuzzy +msgid "Adding octave..." +msgstr "Ychwanegu crescendo..." + +#: ../src/gui/editors/notation/NotationView.cpp:5332 +#: ../src/gui/editors/notation/NotationView.cpp:5338 +#: ../src/gui/editors/notation/NotationView.cpp:5344 +#: ../src/gui/editors/notation/NotationView.cpp:5350 +msgid "ottava" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5366 +msgid "Can't add overlapping %1 indications" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5375 +#, fuzzy +msgid "Making chord..." +msgstr "Gwneud addurnodau..." + +#: ../src/gui/editors/notation/NotationView.cpp:5387 +msgid "Normalizing rests..." +msgstr "Normaleiddio seibiau" + +#: ../src/gui/editors/notation/NotationView.cpp:5397 +msgid "Collapsing rests..." +msgstr "Dat-ehangu seibiau..." + +#: ../src/gui/editors/notation/NotationView.cpp:5417 +msgid "Tying notes..." +msgstr "Clymu nodau..." + +#: ../src/gui/editors/notation/NotationView.cpp:5427 +msgid "Untying notes..." +msgstr "Dad-glymu nodau..." + +#: ../src/gui/editors/notation/NotationView.cpp:5437 +msgid "Making notes viable..." +msgstr "Gwneud nodau yn ddichonol" + +#: ../src/gui/editors/notation/NotationView.cpp:5447 +msgid "Removing counterpoint..." +msgstr "Gwaredu gwrthpwynt" + +#: ../src/gui/editors/notation/NotationView.cpp:5457 +msgid "Pointing stems up..." +msgstr "Pwyntio coesau i fyny..." + +#: ../src/gui/editors/notation/NotationView.cpp:5467 +msgid "Pointing stems down..." +msgstr "Pwyntio coesau i lawr..." + +#: ../src/gui/editors/notation/NotationView.cpp:5478 +msgid "Restoring computed stem directions..." +msgstr "Adfer cyfeiriadau coesau a gyfrifwyd..." + +#: ../src/gui/editors/notation/NotationView.cpp:5488 +#: ../src/gui/editors/notation/NotationView.cpp:5498 +#, fuzzy +msgid "Positioning slurs..." +msgstr "Lleoli erwydd %1..." + +#: ../src/gui/editors/notation/NotationView.cpp:5509 +#, fuzzy +msgid "Restoring slur positions..." +msgstr "Adfer cyfeiriadau coesau a gyfrifwyd..." + +#: ../src/gui/editors/notation/NotationView.cpp:5519 +#: ../src/gui/editors/notation/NotationView.cpp:5529 +#, fuzzy +msgid "Positioning ties..." +msgstr "Lleoli erwydd %1..." + +#: ../src/gui/editors/notation/NotationView.cpp:5540 +#, fuzzy +msgid "Restoring tie positions..." +msgstr "Adfer cyfeiriadau coesau a gyfrifwyd..." + +#: ../src/gui/editors/notation/NotationView.cpp:5550 +msgid "Fixing notation quantization..." +msgstr "Trwsio cwanteiddio'r nodiant..." + +#: ../src/gui/editors/notation/NotationView.cpp:5560 +#, fuzzy +msgid "Removing notation quantization..." +msgstr "Trwsio cwanteiddio'r nodiant..." + +#: ../src/gui/editors/notation/NotationView.cpp:5577 +msgid "Changing to %1 style..." +msgstr "Newid i arddull %1..." + +#: ../src/gui/editors/notation/NotationView.cpp:5585 +#, c-format +msgid "Unknown style action %1" +msgstr "Gweithrediad arddull anhysbys %1" + +#: ../src/gui/editors/notation/NotationView.cpp:5598 +#: ../src/gui/editors/notation/NotationView.cpp:5639 +#: ../src/gui/editors/notation/NotationView.cpp:5695 +msgid "No note duration selected" +msgstr "Dim parhad nodau wedi'i ddewis" + +#: ../src/gui/editors/notation/NotationView.cpp:5660 +msgid "No rest duration selected" +msgstr "Dim parhad saib wedi'i ddewis" + +#: ../src/gui/editors/notation/NotationView.cpp:5746 +#, fuzzy +msgid "No note or rest duration selected" +msgstr "Dim parhad saib wedi'i ddewis" + +#: ../src/gui/editors/notation/NotationView.cpp:5757 +#: ../src/gui/editors/notation/NotationView.cpp:5768 +#: ../src/gui/editors/notation/NotationView.cpp:5779 +#: ../src/gui/editors/notation/NotationView.cpp:5790 +#: ../src/gui/editors/notation/NotationView.cpp:5801 +#: ../src/gui/editors/notation/NotationView.cpp:5812 +#: ../src/gui/editors/notation/NotationView.cpp:5823 +msgid "Forcing accidentals..." +msgstr "Gorfod hapnodau..." + +#: ../src/gui/editors/notation/NotationView.cpp:5834 +msgid "Restoring accidentals..." +msgstr "Adfer hapnodau..." + +#: ../src/gui/editors/notation/NotationView.cpp:5845 +#, fuzzy +msgid "Showing cautionary accidentals..." +msgstr "Gorfod hapnodau..." + +#: ../src/gui/editors/notation/NotationView.cpp:5855 +#, fuzzy +msgid "Cancelling cautionary accidentals..." +msgstr "Gorfod hapnodau..." + +#: ../src/gui/editors/notation/NotationView.cpp:5884 +msgid "Interpreting selection..." +msgstr "Dehongli dewisiad..." + +#: ../src/gui/editors/notation/NotationView.cpp:5896 +#, fuzzy +msgid "Setting note durations..." +msgstr "Gosod &Tempo i Barhad Cylchran Sain" + +#: ../src/gui/editors/notation/NotationView.cpp:5904 +#: ../src/gui/editors/notation/NotationView.cpp:5912 +#, fuzzy +msgid "Adding dot..." +msgstr "Ychwanegu crescendo..." + +#: ../src/gui/editors/notation/NotationView.cpp:5934 +msgid "Text: " +msgstr "Testun:" + +#: ../src/gui/editors/notation/NotationView.cpp:5948 +msgid "Fingering: " +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:6036 +msgid "Ornament track %1 bar %2" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:6038 +#, fuzzy, c-format +msgid "Ornament bar %1" +msgstr "Cylch&rannau" + +#: ../src/gui/editors/notation/NotationView.cpp:6098 +#, fuzzy +msgid "Remove Ornaments" +msgstr "&Gwaredu Pob Arwydd" + +#: ../src/gui/editors/notation/NotationView.cpp:6145 +msgid "Estimated key signature shown" +msgstr "Dangos arwydd cywair wedi'i amcangyfrif" + +#: ../src/gui/editors/notation/NotationStaff.cpp:1249 +#: ../src/gui/editors/notation/NotationView.cpp:6202 +msgid "Sustain" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:6218 +msgid "" +"There is no sustain controller defined for this device.\n" +"Please ensure the device is configured correctly in the Manage MIDI Devices " +"dialog in the main window." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:7250 +#, fuzzy +msgid "Can't insert note: No note duration selected" +msgstr "Dim parhad nodau wedi'i ddewis" + +#: ../src/gui/editors/notation/NotationEraser.cpp:61 +#: ../src/gui/editors/notation/NotationSelector.cpp:83 +msgid "Switch to Insert Tool" +msgstr "Newid i Erfyn Mewnosod" + +#: ../src/gui/editors/notation/NotePixmapFactory.cpp:2303 +#: ../src/gui/editors/notation/NotePixmapFactory.cpp:2347 +msgid "..." +msgstr "..." + +#: ../src/gui/editors/notation/NoteFontFactory.cpp:200 +msgid "Can't obtain a default font -- no fonts found" +msgstr "Methu cael wynebfath rhagosod -- ni chanfuwyd wynebfathau" + +#: ../src/gui/editors/notation/NoteFontMap.cpp:52 +#: ../src/gui/general/PresetGroup.cpp:49 +#, fuzzy +msgid "unknown error" +msgstr "Anhysbys" + +#: ../src/gui/editors/notation/NoteFontMap.cpp:78 +msgid "Can't open font mapping file %1 or %2" +msgstr "Methu agor ffeil mapio wynebfathau %1 neu %2" + +#: ../src/gui/editors/notation/NoteFontMap.cpp:82 +#, c-format +msgid "Can't open font mapping file %1" +msgstr "Methu agor ffeil mapio wynebfathau %1" + +#: ../src/gui/editors/notation/NotationStrings.cpp:52 +msgid "%1-dotted-%2" +msgstr "%1-unpwynt-%2" + +#: ../src/gui/editors/notation/NotationStrings.cpp:54 +msgid "%1-dotted %2" +msgstr "%1-unpwynt %2" + +#: ../src/gui/editors/notation/NotationStrings.cpp:57 +#, c-format +msgid "dotted-%1" +msgstr "unpwynt-%1" + +#: ../src/gui/editors/notation/NotationStrings.cpp:59 +#, c-format +msgid "dotted %1" +msgstr "unpwynt %1" + +#: ../src/gui/editors/notation/NotationStrings.cpp:83 +msgid "sixty-fourth note" +msgstr "nodyn un rhan o chwech deg pedwar" + +#: ../src/gui/editors/notation/NotationStrings.cpp:83 +msgid "thirty-second note" +msgstr "nodyn un rhan o tri deg dau" + +#: ../src/gui/editors/notation/NotationStrings.cpp:84 +msgid "sixteenth note" +msgstr "nodyn un rhan o un deg chwech" + +#: ../src/gui/editors/notation/NotationStrings.cpp:84 +msgid "eighth note" +msgstr "nodyn un rhan o wyth" + +#: ../src/gui/editors/notation/NotationStrings.cpp:85 +msgid "quarter note" +msgstr "chwarter nodyn" + +#: ../src/gui/editors/notation/NotationStrings.cpp:85 +msgid "half note" +msgstr "hanner nodyn" + +#: ../src/gui/editors/notation/NotationStrings.cpp:86 +msgid "whole note" +msgstr "nodyn cyfan" + +#: ../src/gui/editors/notation/NotationStrings.cpp:86 +msgid "double whole note" +msgstr "nodyn cyfan dwbl" + +#: ../src/gui/editors/notation/NotationStrings.cpp:89 +msgid "sixty-fourth notes" +msgstr "nodau un rhan o chwech deg pedwar" + +#: ../src/gui/editors/notation/NotationStrings.cpp:89 +msgid "thirty-second notes" +msgstr "nodau un rhan o tri deg dau" + +#: ../src/gui/editors/notation/NotationStrings.cpp:90 +msgid "sixteenth notes" +msgstr "nodau un rhan o un deg chwech" + +#: ../src/gui/editors/notation/NotationStrings.cpp:90 +msgid "eighth notes" +msgstr "nodau un rhan o wyth" + +#: ../src/gui/editors/notation/NotationStrings.cpp:91 +msgid "quarter notes" +msgstr "chwarter nodau" + +#: ../src/gui/editors/notation/NotationStrings.cpp:91 +msgid "half notes" +msgstr "hanner nodau" + +#: ../src/gui/editors/notation/NotationStrings.cpp:92 +msgid "whole notes" +msgstr "nodau cyfan" + +#: ../src/gui/editors/notation/NotationStrings.cpp:92 +msgid "double whole notes" +msgstr "nodau cyfan dwbl" + +#: ../src/gui/editors/notation/NotationStrings.cpp:96 +#: ../src/gui/editors/notation/NotationStrings.cpp:154 +msgid "%1 triplets" +msgstr "%1 tripledi" + +#: ../src/gui/editors/notation/NotationStrings.cpp:100 +#: ../src/gui/editors/notation/NotationStrings.cpp:158 +msgid "%1 triplet" +msgstr "%1 tripled" + +#: ../src/gui/editors/notation/NotationStrings.cpp:143 +msgid "64th" +msgstr "64ydd" + +#: ../src/gui/editors/notation/NotationStrings.cpp:143 +msgid "32nd" +msgstr "32il" + +#: ../src/gui/editors/notation/NotationStrings.cpp:143 +msgid "16th" +msgstr "16ed" + +#: ../src/gui/editors/notation/NotationStrings.cpp:143 +msgid "8th" +msgstr "8ed" + +#: ../src/gui/editors/notation/NotationStrings.cpp:144 +msgid "quarter" +msgstr "chwarter" + +#: ../src/gui/editors/notation/NotationStrings.cpp:144 +msgid "half" +msgstr "hanner" + +#: ../src/gui/editors/notation/NotationStrings.cpp:144 +msgid "whole" +msgstr "cyfan" + +#: ../src/gui/editors/notation/NotationStrings.cpp:145 +msgid "double whole" +msgstr "cyfan dwbl" + +#: ../src/gui/editors/notation/NotationStrings.cpp:148 +msgid "64ths" +msgstr "64ydd-au" + +#: ../src/gui/editors/notation/NotationStrings.cpp:148 +msgid "32nds" +msgstr "32il-au" + +#: ../src/gui/editors/notation/NotationStrings.cpp:148 +msgid "16ths" +msgstr "16ed-au" + +#: ../src/gui/editors/notation/NotationStrings.cpp:148 +msgid "8ths" +msgstr "8ed-au" + +#: ../src/gui/editors/notation/NotationStrings.cpp:149 +msgid "quarters" +msgstr "chwarteri" + +#: ../src/gui/editors/notation/NotationStrings.cpp:149 +msgid "halves" +msgstr "hanerau" + +#: ../src/gui/editors/notation/NotationStrings.cpp:149 +msgid "wholes" +msgstr "cyfain" + +#: ../src/gui/editors/notation/NotationStrings.cpp:150 +msgid "double wholes" +msgstr "cyfain dwbl" + +#: ../src/gui/editors/notation/NotationStrings.cpp:278 +msgid "%1 ticks" +msgstr "%1 o diciau" + +#: ../src/gui/editors/notation/FontViewFrame.cpp:100 +#, c-format +msgid "Error: Unable to match font name %1" +msgstr "" + +#: ../src/gui/editors/notation/FontViewFrame.cpp:108 +msgid "Warning: No good match for font name %1 (best is %2)" +msgstr "" + +#: ../src/gui/editors/notation/FontViewFrame.cpp:116 +#, c-format +msgid "Error: Unable to open best-match font %1" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:113 +#, fuzzy +msgid "Track %1 : \"%2\"" +msgstr "Rhaglenni %1 - %2" + +#: ../src/gui/editors/notation/TrackHeader.cpp:119 +#, fuzzy, c-format +msgid "" +"\n" +"Notate for: %1" +msgstr "&Ffont i'r Nodau" + +#: ../src/gui/editors/notation/TrackHeader.cpp:121 +#, fuzzy +msgid "normal" +msgstr "Arferol" + +#: ../src/gui/editors/notation/TrackHeader.cpp:124 +#, fuzzy +msgid "small" +msgstr "Popeth" + +#: ../src/gui/editors/notation/TrackHeader.cpp:127 +msgid "tiny" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:131 +msgid "--" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:156 +msgid "" +"\n" +"Size: %1, Bracket: %2 " +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:183 +msgid "" +"\n" +"bars [%1-%2] in %3 (tr=%4) : \"%5\"" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:190 +msgid "" +"\n" +"bars [%1-%2] (tr=%3) : \"%4\"" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:240 +#, fuzzy +msgid "C#" +msgstr "C#%1" + +#: ../src/gui/editors/notation/TrackHeader.cpp:242 +msgid "Eb" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:245 +#, fuzzy +msgid "F#" +msgstr "F#%1" + +#: ../src/gui/editors/notation/TrackHeader.cpp:247 +#, fuzzy +msgid "G#" +msgstr "G#%1" + +#: ../src/gui/editors/notation/TrackHeader.cpp:249 +msgid "Bb" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:352 +#, fuzzy +msgid "%1: %2" +msgstr "&%1%2" + +#: ../src/gui/editors/notation/TrackHeader.cpp:355 +#, fuzzy, c-format +msgid " in %1" +msgstr "Dat-&wneud %1" + +#: ../src/gui/editors/notation/NotationStaff.cpp:452 +msgid "Rendering staff %1..." +msgstr "Trosi erwydd %1..." + +#: ../src/gui/editors/notation/NotationStaff.cpp:515 +#, fuzzy +msgid "Rendering notes on staff %1..." +msgstr "Trosi erwydd %1..." + +#: ../src/gui/editors/notation/NotationStaff.cpp:583 +msgid "Positioning staff %1..." +msgstr "Lleoli erwydd %1..." + +#: ../src/gui/editors/notation/NotationSelectionPaster.cpp:85 +msgid "Ready." +msgstr "Yn barod." + +#: ../src/gui/editors/notation/RestInserter.cpp:62 +msgid "Dotted rest" +msgstr "Saib unpwynt" + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:57 +#, c-format +msgid "Can't open style file %1" +msgstr "Methu agor ffeil arddull %1" + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:92 +msgid "type is a required attribute of note" +msgstr "priodoledd angenrheidiol o nodyn yw math" + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:101 +#, c-format +msgid "Unrecognised note name %1" +msgstr "Enw nodyn %1 heb ei gydnabod" + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:108 +msgid "global element must precede note elements" +msgstr "rhaid i'r elfen eang ddod o flaen elfennau nodyn" + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:137 +msgid "" +"global and note elements may have shape or charname attribute, but not both" +msgstr "" +"gall elfennau eang a nodyn gael priodoledd siap neu nod-enw, ond dim y dau" + +#: ../src/gui/editors/notation/NotationVLayout.cpp:493 +msgid "" +"Spanned note at %1 has no HEIGHT_ON_STAFF property!\n" +"This is a bug (the program would previously have crashed by now)" +msgstr "" +"Does dim priodwedd HEIGHT_ON_STAFF gan y nodyn wedi'i bontio wrth %1!\n" +"Nam yw hwn (o'r blaen, buasai'r rhaglen wedi chwalu erbyn rwan)." + +#: ../src/gui/editors/notation/NoteInserter.cpp:82 +msgid "Auto-Beam when appropriate" +msgstr "Hunan-Drawstio lle mae'n addas" + +#: ../src/gui/editors/notation/NoteInserter.cpp:103 +msgid "Dotted note" +msgstr "Nodyn unpwynt" + +#: ../src/gui/editors/notation/NoteInserter.cpp:120 +msgid "Switch to Inserting Rests" +msgstr "Newid i Fewnosod Seibiau" + +#: ../src/gui/editors/notation/NotationSelector.cpp:98 +#, fuzzy +msgid "Collapse Rests" +msgstr "&Dat-ehangu Seibiau" + +#: ../src/gui/editors/notation/NotationSelector.cpp:102 +msgid "Respell as Flat" +msgstr "" + +#: ../src/gui/editors/notation/NotationSelector.cpp:106 +#, fuzzy +msgid "Respell as Sharp" +msgstr "Gorfod Hapnodau i F&yny" + +#: ../src/gui/editors/notation/NotationSelector.cpp:110 +msgid "Respell as Natural" +msgstr "" + +#: ../src/gui/editors/notation/NotationSelector.cpp:114 +#, fuzzy +msgid "Collapse Notes" +msgstr "&Dat-ehangu Seibiau" + +#: ../src/gui/editors/notation/NotationSelector.cpp:130 +#, fuzzy +msgid "Make Invisible" +msgstr "Gwneud Nodau yn Ddic&honol" + +#: ../src/gui/editors/notation/NotationSelector.cpp:134 +#, fuzzy +msgid "Make Visible" +msgstr "Gwneud Nodau yn Ddic&honol" + +#: ../src/gui/editors/eventlist/EventView.cpp:129 +msgid "Event filters" +msgstr "Hidlau digwyddiadau" + +#: ../src/gui/editors/eventlist/EventView.cpp:138 +msgid "Rest" +msgstr "Saib" + +#: ../src/gui/editors/eventlist/EventView.cpp:139 +msgid "Indication" +msgstr "Dangosiad" + +#: ../src/gui/editors/eventlist/EventView.cpp:141 +msgid "Other" +msgstr "Arall" + +#: ../src/gui/editors/eventlist/EventView.cpp:161 +#, fuzzy +msgid "Triggered Segment Properties" +msgstr "Priodweddau Digwyddiadau" + +#: ../src/gui/editors/eventlist/EventView.cpp:166 +#, fuzzy +msgid "Label: " +msgstr "Labelu" + +#: ../src/gui/editors/eventlist/EventView.cpp:176 +#, fuzzy +msgid "Base pitch: " +msgstr "Traw'r cywair:" + +#: ../src/gui/editors/eventlist/EventView.cpp:183 +#, fuzzy +msgid "Base velocity: " +msgstr "Buanedd y nodyn:" + +#: ../src/gui/editors/eventlist/EventView.cpp:246 +msgid "Duration " +msgstr "Parhad" + +#: ../src/gui/editors/eventlist/EventView.cpp:247 +msgid "Event Type " +msgstr "Math Digwyddiad" + +#: ../src/gui/editors/eventlist/EventView.cpp:248 +msgid "Pitch " +msgstr "Traw" + +#: ../src/gui/editors/eventlist/EventView.cpp:249 +msgid "Velocity " +msgstr "Buanedd" + +#: ../src/gui/editors/eventlist/EventView.cpp:250 +msgid "Type (Data1) " +msgstr "Math (Data1)" + +#: ../src/gui/editors/eventlist/EventView.cpp:251 +msgid "Value (Data2) " +msgstr "Gwerth (Data2)" + +#: ../src/gui/editors/eventlist/EventView.cpp:461 +msgid "(group %1) " +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:519 +msgid "" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:521 +msgid "" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:696 +#, fuzzy +msgid "Segment label" +msgstr "Addasu label Cylchran" + +#: ../src/gui/editors/eventlist/EventView.cpp:696 +#, fuzzy +msgid "Label:" +msgstr "Labelu" + +#: ../src/gui/editors/eventlist/EventView.cpp:1123 +msgid "&Insert Event" +msgstr "Mewnosod Di&gwyddiad" + +#: ../src/gui/editors/eventlist/EventView.cpp:1130 +msgid "&Delete Event" +msgstr "Dileu Dig&wyddiad" + +#: ../src/gui/editors/eventlist/EventView.cpp:1137 +msgid "&Edit Event" +msgstr "Golygu Digw&yddiad" + +#: ../src/gui/editors/eventlist/EventView.cpp:1144 +msgid "&Advanced Event Editor" +msgstr "Golygu Digwyddiadau yn &Fanwl" + +#: ../src/gui/editors/eventlist/EventView.cpp:1518 +msgid "Open in Event Editor" +msgstr "Agor yn y Golygydd Digwyddiadau" + +#: ../src/gui/editors/eventlist/EventView.cpp:1519 +msgid "Open in Expert Event Editor" +msgstr "Agor yn y Golygydd Digwyddiadau am Arbenigwyr" + +#: ../src/gui/editors/eventlist/EventView.cpp:1577 +#, fuzzy +msgid "%1 - Triggered Segment: %2" +msgstr "Creu Cylchran" + +#: ../src/gui/editors/eventlist/EventView.cpp:1592 +msgid "%1 - Segment Track #%2 - Event List" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1598 +msgid "%1 - %2 Segments - Event List" +msgstr "" + +#: ../src/gui/rulers/TempoRuler.cpp:131 +#, fuzzy +msgid "Insert Tempo Change at Playback Position" +msgstr "Mewnosod Newid Tempo" + +#: ../src/gui/rulers/TempoRuler.cpp:136 +#, fuzzy +msgid "Delete Tempo Change" +msgstr "Mewnosod Newid Tempo" + +#: ../src/gui/rulers/TempoRuler.cpp:140 +msgid "Ramp Tempo to Next Tempo" +msgstr "" + +#: ../src/gui/rulers/TempoRuler.cpp:144 +msgid "Un-Ramp Tempo" +msgstr "" + +#: ../src/gui/rulers/TempoRuler.cpp:149 +#, fuzzy +msgid "Edit Tempo..." +msgstr "Addasu Tempo Rhag&osodedig..." + +#: ../src/gui/rulers/TempoRuler.cpp:153 +#, fuzzy +msgid "Edit Time Signature..." +msgstr "Arwydd Amseriad" + +#: ../src/gui/rulers/TempoRuler.cpp:588 +#, fuzzy +msgid "%1.%2%3 (%4.%5%6 bpm)" +msgstr "%1.%2 s," + +#: ../src/gui/rulers/TempoRuler.cpp:596 +#, fuzzy +msgid "%1.%2%3 bpm" +msgstr "%1.%2 s," + +#: ../src/gui/rulers/TempoRuler.cpp:604 +#, fuzzy +msgid "%1 - %2.%3%4" +msgstr "&%1%2" + +#: ../src/gui/rulers/ControlRulerEventInsertCommand.cpp:36 +msgid "Insert Controller Event" +msgstr "Mewnosod Digwyddiad Rheolydd" + +#: ../src/gui/rulers/ControlChangeCommand.cpp:35 +msgid "Control Change" +msgstr "Newid Rheolydd" + +#: ../src/gui/rulers/PropertyViewRuler.cpp:72 +msgid "%1 controller" +msgstr "rheolydd %1" + +#: ../src/gui/rulers/RawNoteRuler.cpp:453 +msgid "Track #%1, Segment \"%2\" (runtime id %3)" +msgstr "" + +#: ../src/gui/rulers/MarkerRuler.cpp:100 +#, fuzzy +msgid "Insert Marker" +msgstr "Mewnosod Saib" + +#: ../src/gui/rulers/MarkerRuler.cpp:104 +#, fuzzy +msgid "Insert Marker at Playback Position" +msgstr "Mewnosod Newid Tempo" + +#: ../src/gui/rulers/MarkerRuler.cpp:109 +#, fuzzy +msgid "Delete Marker" +msgstr "Dileu Arwydd" + +#: ../src/gui/rulers/MarkerRuler.cpp:114 +#, fuzzy +msgid "Edit Marker..." +msgstr "Golygu Arwyddion..." + +#: ../src/gui/rulers/MarkerRuler.cpp:119 +msgid "" +"Click on a marker to move the playback pointer.\n" +"Shift-click to set a range between markers.\n" +"Double-click to open the marker editor." +msgstr "" + +#: ../src/gui/rulers/ChordNameRuler.cpp:97 +msgid "" +"Chord name ruler.\n" +"Turn it on and off from the Settings->Rulers menu." +msgstr "" + +#: ../src/gui/rulers/ControlRulerEventEraseCommand.cpp:37 +msgid "Erase Controller Event(s)" +msgstr "Dileu Digwyddiad(au) Rheolydd" + +#: ../src/gui/general/EditView.cpp:901 +#: ../src/gui/rulers/ControllerEventsRuler.cpp:188 +#, fuzzy +msgid "Unsupported Event Type" +msgstr "Math o ddigwyddiad na chynhelir:" + +#: ../src/gui/rulers/ControllerEventsRuler.cpp:203 +msgid "Controller Events" +msgstr "Digwyddiadau Rheolydd" + +#: ../src/gui/rulers/ControllerEventsRuler.cpp:278 +msgid "Controller Event Number" +msgstr "Rhif Digwyddiad Rheolydd" + +#: ../src/gui/rulers/ControllerEventsRuler.cpp:471 +#, fuzzy +msgid "Add line of controllers" +msgstr "rheolydd %1" + +#: ../src/gui/rulers/LoopRuler.cpp:89 +msgid "" +"Click and drag to move the playback pointer.\n" +"Shift-click and drag to set a range for looping or editing.\n" +"Shift-click to clear the loop or range.\n" +"Double-click to start playback." +msgstr "" + +#: ../src/gui/general/EditViewBase.cpp:228 +#, fuzzy +msgid "Set Segment Start Time..." +msgstr "Dangos Paramedrau &Cylchrannau" + +#: ../src/gui/general/EditViewBase.cpp:232 +#, fuzzy +msgid "Set Segment Duration..." +msgstr "Gosod &Tempo i Barhad Cylchran Sain" + +#: ../src/gui/general/PresetHandlerDialog.cpp:56 +msgid "Load track parameters preset" +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:62 +#, fuzzy +msgid "Convert notation for..." +msgstr "Allforio ffeil sain ..." + +#: ../src/gui/general/PresetHandlerDialog.cpp:86 +msgid "Select preset track parameters for:" +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:87 +msgid "Create appropriate notation for:" +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:89 +msgid "Category" +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:95 +#, fuzzy +msgid "Player Ability" +msgstr "Chwarae" + +#: ../src/gui/general/PresetHandlerDialog.cpp:97 +#, fuzzy +msgid "Amateur" +msgstr "Meistr MMC" + +#: ../src/gui/general/PresetHandlerDialog.cpp:98 +#, fuzzy +msgid "Professional" +msgstr "Prosesu..." + +#: ../src/gui/general/PresetHandlerDialog.cpp:104 +#, fuzzy +msgid "Only selected segments" +msgstr "Dewis &Pob Cylchran" + +#: ../src/gui/general/PresetHandlerDialog.cpp:106 +#, fuzzy +msgid "All segments in this track" +msgstr "Gweithredu i bob cylchran wrth yr amser yma" + +#: ../src/gui/general/PresetHandlerDialog.cpp:111 +#, fuzzy +msgid "Only for new segments" +msgstr "Geiriau i'r cylchran yma" + +#: ../src/gui/general/PresetHandlerDialog.cpp:113 +#, fuzzy +msgid "Convert existing segments" +msgstr "Creu Cylchran" + +#: ../src/gui/general/MidiPitchLabel.cpp:39 +#, c-format +msgid "C%1" +msgstr "C%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:39 +#, c-format +msgid "C#%1" +msgstr "C#%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:39 +#, c-format +msgid "D%1" +msgstr "D%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:39 +#, c-format +msgid "D#%1" +msgstr "D#%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:40 +#, c-format +msgid "E%1" +msgstr "E%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:40 +#, c-format +msgid "F%1" +msgstr "F%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:40 +#, c-format +msgid "F#%1" +msgstr "F#%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:40 +#, c-format +msgid "G%1" +msgstr "G%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:41 +#, c-format +msgid "G#%1" +msgstr "G#%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:41 +#, c-format +msgid "A%1" +msgstr "A%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:41 +#, c-format +msgid "A#%1" +msgstr "A#%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:41 +#, c-format +msgid "B%1" +msgstr "B%1" + +#: ../src/gui/general/PresetGroup.cpp:95 +#, fuzzy, c-format +msgid "Can't open preset file %1" +msgstr "Methu agor ffeil arddull %1" + +#: ../src/gui/general/EditView.cpp:744 +#, fuzzy +msgid "&Halve Durations" +msgstr "Parhad" + +#: ../src/gui/general/EditView.cpp:748 +#, fuzzy +msgid "&Double Durations" +msgstr "Lleddf dwbl" + +#: ../src/gui/general/EditView.cpp:806 +#, fuzzy +msgid "Show Velocity Property Ruler" +msgstr "Dangos Rhesydd Rheoli Buanedd" + +#: ../src/gui/general/EditView.cpp:825 +msgid "Insert item" +msgstr "Mewnosod eitem" + +#: ../src/gui/general/EditView.cpp:831 +#, fuzzy +msgid "Erase selected items" +msgstr "Dileu eitem(au) dewisiedig" + +#: ../src/gui/general/EditView.cpp:835 +#, fuzzy +msgid "Clear ruler" +msgstr "Gwaredu'r Dewisiad" + +#: ../src/gui/general/EditView.cpp:839 +#, fuzzy +msgid "Insert line of controllers" +msgstr "Mewnosod Digwyddiad Rheolydd" + +#: ../src/gui/general/EditView.cpp:843 +#, fuzzy +msgid "Flip forward" +msgstr "Brys ymlaen" + +#: ../src/gui/general/EditView.cpp:847 +msgid "Flip backwards" +msgstr "" + +#: ../src/gui/general/EditView.cpp:851 +#, fuzzy +msgid "Draw property line" +msgstr "{priodwedd newydd %1}" + +#: ../src/gui/general/EditView.cpp:855 +#, fuzzy +msgid "Select all property values" +msgstr "Dileu'r priodwedd yma" + +#: ../src/gui/general/EditView.cpp:894 +#, fuzzy +msgid "%1 Controller %2 %3" +msgstr "rheolydd %1" + +#: ../src/gui/general/EditView.cpp:1066 +msgid "I" +msgstr "I" + +#: ../src/gui/general/EditView.cpp:1066 +msgid "II" +msgstr "II" + +#: ../src/gui/general/EditView.cpp:1066 +msgid "III" +msgstr "III" + +#: ../src/gui/general/EditView.cpp:1066 +msgid "IV" +msgstr "IV" + +#: ../src/gui/general/EditView.cpp:1067 +msgid "V" +msgstr "V" + +#: ../src/gui/general/EditView.cpp:1067 +msgid "VI" +msgstr "VI" + +#: ../src/gui/general/EditView.cpp:1067 +msgid "VII" +msgstr "VII" + +#: ../src/gui/general/EditView.cpp:1067 +msgid "VIII" +msgstr "VIII" + +#: ../src/gui/general/EditView.cpp:1069 +msgid "%1 flat" +msgstr "%1 lleddf" + +#: ../src/gui/general/EditView.cpp:1070 +msgid "%1 sharp" +msgstr "%1 llon" + +#: ../src/gui/general/EditView.cpp:1085 +msgid "&Insert Note" +msgstr "&Mewnosod nodyn" + +#: ../src/gui/general/EditView.cpp:1091 +msgid "&Upper Octave" +msgstr "Wythfed &Uwch" + +#: ../src/gui/general/EditView.cpp:1096 +msgid "&Lower Octave" +msgstr "Wythfed &Is" + +#: ../src/gui/general/EditView.cpp:1268 +msgid "Estimated time signature shown" +msgstr "Dangos arwydd amseriad wedi'i amcangyfrif" + +#: ../src/gui/general/EditView.cpp:1431 +#, fuzzy +msgid "Halving durations..." +msgstr "Gosod &Tempo i Barhad Cylchran Sain" + +#: ../src/gui/general/EditView.cpp:1445 +#, fuzzy +msgid "Doubling durations..." +msgstr "Gosod &Tempo i Barhad Cylchran Sain" + +#: ../src/gui/general/EditView.cpp:1469 +#, fuzzy +msgid "Rescaling..." +msgstr "Ail-&raddu..." + +#: ../src/gui/general/EditView.cpp:1489 +#, fuzzy +msgid "By number of semitones: " +msgstr "Mewnosod faint o hanner-tonau i drawsgyweirio:" + +#: ../src/gui/general/EditView.cpp:1496 ../src/gui/general/EditView.cpp:1518 +msgid "Transposing..." +msgstr "Trawsgyweirio..." + +#: ../src/gui/general/EditView.cpp:1536 +msgid "Transposing up one semitone..." +msgstr "Trawsgyweirio i fyny un hanner-ton..." + +#: ../src/gui/general/EditView.cpp:1545 +msgid "Transposing up one octave..." +msgstr "Trawsgyweirio i fyny un wythfed..." + +#: ../src/gui/general/EditView.cpp:1554 +msgid "Transposing down one semitone..." +msgstr "Trawsgyweirio i lawr un hanner-ton..." + +#: ../src/gui/general/EditView.cpp:1563 +msgid "Transposing down one octave..." +msgstr "Trawsgyweirio i lawr un wythfed..." + +#: ../src/gui/general/EditView.cpp:1575 +#, fuzzy +msgid "Inverting..." +msgstr "Dechrau..." + +#: ../src/gui/general/EditView.cpp:1587 +#, fuzzy +msgid "Retrograding..." +msgstr "Ail-&raddu..." + +#: ../src/gui/general/EditView.cpp:1599 +#, fuzzy +msgid "Retrograde inverting..." +msgstr "Ail-&raddu..." + +#: ../src/gui/general/EditView.cpp:1608 +#, fuzzy +msgid "Jogging left..." +msgstr "Cau'r ffeil..." + +#: ../src/gui/general/EditView.cpp:1623 +msgid "Jogging right..." +msgstr "" + +#: ../src/sound/AudioFileManager.cpp:660 +#, fuzzy, c-format +msgid "Downloading file %1" +msgstr "Methu lawrlwytho ffeil %1" + +#: ../src/sound/AudioFileManager.cpp:735 +#, fuzzy +msgid "Converting audio file..." +msgstr "Allforio ffeil sain ..." + +#: ../src/sound/AudioFileManager.cpp:737 +#, fuzzy +msgid "Resampling audio file..." +msgstr "Allforio ffeil sain ..." + +#: ../src/sound/AudioFileManager.cpp:739 +#, fuzzy +msgid "Converting and resampling audio file..." +msgstr "Allforio ffeil sain ..." + +#: ../src/sound/AudioFileManager.cpp:741 +#, fuzzy +msgid "Importing audio file..." +msgstr "Allforio ffeil sain ..." + +#: ../src/sound/AudioFileManager.cpp:794 +#, fuzzy +msgid "Failed to convert or resample audio file on import" +msgstr "Dewis un neu mwy o Ffeiliau Sain" + +#: ../src/sequencer/main.cpp:46 ../src/sequencer/main.cpp:86 +#, fuzzy +msgid "RosegardenSequencer" +msgstr "Rheolydd Ffeiliau Sain Rosegarden" + +#: ../src/sequencer/main.cpp:54 +#, fuzzy +msgid "JACK playback and capture ports" +msgstr "Hwyrni chwarae JACK (mewn ms)" + +#: ../src/commands/segment/SegmentSyncCommand.cpp:38 +#: ../src/commands/segment/SegmentSyncCommand.cpp:44 +#: ../src/commands/segment/SegmentSyncCommand.cpp:55 +#: ../src/commands/segment/SegmentSyncCommand.cpp:63 +#, fuzzy +msgid "Sync segment parameters" +msgstr "Paramedrau Cylchrannau" + +#: ../src/commands/segment/RenameTrackCommand.h:52 +#, fuzzy +msgid "Rename Track" +msgstr "Ail-enwi Dyfais" + +#: ../src/commands/segment/SegmentRepeatToCopyCommand.cpp:39 +msgid "Turn Repeats into Copies" +msgstr "Trosi Ailadroddion i mewn i Gopiau" + +#: ../src/commands/segment/SegmentTransposeCommand.cpp:36 +#: ../src/commands/segment/SegmentTransposeCommand.cpp:42 +#, fuzzy +msgid "Change segment transposition" +msgstr "Newid Lliw'r Gylchran" + +#: ../src/commands/edit/RescaleCommand.h:50 +#: ../src/commands/segment/AudioSegmentRescaleCommand.h:62 +#: ../src/commands/segment/SegmentRescaleCommand.h:58 +msgid "Stretch or S&quash..." +msgstr "" + +#: ../src/commands/segment/SegmentLabelCommand.h:52 +msgid "Re&label..." +msgstr "Ail-&labelu..." + +#: ../src/commands/segment/AudioSegmentResizeFromStartCommand.cpp:39 +#: ../src/commands/segment/SegmentResizeFromStartCommand.cpp:39 +#, fuzzy +msgid "Resize Segment" +msgstr "Ail-feintio Digwyddiad" + +#: ../src/commands/segment/RemoveTempoChangeCommand.h:58 +msgid "Remove &Tempo Change..." +msgstr "Gwaredu Newid &Tempo..." + +#: ../src/commands/segment/SegmentEraseCommand.cpp:40 +#: ../src/commands/segment/SegmentEraseCommand.cpp:52 +msgid "Erase Segment" +msgstr "Dileu Cylchran" + +#: ../src/commands/segment/AudioSegmentRescaleCommand.cpp:126 +#: ../src/commands/segment/SegmentRescaleCommand.cpp:102 +#, fuzzy +msgid "(rescaled)" +msgstr "%1 (wedi'i ail-raddu)" + +#: ../src/commands/segment/AudioSegmentRescaleCommand.cpp:127 +#: ../src/commands/segment/SegmentRescaleCommand.cpp:105 +msgid "%1 (rescaled)" +msgstr "%1 (wedi'i ail-raddu)" + +#: ../src/commands/segment/PasteToTriggerSegmentCommand.cpp:47 +msgid "Paste as New Triggered Segment" +msgstr "" + +#: ../src/commands/segment/SegmentColourMapCommand.h:52 +msgid "Change Segment Color Map..." +msgstr "Newid Map Lliw'r Gylchran..." + +#: ../src/commands/segment/SegmentQuickCopyCommand.h:55 +msgid "Quick-Copy Segment" +msgstr "Brys-gopio Cylchran" + +#: ../src/commands/segment/AudioSegmentSplitCommand.cpp:42 +msgid "Split Audio Segment" +msgstr "Hollti Cylchran Sain" + +#: ../src/commands/segment/AudioSegmentSplitCommand.cpp:103 +#: ../src/commands/segment/SegmentSplitCommand.cpp:135 +#, fuzzy +msgid " (split)" +msgstr "%1 (wedi'i hollti)" + +#: ../src/commands/segment/AudioSegmentSplitCommand.cpp:104 +#: ../src/commands/segment/SegmentSplitByRecordingSrcCommand.cpp:120 +#: ../src/commands/segment/SegmentSplitByRecordingSrcCommand.cpp:122 +#: ../src/commands/segment/SegmentSplitCommand.cpp:136 +msgid "%1 (split)" +msgstr "%1 (wedi'i hollti)" + +#: ../src/commands/segment/SegmentLabelCommand.cpp:40 +msgid "Label Segments" +msgstr "Labelu Cylchrannau" + +#: ../src/commands/segment/OpenOrCloseRangeCommand.cpp:43 +msgid "Open or Close Range" +msgstr "" + +#: ../src/commands/edit/TransposeCommand.h:55 +#: ../src/commands/segment/SegmentTransposeCommand.h:54 +#, fuzzy +msgid "Transpose by &Interval..." +msgstr "&Trawsgyweirio..." + +#: ../src/commands/segment/SegmentAutoSplitCommand.cpp:148 +msgid "%1 (part)" +msgstr "%1 (rhan)" + +#: ../src/commands/segment/AudioSegmentInsertCommand.cpp:51 +#: ../src/commands/segment/SegmentInsertCommand.cpp:43 +#: ../src/commands/segment/SegmentInsertCommand.cpp:56 +msgid "Create Segment" +msgstr "Creu Cylchran" + +#: ../src/commands/segment/AudioSegmentInsertCommand.cpp:114 +msgid "%1 (inserted)" +msgstr "%1 (wedi ei rhyngosod)" + +#: ../src/commands/segment/AudioSegmentInsertCommand.cpp:117 +msgid "unknown audio file" +msgstr "ffeil sain anhysbys" + +#: ../src/commands/segment/CreateTempoMapFromSegmentCommand.cpp:40 +#, fuzzy +msgid "Set Tempos from Beat Segment" +msgstr "Gosod &Tempo i Barhad Cylchran Sain" + +#: ../src/commands/segment/SegmentSplitByRecordingSrcCommand.h:52 +#, fuzzy +msgid "Split by &Recording Source..." +msgstr "Hollti gan &Draw..." + +#: ../src/commands/segment/SegmentColourMapCommand.cpp:40 +msgid "Change Segment Color Map" +msgstr "Newid Map Lliw'r Gylchran" + +#: ../src/commands/edit/CopyCommand.cpp:64 +#: ../src/commands/segment/SegmentQuickCopyCommand.cpp:57 +msgid "%1 (copied)" +msgstr "%1 (wedi'i gopio)" + +#: ../src/commands/segment/SegmentColourCommand.h:52 +msgid "Change Segment Color..." +msgstr "Newid Lliw'r Gylchran..." + +#: ../src/commands/segment/SegmentSplitByPitchCommand.cpp:170 +msgid "%1 (upper)" +msgstr "%1 (uwch)" + +#: ../src/commands/segment/SegmentSplitByPitchCommand.cpp:172 +msgid "%1 (lower)" +msgstr "%1 (is)" + +#: ../src/commands/segment/SegmentSingleRepeatToCopyCommand.cpp:39 +msgid "Turn Single Repeat into Copy" +msgstr "Trosi Ailadrodd Sengl i mewn i Gopi" + +#: ../src/commands/segment/AddTempoChangeCommand.h:58 +msgid "Add Te&mpo Change..." +msgstr "Ychwanegu Newid Te&mpo..." + +#: ../src/commands/segment/AudioSegmentAutoSplitCommand.h:57 +#: ../src/commands/segment/SegmentAutoSplitCommand.h:53 +msgid "&Split on Silence" +msgstr "&Hollti ar Ddistawrwydd" + +#: ../src/commands/segment/SetTriggerSegmentBaseVelocityCommand.cpp:39 +#, fuzzy +msgid "Set Base Velocity" +msgstr "&Cynyddu Buanedd" + +#: ../src/commands/segment/DeleteRangeCommand.cpp:43 +#: ../src/commands/segment/EraseSegmentsStartingInRangeCommand.cpp:39 +#, fuzzy +msgid "Delete Range" +msgstr "Di&leu" + +#: ../src/commands/segment/ChangeCompositionLengthCommand.h:53 +#, fuzzy +msgid "Change &Composition Start and End..." +msgstr "Newid Parhad y &Cyfansoddiad..." + +#: ../src/commands/segment/MoveTracksCommand.h:51 +msgid "Move Tracks..." +msgstr "Symud Traciau..." + +#: ../src/commands/segment/SegmentColourCommand.cpp:39 +msgid "Change Segment Color" +msgstr "Newid Lliw'r Gylchran" + +#: ../src/commands/segment/AudioSegmentDistributeCommand.h:66 +msgid "Distribute Audio Segments over MIDI" +msgstr "" + +#: ../src/commands/segment/AudioSegmentAutoSplitCommand.cpp:147 +msgid "%1 (autosplit %2)" +msgstr "%1 (hunan-hollti %2)" + +#: ../src/commands/segment/SetTriggerSegmentDefaultRetuneCommand.cpp:39 +#, fuzzy +msgid "Set Default Retune" +msgstr "Gwerth rhagosod:" + +#: ../src/commands/segment/AddTimeSignatureCommand.h:52 +msgid "Add Time Si&gnature Change..." +msgstr "Ychwanegu Newid Ar&wydd Amseriad..." + +#: ../src/commands/segment/AddTriggerSegmentCommand.cpp:42 +#, fuzzy +msgid "Add Triggered Segment" +msgstr "Creu Cylchran" + +#: ../src/commands/segment/SetTriggerSegmentDefaultTimeAdjustCommand.cpp:39 +msgid "Set Default Time Adjust" +msgstr "" + +#: ../src/commands/segment/RemoveTimeSignatureCommand.h:58 +#, fuzzy +msgid "Remove &Time Signature Change..." +msgstr "Ychwanegu Newid Ar&wydd Amseriad..." + +#: ../src/commands/segment/SegmentCommandRepeat.cpp:39 +msgid "Repeat Segments" +msgstr "Ailadrodd Cylchrannau" + +#: ../src/commands/segment/AddTracksCommand.h:55 +msgid "Add Tracks..." +msgstr "Ychwanegu Traciau..." + +#: ../src/commands/segment/ModifyDefaultTempoCommand.h:51 +msgid "Modify &Default Tempo..." +msgstr "Addasu Tempo Rhag&osodedig..." + +#: ../src/commands/segment/SegmentSplitByPitchCommand.h:61 +msgid "Split by &Pitch..." +msgstr "Hollti gan &Draw..." + +#: ../src/commands/segment/DeleteTriggerSegmentCommand.cpp:40 +msgid "Delete Triggered Segment" +msgstr "" + +#: ../src/commands/segment/SegmentSplitCommand.cpp:42 +msgid "Split Segment" +msgstr "Hollti Cylchran" + +#: ../src/commands/segment/DeleteTracksCommand.h:51 +msgid "Delete Tracks..." +msgstr "Dileu Traciau..." + +#: ../src/commands/segment/InsertRangeCommand.cpp:42 +#, fuzzy +msgid "Insert Range" +msgstr "Mewnosod Saib" + +#: ../src/commands/segment/DeleteRangeCommand.h:62 +msgid "Rejoin Command" +msgstr "" + +#: ../src/commands/segment/SetTriggerSegmentBasePitchCommand.cpp:39 +#, fuzzy +msgid "Set Base Pitch" +msgstr "Hollti gan Draw" + +#: ../src/commands/segment/PasteConductorDataCommand.cpp:41 +#, fuzzy +msgid "Paste Tempos and Time Signatures" +msgstr "Agor yn y Golygydd Digwyddiadau" + +#: ../src/commands/segment/SegmentSyncClefCommand.cpp:34 +#, fuzzy +msgid "Sync segment clef" +msgstr "Addasu label Cylchran" + +#: ../src/commands/matrix/MatrixInsertionCommand.cpp:46 +#: ../src/commands/notation/NoteInsertionCommand.cpp:54 +msgid "Insert Note" +msgstr "Mewnosod Nodyn" + +#: ../src/commands/matrix/MatrixEraseCommand.cpp:41 +msgid "Erase Note" +msgstr "Dileu Nodyn" + +#: ../src/commands/matrix/MatrixPercussionInsertionCommand.cpp:47 +#, fuzzy +msgid "Insert Percussion Note" +msgstr "Mewnosod Nodyn" + +#: ../src/commands/matrix/MatrixModifyCommand.cpp:43 +msgid "Move Note" +msgstr "Symud Nodyn" + +#: ../src/commands/matrix/MatrixModifyCommand.cpp:43 +msgid "Modify Note" +msgstr "Addasu Nodyn" + +#: ../src/commands/edit/PasteEventsCommand.cpp:98 +msgid "Paste into an existing gap [\"restricted\"]" +msgstr "Gludo i mewn i fwlch sy'n bodoli [\"cyfyngedig\"]" + +#: ../src/commands/edit/PasteEventsCommand.cpp:100 +msgid "Erase existing events to make room [\"simple\"]" +msgstr "Dileu digwyddiadau sy'n bodoli er mwyn creu lle [\"syml\"]" + +#: ../src/commands/edit/PasteEventsCommand.cpp:102 +msgid "Move existing events out of the way [\"open-n-paste\"]" +msgstr "Symud digwyddiadau sy'n bodoli allan o'r ffordd [\"agor-a-gludo\"]" + +#: ../src/commands/edit/PasteEventsCommand.cpp:104 +msgid "Overlay notes, tying against present notes [\"note-overlay\"]" +msgstr "" +"Trosgaenu nodau, gan glymu yn erbyn nodau presennol [\"trosgaen-nodau\"]" + +#: ../src/commands/edit/PasteEventsCommand.cpp:106 +msgid "Overlay notes, ignoring present notes [\"matrix-overlay\"]" +msgstr "Trosgaenu nodau, gan anywbyddu nodau presennol [\"trosgaen-matrics\"]" + +#: ../src/commands/edit/AddDotCommand.h:52 +#, fuzzy +msgid "&Add Dot" +msgstr "Ychwanegu %1" + +#: ../src/commands/edit/RemoveMarkerCommand.h:55 +msgid "&Remove Marker" +msgstr "&Gwaredu Arwydd" + +#: ../src/commands/edit/EventUnquantizeCommand.cpp:43 +#: ../src/commands/edit/EventUnquantizeCommand.cpp:54 +msgid "Unquantize Events" +msgstr "Dad-gwanteiddio Digwyddiadau" + +#: ../src/commands/edit/ChangeVelocityCommand.h:53 +msgid "&Increase Velocity" +msgstr "&Cynyddu Buanedd" + +#: ../src/commands/edit/ChangeVelocityCommand.h:54 +msgid "&Reduce Velocity" +msgstr "&Lleihau Buanedd" + +#: ../src/commands/edit/CopyCommand.cpp:46 +msgid "(excerpt)" +msgstr "(dyfyniad)" + +#: ../src/commands/edit/CopyCommand.cpp:60 +msgid "(copied)" +msgstr "(wedi'i gopio)" + +#: ../src/commands/edit/EventInsertionCommand.cpp:39 +msgid "Insert Event" +msgstr "Mewnosod Digwyddiad" + +#: ../src/commands/edit/InsertTriggerNoteCommand.cpp:55 +#, fuzzy +msgid "Insert Trigger Note" +msgstr "Mewnosod Nodyn" + +#: ../src/commands/edit/CollapseNotesCommand.h:50 +msgid "Collapse &Equal-Pitch Notes" +msgstr "Dat-ehangu &Nodau Hafal-Draw" + +#: ../src/commands/edit/TransposeCommand.h:61 +msgid "&Up a Semitone" +msgstr "I &Fyny Hanner-ton" + +#: ../src/commands/edit/TransposeCommand.h:62 +msgid "&Down a Semitone" +msgstr "I &Lawr Hanner-ton" + +#: ../src/commands/edit/TransposeCommand.h:63 +msgid "Up an &Octave" +msgstr "I Fyny &Wythfed" + +#: ../src/commands/edit/TransposeCommand.h:64 +msgid "Down an Octa&ve" +msgstr "I lawr Wyth&fed" + +#: ../src/commands/edit/TransposeCommand.h:65 +#, fuzzy +msgid "&Transpose by Semitones..." +msgstr "Trawsgyweirio i fyny un hanner-ton..." + +#: ../src/commands/edit/SetNoteTypeCommand.h:56 +#, fuzzy +msgid "&Set Note Type" +msgstr "&Mewnosod nodyn" + +#: ../src/commands/edit/EventEditCommand.h:55 +msgid "Edit E&vent" +msgstr "Golygu Di&gwyddiad" + +#: ../src/commands/edit/AddMarkerCommand.h:54 +msgid "&Add Marker" +msgstr "Ychwanegu &Arwydd" + +#: ../src/commands/edit/SelectionPropertyCommand.h:66 +msgid "Set &Property" +msgstr "Gosod &Priodwedd" + +#: ../src/commands/edit/CutCommand.h:55 +msgid "Cu&t" +msgstr "To&rri" + +#: ../src/commands/edit/EventQuantizeCommand.cpp:114 +msgid "Heuristic Notation &Quantize" +msgstr "&Cwanteiddio Nodiant Darganfyddol" + +#: ../src/commands/edit/EventQuantizeCommand.cpp:116 +msgid "Grid &Quantize" +msgstr "C&wanteiddio Rhwydell" + +#: ../src/commands/edit/ClearTriggersCommand.h:52 +#, fuzzy +msgid "&Clear Triggers" +msgstr "Gwaredu'r Dewisiad" + +#: ../src/commands/edit/RetrogradeCommand.h:51 +#, fuzzy +msgid "&Retrograde" +msgstr "&Recordio" + +#: ../src/commands/edit/InvertCommand.h:51 +#, fuzzy +msgid "&Invert" +msgstr "Cil&droi" + +#: ../src/commands/edit/SetTriggerCommand.h:64 +#, fuzzy +msgid "Tri&gger Segment" +msgstr "Dileu Cylchran" + +#: ../src/commands/edit/SetLyricsCommand.h:50 +msgid "Edit L&yrics" +msgstr "Golygu &Geiriau" + +#: ../src/commands/edit/MoveAcrossSegmentsCommand.cpp:73 +#, fuzzy +msgid "&Move Events to Other Segment" +msgstr "Wedi cael digwyddiad tu allan o Gylchran" + +#: ../src/commands/edit/RetrogradeInvertCommand.h:51 +msgid "Re&trograde Invert" +msgstr "" + +#: ../src/commands/edit/ModifyMarkerCommand.h:55 +msgid "&Modify Marker" +msgstr "Addasu A&rwydd" + +#: ../src/commands/studio/AddControlParameterCommand.h:61 +msgid "&Add Control Parameter" +msgstr "&Ychwanegu Paramedr Rheoli" + +#: ../src/commands/studio/ModifyInstrumentMappingCommand.h:55 +msgid "Modify &Instrument Mapping" +msgstr "Addasu Mapio &Offeryn " + +#: ../src/commands/studio/RemoveControlParameterCommand.h:60 +msgid "&Remove Control Parameter" +msgstr "Dil&eu Paramedr Rheoli" + +#: ../src/commands/studio/ReconnectDeviceCommand.h:55 +msgid "Reconnect Device" +msgstr "Ail-gysylltu Dyfais" + +#: ../src/commands/studio/ModifyDeviceCommand.h:68 +msgid "Modify &MIDI Bank" +msgstr "Addasu Rheng &MIDI" + +#: ../src/commands/studio/CreateOrDeleteDeviceCommand.h:68 +msgid "Create Device" +msgstr "Creu Dyfais" + +#: ../src/commands/studio/ModifyDeviceMappingCommand.h:55 +msgid "Modify &Device Mapping" +msgstr "Addasu Mapio &Dyfais" + +#: ../src/commands/studio/RenameDeviceCommand.h:55 +msgid "Rename Device" +msgstr "Ail-enwi Dyfais" + +#: ../src/commands/studio/ModifyControlParameterCommand.h:61 +msgid "&Modify Control Parameter" +msgstr "A&ddasu Paramedr Rheoli" + +#: ../src/commands/notation/TieNotesCommand.h:49 +#, fuzzy +msgid "&Tie" +msgstr "Amser" + +#: ../src/commands/notation/ClefInsertionCommand.cpp:74 +msgid "Add Cle&f Change..." +msgstr "Ychwanegu Newid Cle&ff..." + +#: ../src/commands/notation/GuitarChordInsertionCommand.cpp:40 +#, fuzzy +msgid "Insert Guitar Chord" +msgstr "Mewnosod Saib" + +#: ../src/commands/notation/RespellCommand.cpp:47 +#, c-format +msgid "Respell with %1" +msgstr "" + +#: ../src/commands/notation/RespellCommand.cpp:50 +msgid "Do&uble Sharp" +msgstr "Llon &Dwbl" + +#: ../src/commands/notation/RespellCommand.cpp:52 +msgid "&Sharp" +msgstr "&Llon" + +#: ../src/commands/notation/RespellCommand.cpp:54 +msgid "&Flat" +msgstr "Ll&eddf" + +#: ../src/commands/notation/RespellCommand.cpp:56 +msgid "Dou&ble Flat" +msgstr "Lledd&f dwbl" + +#: ../src/commands/notation/RespellCommand.cpp:58 +msgid "&Natural" +msgstr "&Naturiol" + +#: ../src/commands/notation/RespellCommand.cpp:60 +msgid "N&one" +msgstr "D&im" + +#: ../src/commands/notation/RespellCommand.cpp:66 +#, fuzzy +msgid "Respell Accidentals &Upward" +msgstr "Gorfod Hapnodau i F&yny" + +#: ../src/commands/notation/RespellCommand.cpp:69 +#, fuzzy +msgid "Respell Accidentals &Downward" +msgstr "Gorfod Hapnodau i La&wr" + +#: ../src/commands/notation/RespellCommand.cpp:72 +#, fuzzy +msgid "&Restore Accidentals" +msgstr "&Hapnodau" + +#: ../src/commands/notation/RespellCommand.cpp:75 +#, fuzzy +msgid "Respell Accidentals" +msgstr "Gorfod Hapnodau" + +#: ../src/commands/notation/DeCounterpointCommand.h:55 +msgid "Split-and-Tie Overlapping &Chords" +msgstr "Hollti-a-Chlymu &Cordiau sy'n Gorgyffwrdd" + +#: ../src/commands/notation/BeamCommand.h:49 +msgid "&Beam Group" +msgstr "Casgliad &Trawst" + +#: ../src/commands/notation/AddTextMarkCommand.h:51 +msgid "Add Te&xt Mark..." +msgstr "Ychwanegu Arwydd Te&stun..." + +#: ../src/commands/notation/RestoreSlursCommand.h:49 +#, fuzzy +msgid "&Restore Slur Positions" +msgstr "&Adfer Coesau a Gyfrifwyd" + +#: ../src/commands/notation/SustainInsertionCommand.h:56 +msgid "Add Pedal &Press" +msgstr "" + +#: ../src/commands/notation/SustainInsertionCommand.h:58 +msgid "Add Pedal &Release" +msgstr "" + +#: ../src/commands/notation/FixNotationQuantizeCommand.h:49 +msgid "Fi&x Notation Quantization" +msgstr "Trwsio &Cwanteiddio Nodiant" + +#: ../src/commands/notation/ChangeStemsCommand.h:51 +msgid "Stems &Up" +msgstr "Coesau I &Fyny" + +#: ../src/commands/notation/ChangeStemsCommand.h:51 +msgid "Stems &Down" +msgstr "Coesau I &Lawr" + +#: ../src/commands/notation/MakeAccidentalsCautionaryCommand.cpp:43 +#, fuzzy +msgid "Use &Cautionary Accidentals" +msgstr "&Adfer Hapnodau a Enrhifwyd" + +#: ../src/commands/notation/MakeAccidentalsCautionaryCommand.cpp:45 +#, fuzzy +msgid "Cancel C&autionary Accidentals" +msgstr "Gorfod &Hapnodau" + +#: ../src/commands/notation/SetVisibilityCommand.h:50 +#, fuzzy +msgid "Set Visibility" +msgstr "&Buanedd" + +#: ../src/commands/notation/ChangeStyleCommand.h:53 +msgid "Change &Note Style" +msgstr "Newid Arddull y &Nodau" + +#: ../src/commands/notation/TextInsertionCommand.cpp:41 +msgid "Insert Text" +msgstr "Mewnosod Testun" + +#: ../src/commands/notation/InterpretCommand.h:70 +msgid "&Interpret..." +msgstr "&Dehongli..." + +#: ../src/commands/notation/TupletCommand.h:53 +#, fuzzy +msgid "&Triplet" +msgstr "Tripled" + +#: ../src/commands/notation/TupletCommand.h:54 +#, fuzzy +msgid "Tu&plet..." +msgstr "&Plygyn..." + +#: ../src/commands/notation/UnTupletCommand.h:50 +msgid "&Untuplet" +msgstr "&Dat-wneud plygyn" + +#: ../src/commands/notation/CollapseRestsCommand.h:54 +msgid "&Collapse Rests" +msgstr "&Dat-ehangu Seibiau" + +#: ../src/commands/notation/AddIndicationCommand.cpp:145 +msgid "Add S&lur" +msgstr "Ychwanegu &Llithriad" + +#: ../src/commands/notation/AddIndicationCommand.cpp:147 +#, fuzzy +msgid "Add &Phrasing Slur" +msgstr "Ychwanegu llithriad..." + +#: ../src/commands/notation/AddIndicationCommand.cpp:149 +msgid "Add Double-Octave Up" +msgstr "" + +#: ../src/commands/notation/AddIndicationCommand.cpp:151 +msgid "Add Octave &Up" +msgstr "" + +#: ../src/commands/notation/AddIndicationCommand.cpp:153 +msgid "Add Octave &Down" +msgstr "" + +#: ../src/commands/notation/AddIndicationCommand.cpp:155 +msgid "Add Double Octave Down" +msgstr "" + +#: ../src/commands/notation/AddIndicationCommand.cpp:160 +#, fuzzy +msgid "Add &Crescendo" +msgstr "Ychwanegu crescendo..." + +#: ../src/commands/notation/AddIndicationCommand.cpp:162 +#, fuzzy +msgid "Add &Decrescendo" +msgstr "Ychwanegu decrescendo..." + +#: ../src/commands/notation/AddIndicationCommand.cpp:164 +#, fuzzy +msgid "Add &Glissando" +msgstr "Ychwanegu crescendo..." + +#: ../src/commands/notation/AddIndicationCommand.cpp:167 +msgid "Add &%1%2" +msgstr "Ychwanegu &%1%2" + +#: ../src/commands/notation/RemoveNotationQuantizeCommand.h:49 +#, fuzzy +msgid "Remo&ve Notation Quantization" +msgstr "Trwsio &Cwanteiddio Nodiant" + +#: ../src/commands/notation/MakeChordCommand.h:50 +#, fuzzy +msgid "Make &Chord" +msgstr "Cord" + +#: ../src/commands/notation/MultiKeyInsertionCommand.h:63 +msgid "Change all to &Key %1..." +msgstr "Newid popeth i &Gywair %1..." + +#: ../src/commands/notation/KeyInsertionCommand.h:67 +#: ../src/commands/notation/MultiKeyInsertionCommand.h:65 +msgid "Add &Key Change..." +msgstr "Ychwanegu &Newid Cywair..." + +#: ../src/commands/notation/RestoreStemsCommand.h:49 +#, fuzzy +msgid "&Restore Stems" +msgstr "&Adfer Coesau a Gyfrifwyd" + +#: ../src/commands/notation/MakeNotesViableCommand.h:55 +#: ../src/commands/notation/MakeRegionViableCommand.h:52 +msgid "Tie Notes at &Barlines" +msgstr "Clymu Nodau wrth Li&nellau Bar" + +#: ../src/commands/notation/AddSlashesCommand.h:46 +msgid "Slashes" +msgstr "Slaesau" + +#: ../src/commands/notation/ChangeSlurPositionCommand.h:51 +msgid "Slur &Above" +msgstr "" + +#: ../src/commands/notation/ChangeSlurPositionCommand.h:51 +msgid "Slur &Below" +msgstr "" + +#: ../src/commands/notation/NormalizeRestsCommand.h:54 +msgid "&Normalize Rests" +msgstr "&Normaleiddio Seibiau" + +#: ../src/commands/notation/TextChangeCommand.cpp:41 +#, fuzzy +msgid "Edit Text" +msgstr "Golygu Digwyddiad" + +#: ../src/commands/notation/RemoveMarksCommand.h:49 +msgid "&Remove All Marks" +msgstr "&Gwaredu Pob Arwydd" + +#: ../src/commands/notation/AutoBeamCommand.h:52 +msgid "&Auto-Beam" +msgstr "&Hunan-Drawstio" + +#: ../src/commands/notation/UntieNotesCommand.h:49 +#, fuzzy +msgid "&Untie" +msgstr "Dad-&glymu Nodau" + +#: ../src/commands/notation/AddMarkCommand.cpp:48 +msgid "S&forzando" +msgstr "S&forzando" + +#: ../src/commands/notation/AddMarkCommand.cpp:50 +msgid "Sta&ccato" +msgstr "Sta&ccato" + +#: ../src/commands/notation/AddMarkCommand.cpp:52 +msgid "R&inforzando" +msgstr "R&inforzando" + +#: ../src/commands/notation/AddMarkCommand.cpp:54 +msgid "T&enuto" +msgstr "T&enuto" + +#: ../src/commands/notation/AddMarkCommand.cpp:56 +msgid "Tri&ll" +msgstr "&Siglnod" + +#: ../src/commands/notation/AddMarkCommand.cpp:58 +msgid "Trill &with Line" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:60 +#, fuzzy +msgid "Trill Line" +msgstr "&Siglnod" + +#: ../src/commands/notation/AddMarkCommand.cpp:62 +msgid "&Turn" +msgstr "&Tro" + +#: ../src/commands/notation/AddMarkCommand.cpp:64 +msgid "&Accent" +msgstr "&Acen" + +#: ../src/commands/notation/AddMarkCommand.cpp:66 +msgid "&Staccatissimo" +msgstr "&Staccatissimo" + +#: ../src/commands/notation/AddMarkCommand.cpp:68 +msgid "&Marcato" +msgstr "&Marcato" + +#: ../src/commands/notation/AddMarkCommand.cpp:70 +msgid "&Pause" +msgstr "&Saib" + +#: ../src/commands/notation/AddMarkCommand.cpp:72 +msgid "&Up-Bow" +msgstr "Bwa I &Fyny" + +#: ../src/commands/notation/AddMarkCommand.cpp:74 +msgid "&Down-Bow" +msgstr "Bwa I &Lawr" + +#: ../src/commands/notation/AddMarkCommand.cpp:76 +msgid "Mo&rdent" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:78 +#, fuzzy +msgid "Inverted Mordent" +msgstr "Mewnosod Digwyddiad" + +#: ../src/commands/notation/AddMarkCommand.cpp:80 +msgid "Long Mordent" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:82 +#, fuzzy +msgid "Lon&g Inverted Mordent" +msgstr "Modd Mewnosod &Cord" + +#: ../src/commands/notation/AddMarkCommand.cpp:84 +msgid "&%1%2" +msgstr "&%1%2" + +#: ../src/commands/notation/AddMarkCommand.cpp:89 +#, c-format +msgid "Add %1" +msgstr "Ychwanegu %1" + +#: ../src/commands/notation/ResetDisplacementsCommand.h:49 +#, fuzzy +msgid "Restore Positions" +msgstr "&Adfer Coesau a Gyfrifwyd" + +#: ../src/commands/notation/IncrementDisplacementsCommand.h:52 +#, fuzzy +msgid "Fine Reposition" +msgstr "Lleoliad y cyrchydd" + +#: ../src/commands/notation/RestoreTiesCommand.h:49 +#, fuzzy +msgid "&Restore Tie Positions" +msgstr "&Adfer Coesau a Gyfrifwyd" + +#: ../src/commands/notation/ChangeTiePositionCommand.h:47 +msgid "Tie &Above" +msgstr "" + +#: ../src/commands/notation/ChangeTiePositionCommand.h:47 +msgid "Tie &Below" +msgstr "" + +#: ../src/commands/notation/KeyInsertionCommand.h:65 +msgid "Change to &Key %1..." +msgstr "Newid i &Gywair %1..." + +#: ../src/commands/notation/RemoveFingeringMarksCommand.h:49 +#, fuzzy +msgid "&Remove Fingerings" +msgstr "&Gwaredu Arwydd" + +#: ../src/commands/notation/BreakCommand.h:49 +msgid "&Unbeam" +msgstr "&Dad-drawstio" + +#: ../src/commands/notation/UnGraceCommand.h:48 +msgid "Ung&race" +msgstr "Dat-wneud Addu&rnod" + +#: ../src/commands/notation/AddFingeringMarkCommand.cpp:45 +#, fuzzy +msgid "Add Other &Fingering..." +msgstr "Ychwanegu llithriad..." + +#: ../src/commands/notation/AddFingeringMarkCommand.cpp:47 +#, fuzzy +msgid "Add Fingering &0 (Thumb)" +msgstr "Ychwanegu llithriad..." + +#: ../src/commands/notation/AddFingeringMarkCommand.cpp:49 +#, fuzzy, c-format +msgid "Add Fingering &%1" +msgstr "Ychwanegu llithriad..." + +#: ../src/document/io/HydrogenXMLHandler.cpp:277 +msgid " imported from Hydrogen " +msgstr "" + +#: ../src/document/io/LilyPondExporter.cpp:404 +#, fuzzy +msgid "" +"LilyPond does not allow spaces or backslashes in filenames.\n" +"\n" +"Would you like to use\n" +"\n" +" %1\n" +"\n" +" instead?" +msgstr "" +"Nid yw Lilypond yn caniatau gofodnodau neu slaesau ol mewn enwau ffeiliau. " +"Fuasech chi'n hoffi defnyddio\n" +"\n" +"%1\n" +"\n" +"yn lle?" + +#: ../src/document/io/LilyPondExporter.cpp:2054 +msgid "warning: overlong bar truncated here" +msgstr "rhybudd: bar sy'n or-hir wedi'i dorri yma" + +#: ../src/document/io/LilyPondExporter.cpp:2060 +msgid "warning: bar too short, padding with rests" +msgstr "rhybudd: bar sy'n rhy gwta, wedi ei lenwi efo seibiau" + +#: ../src/document/MultiViewCommandHistory.cpp:318 +msgid "Nothing to undo" +msgstr "Dim byd i ddat-wneud" + +#: ../src/document/MultiViewCommandHistory.cpp:320 +msgid "Nothing to redo" +msgstr "Dim byd i ail-wneud" + +#: ../src/document/MultiViewCommandHistory.cpp:328 +#: ../src/document/MultiViewCommandHistory.cpp:372 +#, c-format +msgid "Und&o %1" +msgstr "Dat-&wneud %1" + +#: ../src/document/MultiViewCommandHistory.cpp:330 +#: ../src/document/MultiViewCommandHistory.cpp:374 +#, c-format +msgid "Re&do %1" +msgstr "Ail-w&neud %1" + +#: ../src/document/RosegardenGUIDoc.cpp:328 +msgid "" +"The current file has been modified.\n" +"Do you want to save it?" +msgstr "" +"Mae'r ffeil cyfredol wedi'i addasu.\n" +"Ydych eisiau ei gadw?" + +#: ../src/document/RosegardenGUIDoc.cpp:480 +#, c-format +msgid "" +"_n: Delete the 1 audio file recorded during the unsaved session?\n" +"Delete the %n audio files recorded during the unsaved session?" +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:501 +msgid "" +"The following audio files were recorded during this session but have been " +"unloaded\n" +"from the audio file manager, and so are no longer in use in the document you " +"are saving.\n" +"\n" +"You may want to clean up these files to save disk space.\n" +"\n" +"Please select any you wish to delete permanently from the hard disk.\n" +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:517 +#, c-format +msgid "" +"_n: About to delete 1 audio file permanently from the hard disk." +"
          There will be no way to recover this file.
          Are you sure?
          \n" +"\n" +"About to delete %n audio files permanently from the hard disk.
          There " +"will be no way to recover these files.
          Are you sure?
          " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:580 +msgid "Can't open file '%1'" +msgstr "Methu agor ffeil '%1'" + +#: ../src/document/RosegardenGUIDoc.cpp:585 +msgid "Reading file..." +msgstr "Darllen ffeil..." + +#: ../src/document/RosegardenGUIDoc.cpp:603 +#, fuzzy +msgid "Could not open Rosegarden file" +msgstr "Dim ffeil Rosegarden-4" + +#: ../src/document/RosegardenGUIDoc.cpp:641 +msgid "Error when parsing file '%1': \"%2\"" +msgstr "Gwall wrth ddosrannu '%1': \"%2\"" + +#: ../src/document/RosegardenGUIDoc.cpp:689 +msgid "Generating audio previews..." +msgstr "Creu rhagolygon sain..." + +#: ../src/document/RosegardenGUIDoc.cpp:721 +msgid "Merge" +msgstr "Cyfuno" + +#: ../src/document/RosegardenGUIDoc.cpp:1605 +msgid "File load cancelled" +msgstr "Diddymwyd Llwytho'r Ffeil" + +#: ../src/document/RosegardenGUIDoc.cpp:1625 +msgid "" +"

          Audio and plugins not available

          This composition uses audio files " +"or plugins, but Rosegarden is currently running without audio because the " +"JACK audio server was not available on startup.

          Please exit " +"Rosegarden, start the JACK audio server and re-start Rosegarden if you wish " +"to load this complete composition.

          WARNING: If you re-save this " +"composition, all audio and plugin data and settings in it will be lost.

          " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1628 +msgid "" +"

          Audio and plugins not available

          This composition uses audio files " +"or plugins, but you are running a version of Rosegarden that was compiled " +"without audio support.

          WARNING: If you re-save this composition " +"from this version of Rosegarden, all audio and plugin data and settings in " +"it will be lost.

          " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1665 +msgid "" +"

          Incorrect audio sample rate

          This composition contains audio files " +"that were recorded or imported with the audio server running at a different " +"sample rate (%1 Hz) from the current JACK server sample rate (%2 Hz).

          Rosegarden will play this composition at the correct speed, but any " +"audio files in it will probably sound awful.

          Please consider re-" +"starting the JACK server at the correct rate (%3 Hz) and re-loading this " +"composition before you do any more work with it.

          " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1675 +msgid "" +"

          Inconsistent audio sample rates

          This composition contains audio " +"files at more than one sample rate.

          Rosegarden will play them at the " +"correct speed, but any audio files that were recorded or imported at rates " +"different from the current JACK server sample rate (%1 Hz) will probably " +"sound awful.

          Please see the audio file manager dialog for more " +"details, and consider resampling any files that are at the wrong rate.

          " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1676 +#, fuzzy +msgid "Inconsistent sample rates" +msgstr "Priodweddau di-barhaol" + +#: ../src/document/RosegardenGUIDoc.cpp:1690 +msgid "" +"

          Plugins not found

          The following audio plugins could not be loaded:" +"

            " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1698 +msgid "
          • %1 (from %2)
          • " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1712 +#, fuzzy +msgid "" +"This file contains one or more old element types that are now deprecated.\n" +"Support for these elements may disappear in future versions of Rosegarden.\n" +"We recommend you re-save this file from this version of Rosegarden to ensure " +"that it can still be re-loaded in future versions." +msgstr "" +"Mae'r ffeil yma yn cynnwys un neu mwy o fathau hen elfen sy'n cael eu " +"dilorni rwan.\n" +"Efallai bydd cynnal i'r elfennau yma yn diflannu mewn fersiynau dyfodol o " +"Rosegarden.\n" +"Y peth gorau yw ail-gadw'r ffeil yma oddiwrth y fersiwn yma o Rosegarden, \n" +"er mwyn sicrhau y bydd o'n dal i gael ei ail-lwytho mewn fersiynau dyfodol." + +#: ../src/document/RosegardenGUIDoc.cpp:2207 +msgid "Insert Recorded MIDI" +msgstr "Mewnosod MIDI a Recordiwyd" + +#: ../src/document/RosegardenGUIDoc.cpp:2560 +msgid "%1 (recorded)" +msgstr "%1 (wedi'i recordio)" + +#: ../src/document/RoseXmlHandler.cpp:442 +msgid "" +"This file was written by Rosegarden %1, and it uses\n" +"a different file format that cannot be read by this version." +msgstr "" + +#: ../src/document/RoseXmlHandler.cpp:452 +msgid "" +"This file was written by Rosegarden %1, which is more recent than this " +"version.\n" +"There may be some incompatibilities with the file format." +msgstr "" + +#: ../src/document/RoseXmlHandler.cpp:1687 +#, fuzzy +msgid "Loading plugins..." +msgstr "Rhifo ategynnau..." + +#: rc.cpp:6 rc.cpp:144 +#, fuzzy, no-c-format +msgid "Se&gment" +msgstr "Cylch&rannau" + +#: rc.cpp:9 rc.cpp:84 rc.cpp:147 rc.cpp:303 +#, fuzzy, no-c-format +msgid "Edit &With" +msgstr "%1 Traw" + +#: rc.cpp:12 rc.cpp:21 rc.cpp:30 rc.cpp:39 rc.cpp:345 +#, no-c-format +msgid "Actions Toolbar" +msgstr "Bar Gweithrediadau" + +#: rc.cpp:15 rc.cpp:33 rc.cpp:129 rc.cpp:285 +#, fuzzy, no-c-format +msgid "Time Toolbar" +msgstr "Bar Chwyddo" + +#: rc.cpp:18 rc.cpp:36 rc.cpp:57 rc.cpp:63 rc.cpp:120 rc.cpp:243 rc.cpp:342 +#, no-c-format +msgid "Transport Toolbar" +msgstr "Bar Cludydd" + +#: rc.cpp:24 rc.cpp:42 rc.cpp:123 rc.cpp:348 +#, no-c-format +msgid "Zoom Toolbar" +msgstr "Bar Chwyddo" + +#: rc.cpp:45 rc.cpp:60 rc.cpp:99 rc.cpp:228 rc.cpp:327 +#, no-c-format +msgid "T&ransport" +msgstr "C&ludydd" + +#: rc.cpp:51 +#, fuzzy, no-c-format +msgid "Number of Stereo &Inputs" +msgstr "Nifer o fewnbynnau sain JACK" + +#: rc.cpp:54 +#, fuzzy, no-c-format +msgid "&Number of Submasters" +msgstr "Nifer o fewnbynnau sain JACK" + +#: rc.cpp:66 +#, no-c-format +msgid "&Import" +msgstr "&Mewnforio" + +#: rc.cpp:69 +#, no-c-format +msgid "&Merge" +msgstr "&Cyfuno" + +#: rc.cpp:72 +#, no-c-format +msgid "&Export" +msgstr "&Allforio" + +#: rc.cpp:75 rc.cpp:141 rc.cpp:297 +#, fuzzy, no-c-format +msgid "&Composition" +msgstr "Lleoliad y cyrchydd" + +#: rc.cpp:78 +#, no-c-format +msgid "&Studio" +msgstr "&Stiwdio" + +#: rc.cpp:81 +#, fuzzy, no-c-format +msgid "Se&gments" +msgstr "Cylch&rannau" + +#: rc.cpp:90 +#, no-c-format +msgid "Trac&ks" +msgstr "Tra&ciau" + +#: rc.cpp:93 +#, fuzzy, no-c-format +msgid "Set &Instrument" +msgstr "Gosod Offeryn" + +#: rc.cpp:102 rc.cpp:234 rc.cpp:333 +#, fuzzy, no-c-format +msgid "&Toolbars" +msgstr "Bar Ffontiau" + +#: rc.cpp:105 rc.cpp:237 rc.cpp:336 +#, fuzzy, no-c-format +msgid "&Rulers" +msgstr "Dangos Rhes&yddion" + +#: rc.cpp:111 rc.cpp:240 rc.cpp:339 +#, no-c-format +msgid "Tools Toolbar" +msgstr "Bar Offer" + +#: rc.cpp:114 +#, no-c-format +msgid "Tracks Toolbar" +msgstr "Bar Traciau" + +#: rc.cpp:117 +#, no-c-format +msgid "Editors Toolbar" +msgstr "Bar Golygyddion" + +#: rc.cpp:135 +#, fuzzy, no-c-format +msgid "&Layout Mode" +msgstr "Haenlun" + +#: rc.cpp:138 rc.cpp:294 +#, fuzzy, no-c-format +msgid "Add Event Ruler" +msgstr "Hidlen Ddigwyddiadau" + +#: rc.cpp:150 +#, fuzzy, no-c-format +msgid "N&ote" +msgstr "&Nodau" + +#: rc.cpp:153 +#, no-c-format +msgid "Mar&ks" +msgstr "Ar&wyddion" + +#: rc.cpp:156 +#, fuzzy, no-c-format +msgid "&Ornaments" +msgstr "Cylch&rannau" + +#: rc.cpp:159 +#, fuzzy, no-c-format +msgid "&Fingerings" +msgstr "Ychwanegu llithriad..." + +#: rc.cpp:162 +#, no-c-format +msgid "S&lashes" +msgstr "S&laesau" + +#: rc.cpp:165 rc.cpp:219 +#, no-c-format +msgid "&Accidentals" +msgstr "&Hapnodau" + +#: rc.cpp:168 +#, fuzzy, no-c-format +msgid "&Phrase" +msgstr "&Dileu" + +#: rc.cpp:171 +#, fuzzy, no-c-format +msgid "Slur &Position" +msgstr "Lleoliad y cyrchydd" + +#: rc.cpp:174 +#, fuzzy, no-c-format +msgid "Tie &Position" +msgstr "Lleoliad y cyrchydd" + +#: rc.cpp:177 +#, fuzzy, no-c-format +msgid "&Octaves" +msgstr "Wythfed &Is" + +#: rc.cpp:180 rc.cpp:306 +#, no-c-format +msgid "Ad&just" +msgstr "" + +#: rc.cpp:183 +#, fuzzy, no-c-format +msgid "R&ests" +msgstr "&Seibiau" + +#: rc.cpp:186 rc.cpp:213 +#, no-c-format +msgid "&Notes" +msgstr "&Nodau" + +#: rc.cpp:189 rc.cpp:309 +#, fuzzy, no-c-format +msgid "&Quantize" +msgstr "Cwanteiddio" + +#: rc.cpp:195 rc.cpp:315 +#, no-c-format +msgid "Trans&pose" +msgstr "Traws&gyweirio" + +#: rc.cpp:198 rc.cpp:318 +#, no-c-format +msgid "Convert" +msgstr "" + +#: rc.cpp:201 +#, fuzzy, no-c-format +msgid "&Fine Positioning" +msgstr "Lleoliad y cyrchydd" + +#: rc.cpp:204 +#, fuzzy, no-c-format +msgid "Fine Ti&ming" +msgstr "Ychwanegu llithriad..." + +#: rc.cpp:207 +#, fuzzy, no-c-format +msgid "&Visibility" +msgstr "&Buanedd" + +#: rc.cpp:216 +#, no-c-format +msgid "&Rests" +msgstr "&Seibiau" + +#: rc.cpp:222 +#, no-c-format +msgid "&Clefs" +msgstr "&Cleffau" + +#: rc.cpp:225 rc.cpp:324 +#, no-c-format +msgid "Local &Cursor" +msgstr "" + +#: rc.cpp:246 +#, no-c-format +msgid "Notes Toolbar" +msgstr "Bar Nodau" + +#: rc.cpp:249 +#, no-c-format +msgid "Rests Toolbar" +msgstr "Bar Seibiau" + +#: rc.cpp:252 +#, no-c-format +msgid "Clefs Toolbar" +msgstr "Bar Cleffau" + +#: rc.cpp:255 +#, no-c-format +msgid "Accidentals Toolbar" +msgstr "Bar Hapnodau" + +#: rc.cpp:258 +#, no-c-format +msgid "Group Toolbar" +msgstr "Bar Casgliadau" + +#: rc.cpp:261 +#, no-c-format +msgid "Marks Toolbar" +msgstr "Bar Arwyddion" + +#: rc.cpp:264 +#, no-c-format +msgid "Meta Toolbar" +msgstr "Bar Meta" + +#: rc.cpp:267 +#, no-c-format +msgid "Layout Toolbar" +msgstr "Bar Offer &Haenlunio" + +#: rc.cpp:270 rc.cpp:351 +#, fuzzy, no-c-format +msgid "Control Ruler actions" +msgstr "Rheolydd" + +#: rc.cpp:273 rc.cpp:354 +#, fuzzy, no-c-format +msgid "Property Ruler actions" +msgstr "Rheolydd" + +#: rc.cpp:276 +#, fuzzy, no-c-format +msgid "&Action" +msgstr "Cyfeiriad" + +#: rc.cpp:279 +#, fuzzy, no-c-format +msgid "General Toolbar" +msgstr "Bar Meta" + +#: rc.cpp:291 +#, no-c-format +msgid "&Grid" +msgstr "&Rhwydell" + +#: rc.cpp:300 +#, fuzzy, no-c-format +msgid "&Segment" +msgstr "Cylch&rannau" + +#: rc.cpp:361 +#, no-c-format +msgid "Hide additional controls" +msgstr "Cuddio rheolau ychwanegol" + +#: rc.cpp:365 +#, no-c-format +msgid "Panic Button" +msgstr "Botwm Dychryn" + +#: rc.cpp:368 +#, no-c-format +msgid "Resets all MIDI devices if you've got stuck notes" +msgstr "Ail-osod pob dyfais MIDI os mae ganddoch nodau glynedig" + +#: rc.cpp:375 +#, no-c-format +msgid "Provides a metronome click for you to play along with" +msgstr "Darparu clic metronom i chi chwarae ynghyd a fo" + +#: rc.cpp:378 +#, no-c-format +msgid "Shows MIDI activity in and out of Rosegarden" +msgstr "Dangos gweithgarwch MIDI i mewn ac allan o Rosegarden" + +#: rc.cpp:381 +#, no-c-format +msgid "IN" +msgstr "I MEWN" + +#: rc.cpp:384 +#, no-c-format +msgid "OUT" +msgstr "ALLAN" + +#: rc.cpp:387 rc.cpp:390 +#, no-c-format +msgid "NO EVENTS" +msgstr "DIM DIGWYDDIADAU" + +#: rc.cpp:397 +#, no-c-format +msgid "Record either MIDI or audio" +msgstr "Recordio ai MIDI neu sain" + +#: rc.cpp:401 +#, no-c-format +msgid "Loop" +msgstr "Dolen" + +#: rc.cpp:404 +#, no-c-format +msgid "Turn on and off the loop markers (if set)" +msgstr "Dangos a cuddio'r nodwyr dolen (os ar osod)" + +#: rc.cpp:411 +#, no-c-format +msgid "Mutes all but the currently selected track" +msgstr "Distewi pob un trac ond yr yn sydd wedi'i ddewis yn gyfredol" + +#: rc.cpp:415 +#, no-c-format +msgid "Start loop or range here" +msgstr "" + +#: rc.cpp:419 +#, no-c-format +msgid "End loop or range here" +msgstr "" + +#: rc.cpp:422 +#, no-c-format +msgid "SIG" +msgstr "SIG" + +#: rc.cpp:425 +#, no-c-format +msgid "DIV" +msgstr "DIV" + +#: rc.cpp:428 +#, no-c-format +msgid "/16" +msgstr "/16" + +#: rc.cpp:431 +#, no-c-format +msgid "TEMPO" +msgstr "TEMPO" + +#: rc.cpp:434 +#, no-c-format +msgid "END" +msgstr "DIWEDD" + +#: rc.cpp:437 +#, no-c-format +msgid "BAR" +msgstr "BAR" + +#: rc.cpp:441 +#, fuzzy, no-c-format +msgid "Switch between real time, musical time, and frame count" +msgstr "Newid rhwng amser gwir, amser cerddorol, a fframiau SMPTE" + +#: rc.cpp:445 +#, no-c-format +msgid "Show additional controls" +msgstr "Dangos rheolau ychwanegol" + +#: rc.cpp:449 +#, no-c-format +msgid "Rewind" +msgstr "Ail-ddirwyn" + +#: rc.cpp:452 +#, no-c-format +msgid "Moves the current pointer position back one bar." +msgstr "Symud lle'r pwyntydd cyfredol yn ol un far." + +#: rc.cpp:456 +#, no-c-format +msgid "Rewind to beginning" +msgstr "Ail-ddirwyn i'r dechrau" + +#: rc.cpp:459 +#, no-c-format +msgid "" +"Moves the pointer position to the start of the composition. (This may mean " +"going forwards if the pointer is currently before the start.)" +msgstr "" +"Symud lle y pwyntydd i ddechrau'r cyfansoddiad. (Gall hyn olygu symud " +"ymlaen os mae'r pwyntydd cyn y dechreuad ar hyn o bryd.)" + +#: rc.cpp:463 +#, no-c-format +msgid "Play/Pause" +msgstr "Chwarae/Seibio" + +#: rc.cpp:466 +#, no-c-format +msgid "" +"Plays from the current pointer position, or pauses playback if already in " +"progress." +msgstr "Chwarae o le y pwyntydd cyfredol, neu seibio chwarae os ar fynd." + +#: rc.cpp:473 +#, no-c-format +msgid "Stops playback or recording." +msgstr "Aros chwarae neu recordio." + +#: rc.cpp:477 +#, no-c-format +msgid "Fast forward" +msgstr "Brys ymlaen" + +#: rc.cpp:480 +#, no-c-format +msgid "Moves the current pointer position forwards one bar." +msgstr "Symud lle y pwyntydd cyfredol ymlaen un far." + +#: rc.cpp:484 +#, no-c-format +msgid "Fast forward to end" +msgstr "Brys ymlaen i'r diwedd" + +#: rc.cpp:487 +#, no-c-format +msgid "" +"Moves the pointer position to the end of the composition. (This may mean " +"going backwards if the pointer is already beyond the end.)" +msgstr "" +"Symud y pwyntydd i ddiwedd y cyfansoddiad. (Gall hyn olygu symud yn ol os " +"mae'r pwyntydd tu hwnt i'r diwedd yn barod.)" + +#: rc.cpp:491 +#, no-c-format +msgid "Display time to end" +msgstr "Dangos amser i'r diwedd" + +#: ../docs/en/tips.cpp:3 +msgid "" +"

            To configure a track to play using a particular instrument:

            \n" +"  * click on the track label and hold a moment
            \n" +"  * select an output device
            \n" +"  * select one of that device's available instruments (#1 - #16)" +"
            \n" +"  * adjust that instrument's output channel, program, bank, and\n" +"controllers via the instrument parameters box\n" +msgstr "" + +#: ../docs/en/tips.cpp:13 +msgid "" +"

            ...that Rosegarden has an autosave feature?

            \n" +"You can select your autosave interval from Settings->Configure\n" +"Rosegarden.

            \n" +"When something goes awry, such as a power outage or a Rosegarden crash\n" +"(unfortunately, it happens...) simply load the file you were working on, and " +"you'll be given the\n" +"option to load the autosaved version, or the unmodified original.

            \n" +msgstr "" +"

            ...bod Rosegarden efo nodwedd hunan-gadw?

            \n" +"Cewch ddewis eich ysbaid hunan-gadw oddiwrth Gosodiadau -> Ffurfweddu\n" +"Rosegarden.

            \n" +"Pan mae rhywbeth yn mynd o'i le, fel diffyg trydan neu chwalfa Rosegarden\n" +"(yn anffodus, mae'n digwydd...), 'sdim angen ond llwytho'r ffeil yr oeddwch " +"yn gweithio arno\n" +"ac mi fyddwch yn cael y dewisiad i lwytho'r fersiwn wedi'i hunan-gadw,\n" +"neu'r ffeil gwreiddiol heb ei addasu.

            \n" + +#: ../docs/en/tips.cpp:23 +msgid "" +"

            \n" +"...that you can save the current document as your default studio by using\n" +"Composition -> Studio -> Save Current Document as Default Studio?\n" +msgstr "" + +#: ../docs/en/tips.cpp:30 +msgid "" +"

            ...that your default studio is a complete Rosegarden composition that " +"gets\n" +"loaded every time you create a new document or import a MIDI file?

            \n" +msgstr "" +"

            ...bod eich stiwdio rhagosodedig yn gyfansoddiad cyfan Rosegarden " +"composition sy'n cael\n" +"ei lwytho bob tro yr ydych yn creu dogfen newydd neu yn mewnforio ffeil MIDI?" +"

            \n" + +#: ../docs/en/tips.cpp:36 +#, fuzzy +msgid "" +"

            ...that your default studio can contain instrument assignments, document " +"properties, LilyPond headers,\n" +"and many other things?

            The default studio is a complete Rosegarden " +"composition, so it can contain anything that you may wish to have available " +"in each\n" +"new document you create.

            \n" +msgstr "" +"

            Gan fod eich stiwdio rhagosodedig yn gyfansoddiad cyfan Rosegarden, mae'n " +"gallu\n" +"cynnwys neilltuadau offerynnau rhagosodedig, priodweddau dogfen, penodau " +"Lilypond,\n" +"a llawer o bethau eraill y byddwch eisiau fod ar gael o'r dechrau ym mhob\n" +"dogfen newydd yr ydych yn ei chreu.

            \n" + +#: ../docs/en/tips.cpp:43 +#, fuzzy +msgid "" +"

            ...that Rosegarden will detect and create a default connection for ALSA " +"soft\n" +"synth applications that are started after Rosegarden is already running?\n" +msgstr "" +"

            ...bydd Rosegarden yn darganfod a chreu cysylltiad rhagosodedig am " +"synthau-meddal ALSA\n" +"sy'n cael eu cychwyn ar ôl i Rosegarden ei hun gychwyn?

            \n" + +#: ../docs/en/tips.cpp:49 +msgid "" +"

            ...that you can make your default studio override that in every " +"Rosegarden composition you load?

            If your studio setup does not change " +"very often, and you would prefer for\n" +"the settings in your default studio to take precedence over whatever\n" +"studio is saved with any files you happen to load, you can make your studio " +"the default for everything using Settings -> Configure Rosegarden ->\n" +"MIDI -> Always use default studio when loading files.

            \n" +msgstr "" + +#: ../docs/en/tips.cpp:57 +msgid "" +"

            If you have accidentally recorded a segment so short that it does not\n" +"appear on the canvas, which you can only hear during subsequent recording\n" +"sessions, you can gain access to it by using Composition -> Change\n" +"Composition Start and End and then setting the composition to start at a " +"negative number.

            \n" +msgstr "" + +#: ../docs/en/tips.cpp:65 +#, fuzzy +msgid "" +"

            ...that if you place a note at the wrong pitch using the notation or " +"matrix editor, you can move it one semitone at a time with the up and down " +"arrow keys on your keyboard?

            \n" +msgstr "" +"

            ...os byddwch yn gosod nodyn wrth y traw anghywir gan ddefnyddio'r " +"golygydd nodiant, cewch ei symud un hanner-ton ar y pryd efo'r allweddau " +"saeth i fyny ac i lawr ar eich bysellfwrdd?

            \n" + +#: ../docs/en/tips.cpp:70 +msgid "" +"

            ...that you can toggle stem directions in the notation editor by " +"selecting\n" +"one or more notes and using Ctrl-PageUp and Ctrl-PageDown?

            \n" +msgstr "" +"

            ...y gallwch newid cyfeiriad coesau yn y golygydd nodiant gan ddewis\n" +"un neu mwy o nodau gan ddefnyddio Ctrl-PageUp a Ctrl-PageDown?

            \n" + +#: ../docs/en/tips.cpp:76 +msgid "" +"

            ...that you can change the accidental used for a note in the notation " +"editor (without changing the pitch of the note) by selecting\n" +"it and using the up and down arrow keys with both Ctrl and Shift pressed?\n" +msgstr "" +"

            ... y gallwch newid yr hapnod i'w ddefnyddio am nodyn yn y golygydd " +"nodiant (heb newid traw y nodyn) gan ei ddewis \n" +" a defnyddio'r allweddau saeth i fyny ac i lawr ar ôl gwasgu Ctrl a Shift " +"efo'u gilydd?

            \n" + +#: ../docs/en/tips.cpp:82 ../docs/en/tips.cpp:93 +msgid "" +"

            ...that you can hold down the Shift key while repositioning segments on " +"the\n" +"segment canvas in order to avoid the \"snap-to\" effect and exert finer " +"control?

            \n" +msgstr "" +"

            ...y gallwch wasgu'r allwedd Shift i lawr wrth ail-leoli cylchrannau ar " +"y\n" +"cynfas cylchran er mwyn osgoi'r effaith \"cipio-i\" a cael rheolaeth fainach?" +"

            \n" + +#: ../docs/en/tips.cpp:88 +msgid "" +"

            ...that you can use the arrow tool to draw, move, and resize segments and " +"events as well as to select them?

            Drag a segment or event block to " +"move it, drag the right edge of a block to resize it, and drag with the " +"middle mouse button pressed to draw a new segment or event.

            (Of " +"course, the dedicated draw, move and resize tools are still quicker for " +"repeated operations.)

            \n" +msgstr "" + +#: ../docs/en/tips.cpp:99 +#, fuzzy +msgid "" +"

            ...that you can hold down the Shift key while repositioning or resizing " +"events in the\n" +"matrix view in order to avoid the \"snap-to\" effect and exert finer control?" +"

            \n" +msgstr "" +"

            ...y gallwch wasgu'r allwedd Shift i lawr wrth ail-leoli cylchrannau ar " +"y\n" +"cynfas cylchran er mwyn osgoi'r effaith \"cipio-i\" a cael rheolaeth fainach?" +"

            \n" + +#: ../docs/en/tips.cpp:105 +msgid "" +"

            ...that you can edit multiple segments on multiple tracks simultaneously " +"in\n" +"the notation editor? Simply select the segments, then use Edit -> Open " +"in Notation Editor.

            \n" +msgstr "" +"

            ...y gallwch olygu cylchrannau lluosol ar draciau lluosol ar yr un pryd " +"yn\n" +"y golygydd nodiant? 'Sdim angen ond dewis y cylchrannau, ac wedyn defnyddio " +"Golygu -> Agor yn y Golygydd Nodiad.

            \n" + +#: ../docs/en/tips.cpp:111 +#, fuzzy +msgid "" +"

            ...that Rosegarden can export files for use by LilyPond, the high-quality " +"score typesetting system?

            \n" +"From the File menu, navigate to Export -> Export LilyPond File

            \n" +msgstr "" +"

            ...y gall Rosegarden allforio ffeiliau i'w cael eu defnyddio gan " +"Lilypond, y cysawd\n" +"ansawdd-uchel am gysodi sgoriau?\n" +"\n" +"O'r ddewislen Ffeil, ewch i Allforio -> Allforio Ffeil Lilypond

            \n" + +#: ../docs/en/tips.cpp:117 +#, fuzzy +msgid "" +"

            ...that Rosegarden can print via LilyPond, the high-quality score " +"typesetting system?

            \n" +"From the File menu, navigate to Preview with LilyPond. The " +"file\n" +"will be exported, rendered, and a preview will appear in KPDF, or one of\n" +"several other PDF viewers, where it can then be printed as well.

            \n" +msgstr "" +"

            ...y gall Rosegarden allforio ffeiliau i'w cael eu defnyddio gan " +"Lilypond, y cysawd\n" +"ansawdd-uchel am gysodi sgoriau?\n" +"\n" +"O'r ddewislen Ffeil, ewch i Allforio -> Allforio Ffeil Lilypond

            \n" + +#: ../docs/en/tips.cpp:125 +#, fuzzy +msgid "" +"

            ...that if you use the quantizer from within the notation view, you can " +"tell it to quantize only the timing used for notation -- making it possible " +"to have good looking notation and a human MIDI performance?

            \n" +msgstr "" +"

            ...os defnyddiwch y cwanteiddydd o tu mewn y golwg nodiant, gall " +"gwanteiddio dim ond yr amseriad sy'n cael ei defnyddio am nodiad -- sy'n " +"gwneud hi'n bosibl i gael nodiad sy'n edrych yn dda a perfformiad " +"MIDI hollol ddynol?

            \n" + +#: ../docs/en/tips.cpp:130 +msgid "" +"

            ...that you can change segment labels using the controls on the Segment " +"Parameters box\n" +"in the main window?

            \n" +msgstr "" +"

            ...y gallwch newid labeli cylchran gan ddefnyddio'r rheolaethau yn y " +"blwch Paramedrau Cylchran\n" +"yn y prif ffenestr?

            \n" + +#: ../docs/en/tips.cpp:136 +#, fuzzy +msgid "" +"

            ...that the number of tracks in new documents is based on the contents " +"of\n" +"your autoload.rg file?\n" +"

            \n" +"Whether you prefer to start with three tracks or 43, create a document that\n" +"contains the desired number of tracks, plus any other studio or document " +"properties settings\n" +"you wish to configure, and use Composition -> Studio -> Save Current " +"Document as Default\n" +"Studio to make this your new default.

            \n" +msgstr "" +"

            ...bod nifer y traciau mewn dogfennau newydd yn dibynnu ar gynnwys\n" +"eich ffeil autoload.rg?\n" +"\n" +"Dim bwys os byddwch yn hoffiannu dechrau efo 3 thrac neu 43, creuwch ddogfen " +"sy'n\n" +"cynnwys y nifer penodol o draciau, a unrhyw gosodiadau eraill yr ydych " +"eisiau\n" +"eu ffurfweddu am y stiwdio neu'r ddogfen, a defnyddiwch\n" +"Stiwdio -> Cadw'r Ddogfen Gyfredol fel Stiwdio Rhagosodedig er mwyn " +"gwneud hyn eich rhagosodiad newydd.

            \n" + +#: ../docs/en/tips.cpp:147 +msgid "" +"

            ...that you can change the name of a track by double clicking on the " +"label? (The\n" +"label must be visible for this to work.)

            \n" +msgstr "" +"

            ...y gallwch newid enw trac gan glicio dwywaith ar y label?\n" +"(Rhaid i'r label fod yn weladwy i hyn weithio.)

            \n" + +#: ../docs/en/tips.cpp:153 +#, fuzzy +msgid "" +"

            ...that you can configure what happens when you double-click on a segment?" +"

            Go to Settings -> Configure Rosegarden and choose your " +"preferred editing window under the Behaviour tab.

            \n" +msgstr "" +"

            ...y gallwch ffurfweddu be sy'n digwydd wrth ddwbl-glicio ar gylchran? " +"Ewch i Gosodiadau -> Ffurfweddu Rosegarden a dewiswch eich ffenestr " +"olygu ddymunol dan y tab Ymddygiad.

            \n" + +#: ../docs/en/tips.cpp:158 +#, fuzzy +msgid "" +"

            ...that Rosegarden is being developed as a community effort with\n" +"contributions from around the world?

            \n" +"The four most active developers live in London (England), Cannes, " +"Barcelona,\n" +"and... Christiansburg? (Christiansburg is a town of about 50,000 in\n" +"southwestern Virginia, USA.)

            \n" +"We have had contributors from elsewhere in the US, UK, Spain, Mexico, " +"Argentina, Germany,\n" +"Sweden, Russia, Japan, Finland, and Italy, just to name a few...

            \n" +msgstr "" +"

            ...bod Rosegarden yn cael ei ddatblygu fel ymdrech cymunedol\n" +"efo cyfraniadau o gydol y byd?

            \n" +"Mae'r prif ddatblygwyr yn byw yn y Deynas unedig a Ffrainc, ac rydym wedi " +"cael cyfrannwyr\n" +"o'r UD, Sbaen, yr Almaen, Rwsia, a gwledydd eraill...

            \n" + +#: ../docs/en/tips.cpp:169 +#, fuzzy +msgid "" +"

            ...that Rosegarden is available in Spanish, French, German, Russian, " +"Welsh, Swedish, Italian and Estonian\n" +"translations? (Just to name a few.)

            \n" +"If you're interested in translating Rosegarden to another language, drop us " +"a\n" +"line at rosegarden-devel@lists.sourceforge.net.

            \n" +msgstr "" +"

            ...bod Rosegarden ar gael ynn nghyfieithiadau Sbaeneg, Ffrangeg, " +"Almaeneg, Rwsieg, a Cymraeg?\n" +"

            \n" +"Os oes ganddoch ddidordeb mewn cyfieithu Rosegarden i iaith arall, " +"cysylltwch a ni wrth\n" +"rosegarden-devel@lists.sourceforge.net.

            \n" + +#: ../docs/en/tips.cpp:177 +#, fuzzy +msgid "" +"

            ...that you can change the total number of bars in the composition via\n" +"Composition -> Change Composition Start and End?

            \n" +msgstr "" +"

            ...y gallwch newid cyfanswm y bariau yn y cyfansoddiad drwy Golygu -> " +"Newid Parhad y Cyfansoddiad?

            \n" + +#: ../docs/en/tips.cpp:183 +msgid "" +"

            ...that you can see the difference between performance and display " +"duration\n" +"of duration-quantized notes in the notation editor?

            \n" +"Use Settings -> Show Raw Note Ruler to turn on this handy\n" +"feature.

            \n" +"Note that this feature does not work in page layout view.

            \n" +msgstr "" +"

            ...y gallwch weld y gwahaniaeth rhwng parhad perfformiad a parhad dangos " +"am nodau\n" +"sydd wedi cael cwanteiddio eu parhad yn y golygydd nodiant?

            \n" +"Defnyddiwch Gosodiadau -> Dangos Rhesydd Nodau Craidd\n" +"i alluogi'r nodwedd cyfleus yma.

            \n" +"Noder: nid yw'r nodwedd yma yn gweithio yn y golwg sy'n dangos haenlun y " +"dudalen.

            \n" + +#: ../docs/en/tips.cpp:192 +#, fuzzy +msgid "" +"

            ...that you can add tempo and time-signature changes by double-clicking " +"on the values displayed in the transport window or tempo rulers?

            \n" +msgstr "" +"

            ...y gallwch ychwanegu newidiadau tempo ac arwydd amseriad gan glicio " +"dwywaith ar y gwerthoedd sy'n cael eu dangos yn y ffenestr cludiant?

            \n" + +#: ../docs/en/tips.cpp:197 +#, fuzzy +msgid "" +"

            ...that the transport window can display musical time, sample frame " +"count, and a visual metronome as well as real time?

            Just click on the " +"small button at the extreme top left of the window.

            \n" +msgstr "" +"

            ...bod y ffenestr cludiant yn gallu dangos amser bar-a-curiad (amser " +"cerddorol) a fframiau 24-fps SMPTE frames wrth ymyl amser go iawn? 'Sdim " +"angen ond clicio ar y botwm bach wrth pen chwith y ffenestr.

            \n" + +#: ../docs/en/tips.cpp:202 +#, fuzzy +msgid "" +"

            ...that you can select all notes of a particular pitch in the matrix " +"view, by shift-clicking on that pitch on the piano keyboard at the left?" +"

            If you shift-click-drag, you can select whole ranges too.

            \n" +msgstr "" +"

            ...y gallwch ddewis pob nodyn o draw penodol yn y golwg matrics, gan " +"shift-glicio ar y traw yna ar y cyweirfwrdd piano wrth y chwith? Os byddwch " +"yn shift-glicio a tynnu, gallwch dewis amrediadau cyfan hefyd.

            \n" + +#: ../docs/en/tips.cpp:207 +#, fuzzy +msgid "" +"

            ...that you can set a loop in the main window by clicking-and-dragging on " +"the time ruler with Shift pressed?

            (If the ruler isn't visible, use " +"Settings -> Show Rulers.)

            \n" +msgstr "" +"

            ...y gallwch osod dolen yn y prif ffenestr gan glicio-a-llusgo ar y " +"rhesydd amseriad wrth wasgu Shift? (Os nad yw'r rhesydd yn weladwy, " +"defnyddiwch Gosodiadau -> Dangos Rhesyddion.)

            \n" + +#: ../docs/en/tips.cpp:212 +#, fuzzy +msgid "" +"

            ...that if you're editing a section in the matrix or notation view, you " +"can\n" +"set that section to loop while you edit it?

            Select it and use " +"Tools ->\n" +"Local Cursor -> Set Loop to Selection, then hit Play.



            \n" +"This feature does not work quite as well for compositions that include " +"sampled\n" +"audio.\n" +msgstr "" +"

            ...os rydych yn golygu rhan yn y golwg matrics neu nodiant, gallwch osod " +"y rhan yna i ddolennu wrth i chi ei olygu? Dewis y rhan a defnyddiwch " +"Symud -> Gosod Dolen i Ddewisiad, ac wedyn gwthio Chwarae.

            \n" + +#: ../docs/en/tips.cpp:221 +msgid "" +"

            ...if you have more than one note or controller event at the same time, " +"you\n" +"can use the [ and ] keys to flip the stack of events around on the " +"controller\n" +"and velocity rulers in order to bring the item you wish to adjust into\n" +"focus.

            \n" +msgstr "" + +#: ../docs/en/tips.cpp:229 +msgid "" +"

            ...that the notation view shows you notes using their display duration, " +"while the\n" +"matrix allows you to edit their performance duration?

            \n" +"Be careful with tied notes in the matrix. It is not apparent that they " +"are\n" +"tied, and if you split up a pair of tied notes, subsequent notation views " +"will\n" +"be confused and unhappy. This is an old bug that has been on our TODO list\n" +"for years. Sorry about that, folks. Patches welcome.\n" +"

            \n" +msgstr "" + +#: ../docs/en/tips.cpp:240 +msgid "" +"

            If you're working with a human performance and you need to insert some " +"new\n" +"notes, these new notes will sound for their entire written duration. To " +"blend\n" +"these new notes into a human performance, select them, then use Adjust -> " +"Interpret... \n" +"from the notation view to interpret any marks and massage their " +"performance\n" +"durations to something less mechanical.

            \n" +msgstr "" + +#: ../docs/en/tips.cpp:249 +msgid "" +"

            ...that Rosegarden can export certain things to LilyPond that it cannot " +"yet\n" +"display within its own native interface?

            These new directives can be " +"inserted\n" +"via the T text insert tool in the notation view.

            \n" +"Load the example files\n" +"lilypond-alternative-endings.rg and lilypond-directives.rg for " +"a\n" +"demonstration of how to use the new exportable directives.

            \n" +"Use File -> Preview with\n" +"LilyPond to see what they look like on the exported page.

            \n" +"Be sure to turn on\n" +"Settings -> Show LilyPond Directives and Show Annotations " +"within\n" +"the notation view.

            \n" +msgstr "" + +#: ../docs/en/tips.cpp:264 +msgid "" +"

            ...that Rosegarden has track parameters allowing you to Create " +"segments with: certain\n" +"properties by default?

            You can pre-select the clef, transposition, " +"colour, and specify\n" +"the highest and lowest playable notes (notes outside this range display in\n" +"red by default). Then draw a segment with the pencil, or record one, and " +"any\n" +"new segments created on this track will take these properties as segment\n" +"parameters.

            \n" +"These parameters do not apply to audio tracks.

            \n" +msgstr "" + +#: ../docs/en/tips.cpp:275 +msgid "" +"

            ...that Rosegarden has a database of preset parameters describing more " +"than 300\n" +"musical instruments from the real world, grouped into several convenient\n" +"categories?

            Each preset contains a clef, transposition, and playable " +"range\n" +"suggestions for both amateur and professional players.

            Click the\n" +"Load button in the new track parameters box to get started! (If " +"you\n" +"do not see a Load button, be sure your parameter panel is set for\n" +"tabbed mode, rather than stacked mode.)

            (Special thanks to " +"Magnus\n" +"Johansson for assembling this extraordinary database.)

            \n" +msgstr "" + +#: ../docs/en/tips.cpp:287 +msgid "" +"

            ...that when exporting to Lilypond, you can merge tracks that have the " +"same name onto a single staff?

            For example, if there are three voices " +"in a single part, write each\n" +"voice as an independent segment/staff, each on a separate track. Give all\n" +"three tracks the same name, and select [x] Merge tracks that have the " +"same\n" +"name from the options dialog that appears when you export to, or " +"preview\n" +"with LilyPond.

            \n" +"The tracks must have a non-default name for this to work.

            \n" +msgstr "" + +#: ../docs/en/tips.cpp:297 +msgid "" +" \t \n" +"

            ...that you can use the mouse wheel to scroll up and down, scroll left " +"and right, and zoom in and out?

            Just roll the wheel to scroll up or " +"down. Hold Alt as well to scroll left or right, or hold Ctrl to zoom in and " +"out.

            \t \n" +msgstr "" + +#: ../docs/en/tips.cpp:303 +msgid "" +" \t \n" +"

            ...that you can time-stretch an audio segment -- stretching or squashing " +"a\n" +"sample to a different duration without changing its pitch -- just by\n" +"dragging its right edge with the Ctrl key pressed?

            \n" +msgstr "" + +#: ../docs/en/tips.cpp:311 +msgid "" +" \t \n" +"

            ...that you can add audio to your Rosegarden composition just by dragging " +"an audio file from your file manager and dropping it on the Rosegarden " +"segment canvas? (Make sure you drop it on an audio track!)

            You can " +"also drop audio files from Rosegarden's audio file manager window onto the " +"segment canvas, and from other programs onto the audio file manager.

            \n" +msgstr "" + +#: ../docs/en/tips.cpp:317 +msgid "" +" \t \n" +"

            ...that you can set the tempo to match the duration of an audio segment " +"if you know it's an exact number of bars or beats long?

            Just select " +"the audio segment and use Composition -> Tempo and Time Signature -> Set " +"Tempo to Audio Segment Duration.

            \n" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:1 +msgid "Feta Pixmaps" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:2 ../data/fonts/mappings/fonts.cpp:7 +#, fuzzy +msgid "GNU Lilypond" +msgstr "Lilypond" + +#: ../data/fonts/mappings/fonts.cpp:3 ../data/fonts/mappings/fonts.cpp:8 +msgid "Copyright (c) 1997--2003 Han-Wen Nienhuys and Jan Nieuwenhuizen" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:4 ../data/fonts/mappings/fonts.cpp:9 +#: ../data/fonts/mappings/fonts.cpp:14 ../data/fonts/mappings/fonts.cpp:19 +#: ../data/fonts/mappings/fonts.cpp:24 ../data/fonts/mappings/fonts.cpp:29 +#: ../data/fonts/mappings/fonts.cpp:34 ../data/fonts/mappings/fonts.cpp:39 +#: ../data/fonts/mappings/fonts.cpp:44 ../data/fonts/mappings/fonts.cpp:49 +#: ../data/fonts/mappings/fonts.cpp:54 +msgid "Chris Cannam" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:5 ../data/fonts/mappings/fonts.cpp:40 +msgid "pixmap" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:6 +msgid "Feta" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:10 ../data/fonts/mappings/fonts.cpp:15 +#: ../data/fonts/mappings/fonts.cpp:20 ../data/fonts/mappings/fonts.cpp:25 +#: ../data/fonts/mappings/fonts.cpp:30 ../data/fonts/mappings/fonts.cpp:35 +#: ../data/fonts/mappings/fonts.cpp:45 ../data/fonts/mappings/fonts.cpp:50 +#: ../data/fonts/mappings/fonts.cpp:55 +#, fuzzy +msgid "scalable" +msgstr "Ail-raddu" + +#: ../data/fonts/mappings/fonts.cpp:11 +msgid "Fughetta" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:12 +msgid "" +"Created by Blake Hodgetts; freely redistributable. See http://www.efn.org/" +"~bch/aboutfonts.html" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:13 +msgid "Copyright 1995-1999 Blake Hodgetts" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:16 +msgid "Inkpen" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:17 +msgid "Inkpen is part of Sibelius, but other fonts may use the same mappings." +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:18 ../data/fonts/mappings/fonts.cpp:28 +msgid "Copyright Sibelius Software Ltd" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:21 +#, fuzzy +msgid "Maestro" +msgstr "Metronom" + +#: ../data/fonts/mappings/fonts.cpp:22 +msgid "Maestro is part of Finale, but other fonts use the same mappings." +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:23 ../data/fonts/mappings/fonts.cpp:33 +#, fuzzy +msgid "Copyright Coda Inc" +msgstr "Hawlfraint:" + +#: ../data/fonts/mappings/fonts.cpp:27 +msgid "Opus is part of Sibelius, but other fonts may use the same mappings." +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:31 +msgid "Petrucci" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:32 +msgid "Petrucci is part of Finale, but other fonts use the same mappings." +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:36 +msgid "RG21" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:37 +#, fuzzy +msgid "Rosegarden 2.1" +msgstr "Rosegarden" + +#: ../data/fonts/mappings/fonts.cpp:38 +msgid "Copyright (c) 1994--2001 Chris Cannam" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:41 +#, fuzzy +msgid "Sonata" +msgstr "Ffont:" + +#: ../data/fonts/mappings/fonts.cpp:42 +#, fuzzy +msgid "Adobe" +msgstr "Sain" + +#: ../data/fonts/mappings/fonts.cpp:43 +#, fuzzy +msgid "Copyright Adobe Inc" +msgstr "Hawlfraint:" + +#: ../data/fonts/mappings/fonts.cpp:46 +msgid "Steinberg" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:47 +msgid "The Steinberg Notation font is part of Cubase." +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:48 +#, fuzzy +msgid "Copyright Steinberg Inc" +msgstr "Hawlfraint:" + +#: ../data/fonts/mappings/fonts.cpp:51 +msgid "Xinfonia" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:52 +msgid "xemo.org" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:53 +msgid "Copyright 2001-2003 Xemus Software LLC" +msgstr "" + +#: ../data/styles/styles.cpp:1 +msgid "Classical" +msgstr "" + +#: ../data/styles/styles.cpp:2 +#, fuzzy +msgid "Cross" +msgstr "Rheolydd" + +#: ../data/styles/styles.cpp:3 +#, fuzzy +msgid "Mensural" +msgstr "Cyffredinol" + +#: ../data/styles/styles.cpp:4 +#, fuzzy +msgid "Triangle" +msgstr "Tripled" + +#, fuzzy +#~ msgid "Set Quick Marker" +#~ msgstr "Dileu Arwydd" + +#, fuzzy +#~ msgid "LilyPond previews not available" +#~ msgstr "Maint ffont Lilypad" + +#, fuzzy +#~ msgid "Audio file importer not available" +#~ msgstr "" + +#~ msgid " Triplet Chord" +#~ msgstr "Cord Tripled" + +#~ msgid " Chord" +#~ msgstr "Cord" + +#~ msgid " Triplet" +#~ msgstr "Tripled" + +#~ msgid "Making grace notes..." +#~ msgstr "Gwneud addurnodau..." + +#~ msgid "Making non-grace notes..." +#~ msgstr "Gwneud nodau sydd ddim yn addurnodau..." + +#~ msgid "Marker name " +#~ msgstr "Enw'r arwydd" + +#, fuzzy +#~ msgid "Time Signature font" +#~ msgstr "Arwydd Amseriad" + +#, fuzzy +#~ msgid "&Double Speed" +#~ msgstr "Llon &Dwbl" + +#, fuzzy +#~ msgid "Halving speed..." +#~ msgstr "Cadw ffeil..." + +#, fuzzy +#~ msgid "Doubling speed..." +#~ msgstr "Dileu'r dewisiad..." + +#~ msgid "Make &Grace Notes" +#~ msgstr "Gwneud &Addurnodau" + +#, fuzzy +#~ msgid "Change Te&mpo..." +#~ msgstr "Newid Lliw'r Gylchran..." + +#, fuzzy +#~ msgid "&Restore Computed Accidentals" +#~ msgstr "&Adfer Hapnodau a Enrhifwyd" + +#, fuzzy +#~ msgid "LilyPond export/preview options" +#~ msgstr "Maint ffont Lilypad" + +#, fuzzy +#~ msgid "LilyPond 2.6" +#~ msgstr "Lilypond" + +#, fuzzy +#~ msgid "LilyPond 2.8" +#~ msgstr "Lilypond" + +#, fuzzy +#~ msgid "LilyPond 2.12" +#~ msgstr "Lilypond" + +#~ msgid "Export Document Properties as \\header block" +#~ msgstr "Allforio Priodoleddau Dogfen fel \\ bloc pennawd" + +#, fuzzy +#~ msgid "prime" +#~ msgstr "Amser" + +#, fuzzy +#~ msgid " and 1 octave" +#~ msgstr "I Fyny Wythfed" + +#, fuzzy +#~ msgid " and %1 octaves" +#~ msgstr "I Fyny Wythfed" + +#, fuzzy +#~ msgid "Transpose by Interval" +#~ msgstr "Trawsgyweirio" + +#, fuzzy +#~ msgid "Manage Files Associated with A&udio Segments" +#~ msgstr "Rheoli Cylchrannau &Sain" + +#, fuzzy +#~ msgid "&Add Multiple Tracks..." +#~ msgstr "&Ychwanegu Traciau..." + +#, fuzzy +#~ msgid "Split Segments at Time" +#~ msgstr "Dangos Paramedrau &Cylchrannau" + +#, fuzzy +#~ msgid "Split Segment at Time" +#~ msgstr "Dangos Paramedrau &Cylchrannau" + +#, fuzzy +#~ msgid "Add Multiple Tracks" +#~ msgstr "Ymladd" + +#~ msgid "Event List" +#~ msgstr "Rhestr Digwyddiadau" + +#~ msgid "External Editors" +#~ msgstr "Golygyddion Allanol" + +#, fuzzy +#~ msgid "Enable auto-save" +#~ msgstr "Hunan-gadw" + +#~ msgid "Auto-save" +#~ msgstr "Hunan-gadw" + +#~ msgid "Show detailed status" +#~ msgstr "Dangos cyflwr manwl" + +#~ msgid "JACK command (including path as necessary)" +#~ msgstr "Gorchymyn JACK (yn cynnwys y llwybr fel bo angen)" + +#, fuzzy +#~ msgid "Event read-ahead" +#~ msgstr "Darllen ymlaen (mewn ms)" + +#, fuzzy +#~ msgid "Audio mix buffer" +#~ msgstr "Pylydd Sain" + +#, fuzzy +#~ msgid "Audio file read buffer" +#~ msgstr "Llwybr ffeil sain:" + +#, fuzzy +#~ msgid "Audio file write buffer" +#~ msgstr "Llwybr ffeil sain:" + +#, fuzzy +#~ msgid "20 msec" +#~ msgstr "Enw:" + +#, fuzzy +#~ msgid "5 sec" +#~ msgstr "Enw:" + +#, fuzzy +#~ msgid "per file" +#~ msgstr "Agor Ffeil" + +#, fuzzy +#~ msgid "Low latency" +#~ msgstr "Hwyrni" + +#, fuzzy +#~ msgid "Record and Mix" +#~ msgstr "Recordio sain" + +#~ msgid "JACK transport mode" +#~ msgstr "Modd cludiant JACK" + +#~ msgid "Synchronisation" +#~ msgstr "Cysoni" + +#, fuzzy +#~ msgid "%1 msec" +#~ msgstr "%1 ms" + +#, fuzzy +#~ msgid "%1 sec" +#~ msgstr "%1 ms" + +#, fuzzy +#~ msgid "%1 KB" +#~ msgstr "%1 ms" + +#, fuzzy +#~ msgid "%1 MB" +#~ msgstr "%1 ms" + +#, fuzzy +#~ msgid "Other fonts" +#~ msgstr "Arall" + +#~ msgid "" +#~ "Rosegarden can apply automatic quantization to recorded or imported MIDI " +#~ "data for notation purposes only. This does not affect playback, and does " +#~ "not affect editing in any of the views except notation." +#~ msgstr "" +#~ "Gall Rosegarden weithredu cwanteiddio awtomatig i ddata MIDI sydd wedi ei " +#~ "recordio neu fewnforio i bwrpas nodiant yn unig. Nid yw hyn yn effeithio " +#~ "chwarae yn ol, ac nid yw yn effeithio golygu mewn unrhyw golwg heblaw " +#~ "nodiad." + +#~ msgid "Sequencer" +#~ msgstr "Dilyniannydd" + +#~ msgid "Sequencer Settings" +#~ msgstr "Gosodiadau Dilyniannydd" + +#, fuzzy +#~ msgid "Range" +#~ msgstr "Tripled" + +#, fuzzy +#~ msgid "High: ---" +#~ msgstr "Uchel" + +#, fuzzy +#~ msgid " ms" +#~ msgstr "%1 ms" + +#, fuzzy +#~ msgid "&Fretboard" +#~ msgstr "&Brys Ymlaen " + +#, fuzzy +#~ msgid "Restore &Computed Positions" +#~ msgstr "&Adfer Coesau a Gyfrifwyd" + +#, fuzzy +#~ msgid "&Tempo and Time Signature" +#~ msgstr "Agor yn y Golygydd Digwyddiadau" + +#, fuzzy +#~ msgid "&Split..." +#~ msgstr "&Hollti" + +#, fuzzy +#~ msgid "&Editor Tools" +#~ msgstr "Bar Golygyddion" + +#, fuzzy +#~ msgid "&Beams" +#~ msgstr "Curiad" + +#, fuzzy +#~ msgid "&Indications" +#~ msgstr "Dangosiad" + +#, fuzzy +#~ msgid "Trip&lets and Tuplets" +#~ msgstr "Plygyn &Syml" + +#~ msgid "S&tem Direction" +#~ msgstr "Cyfeiriad y C&oes" + +#, fuzzy +#~ msgid "&Clear" +#~ msgstr "Cleff" + +#, fuzzy +#~ msgid "C&ancel" +#~ msgstr "Sianel" + +#, fuzzy +#~ msgid "Toggle &Mode" +#~ msgstr "nodyn cyfan" + +#, fuzzy +#~ msgid "Scale" +#~ msgstr "Ail-raddu" + +#, fuzzy +#~ msgid "Modifier" +#~ msgstr "Addasu A&rwydd" + +#, fuzzy +#~ msgid "&New" +#~ msgstr "Newydd" + +#, fuzzy +#~ msgid "Fingering" +#~ msgstr "Ychwanegu llithriad..." + +#, fuzzy +#~ msgid "LilyPond 2.4" +#~ msgstr "Lilypond" + +#~ msgid "Paper size to use in \\paper block" +#~ msgstr "Maint papur i ddefnyddio yn y \\bloc papur" + +#, fuzzy +#~ msgid "LilyPond font size" +#~ msgstr "Maint ffont Lilypad" + +#~ msgid "Do not export muted tracks" +#~ msgstr "Dim allforio traciau wedi'w distewi" + +#~ msgid "Write bar checks at end of measures" +#~ msgstr "Ysgrifennu gwiriadau bar wrth ddiwedd mesurau" + +#, fuzzy +#~ msgid "Double Speed" +#~ msgstr "Llon &Dwbl" + +#~ msgid " (takes effect only from next restart)" +#~ msgstr "(cymryd effaith dim ond ar ol ail-gychwyn)" + +#~ msgid "&Select" +#~ msgstr "&Dewis" + +#~ msgid "Snap to 1/64" +#~ msgstr "Cipio at 1/64" + +#, fuzzy +#~ msgid "Snap to 1/48" +#~ msgstr "Cipio at 1/8" + +#~ msgid "Snap to 1/32" +#~ msgstr "Cipio at 1/32" + +#, fuzzy +#~ msgid "Snap to 1/24" +#~ msgstr "Cipio at 1/4" + +#~ msgid "Snap to 1/16" +#~ msgstr "Cipio at 1/16" + +#, fuzzy +#~ msgid "Snap to 1/12" +#~ msgstr "Cipio at 1/2" + +#~ msgid "Snap to 1/8" +#~ msgstr "Cipio at 1/8" + +#, fuzzy +#~ msgid "Snap to 1/6" +#~ msgstr "Cipio at 1/64" + +#~ msgid "Snap to 1/4" +#~ msgstr "Cipio at 1/4" + +#~ msgid "Snap to &Unit" +#~ msgstr "Cipio at &Uned" + +#, fuzzy +#~ msgid "%1 (%2.%3s)" +#~ msgstr "Amser: %1 (%2.%3s)" + +#, fuzzy +#~ msgid "%1 (%2): %3" +#~ msgstr "&%1%2" + +#~ msgid "Getting sound driver status..." +#~ msgstr "Nol cyflwr y gyrrydd swn..." + +#, fuzzy +#~ msgid "Cannot add file %1: %2" +#~ msgstr "Methu lawrlwytho ffeil %1" + +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Gwerth Diwedd" + +#~ msgid "from:" +#~ msgstr "oddiwrth:" + +#~ msgid "to:" +#~ msgstr "i:" + +#~ msgid "unlimited" +#~ msgstr "di-derfyn" + +#~ msgid "Number:" +#~ msgstr "Rhif:" + +#~ msgid "Value:" +#~ msgstr "Gwerth:" + +#, fuzzy +#~ msgid "Wheel Events" +#~ msgstr "Ail-feintio Digwyddiadau" + +#~ msgid "Amount:" +#~ msgstr "Maint:" + +#, fuzzy +#~ msgid "Pitch from" +#~ msgstr "Traw" + +#, fuzzy +#~ msgid "Pitch to" +#~ msgstr "Traw" + +#, fuzzy +#~ msgid "High: %1" +#~ msgstr "Uchel" + +#~ msgid "&Velocity" +#~ msgstr "&Buanedd" + +#~ msgid "Time: %1" +#~ msgstr "Amser: %1" + +#, fuzzy +#~ msgid "Recording Channel:" +#~ msgstr "Recordio sain" + +#, fuzzy +#~ msgid "Finnish translation" +#~ msgstr "Cysoni" + +#, fuzzy +#~ msgid "Preview of the selected font" +#~ msgstr "Clywed rhagolwg o'r ffeil sain penodol." + +#, fuzzy +#~ msgid "Segment & Instrument Parameters" +#~ msgstr "Dangos Paramedrau &Offerynnau" + +#, fuzzy +#~ msgid "Pre&view Lilypond file..." +#~ msgstr "Allforio ffeil Lilypond..." + +#, fuzzy +#~ msgid "Show Se&gment and Instrument Parameters" +#~ msgstr "Dangos Paramedrau &Offerynnau" + +#~ msgid "%1 Pitch" +#~ msgstr "%1 Traw" + +#, fuzzy +#~ msgid "&Split or Join" +#~ msgstr "&Hollti ar Ddistawrwydd" + +#, fuzzy +#~ msgid "Lilypond 2.0" +#~ msgstr "Lilypond" + +#~ msgid "" +#~ msgstr "" + +#, fuzzy +#~ msgid "You can't yet resize an audio segment!" +#~ msgstr "Methu uno cylchrannau Sain" + +#~ msgid "Advanced Event Edit" +#~ msgstr "Golygu Digwyddiad yn Fanwl" + +#~ msgid "Advanced Event Viewer" +#~ msgstr "Gweld Digwyddiad yn Fanwl" + +#, fuzzy +#~ msgid " 1 event selected " +#~ msgstr "%1 digwyddiad %2 wedi'i ddewis" + +#, fuzzy +#~ msgid "%1 - 1 Segment - %2" +#~ msgstr "Parhad" + +#, fuzzy +#~ msgid "1 Input" +#~ msgstr "Mewnbwn Sain" + +#, fuzzy +#~ msgid "1 Submaster" +#~ msgstr "Dangos Rhes&yddion" + +#, fuzzy +#~ msgid "1 pixel" +#~ msgstr "%1 picsel" + +#, fuzzy +#~ msgid "%1 - Segment - Notation" +#~ msgstr "Parhad" + +#, fuzzy +#~ msgid "%1 on 1 track" +#~ msgstr "%1 o diciau" + +#~ msgid "Set Tempo" +#~ msgstr "Gosod Tempo" + +#~ msgid "Modify Tempo" +#~ msgstr "Addasu Tempo" + +#~ msgid "Change this tempo to" +#~ msgstr "Newid y tempo yma i " + +#, fuzzy +#~ msgid "is currently" +#~ msgstr "ar hyn o bryd" + +#, fuzzy +#~ msgid "PitchRuler" +#~ msgstr "Traw:" + +#, fuzzy +#~ msgid "Paste" +#~ msgstr "Meistr MMC" + +#, fuzzy +#~ msgid "&Delete" +#~ msgstr "Di&leu" + +#, fuzzy +#~ msgid "Stop" +#~ msgstr "&Aros" + +#, fuzzy +#~ msgid "Copy" +#~ msgstr "Hawlfraint:" + +#, fuzzy +#~ msgid "Default" +#~ msgstr "Rhagosod" + +#, fuzzy +#~ msgid "Delete All" +#~ msgstr "Dewis &Popeth" + +#, fuzzy +#~ msgid "Add" +#~ msgstr "..." + +#, fuzzy +#~ msgid "No" +#~ msgstr "Nodyn" + +#, fuzzy +#~ msgid "&Copy" +#~ msgstr "&Aros" + +#, fuzzy +#~ msgid "&Paste" +#~ msgstr "&Saib" + +#, fuzzy +#~ msgid "About" +#~ msgstr "Maint:" + +#, fuzzy +#~ msgid "Configure" +#~ msgstr "Rosegarden" + +#, fuzzy +#~ msgid "Untitled" +#~ msgstr "" + +#, fuzzy +#~ msgid "&View" +#~ msgstr "Amser" + +#, fuzzy +#~ msgid "&Tools" +#~ msgstr "Bar Ffontiau" + +#~ msgid "Tracks to add" +#~ msgstr "Traciau i ychwanegu" + +#~ msgid "%1 pixels" +#~ msgstr "%1 o bicseli" + +#, fuzzy +#~ msgid "%1 Inputs" +#~ msgstr "Mewnbwn Sain" + +#, fuzzy +#~ msgid "" +#~ "This will unload all audio files and remove their associated segments. " +#~ "Are you sure?" +#~ msgstr "Wir ddileu ffeil sain \"%1\" a pob cylchran sain sy'n ymwneud a fo?" + +#, fuzzy +#~ msgid "" +#~ "This will unload all audio files that have no segments used in this " +#~ "composition. Are you sure?" +#~ msgstr "Wir ddileu ffeil sain \"%1\" a pob cylchran sain sy'n ymwneud a fo?" + +#, fuzzy +#~ msgid "Re&label" +#~ msgstr "Ail-&labelu..." + +#~ msgid "Start Value" +#~ msgstr "Gwerth Dechrau" + +#~ msgid "End Value" +#~ msgstr "Gwerth Diwedd" + +#, fuzzy +#~ msgid "Audio record level" +#~ msgstr "Ychwanegu Ffeil Sain" + +#, fuzzy +#~ msgid "Rec" +#~ msgstr "Coch" + +#~ msgid "Segments Canvas - Create and manipulate your segments here" +#~ msgstr "Cynfas Cylchrannau - Creu a trin eich cylchrannau yma" + +#, fuzzy +#~ msgid "Default timing: " +#~ msgstr "Rhagosod" + +#, fuzzy +#~ msgid "Minutes of audio recording:" +#~ msgstr "Munudau o recordio sain" + +#~ msgid "Show Tip of the &Day" +#~ msgstr "Dangos Awgrym y &Diwrnod" + +#, fuzzy +#~ msgid "&Quantize Notes" +#~ msgstr "Dad-&glymu Nodau" + +#, fuzzy +#~ msgid "" +#~ "ERROR: Event in chord at %1 has no HEIGHT_ON_STAFF property!\n" +#~ "This is a bug (the program would previously have crashed by now)" +#~ msgstr "" +#~ "Does dim priodwedd HEIGHT_ON_STAFF gan y digwyddiad yn y cord wrth %1!\n" +#~ "Nam yw hwn (o'r blaen, buasai'r rhaglen wedi chwalu erbyn rwan)." + +#, fuzzy +#~ msgid "" +#~ "

            ...to assign a track to a new instrument, right-click on the track " +#~ "label. You'll be presented with a menu listing the available MIDI and " +#~ "audio devices, where you can select an instrument on one of those devices." +#~ "

            \n" +#~ msgstr "" +#~ "

            ...er mwyn neilltuo trac i offeryn newydd, cliciwch a gafael efo botwm " +#~ "chwith y\n" +#~ "llygoden ar label y trac. Byddwch yn cael dewislen efo rhestr o'r " +#~ "dyfeisiau MIDI a sain\n" +#~ "sydd ar gael, lle gallwch ddeiws offeryn ar un o'r dyfeisiau yna.

            \n" + +#~ msgid "" +#~ "

            ...that you can create a default studio by copying any
            \n" +#~ ".rg or .rgd file to\n" +#~ "~/.kde/share/apps/rosegarden/autoload.rg?

            \n" +#~ "You can also save the current document as an autoload.rg file by using\n" +#~ "Studio -> Save Current Document as Default Studio.

            \n" +#~ msgstr "" +#~ "

            ...y gallwch greu stiwdio rhagosodedig gan gopio unrhyw
            \n" +#~ "ffeil .rg or .rgd i\n" +#~ "~/.kde/share/apps/rosegarden/autoload.rg?

            \n" +#~ "Gallwch hefyd gadw'r ddogfen gyfredol fel ffeil autoload.rg file gan " +#~ "ddefnyddio\n" +#~ "Stiwdio -> Cadw'r Ddogfen Gyfredol fel Stiwdio Rhagosodedig.

            \n" + +#~ msgid "" +#~ "

            ...that you can toggle all the rulers, instrument parameters, and " +#~ "several\n" +#~ "other options simultaneously with Settings -> Toggle All of the Above?

            \n" +#~ msgstr "" +#~ "

            ...y gallwch dangos a cuddio pob un rhesydd, paramedr offeryn, a rhai " +#~ "dewisiadau eraill\n" +#~ "ar yr un pryd efo Gosodiadau -> Dangos/Cuddio Rhain i Gyd?

            \n" + +#~ msgid "" +#~ "

            ...that you can change various parameters controlling how Rosegarden\n" +#~ "handles Lilypond export with Settings -> Configure Rosegarden -> " +#~ "Notation\n" +#~ "-> Lilypond?

            \n" +#~ msgstr "" +#~ "

            ...y gallwch newid nifer o baramedrau sy'n rheoli sut mae Rosegarden\n" +#~ "yn trin allforio i Lilypond efo Gosodiadau -> Ffurfweddu Rosegarden -> " +#~ "Nodiant\n" +#~ "-> Lilypond?

            \n" + +#, fuzzy +#~ msgid "Default proportion" +#~ msgstr "Lliw Rhagosod" + +#~ msgid "Arm recording for this audio Instrument" +#~ msgstr "Paratoi recordio am yr Offeryn sain yma" + +#~ msgid "Solo the Track to which this Instrument is attached." +#~ msgstr "Unawdu'r Trac sydd ynghlwm a'r Offeryn yma" + +#~ msgid "Mute the Track to which this Instrument is attached." +#~ msgstr "Distewi'r Trac sydd ynghlwm a'r Offeryn yma" + +#~ msgid "MMC transport mode" +#~ msgstr "Modd cludiant MMC" + +#~ msgid "Audio record path \"" +#~ msgstr "Llwybr recordio sain \"" + +#~ msgid "" +#~ "Edit your audio path properties (Edit->Edit Document Properties->Audio)" +#~ msgstr "" +#~ "Golygu priodweddau eich llwybr sain (Golygu -> Golygu Priodweddau'r " +#~ "Ddogfen -> Sain)" + +#~ msgid "Toggle &All of the Above" +#~ msgstr "Dangos/Cuddio Rhain i &Gyd" + +#~ msgid "Sending MIDI panic..." +#~ msgstr "Anfon dychryn MIDI..." + +#~ msgid "&Tie Equal-Pitch Notes" +#~ msgstr "&Clymu Nodau Hafal-Draw" + +#~ msgid "Trans&forms" +#~ msgstr "Traws&ffurfiau" + +#~ msgid "&Group" +#~ msgstr "&Casgliad" + +#~ msgid "Can't determine free disk space." +#~ msgstr "Methu penodi lle gwag ar y ddisg." + +#~ msgid "Couldn't extract disk space information." +#~ msgstr "Methu alldynnu gwybodaeth am faint o le sydd ar y ddisg." + +#~ msgid "Audio File actions" +#~ msgstr "Gweithrediadau Ffeil Sain" + +#~ msgid "Remove Audio File" +#~ msgstr "Gwaredu Ffeil Sain" + +#~ msgid "Rename File" +#~ msgstr "Ail-enwi Ffeil" + +#~ msgid "Add an audio file to this manager dialog." +#~ msgstr "Ychwanegu ffeil sain i'r ymgom rheoli yma." + +#~ msgid "Remove an audio file from this manager dialog." +#~ msgstr "Gwaredu ffeil sain oddiwrth yr ymgom rheoli yma." + +#~ msgid "Rename the currently selected audio file." +#~ msgstr "Ail-enwi'r ffeil sain penodol." + +#, fuzzy +#~ msgid "" +#~ "Insert the current audio file in your composition, on the selected audio " +#~ "track." +#~ msgstr "" +#~ "Mewnosod y ffeil sain cyfredol wrth waelod eich cyfansoddiad mewn trac " +#~ "sain newydd." + +#~ msgid "" +#~ "Remove all audio files (and any representations of them) from this dialog " +#~ "and the composition." +#~ msgstr "" +#~ "Gwaredu pob ffeil sain (ac unrhyw cynrychioliad ohonynt) oddiwrth yr " +#~ "ymgom yma a'r cyfansoddiad." + +#~ msgid "Export this audio file." +#~ msgstr "Allforio'r ffeil sain yma." + +#~ msgid "" +#~ "You can drag and drop .wav files here to insert them from Konqueror or " +#~ "other KDE file browsers." +#~ msgstr "" +#~ "Gallwch dynnu a disgyn ffeiliau .wav yma i'w mewnosod oddiwrth Konqueror " +#~ "neu poryddion ffeil KDE eraill." + +#~ msgid "Really remove all audio files and associated segments?" +#~ msgstr "Wir waredu pob ffeil sain a cylchrannau sy'n ymwneud a nhw?" + +#, fuzzy +#~ msgid "Can't add File. " +#~ msgstr "Methu lawrlwytho ffeil %1" + +#~ msgid "Normalize subsequent rests" +#~ msgstr "Normaleiddio seibiau canlynol" + +#~ msgid "Wheel" +#~ msgstr "Olwyn" + +#, fuzzy +#~ msgid "Number of stereo audio inputs:" +#~ msgstr "Nifer o fewnbynnau sain JACK" + +#, fuzzy +#~ msgid "S%1" +#~ msgstr "B%1" + +#~ msgid "Sequencer exited" +#~ msgstr "Terfynodd y dilyniannydd" + +#~ msgid "don't use an external sequencer" +#~ msgstr "dim denbyddio dilyniannydd allanol" + +#~ msgid "Show Controllers Events Ruler" +#~ msgstr "Dangos Rhesydd Enwau Cordiau" + +#~ msgid "" +#~ "

            ...that when you insert audio segments into your composition, they " +#~ "always\n" +#~ "insert at the bottom of the track list?

            \n" +#~ msgstr "" +#~ "

            ...pan yr ydych yn mewnosod cylchrannau sain i mewn i'ch cyfansoddiad, " +#~ "mae nhw o hyd\n" +#~ "yn cael eu mewnosod wrth waelod y rhestr traciau?

            \n" + +#~ msgid "" +#~ "

            ...that you can change the MIDI record device from the configuration " +#~ "dialog? Go to Settings -> Configure Rosegarden, select the " +#~ "Sequencer page and Recording tab, and then select the device you want " +#~ "from the MIDI Record Device dropdown. Your selection will be remembered " +#~ "for next time.

            \n" +#~ msgstr "" +#~ "

            ...y gallwch newid y dyfais recordio MIDI oddiar yr ymgom ffurfweddu? " +#~ "Ewch i Gosodiadau -> Ffrufweddu Rosegarden, dewiswch y dudalen " +#~ "Dilyniannydda'r tab Recordio, ac wedyn dewiswch y dyfais yr ydych ei " +#~ "eisiau oddiar y cwymplen Dyfais Recordio MIDI. Bydd eich dewisiad yn " +#~ "cael ei gofio am y tro nesaf.

            \n" + +#~ msgid "Manage MIDI &Devices..." +#~ msgstr "Rheoli &Dyfeisiau MIDI..." + +#~ msgid "Manage MIDI &Banks and Programs..." +#~ msgstr "Rheoli &Rhengau a Rhaglenni MIDI..." + +#~ msgid "Manage Control Parameters..." +#~ msgstr "Ffurfweddu Paramedrau Rheoli..." + +#~ msgid "" +#~ "*.mid *.midi|Standard MIDI files\n" +#~ "*|All files" +#~ msgstr "" +#~ "*.mid *.midi|Ffeiliau MIDI safonol\n" +#~ "*|Pob ffeil" + +#~ msgid "Rescale ratio" +#~ msgstr "Cydrannedd ail-raddu" + +#~ msgid " beats in time of " +#~ msgstr "curiadau yn yr amseriad o" + +#~ msgid "As percentage: " +#~ msgstr "Fel canran:" + +#~ msgid "Force to %1" +#~ msgstr "Gorfod i %1" + +#~ msgid "Chorus" +#~ msgstr "Cytgan" + +#~ msgid "Release" +#~ msgstr "Rhyddhad" + +#~ msgid "Resonance" +#~ msgstr "Cyseiniant" + +#~ msgid "" +#~ "Higher latency improves playback quality on slower systems but reduces\n" +#~ "overall sequencer response. Modifications to these values take effect\n" +#~ "from the next time playback or recording begins." +#~ msgstr "" +#~ "Mae hwyrni uwch yn gwella ansawdd chwarae ar gysodau arafach, ond mae'n " +#~ "lleihau\n" +#~ "ymateb cyfan y dilyniannydd. Mae addasiadau i'r gwerthoedd yma yn cymryd " +#~ "effaith\n" +#~ "o'r tro nesaf y mae chwarae neu recordio yn dechrau." + +#~ msgid "Playback (in ms)" +#~ msgstr "Chwarae (mewn ms)" + +#~ msgid "" +#~ "Sequencer command line options\n" +#~ " (takes effect only from next restart)" +#~ msgstr "" +#~ "Dewisiadau llinell gorchymyn y dilyniannydd\n" +#~ "(cymryd effaith dim ond ar ol y cychwyn nesaf)" + +#~ msgid "Clear down all Rosegarden sequencer processes at restart" +#~ msgstr "Gwaredu data o bob proses dilyniannydd Rosegarden wrth ail-ddechrau" + +#~ msgid "MIDI Record Device" +#~ msgstr "Dyfais recordio MIDI" + +#~ msgid "JACK Slave" +#~ msgstr "Gwas Jack" + +#~ msgid "JACK Master" +#~ msgstr "Meistr JACK" + +#~ msgid "Metronome Bar Velocity" +#~ msgstr "Buanedd y Bar Metronôm" + +#~ msgid "Metronome Beat Velocity" +#~ msgstr "Buanedd Curiad y Metronôm" + +#~ msgid "Modify Metronome settings" +#~ msgstr "Newid gosodiadau'r Metronôm" + +#~ msgid "Insert into Composition" +#~ msgstr "Mewnosod i mewn i'r cyfansoddiad" + +#~ msgid "" +#~ "Can't add File. WAV file body invalid.\n" +#~ "\"" +#~ msgstr "" +#~ "Methu ychwanegu Ffeil. Mae corff y ffeil WAV yn annilys.\n" +#~ "\"" + +#~ msgid "Audio VU Meter" +#~ msgstr "Mesurydd VU Sain" + +#~ msgid "Directory doesn't exist." +#~ msgstr "Nid yw'r cyfeiriadur mewn bod." + +#~ msgid "include everything" +#~ msgstr "cynnwys popeth " + +#~ msgid "zero the controls" +#~ msgstr "rhoi'r rheolyddion yn ôl i sero" + +#~ msgid "Copy a Control Parameter" +#~ msgstr "Copïo Paramedr Rheoli" + +#~ msgid "Paste a Control Parameter" +#~ msgstr "Gludo Paramedr Rheoli" + +#~ msgid "Blue" +#~ msgstr "Glas" + +#~ msgid "Absolute Time:" +#~ msgstr "Amser Llwyr:" + +#~ msgid "Got grouped event outside of a segment" +#~ msgstr "Wedi cael digwyddiad cynnulledig tu allan o gylchran" + +#~ msgid "Got group outside of a segment" +#~ msgstr "Wedi cael cynulliad tu allan o gylchran" + +#~ msgid "Found Studio in another section" +#~ msgstr "Wedi canfod Stiwdio mewn rhan arall" + +#~ msgid "TimeSignature object found outside Composition" +#~ msgstr "Wedi canfod gwrthrych ArwyddAmseriad tu allan i'r Cyfansoddiad" + +#~ msgid "Found Composition in another section" +#~ msgstr "Wedi canfod Cyfansoddiad mewn rhan arall" + +#~ msgid "Track object found outside Composition" +#~ msgstr "Wedi canfod gwrthrych Trac tu allan o'r Cyfansoddiad" + +#~ msgid "Found Segment in another section" +#~ msgstr "Wedi canfod Cylchran mewn rhan arall" + +#~ msgid "Audio object found outside Audio section" +#~ msgstr "Wedi canfod gwrthrych Sain tu allan o'r rhan Sain" + +#~ msgid "Audio object has empty parameters" +#~ msgstr "Mae paramedrau gwag gan y gwrthrych Sain" + +#~ msgid "Audiopath object found outside AudioFiles section" +#~ msgstr "Wedi canfod gwrthrych LlwybrSain tu allan o'r rhan FfeiliauSain" + +#~ msgid "Audiopath has no value" +#~ msgstr "Nid oes gwerth gan LwybrSain" + +#~ msgid "found audio begin index in non audio segment" +#~ msgstr "wedi canfod mynegai dechrau sain mewn cylchran di-sain" + +#~ msgid "found audio end index in non audio segment" +#~ msgstr "wedi canfod mynegai diwedd sain mewn cylchran di-sain" + +#~ msgid "audio end index before audio start marker" +#~ msgstr "mynegai diwedd sain cyn nodydd dechrau sain" + +#~ msgid "Found Device outside Studio" +#~ msgstr "Wedi canfod Dyfais tu allan o Stiwdio" + +#~ msgid "No ID on Device tag" +#~ msgstr "Dim ID ar dag y Dyfais" + +#~ msgid "Found unknown Device type" +#~ msgstr "Wedi canfod math anhysbys o Ddyfais" + +#~ msgid "Found Bank outside Studio or Instrument" +#~ msgstr "Wedi canfod Rheng tu allan o Stiwdio neu Offeryn" + +#~ msgid "Found Program outside Studio and Instrument" +#~ msgstr "Wedi canfod Rhaglen tu allan o Stiwdio ac Offeryn" + +#, fuzzy +#~ msgid "Found ControlParameter outside Studio" +#~ msgstr "Wedi canfod Offeryn tu allan o Stiwdio" + +#~ msgid "Found Reverb outside Instrument" +#~ msgstr "Wedi canfod Datsain tu allan o Offeryn" + +#~ msgid "Found Chorus outside Instrument" +#~ msgstr "Wedi canfod Cytgan tu allan o Offeryn" + +#~ msgid "Found Filter outside Instrument" +#~ msgstr "Wedi canfod Hidl tu allan o Offeryn" + +#~ msgid "Found Resonance outside Instrument" +#~ msgstr "Wedi canfod Cyseiniant tu allan o Offeryn" + +#~ msgid "Found Attack outside Instrument" +#~ msgstr "Wedi canfod Ymladd tu allan o Offeryn" + +#~ msgid "Found Release outside Instrument" +#~ msgstr "Wedi canfod Rhyddhad tu allan o Offeryn" + +#~ msgid "Found Pan outside Instrument" +#~ msgstr "Wedi canfod Panio tu allan o Offeryn" + +#~ msgid "Found Volume outside Instrument" +#~ msgstr "Wedi canfod Swn tu allan o Offeryn" + +#~ msgid "Found Plugin outside Instrument" +#~ msgstr "Wedi canfod Ategyn tu allan o Offeryn" + +#~ msgid "Can't find Plugin" +#~ msgstr "Methu canfod Ategyn" + +#~ msgid "Found Port outside Plugin" +#~ msgstr "Wedi canfod Porth tu allan o Ategyn" + +#~ msgid "Found Metronome outside Studio" +#~ msgstr "Wedi canfod Metronom tu allan o Stiwdio" + +#~ msgid "Found Instrument outside Studio" +#~ msgstr "Wedi canfod Offeryn tu allan o Stiwdio" + +#~ msgid "Found AudioFiles inside another section" +#~ msgstr "Wedi canfod FfeiliauSain tu mewn i ran arall" + +#~ msgid "Found Metadata outside Composition" +#~ msgstr "Wedi canfod Metadata tu allan o Gyfansoddiad" + +#~ msgid "Found recordLevel outside Instrument" +#~ msgstr "Wedi canfod SafonRecordio tu allan o Offeryn" + +#~ msgid "Found audioInput outside Instrument" +#~ msgstr "Wedi canfod MewnbwnSain tu allan o Offeryn" + +#, fuzzy +#~ msgid "Found colourmap outside Appearance" +#~ msgstr "Wedi canfod Swn tu allan o Offeryn" + +#, fuzzy +#~ msgid "Found colourpair outside ColourMap" +#~ msgstr "Wedi canfod Porth tu allan o Ategyn" + +#, fuzzy +#~ msgid "note-height is a required attribute of font-size" +#~ msgstr "priodoledd angenrheidiol o pryd yw uchder y nodyn" + +#, fuzzy +#~ msgid "font-height is a required attribute of font-scale" +#~ msgstr "priodoledd angenrheidiol o pryd yw uchder y nodyn" + +#, fuzzy +#~ msgid "base is a required attribute of codebase" +#~ msgstr "priodoledd angenrheidiol o nodyn yw math" + +#, fuzzy +#~ msgid "font-id is a required attribute of codebase" +#~ msgstr "priodoledd angenrheidiol o nodyn yw math" + +#~ msgid "name is a required attribute of symbol" +#~ msgstr "priodoledd angenrheidiol o symbol yw enw" + +#~ msgid "name is a required attribute of hotspot" +#~ msgstr "priodoledd angenrheidiol o man-poeth yw enw" + +#, fuzzy +#~ msgid "scaled-element must be in hotspot-element" +#~ msgstr "rhaid i'r elfen-pryd fod yn yr elfen-manpoeth" + +#, fuzzy +#~ msgid "y is a required attribute of scaled" +#~ msgstr "priodoledd angenrheidiol o pryd yw y" + +#~ msgid "when-element must be in hotspot-element" +#~ msgstr "rhaid i'r elfen-pryd fod yn yr elfen-manpoeth" + +#~ msgid "note-height is a required attribute of when" +#~ msgstr "priodoledd angenrheidiol o pryd yw uchder y nodyn" + +#~ msgid "y is a required attribute of when" +#~ msgstr "priodoledd angenrheidiol o pryd yw y" + +#, fuzzy +#~ msgid "font-id is a required attribute of font-requirement" +#~ msgstr "priodoledd angenrheidiol o nodyn yw math" + +#, fuzzy +#~ msgid "font-requirement may have name or names attribute, but not both" +#~ msgstr "" +#~ "gall elfennau eang a nodyn gael priodoledd siap neu nod-enw, ond dim y dau" + +#, fuzzy +#~ msgid "InstrumentLabel" +#~ msgstr "Offeryn" + +#, fuzzy +#~ msgid "MatrixView" +#~ msgstr "Matrics" + +#, fuzzy +#~ msgid "RosegardenGUIView" +#~ msgstr "Rosegarden" + +#, fuzzy +#~ msgid "RosegardenTristateCheckBox" +#~ msgstr "Cludiant Rosegarden" + +#, fuzzy +#~ msgid "RosegardenComboBox" +#~ msgstr "Rosegarden" + +#, fuzzy +#~ msgid "RosegardenLabel" +#~ msgstr "Rosegarden" + +#, fuzzy +#~ msgid "RosegardenSpinBox" +#~ msgstr "Rosegarden" + +#, fuzzy +#~ msgid "RosegardenParameterBox" +#~ msgstr "Paramedrau Cylchrannau" + +#, fuzzy +#~ msgid "RosegardenProgressBar" +#~ msgstr "Rosegarden" + +#, fuzzy +#~ msgid "RosegardenFader" +#~ msgstr "Rosegarden" + +#, fuzzy +#~ msgid "RosegardenRotary" +#~ msgstr "Rosegarden" + +#, fuzzy +#~ msgid "RosegardenQuantizeParameters" +#~ msgstr "Paramedrau Cylchrannau" + +#, fuzzy +#~ msgid "RosegardenPitchChooser" +#~ msgstr "Rosegarden" + +#, fuzzy +#~ msgid "RemapInstrumentDialog" +#~ msgstr "&Ail-fapio Offerynnau..." + +#, fuzzy +#~ msgid "PropertyBox" +#~ msgstr "Gosod &Priodwedd" + +#, fuzzy +#~ msgid "TimeSignatureDialog" +#~ msgstr "Arwydd Amseriad" + +#, fuzzy +#~ msgid "KeySignatureDialog" +#~ msgstr "Arwydd cywair" + +#, fuzzy +#~ msgid "TupletDialog" +#~ msgstr "Plygyn" + +#, fuzzy +#~ msgid "TempoDialog" +#~ msgstr "Tempo" + +#, fuzzy +#~ msgid "QuantizeDialog" +#~ msgstr "Cwanteiddio" + +#, fuzzy +#~ msgid "RescaleDialog" +#~ msgstr "Ail-raddu" + +#, fuzzy +#~ msgid "AudioPlayingDialog" +#~ msgstr "Ategyn Sain" + +#, fuzzy +#~ msgid "AudioSplitDialog" +#~ msgstr "Gosodiadau Sain" + +#, fuzzy +#~ msgid "LyricEditDialog" +#~ msgstr "Agor Golygydd G&eiriau" + +#, fuzzy +#~ msgid "EventParameterDialog" +#~ msgstr "Paramedrau Cylchrannau" + +#, fuzzy +#~ msgid "CompositionLengthDialog" +#~ msgstr "Newid Hyd y Cyfansoddiad" + +#, fuzzy +#~ msgid "SplitByPitchDialog" +#~ msgstr "Hollti gan Draw" + +#, fuzzy +#~ msgid "InterpretDialog" +#~ msgstr "Dehongli" + +#, fuzzy +#~ msgid "ShowSequencerStatusDialog" +#~ msgstr "Cyflwr y dilyniannydd" + +#, fuzzy +#~ msgid "RawNoteRuler" +#~ msgstr "Dangos Rhesydd Nodau C&raidd" + +#, fuzzy +#~ msgid "MatrixPainter" +#~ msgstr "Matrics" + +#, fuzzy +#~ msgid "EventFilterDialog" +#~ msgstr "Hidlau digwyddiadau" + +#, fuzzy +#~ msgid "TempoRuler" +#~ msgstr "Dangos Rhesydd Te&mpo" + +#, fuzzy +#~ msgid "NotationCanvasView" +#~ msgstr "Nodiad" + +#, fuzzy +#~ msgid "Rosegarden::ConfigurationPage" +#~ msgstr "Ffurfweddiad Cyffredinol" + +#, fuzzy +#~ msgid "Rosegarden::GeneralConfigurationPage" +#~ msgstr "Ffurfweddiad Cyffredinol" + +#, fuzzy +#~ msgid "Rosegarden::AudioConfigurationPage" +#~ msgstr "Rheolydd Ffeiliau Sain Rosegarden" + +#, fuzzy +#~ msgid "Rosegarden::AudioPluginDialog" +#~ msgstr "Rheolydd Ffeiliau Sain Rosegarden" + +#, fuzzy +#~ msgid "MatrixParameterBox" +#~ msgstr "Paramedrau Rhwydell" + +#, fuzzy +#~ msgid "TrackButtons" +#~ msgstr "Botwm Dychryn" + +#, fuzzy +#~ msgid "AudioFaderWidget" +#~ msgstr "Pylydd Sain" + +#, fuzzy +#~ msgid "SegmentTool" +#~ msgstr "Cylch&rannau" + +#, fuzzy +#~ msgid "SegmentPencil" +#~ msgstr "Cylch&rannau" + +#, fuzzy +#~ msgid "SegmentMover" +#~ msgstr "Cylch&rannau" + +#, fuzzy +#~ msgid "SegmentResizer" +#~ msgstr "Cylch&rannau" + +#, fuzzy +#~ msgid "SegmentSelector" +#~ msgstr "Paramedrau Cylchrannau" + +#, fuzzy +#~ msgid "SegmentJoiner" +#~ msgstr "Cylch&rannau" + +#, fuzzy +#~ msgid "Rosegarden::AudioManagerDialog" +#~ msgstr "Rheolydd Ffeiliau Sain Rosegarden" + +#, fuzzy +#~ msgid "SegmentCanvas" +#~ msgstr "Cylchrannau" + +#, fuzzy +#~ msgid "TextRuler" +#~ msgstr "Testun" + +#, fuzzy +#~ msgid "RosegardenGUIApp" +#~ msgstr "Rosegarden" + +#, fuzzy +#~ msgid "InstrumentParameterPanel" +#~ msgstr "Paramedrau Offerynnau" + +#, fuzzy +#~ msgid "AudioInstrumentParameterPanel" +#~ msgstr "Paramedrau Offerynnau" + +#, fuzzy +#~ msgid "MIDIInstrumentParameterPanel" +#~ msgstr "Paramedrau Offerynnau" + +#, fuzzy +#~ msgid "RosegardenColourTable" +#~ msgstr "Rosegarden" + +#, fuzzy +#~ msgid "RosegardenGUIDoc" +#~ msgstr "Rosegarden" + +#, fuzzy +#~ msgid "EventView" +#~ msgstr "Hidlau digwyddiadau" + +#, fuzzy +#~ msgid "TrackLabel" +#~ msgstr "Dangos &Labeli Trac" + +#, fuzzy +#~ msgid "ScrollBox" +#~ msgstr "Unawd" + +#, fuzzy +#~ msgid "RosegardenCanvasView" +#~ msgstr "Rosegarden" + +#, fuzzy +#~ msgid "Rosegarden::DiskSpace" +#~ msgstr "Rosegarden" + +#, fuzzy +#~ msgid "NoteInserter" +#~ msgstr "Mewnosod Nodyn" + +#, fuzzy +#~ msgid "RestInserter" +#~ msgstr "Mewnosod Nodyn" + +#, fuzzy +#~ msgid "NotationEraser" +#~ msgstr "Nodiad" + +#, fuzzy +#~ msgid "BarButtons" +#~ msgstr "Botwm Dychryn" + +#, fuzzy +#~ msgid "Rosegarden::RosegardenTransportDialog" +#~ msgstr "Cludiant Rosegarden" + +#, fuzzy +#~ msgid "ChordNameRuler" +#~ msgstr "Dangos Rhesydd Enwau C&ordiau" + +#, fuzzy +#~ msgid "LoopRuler" +#~ msgstr "Dolen" + +#~ msgid "Programs 65 - 128" +#~ msgstr "Rhaglenni 65 - 128" + +#~ msgid "Copy Programs" +#~ msgstr "Copio Rhaglenni" + +#~ msgid "Paste Programs" +#~ msgstr "Gludo Rhaglenni" + +#~ msgid "View Event" +#~ msgstr "Gweld Digwyddiad" + +#~ msgid "Connection: %1" +#~ msgstr "Cysylltiad: %1" + +#~ msgid "De-&Counterpoint" +#~ msgstr "Dat-&wrthbwyntio" + +#~ msgid "note-height not found" +#~ msgstr "methu canfod uchder y nodyn" + +#~ msgid "" +#~ "src is a required attribute of symbol (until real font support is " +#~ "implemented)" +#~ msgstr "" +#~ "priodoledd angenrheidiol o symbol yw src (tan gweithredir cynnal go iawn " +#~ "i ffontiau)" + +#~ msgid "No note font names available, aborting" +#~ msgstr "Dim enwau ffontiau ar gael, terfynu" + +#~ msgid "Summary" +#~ msgstr "Crynodeb" + +#~ msgid "" +#~ "This file contains tempo and/or time signature data.\n" +#~ "\n" +#~ "If you wish, I can append it to the composition instead\n" +#~ "of merging it from the start, so as to avoid changing\n" +#~ "the existing timing information in the composition." +#~ msgstr "" +#~ "Mae'r ffeil yma yn cynnwys data tempo a/neu arwydd amseriad.\n" +#~ "\n" +#~ "Os hoffech chi, gallaf ei hatodi i'r cyfansoddiad yn lle ei chyfuno\n" +#~ "o'r dechrau, er mwyn osgoi newid y wybodaeth amseriad sydd\n" +#~ "yn y cyfansoddiad yn barod." + +#~ msgid "Yes, append" +#~ msgstr "Ie, atodi" + +#~ msgid "No, merge as normal" +#~ msgstr "Nage, cyfuno fel arfer" + +#~ msgid "Playback failed to contact Rosegarden sequencer" +#~ msgstr "Methodd y chwarae gysylltu efo'r dilyniannydd Rosegarden" + +#~ msgid "Failed to start playback" +#~ msgstr "Methu dechrau chwarae" + +#~ msgid "Failed to contact Rosegarden sequencer" +#~ msgstr "Methu cysylltu a'r dilyniannydd Rosegarden" + +#~ msgid "" +#~ "Couldn't start recording audio. Ensure your audio record path is valid\n" +#~ "in Document Properties (Edit->Edit Document Properties->Audio)" +#~ msgstr "" +#~ "Methu dechrau recordio sain. Sicrhewch fod eich llwybr sain yn ddilys\n" +#~ "ym Mhriodweddau Sain(Golygu -> Golygu Priodweddau'r Ddogfen -> Sain)" + +#~ msgid "MIDI and Audio subsystems have failed to initialise" +#~ msgstr "Mae'r is-gysodau MIDI a Sain wedi methu ymgychwyn" + +#~ msgid "MIDI subsystem has failed to initialise" +#~ msgstr "Mae'r is-gysawd MIDI wedi methu ymgychwyn" + +#~ msgid "

            No more tips...

            \n" +#~ msgstr "

            Dim mwy o awgrymiadau

            \n" diff --git a/po/de.po b/po/de.po new file mode 100644 index 0000000..911e4f6 --- /dev/null +++ b/po/de.po @@ -0,0 +1,12067 @@ +# translation of de.po to Deutsch +# This file is distributed under the same license as the PACKAGE package. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. +# +# Jörg Schumann , 2003. +# Eckhard Jokisch , 2005. +# Michael Gerdau , 2006. +# Emanuel Rumpf , 2008-04-28. +msgid "" +msgstr "" +"Project-Id-Version: de\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-04-24 18:19-0400\n" +"PO-Revision-Date: 2008-04-28 22:25+0200\n" +"Last-Translator: Emanuel Rumpf\n" +"Language-Team: Deutsch \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#: ../src/gui/dialogs/RescaleDialog.cpp:51 rc.cpp:192 rc.cpp:312 +#, no-c-format +msgid "Rescale" +msgstr "Skaliere new" + +#: ../src/gui/dialogs/RescaleDialog.cpp:56 +msgid "Duration of selection" +msgstr "Dauer der Selektion" + +#: ../src/gui/dialogs/RescaleDialog.cpp:62 +msgid "Adjust times of following events accordingly" +msgstr "Passe Zeiten der nachfolgenden Events entsprechend an" + +#: ../src/gui/dialogs/PitchDialog.cpp:45 +#: ../src/gui/dialogs/RescaleDialog.cpp:72 +#: ../src/gui/dialogs/TimeDialog.cpp:51 ../src/gui/dialogs/TimeDialog.cpp:68 +#: ../src/gui/studio/BankEditorDialog.cpp:109 +msgid "Reset" +msgstr "Reset" + +#: ../src/commands/segment/SegmentSplitByPitchCommand.cpp:46 +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:46 +msgid "Split by Pitch" +msgstr "Nach Tonhöhe aufteilen" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:54 +msgid "Starting split pitch" +msgstr "Beginn der Tonhöhenaufteilung" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:57 +msgid "Range up and down to follow music" +msgstr "" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:63 +msgid "Duplicate non-note events" +msgstr "Doppelte nicht-Noten-Events" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:66 +msgid "Clef handling:" +msgstr "Schlüsselbehandlung:" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:69 +msgid "Leave clefs alone" +msgstr "Schlüssel nicht verändern" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:70 +msgid "Guess new clefs" +msgstr "Neue Schlüssel raten" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:71 +msgid "Use treble and bass clefs" +msgstr "Bass- und Violinschlüssel verwenden" + +#: ../src/gui/dialogs/DocumentConfigureDialog.cpp:64 +msgid "Document Properties" +msgstr "Dokumenteigenschaften" + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:45 +#: ../src/gui/editors/notation/NotationView.cpp:6048 +msgid "Make Ornament" +msgstr "Verzierung hinzufügen" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:183 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:179 +#: ../src/gui/dialogs/EventEditDialog.cpp:128 +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:49 +#: ../src/gui/studio/DeviceEditorDialog.cpp:74 +#: ../src/gui/studio/NameSetEditor.cpp:72 +#: ../src/gui/widgets/ColourTable.cpp:51 +msgid "Name" +msgstr "Name" + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:51 +msgid "" +"The name is used to identify both the ornament\n" +"and the triggered segment that stores\n" +"the ornament's notes." +msgstr "" +"Der Name dient sowohl der Identifikation der Verzierung, als auch\n" +"des getriggerten Segments, das die Noten der verzierung enthält." + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:54 +msgid "Name: " +msgstr "Name: " + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:57 +#: ../src/gui/editors/eventlist/EventView.cpp:717 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:92 +msgid "Base pitch" +msgstr "Basistonhöhe" + +#: ../src/gui/dialogs/TextEventDialog.cpp:57 +#: ../src/gui/editors/eventlist/EventView.cpp:140 +msgid "Text" +msgstr "text" + +#: ../src/gui/dialogs/TextEventDialog.cpp:66 +msgid "Specification" +msgstr "Spezifikation" + +#: ../src/gui/dialogs/TextEventDialog.cpp:68 +msgid "Preview" +msgstr "Vorschau" + +#: ../src/gui/dialogs/TextEventDialog.cpp:72 +msgid "Text: " +msgstr "text: " + +#: ../src/gui/dialogs/TextEventDialog.cpp:79 +msgid "Style: " +msgstr "Stil: " + +#: ../src/gui/dialogs/TextEventDialog.cpp:90 +msgid "Dynamic" +msgstr "Dynamik" + +#: ../src/gui/dialogs/TextEventDialog.cpp:93 +msgid "Direction" +msgstr "Richtung" + +#: ../src/gui/dialogs/TextEventDialog.cpp:96 +msgid "Local Direction" +msgstr "Lokale Richtung" + +#: ../src/gui/dialogs/TempoDialog.cpp:63 +#: ../src/gui/dialogs/TextEventDialog.cpp:99 +#: ../src/gui/editors/tempo/TempoView.cpp:91 +msgid "Tempo" +msgstr "Tempo" + +#: ../src/gui/dialogs/TextEventDialog.cpp:102 +msgid "Local Tempo" +msgstr "Lokales Tempo" + +#: ../src/gui/dialogs/TextEventDialog.cpp:105 +msgid "Lyric" +msgstr "Text" + +#: ../src/gui/dialogs/TextEventDialog.cpp:108 +#: ../src/gui/editors/notation/NotationView.cpp:4242 +msgid "Chord" +msgstr "Akkord" + +#: ../src/gui/dialogs/TextEventDialog.cpp:111 +msgid "Annotation" +msgstr "Anmerkung" + +#: ../src/gui/dialogs/TextEventDialog.cpp:114 +msgid "LilyPond Directive" +msgstr "LilyPond-Anweisung" + +#: ../src/gui/dialogs/TextEventDialog.cpp:138 +msgid "Verse: " +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:148 +msgid "Dynamic: " +msgstr "Dynamik:" + +#: ../src/gui/dialogs/TextEventDialog.cpp:152 +msgid "ppp" +msgstr "ppp" + +#: ../src/gui/dialogs/TextEventDialog.cpp:153 +msgid "pp" +msgstr "pp" + +#: ../src/gui/dialogs/TextEventDialog.cpp:154 +msgid "p" +msgstr "p" + +#: ../src/gui/dialogs/TextEventDialog.cpp:155 +msgid "mp" +msgstr "mp" + +#: ../src/gui/dialogs/TextEventDialog.cpp:156 +msgid "mf" +msgstr "mf" + +#: ../src/gui/dialogs/TextEventDialog.cpp:157 +msgid "f" +msgstr "f" + +#: ../src/gui/dialogs/TextEventDialog.cpp:158 +msgid "ff" +msgstr "ff" + +#: ../src/gui/dialogs/TextEventDialog.cpp:159 +msgid "fff" +msgstr "fff" + +#: ../src/gui/dialogs/TextEventDialog.cpp:160 +msgid "rfz" +msgstr "rfz" + +#: ../src/gui/dialogs/TextEventDialog.cpp:161 +msgid "sf" +msgstr "sf" + +#: ../src/gui/dialogs/TextEventDialog.cpp:165 +msgid "Direction: " +msgstr "Richtung:" + +#: ../src/gui/dialogs/TextEventDialog.cpp:174 +msgid " ," +msgstr "," + +#: ../src/gui/dialogs/TextEventDialog.cpp:175 +msgid "D.C. al Fine" +msgstr "D.C. al Fine" + +#: ../src/gui/dialogs/TextEventDialog.cpp:176 +msgid "D.S. al Fine" +msgstr "D.S. al Fine" + +#: ../src/gui/dialogs/TextEventDialog.cpp:177 +msgid "Fine" +msgstr "Fine" + +#: ../src/gui/dialogs/TextEventDialog.cpp:178 +msgid "D.S. al Coda" +msgstr "D.S. al Coda" + +#: ../src/gui/dialogs/TextEventDialog.cpp:179 +msgid "to Coda" +msgstr "zur Coda" + +#: ../src/gui/dialogs/TextEventDialog.cpp:180 +msgid "Coda" +msgstr "Coda" + +#: ../src/gui/dialogs/TextEventDialog.cpp:184 +msgid "Local Direction: " +msgstr "Lokale Richtung:" + +#: ../src/gui/dialogs/TextEventDialog.cpp:188 +msgid "accel." +msgstr "accel." + +#: ../src/gui/dialogs/TextEventDialog.cpp:189 +msgid "ritard." +msgstr "ritard." + +#: ../src/gui/dialogs/TextEventDialog.cpp:190 +msgid "ralletando" +msgstr "ralletando" + +#: ../src/gui/dialogs/TextEventDialog.cpp:191 +msgid "a tempo" +msgstr "a tempo" + +#: ../src/gui/dialogs/TextEventDialog.cpp:192 +msgid "legato" +msgstr "legato" + +#: ../src/gui/dialogs/TextEventDialog.cpp:193 +msgid "simile" +msgstr "simile" + +#: ../src/gui/dialogs/TextEventDialog.cpp:194 +msgid "pizz." +msgstr "pizz." + +#: ../src/gui/dialogs/TextEventDialog.cpp:195 +msgid "arco" +msgstr "arco" + +#: ../src/gui/dialogs/TextEventDialog.cpp:196 +msgid "non vib." +msgstr "non vib." + +#: ../src/gui/dialogs/TextEventDialog.cpp:197 +msgid "sul pont." +msgstr "sul pont." + +#: ../src/gui/dialogs/TextEventDialog.cpp:198 +#: ../src/gui/dialogs/TextEventDialog.cpp:200 +msgid "sul tasto" +msgstr "sul tasto" + +#: ../src/gui/dialogs/TextEventDialog.cpp:199 +msgid "con legno" +msgstr "con legno" + +#: ../src/gui/dialogs/TextEventDialog.cpp:201 +msgid "sul G" +msgstr "sul G" + +#: ../src/gui/dialogs/TextEventDialog.cpp:202 +msgid "ordinario" +msgstr "ordinario" + +#: ../src/gui/dialogs/TextEventDialog.cpp:203 +msgid "Muta in " +msgstr "Muta in " + +#: ../src/gui/dialogs/TextEventDialog.cpp:204 +msgid "volti subito " +msgstr "volti subito " + +#: ../src/gui/dialogs/TextEventDialog.cpp:205 +msgid "soli" +msgstr "soli" + +#: ../src/gui/dialogs/TextEventDialog.cpp:206 +msgid "div." +msgstr "div." + +#: ../src/gui/dialogs/TextEventDialog.cpp:210 +msgid "Tempo: " +msgstr "Tempo: " + +#: ../src/gui/dialogs/TextEventDialog.cpp:214 +#: ../src/gui/dialogs/TextEventDialog.cpp:238 +msgid "Grave" +msgstr "Grave" + +#: ../src/gui/dialogs/TextEventDialog.cpp:215 +#: ../src/gui/dialogs/TextEventDialog.cpp:239 +msgid "Adagio" +msgstr "Adagio" + +#: ../src/gui/dialogs/TextEventDialog.cpp:216 +#: ../src/gui/dialogs/TextEventDialog.cpp:240 +msgid "Largo" +msgstr "Largo" + +#: ../src/gui/dialogs/TextEventDialog.cpp:217 +#: ../src/gui/dialogs/TextEventDialog.cpp:241 +msgid "Lento" +msgstr "Lento" + +#: ../src/gui/dialogs/TextEventDialog.cpp:218 +#: ../src/gui/dialogs/TextEventDialog.cpp:242 +msgid "Andante" +msgstr "Andante" + +#: ../src/gui/dialogs/TextEventDialog.cpp:219 +#: ../src/gui/dialogs/TextEventDialog.cpp:243 +msgid "Moderato" +msgstr "Moderato" + +#: ../src/gui/dialogs/TextEventDialog.cpp:220 +#: ../src/gui/dialogs/TextEventDialog.cpp:244 +msgid "Allegretto" +msgstr "Allegretto" + +#: ../src/gui/dialogs/TextEventDialog.cpp:221 +#: ../src/gui/dialogs/TextEventDialog.cpp:245 +msgid "Allegro" +msgstr "Allegro" + +#: ../src/gui/dialogs/TextEventDialog.cpp:222 +#: ../src/gui/dialogs/TextEventDialog.cpp:246 +msgid "Vivace" +msgstr "Vivace" + +#: ../src/gui/dialogs/TextEventDialog.cpp:223 +#: ../src/gui/dialogs/TextEventDialog.cpp:247 +msgid "Presto" +msgstr "Presto" + +#: ../src/gui/dialogs/TextEventDialog.cpp:224 +#: ../src/gui/dialogs/TextEventDialog.cpp:248 +msgid "Prestissimo" +msgstr "Prestissimo" + +#: ../src/gui/dialogs/TextEventDialog.cpp:225 +#: ../src/gui/dialogs/TextEventDialog.cpp:249 +msgid "Maestoso" +msgstr "Maestoso" + +#: ../src/gui/dialogs/TextEventDialog.cpp:226 +#: ../src/gui/dialogs/TextEventDialog.cpp:250 +msgid "Sostenuto" +msgstr "Sostenuto" + +#: ../src/gui/dialogs/TextEventDialog.cpp:227 +#: ../src/gui/dialogs/TextEventDialog.cpp:251 +msgid "Tempo Primo" +msgstr "Tempo Primo" + +#: ../src/gui/dialogs/TextEventDialog.cpp:234 +msgid "Local Tempo: " +msgstr "Lokales Tempo: " + +#: ../src/gui/dialogs/TextEventDialog.cpp:255 +msgid "Directive: " +msgstr "Anweisung:" + +#: ../src/gui/dialogs/TextEventDialog.cpp:312 +msgid "Example" +msgstr "Beispiel" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:65 +msgid "Event Filter" +msgstr "Eventfilter" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:86 +msgid "Note Events" +msgstr "Noten Events" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:90 +msgid "lowest:" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:93 +msgid "highest:" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:96 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:141 +#: ../src/gui/widgets/PitchChooser.cpp:53 +msgid "Pitch:" +msgstr "Tonhöhe:" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:99 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:163 +msgid "Velocity:" +msgstr "Anschlagstärke:" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:102 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:129 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:257 +msgid "Duration:" +msgstr "Dauer:Dauer:" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:107 +#: ../src/gui/dialogs/EventFilterDialog.cpp:114 +#: ../src/gui/dialogs/EventFilterDialog.cpp:121 +msgid "include" +msgstr "einschließen" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:108 +#: ../src/gui/dialogs/EventFilterDialog.cpp:115 +#: ../src/gui/dialogs/EventFilterDialog.cpp:122 +msgid "exclude" +msgstr "ausschließen" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:136 +#: ../src/gui/dialogs/EventFilterDialog.cpp:155 +#: ../src/gui/editors/eventlist/EventView.cpp:172 +#: ../src/gui/editors/eventlist/EventView.cpp:179 +#: ../src/gui/editors/eventlist/EventView.cpp:186 +msgid "edit" +msgstr "bearbeiten" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:141 +#: ../src/gui/dialogs/EventFilterDialog.cpp:157 +msgid "choose a pitch using a staff" +msgstr "Wählen Sie die Tonhöhe im Notensystem aus" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:182 +#: ../src/gui/dialogs/EventFilterDialog.cpp:188 +msgid "longest" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:200 +msgid "Include all" +msgstr "Alle einschließen" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:203 +msgid "Include entire range of values" +msgstr "Gesamten Wertebereich einschließen" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:206 +msgid "Exclude all" +msgstr "Alle ausschließen" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:209 +msgid "Exclude entire range of values" +msgstr "Gesamten Wertebereich ausschließen" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:233 +#: ../src/gui/dialogs/EventFilterDialog.cpp:234 +#, fuzzy +msgid "shortest" +msgstr "Pause" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:333 +msgid "Lowest pitch" +msgstr "Niedrigste Tonhöhe" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:343 +msgid "Highest pitch" +msgstr "Höchste Tonhöhe" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:56 +#: ../src/gui/editors/notation/NotationView.cpp:1619 +#: ../src/gui/editors/notation/NotationView.cpp:6088 +msgid "Use Ornament" +msgstr "Verzierung verwenden" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:260 +#: ../src/gui/configuration/NotationConfigurationPage.h:64 +#: ../src/gui/configuration/NotationConfigurationPage.h:65 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:63 +msgid "Notation" +msgstr "Notation" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:68 +msgid "Display as: " +msgstr "Zeige als:" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:84 +msgid "Trill" +msgstr "Triller" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:84 +msgid "Trill with line" +msgstr "Triller folgt der Linie" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:84 +msgid "Trill line only" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:85 +msgid "Turn" +msgstr "Doppelschlag" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:85 +msgid "Mordent" +msgstr "Mordent" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:85 +msgid "Inverted mordent" +msgstr "Mordent umkehren" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:86 +msgid "Long mordent" +msgstr "Langer Mordent" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:86 +msgid "Long inverted mordent" +msgstr "Langer umgekehrter Mordent" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:94 +msgid "Text mark" +msgstr "Textmarke" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:98 +msgid " Text: " +msgstr " Text: " + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:104 +msgid "Performance" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:109 +msgid "Perform using triggered segment: " +msgstr "" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:75 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:123 +msgid "Perform with timing: " +msgstr "" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:81 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:129 +msgid "As stored" +msgstr "Wie gespeichert" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:82 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:130 +msgid "Truncate if longer than note" +msgstr "Abschneiden, wenn länger als Note" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:83 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:131 +msgid "End at same time as note" +msgstr "Zusammen mit der Note beenden" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:84 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:132 +msgid "Stretch or squash segment to note duration" +msgstr "Strecke oder stauche Segment gemäß Notendauer" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:86 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:134 +msgid "Adjust pitch to note" +msgstr "Tonhöhe an Note anpassen" + +#: ../src/gui/dialogs/PitchPickerDialog.cpp:40 +msgid "Pitch Selector" +msgstr "Tonhöhenauswahl" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:44 +msgid "Audio Segment Duration" +msgstr "Audio Segment Dauer" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:50 +msgid "The selected audio segment contains:" +msgstr "Das ausgewählte Audio Segment enthält:" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:59 +msgid "beat(s)" +msgstr "Taktschlag(äge)" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:60 +msgid "bar(s)" +msgstr "Takt(e)" + +#: ../src/gui/dialogs/TupletDialog.cpp:51 +msgid "Tuplet" +msgstr "Tuole" + +#: ../src/gui/dialogs/TupletDialog.cpp:58 +msgid "New timing for tuplet group" +msgstr "Neue Teilung für Tuole" + +#: ../src/gui/dialogs/TupletDialog.cpp:76 +msgid "Play " +msgstr "Abspielen " + +#: ../src/gui/dialogs/TupletDialog.cpp:98 +msgid "in the time of " +msgstr "in der Zeit von " + +#: ../src/gui/dialogs/TupletDialog.cpp:104 +msgid "Timing is already correct: update display only" +msgstr "Timing ist bereits korrigiert: aktualisiere Anzeige" + +#: ../src/gui/dialogs/TupletDialog.cpp:114 +msgid "Timing calculations" +msgstr "Timing-Berechnungen" + +#: ../src/gui/dialogs/TupletDialog.cpp:120 +msgid "Selected region:" +msgstr "Ausgewählte Region:" + +#: ../src/gui/dialogs/TupletDialog.cpp:129 +msgid "Group with current timing:" +msgstr "Gruppiere mit aktueller Aufteilung:" + +#: ../src/gui/dialogs/TupletDialog.cpp:135 +msgid "Group with new timing:" +msgstr "Gruppiere mit neuer Aufteilung:" + +#: ../src/gui/dialogs/TupletDialog.cpp:141 +msgid "Gap created by timing change:" +msgstr "Durch Veränderung der Aufteilung erzeugte Lücke:" + +#: ../src/gui/dialogs/TupletDialog.cpp:149 +msgid "Unchanged at end of selection:" +msgstr "Am Ende der Selektion unverändert:" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:63 rc.cpp:372 +#, no-c-format +msgid "Metronome" +msgstr "Metronom" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:77 +msgid "Metronome Instrument" +msgstr "Metronom Instrument" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:82 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:150 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:183 +#: ../src/gui/studio/DeviceEditorDialog.cpp:73 +#: ../src/gui/studio/DeviceManagerDialog.cpp:105 +#: ../src/gui/studio/DeviceManagerDialog.cpp:163 +#: ../src/gui/studio/RemapInstrumentDialog.cpp:66 +msgid "Device" +msgstr "Gerät" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:101 +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:89 +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:215 +#: ../src/gui/studio/DeviceEditorDialog.cpp:195 +#: ../src/gui/studio/DeviceEditorDialog.cpp:218 +#: ../src/gui/studio/DeviceEditorDialog.cpp:230 +#: ../src/gui/studio/DeviceManagerDialog.cpp:196 +#: ../src/gui/studio/DeviceManagerDialog.cpp:440 +#: ../src/gui/studio/DeviceManagerDialog.cpp:452 +msgid "No connection" +msgstr "Keine Verbindung" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:112 +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:111 +#: ../src/gui/editors/parameters/InstrumentParameterBox.cpp:53 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1209 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:159 +#: ../src/gui/general/PresetHandlerDialog.cpp:92 +#: ../src/gui/studio/MidiMixerWindow.cpp:204 +#: ../src/gui/studio/RemapInstrumentDialog.cpp:67 +msgid "Instrument" +msgstr "Instrument" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:118 +msgid "Beats" +msgstr "Taktschläge" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:184 +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:123 +msgid "Resolution" +msgstr "Auflösung" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:309 +#: ../src/gui/configuration/NotationConfigurationPage.cpp:139 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:205 +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:125 +#: ../src/gui/editors/matrix/MatrixView.cpp:2132 +#: ../src/gui/editors/notation/NotationView.cpp:1582 +#: ../src/gui/widgets/QuantizeParameters.cpp:128 +#: ../src/gui/widgets/QuantizeParameters.cpp:301 +msgid "None" +msgstr "Kein" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:126 +msgid "Bars only" +msgstr "Nur Takte" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:127 +msgid "Bars and beats" +msgstr "Takte und Schläge" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:128 +msgid "Bars, beats, and divisions" +msgstr "Takte, Schläge und Unterteilungen" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:132 +msgid "Bar velocity" +msgstr "Anschlagstärke des Taktes" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:139 +msgid "Beat velocity" +msgstr "Anschlagstärke des Schlages" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:146 +msgid "Sub-beat velocity" +msgstr "Stärke von Schlagteilungen" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:155 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:324 +msgid "Pitch" +msgstr "Tonhöhe" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:160 +msgid "for Bar" +msgstr "für Takt" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:161 +msgid "for Beat" +msgstr "für Taktschlag" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:162 +msgid "for Sub-beat" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:166 +msgid "Metronome Activated" +msgstr "Metronom eingeschaltet" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:167 +msgid "Playing" +msgstr "Wiedergabe" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:168 +msgid "Recording" +msgstr "Aufnahme" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:46 +msgid "Choose Text Encoding" +msgstr "Textkodierug wählen" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:50 +msgid "" +"\n" +"This file contains text in an unknown language encoding.\n" +"\n" +"Please select one of the following estimated text encodings\n" +"for use with the text in this file:\n" +msgstr "" +"\n" +"Diese Datei enthält Text in einer unbekannten Kodierung.\n" +"\n" +"Bitte wählen aus der Liste der folgenden Kodierungen eine\n" +"zur Verwendung mit dieser Datei aus:\n" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:61 +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:77 +msgid "Japanese Shift-JIS" +msgstr "Japanisch Shift-JIS" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:62 +msgid "Unicode variable-width" +msgstr "Unicode variable-Weite" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:63 +msgid "Western Europe" +msgstr "Westeuropa" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:64 +msgid "Western Europe + Euro" +msgstr "Westeuropa + Euro" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:65 +msgid "Eastern Europe" +msgstr "Osteuropa" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:66 +msgid "Southern Europe" +msgstr "Südeuropa" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:67 +msgid "Northern Europe" +msgstr "Nordeuropa" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:68 +msgid "Cyrillic" +msgstr "Kyrillisch" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:69 +msgid "Arabic" +msgstr "Arabisch" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:70 +msgid "Greek" +msgstr "Griechisch" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:71 +msgid "Hebrew" +msgstr "Hebräisch" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:72 +msgid "Turkish" +msgstr "Türkish" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:73 +msgid "Nordic" +msgstr "Skandinavisch" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:74 +msgid "Thai" +msgstr "Thailändisch" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:75 +msgid "Baltic" +msgstr "Baltisch" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:76 +msgid "Celtic" +msgstr "Keltisch" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:78 +msgid "Traditional Chinese" +msgstr "Traditionelles Chinesisch" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:79 +msgid "Simplified Chinese" +msgstr "Vereinfachtes Chinesisch" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:80 +msgid "Russian" +msgstr "Russisch" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:81 +msgid "Ukrainian" +msgstr "Ukrainisch" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:82 +msgid "Tamil" +msgstr "Tamilisch" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:117 +#, c-format +msgid "Microsoft Code Page %1" +msgstr "Microsoft Code Page %1" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:123 +#: ../src/gui/editors/matrix/MatrixView.cpp:1490 +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:142 +msgid "" +"\n" +"Example text from file:" +msgstr "" +"\n" +"Beispieltext aus Datei:" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:59 +#: ../src/gui/editors/tempo/TempoView.cpp:92 +msgid "Time Signature" +msgstr "Taktart" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:82 +msgid "Time signature" +msgstr "Taktart" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:116 +msgid "Time where signature takes effect" +msgstr "Zeitpunkt zu dem die Taktart angewandt wird" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:83 +#: ../src/gui/dialogs/TempoDialog.cpp:128 +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:129 +#: ../src/gui/general/PresetHandlerDialog.cpp:101 +msgid "Scope" +msgstr "Bereich" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:141 +#, c-format +msgid "Insertion point is at start of measure %1." +msgstr "Einfügepunkt ist am Beginn von Takt %1." + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:145 +#, c-format +msgid "Insertion point is in the middle of measure %1." +msgstr "Einfügepunkt ist in der Mitte von Takt %1" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:150 +msgid "Insertion point is at start of composition." +msgstr "Einfügepunkt ist am Beginn des Stücks." + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:155 +msgid "Start measure %1 here" +msgstr "Takt %1 hier beginnen" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:159 +#, c-format +msgid "Change time from start of measure %1" +msgstr "Ändere die Zeit vom Beginn des Taktes %1" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:166 +#, c-format +msgid "Time change will take effect at the start of measure %1." +msgstr "Die Änderung der Taktart wird zu Beginn des Takts %1 wirksam werden" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:176 +msgid "Hide the time signature" +msgstr "Zeitstempel verbergen" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:181 +msgid "Hide the affected bar lines" +msgstr "Verberge die beteiligten Tacktstriche" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:186 +msgid "Show as common time" +msgstr "Zeige als 4/4-tel Takt" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:191 +msgid "Correct the durations of following measures" +msgstr "Dauer nachfolgender Takte korrigieren" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:280 +msgid "Display as common time" +msgstr "Als Viervierteltakt anzeigen" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:284 +msgid "Display as cut common time" +msgstr "Als alla breve anzeigen" + +#: ../src/gui/dialogs/ConfigureDialog.cpp:66 +msgid "Configure Rosegarden" +msgstr "Rosegarden konfigurieren" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:53 +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:61 +msgid "Edit Marker" +msgstr "Marker editieren" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:78 +msgid "Marker Time" +msgstr "Marker Zeit" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:94 +msgid "Marker Properties" +msgstr "Marker Eigenschaften" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:100 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:554 +msgid "Text:" +msgstr "Text:" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:104 +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:85 +msgid "Description:" +msgstr "Beschreibung" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:46 +msgid "Merge File" +msgstr "MIDI-Datei mischen" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:53 +msgid "Merge new file " +msgstr "Neue MIDI-Datei mischen" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:56 +msgid "At start of existing composition" +msgstr "Am Beginn der existierenden Komposition" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:57 +msgid "From end of existing composition" +msgstr "Vom Ende der existierenden Komposition" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:61 +msgid "The file has different time signatures or tempos." +msgstr "Die Datei hat andere Taktarten oder Tempi" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:62 +msgid "Import these as well" +msgstr "Diese auch importieren" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:171 +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:44 +msgid "Sequencer status" +msgstr "Sequenzerstatus" + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:48 +msgid "Sequencer status:" +msgstr "Sequenzerstatus:" + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:50 +msgid "Status not available." +msgstr "Status nicht verfügbar." + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:57 +msgid "Sequencer is not running or is not responding." +msgstr "Der Sequenzer läuft oder antwortet nicht" + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:64 +msgid "Sequencer is not returning a valid status report." +msgstr "Kein brauchbarer Statusbericht vom Sequenzer" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:46 +msgid "Add Tracks" +msgstr "&Mehrere Spuren hinzufügen..." + +#: ../src/gui/dialogs/AddTracksDialog.cpp:54 +msgid "How many tracks do you want to add?" +msgstr "Wie viele Spuren wollen Sie hinzufügen? (max. 24)" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:62 +msgid "Add tracks" +msgstr "&Mehrere Spuren hinzufügen" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:64 +msgid "At the top" +msgstr "" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:65 +msgid "Above the current selected track" +msgstr "Über die momentan gewählte Spur " + +#: ../src/gui/dialogs/AddTracksDialog.cpp:66 +msgid "Below the current selected track" +msgstr "Unter die momentan gewählte Spur" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:67 +msgid "At the bottom" +msgstr "Unterhalb" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:75 +msgid "Event Properties" +msgstr "Event-Eigenschaften" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:81 +msgid "Event type:" +msgstr "Eventtyp: " + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:117 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:251 +#: ../src/gui/editors/segment/MarkerEditor.cpp:97 +msgid "Absolute time:" +msgstr "Absolute Zeit: " + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:156 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:323 +msgid "Controller name:" +msgstr "Controller Name" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:157 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:530 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:562 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:563 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:602 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:631 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:267 +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:269 +#: ../src/gui/editors/segment/MarkerEditor.cpp:279 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:272 +#: ../src/gui/studio/AudioMixerWindow.cpp:388 +#: ../src/gui/studio/AudioMixerWindow.cpp:519 +#: ../src/gui/studio/AudioMixerWindow.cpp:683 +#: ../src/gui/studio/AudioMixerWindow.cpp:722 +#: ../src/gui/studio/AudioMixerWindow.cpp:904 +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:121 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:174 +msgid "Meta string:" +msgstr "Meta string" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:179 +msgid "Load data" +msgstr "Lade Daten" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:181 +msgid "Save data" +msgstr "Speichern unter" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:192 +msgid "Notation Properties" +msgstr "Notationsparameter" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:198 +msgid "Lock to changes in performed values" +msgstr "Verknüpfe mit Änderungen an ausgeführten Werten" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:205 +msgid "Notation time:" +msgstr "Notationszeit:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:217 +msgid "Notation duration:" +msgstr "Notationsdauer:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:283 +msgid "Note pitch:" +msgstr "Tonhöhe:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:291 +msgid "Note velocity:" +msgstr "Anschlagstärke:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:317 +msgid "Controller number:" +msgstr "Controller Nummer:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:326 +msgid "Controller value:" +msgstr "Controller Wert:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:354 +msgid "Key pitch:" +msgstr "Tonhöhe:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:362 +msgid "Key pressure:" +msgstr "Key Pressure/Aftertouch:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:390 +msgid "Channel pressure:" +msgstr "Kanal Pressure/Kanal Aftertouch:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:418 +msgid "Program change:" +msgstr "Programmwechsel" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:461 +msgid "Data length:" +msgstr "Datenlänge:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:462 +msgid "Data:" +msgstr "Daten:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:480 +msgid "Pitchbend MSB:" +msgstr "Pitch Bend MSB" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:488 +msgid "Pitchbend LSB:" +msgstr "Pitch Bend LSB" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:523 +msgid "Indication:" +msgstr "Indication" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:553 +msgid "Text type:" +msgstr "Textart:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:596 +msgid "Clef type:" +msgstr "Schlüsselart:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:625 +msgid "Key name:" +msgstr "Tonartname:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:674 +msgid "Unsupported event type:" +msgstr "Nicht unterstütztes Event:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:931 +msgid "Edit Event Time" +msgstr "Event Zeit ändern" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:943 +msgid "Edit Event Notation Time" +msgstr "Event Notationszeit ändern" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:955 +msgid "Edit Duration" +msgstr "Dauer ändern" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:968 +msgid "Edit Notation Duration" +msgstr "Notationsdauer ändern" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:981 +msgid "Edit Pitch" +msgstr "Tonhöhe ändern" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:991 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:1016 +msgid "*.syx|System exclusive files (*.syx)" +msgstr "*.syx|System exclusive Dateien (*.syx)" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:992 +msgid "Load System Exclusive data in File" +msgstr "Lade System Exclusive Daten aus Datei" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:1017 +msgid "Save System Exclusive data to..." +msgstr "Speichere System Exclusive Daten nach..." + +#: ../src/gui/dialogs/FileLocateDialog.cpp:46 +msgid "Locate audio file" +msgstr "Audiodatei finden" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:50 +msgid "&Skip" +msgstr "&Überspringen" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:51 +msgid "Skip &All" +msgstr "&Alles überspringen" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:52 +msgid "&Locate" +msgstr "&Finden" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:57 +msgid "" +"Can't find file \"%1\".\n" +"Would you like to try and locate this file or skip it?" +msgstr "" +"Die Datei \"%1\".\n" +" wurde nicht gefunden. Wollen Sie diese Datei suchen oder überspringen?" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:71 +msgid "" +"%1|Requested file (%2)\n" +"*.wav|WAV files (*.wav)" +msgstr "" +"%1|Angeforderte Dateien (%2)\n" +"*.wav|WAV Dateien (*.wav)" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:74 +msgid "Select an Audio File" +msgstr "Audiodatei wählen" + +#: ../src/gui/dialogs/ClefDialog.cpp:53 ../src/gui/dialogs/ClefDialog.cpp:62 +#: ../src/gui/dialogs/ClefDialog.cpp:79 ../src/gui/dialogs/ClefDialog.cpp:90 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:278 +msgid "Clef" +msgstr "Schlüssel" + +#: ../src/gui/dialogs/ClefDialog.cpp:65 +msgid "Existing notes following clef change" +msgstr "Vorhandene Noten folgen Schlüsseländerung" + +#: ../src/gui/dialogs/ClefDialog.cpp:71 +msgid "Lower clef" +msgstr "Tieferer Schlüssel" + +#: ../src/gui/dialogs/ClefDialog.cpp:77 +msgid "Up an Octave" +msgstr "Oktave höher" + +#: ../src/gui/dialogs/ClefDialog.cpp:84 +msgid "Down an Octave" +msgstr "Oktave herunter" + +#: ../src/gui/dialogs/ClefDialog.cpp:88 +msgid "Higher clef" +msgstr "Höherer Schlüssel" + +#: ../src/gui/dialogs/ClefDialog.cpp:96 +#: ../src/gui/dialogs/KeySignatureDialog.cpp:152 +msgid "Maintain current pitches" +msgstr "Aktuelle Tonhöhen beibehalten" + +#: ../src/gui/dialogs/ClefDialog.cpp:99 +msgid "Transpose into appropriate octave" +msgstr "In die richtige Oktave transponieren" + +#: ../src/gui/dialogs/ClefDialog.cpp:231 +msgid "%1 down an octave" +msgstr "%1 Oktave herunter" + +#: ../src/gui/dialogs/ClefDialog.cpp:234 +msgid "%1 down two octaves" +msgstr "%1 zwei Oktaven herunter" + +#: ../src/gui/dialogs/ClefDialog.cpp:237 +msgid "%1 up an octave" +msgstr "%1 Oktave höher" + +#: ../src/gui/dialogs/ClefDialog.cpp:240 +msgid "%1 up two octaves" +msgstr "%1 zwei Oktaven höher" + +#: ../src/gui/dialogs/ClefDialog.cpp:249 +msgid "Treble" +msgstr "Sopran" + +#: ../src/gui/dialogs/ClefDialog.cpp:251 +msgid "French violin" +msgstr "Französische Violine" + +#: ../src/gui/dialogs/ClefDialog.cpp:253 +msgid "Soprano" +msgstr "Sopran" + +#: ../src/gui/dialogs/ClefDialog.cpp:255 +msgid "Mezzo-soprano" +msgstr "Mezzo-Sopran" + +#: ../src/gui/dialogs/ClefDialog.cpp:257 +msgid "Alto" +msgstr "Alt" + +#: ../src/gui/dialogs/ClefDialog.cpp:259 +msgid "Tenor" +msgstr "Tenor" + +#: ../src/gui/dialogs/ClefDialog.cpp:261 +msgid "C-baritone" +msgstr "C-Bariton" + +#: ../src/gui/dialogs/ClefDialog.cpp:263 +msgid "F-baritone" +msgstr "F-Bariton" + +#: ../src/gui/dialogs/ClefDialog.cpp:265 +msgid "Bass" +msgstr "Baß" + +#: ../src/gui/dialogs/ClefDialog.cpp:267 +#, fuzzy +msgid "Sub-bass" +msgstr "Baß" + +#: ../src/gui/dialogs/CountdownDialog.cpp:52 +msgid "Recording..." +msgstr "Aufnahme läuft..." + +#: ../src/gui/dialogs/CountdownDialog.cpp:60 +msgid "Recording time remaining: " +msgstr "Rest-Aufnahmezeit: " + +#: ../src/gui/dialogs/CountdownDialog.cpp:120 +msgid "Just how big is your hard disk?" +msgstr "Wie groß ist denn Ihre Festplatte?" + +#: ../src/gui/dialogs/CountdownDialog.cpp:154 +msgid "Recording beyond end of composition: " +msgstr "Aufnahme nach dem Ende der Komposition:" + +#: ../src/gui/dialogs/IntervalDialog.cpp:52 +msgid "Specify Interval" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:58 +msgid "Reference note:" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:59 +msgid "Target note:" +msgstr "Zielnote:" + +#: ../src/gui/dialogs/IntervalDialog.cpp:68 +#: ../src/gui/dialogs/IntervalDialog.cpp:315 +msgid "a perfect unison" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:76 +msgid "Effect on Key" +msgstr "Auswirkung auf den Schlüssel " + +#: ../src/gui/dialogs/IntervalDialog.cpp:77 +msgid "Transpose within key" +msgstr "Innerhalb der Tonart transponieren" + +#: ../src/gui/dialogs/IntervalDialog.cpp:79 +msgid "Change key for selection" +msgstr "Wechsele die Tonart für die Auswahl" + +#: ../src/gui/dialogs/IntervalDialog.cpp:89 +msgid "" +"Adjust segment transposition in opposite direction (maintain audible pitch)" +msgstr "Passe die Transposition des Segmentes in entegengesetzter Richtung an (erhalte die hörbare Tonhöhe) " + +#: ../src/gui/dialogs/IntervalDialog.cpp:190 +#: ../src/gui/dialogs/IntervalDialog.cpp:220 +msgid "a diminished" +msgstr "ein Verminderter" + +#: ../src/gui/dialogs/IntervalDialog.cpp:192 +#: ../src/gui/dialogs/IntervalDialog.cpp:222 +msgid "an augmented" +msgstr "ein Übermäßiger" + +#: ../src/gui/dialogs/IntervalDialog.cpp:194 +#: ../src/gui/dialogs/IntervalDialog.cpp:224 +msgid "a doubly diminished" +msgstr "ein doppelt Verminderter" + +#: ../src/gui/dialogs/IntervalDialog.cpp:196 +#: ../src/gui/dialogs/IntervalDialog.cpp:226 +msgid "a doubly augmented" +msgstr "ein doppelt Übermäßgier" + +#: ../src/gui/dialogs/IntervalDialog.cpp:198 +#: ../src/gui/dialogs/IntervalDialog.cpp:228 +msgid "a triply diminished" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:200 +#: ../src/gui/dialogs/IntervalDialog.cpp:230 +msgid "a triply augmented" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:202 +msgid "a quadruply diminished" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:204 +#: ../src/gui/dialogs/IntervalDialog.cpp:232 +msgid "a quadruply augmented" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:206 +#: ../src/gui/dialogs/IntervalDialog.cpp:234 +msgid "a perfect" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:208 +#: ../src/gui/dialogs/IntervalDialog.cpp:236 +msgid "an (unknown, %1)" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:216 +#, fuzzy +msgid "a minor" +msgstr "moll" + +#: ../src/gui/dialogs/IntervalDialog.cpp:218 +#, fuzzy +msgid "a major" +msgstr "dur" + +#: ../src/gui/dialogs/IntervalDialog.cpp:239 +#, fuzzy +msgid "an (unknown)" +msgstr "Unbekannt" + +#: ../src/gui/dialogs/IntervalDialog.cpp:248 +#: ../src/gui/dialogs/IntervalDialog.cpp:251 +#, fuzzy +msgid "%1 octave" +msgstr "%1 Oktave höher" + +#: ../src/gui/dialogs/IntervalDialog.cpp:254 +#, fuzzy +msgid "%1 unison" +msgstr "Einheiten" + +#: ../src/gui/dialogs/IntervalDialog.cpp:258 +#, fuzzy +msgid "%1 second" +msgstr "Sekunden:" + +#: ../src/gui/dialogs/IntervalDialog.cpp:261 +#, fuzzy +msgid "%1 third" +msgstr "Andere" + +#: ../src/gui/dialogs/IntervalDialog.cpp:264 +#, fuzzy +msgid "%1 fourth" +msgstr "%1 b" + +#: ../src/gui/dialogs/IntervalDialog.cpp:267 +#, fuzzy +msgid "%1 fifth" +msgstr "Tonhöhe" + +#: ../src/gui/dialogs/IntervalDialog.cpp:270 +#, fuzzy +msgid "%1 sixth" +msgstr "Tonhöhe" + +#: ../src/gui/dialogs/IntervalDialog.cpp:273 +#, fuzzy +msgid "%1 seventh" +msgstr "Eventgröße verändern" + +#: ../src/gui/dialogs/IntervalDialog.cpp:276 +#: ../src/gui/studio/DeviceManagerDialog.cpp:329 +#: ../src/gui/studio/DeviceManagerDialog.cpp:363 +#, c-format +msgid "%1" +msgstr "%1" + +#: ../src/gui/dialogs/IntervalDialog.cpp:287 +msgid "" +"_n: up 1 octave and %1\n" +"up %n octaves and %1" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:291 +#, c-format +msgid "" +"_n: up 1 octave\n" +"up %n octaves" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:295 +#, fuzzy, c-format +msgid "up %1" +msgstr "Gruppe %1" + +#: ../src/gui/dialogs/IntervalDialog.cpp:303 +msgid "" +"_n: down 1 octave and %1\n" +"down %n octaves and %1" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:307 +#, fuzzy, c-format +msgid "" +"_n: down 1 octave\n" +"down %n octaves" +msgstr "" +"_n: %1 auf 1 Spur\n" +"%1 auf %n Spuren" + +#: ../src/gui/dialogs/IntervalDialog.cpp:311 +#, fuzzy, c-format +msgid "down %1" +msgstr "Tief: %1" + +#: ../src/gui/dialogs/EventEditDialog.cpp:81 +msgid "Intrinsics" +msgstr "Interna" + +#: ../src/gui/dialogs/EventEditDialog.cpp:85 +msgid "Event type: " +msgstr "Eventtyp: " + +#: ../src/gui/dialogs/EventEditDialog.cpp:91 +msgid "Absolute time: " +msgstr "Absolute Zeit: " + +#: ../src/gui/dialogs/EventEditDialog.cpp:101 +msgid "Duration: " +msgstr "Dauer: " + +#: ../src/gui/dialogs/EventEditDialog.cpp:114 +msgid "Sub-ordering: " +msgstr "Unter - Ordnung" + +#: ../src/gui/dialogs/EventEditDialog.cpp:125 +msgid "Persistent properties" +msgstr "Dauerhafte Eigenschaften" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:169 +#: ../src/gui/dialogs/EventEditDialog.cpp:133 +#: ../src/gui/studio/BankEditorDialog.cpp:129 +#: ../src/gui/studio/DeviceEditorDialog.cpp:75 +msgid "Type" +msgstr "Typ" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:184 +#: ../src/gui/dialogs/EventEditDialog.cpp:135 +#: ../src/gui/dialogs/EventParameterDialog.cpp:89 +#: ../src/gui/dialogs/EventParameterDialog.cpp:93 +#: ../src/gui/dialogs/EventParameterDialog.cpp:115 +msgid "Value" +msgstr "Wert" + +#: ../src/gui/dialogs/EventEditDialog.cpp:155 +msgid "Non-persistent properties" +msgstr "Nicht-dauerhafte Eigenschaften" + +#: ../src/gui/dialogs/EventEditDialog.cpp:156 +msgid "These are cached values, lost if the event is modified." +msgstr "" +"Diese Werte werden nur im Speicher gehalten und gehen verloren, wenn das " +"Event verändert wird." + +#: ../src/gui/dialogs/EventEditDialog.cpp:170 +msgid "Name " +msgstr "Name " + +#: ../src/gui/dialogs/EventEditDialog.cpp:172 +msgid "Type " +msgstr "Typ " + +#: ../src/gui/dialogs/EventEditDialog.cpp:174 +msgid "Value " +msgstr "Wert " + +#: ../src/gui/dialogs/EventEditDialog.cpp:188 +msgid "Make persistent" +msgstr "Dauerhaft machen" + +#: ../src/gui/dialogs/EventEditDialog.cpp:292 +msgid "Delete this property" +msgstr "Diese Eigenschaft löschen" + +#: ../src/gui/dialogs/EventEditDialog.cpp:433 +msgid "" +"Are you sure you want to delete the \"%1\" property?\n" +"\n" +"Removing necessary properties may cause unexpected behavior." +msgstr "" +"Sind Sie sicher, dass Sie die Eigenschaft \"%1\" löschen wollen?\n" +"\n" +"Das Löschen benötigter Eigenschaften kann unerwartetes Verhalten hervorrufen." + +#: ../src/gui/dialogs/EventEditDialog.cpp:436 +#: ../src/gui/dialogs/EventEditDialog.cpp:469 +msgid "Edit Event" +msgstr "Event verändern" + +#: ../src/gui/dialogs/EventEditDialog.cpp:465 +msgid "" +"Are you sure you want to make the \"%1\" property persistent?\n" +"\n" +"This could cause problems if it overrides a different computed value later " +"on." +msgstr "" +"Sind Sie sicher, dass Sie die Eigenschaft \"%1\" dauerhaft machen wollen?\n" +"\n" +"Dies könnte Probleme verursachen, wenn so später ein berechneter Wert " +"überschrieben wird." + +#: ../src/gui/dialogs/EventEditDialog.cpp:470 +msgid "Make &Persistent" +msgstr "&Dauerhaft machen" + +#: ../src/gui/dialogs/PasteNotationDialog.cpp:52 +msgid "Paste type" +msgstr "Typ einfügen" + +#: ../src/gui/dialogs/PasteNotationDialog.cpp:72 +msgid "Make this the default paste type" +msgstr "Dies zum Standard-Einfügemodus machen" + +#: ../src/gui/dialogs/LyricEditDialog.cpp:53 +msgid "Edit Lyrics" +msgstr "Text editieren" + +#: ../src/gui/dialogs/LyricEditDialog.cpp:62 +msgid "Lyrics for this segment" +msgstr "Text für dieses Segment" + +#: ../src/gui/dialogs/LyricEditDialog.cpp:70 +msgid "Add Verse" +msgstr "Verse hinzufügen" + +#: ../src/gui/dialogs/LyricEditDialog.cpp:84 +#: ../src/gui/dialogs/LyricEditDialog.cpp:106 +#, c-format +msgid "Verse %1" +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:59 +msgid "Import from Device..." +msgstr "Importieren von Gerät..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2163 +#: ../src/gui/application/RosegardenGUIApp.cpp:2229 +#: ../src/gui/application/RosegardenGUIApp.cpp:7780 +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:87 +#: ../src/sound/AudioFileManager.cpp:664 +#, c-format +msgid "Cannot download file %1" +msgstr "Kann Datei %1 nicht herunterladen" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:99 +#, c-format +msgid "Cannot open file %1" +msgstr "Datei %1 kann nicht geöfnet werden '" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:106 +#, c-format +msgid "No devices found in file %1" +msgstr "Keine Geräte in der Datei gefunden" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:113 +msgid "Source device" +msgstr "Quell-Gerät" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:118 +msgid "Import from: " +msgstr "Bänke importieren von Gerät..." + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:140 +#: ../src/gui/studio/DeviceEditorDialog.cpp:148 +#, c-format +msgid "Device %1" +msgstr "Gerät %1" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:155 +msgid "Import banks" +msgstr "Bänke importieren" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:156 +msgid "Import key mappings" +msgstr "Bänke exportieren" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:157 +msgid "Import controllers" +msgstr "%1 Controller" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:160 +msgid "Import device name" +msgstr "Name des Import-Geräts" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:166 +msgid "Bank import behavior" +msgstr "Import-Verhalten" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:168 +msgid "Merge banks" +msgstr "Bänke mischen" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:169 +msgid "Overwrite banks" +msgstr "Bänke überschreiben" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:367 +msgid "Bank %1:%2" +msgstr "Bank %1:%2" + +#: ../src/commands/segment/SegmentSplitByRecordingSrcCommand.cpp:42 +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:48 +msgid "Split by Recording Source" +msgstr "Nach Aufnahmequelle aufteilen" + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:53 +msgid "Recording Source" +msgstr "Aufnahmequelle" + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:57 +msgid "Channel:" +msgstr "Kanal:" + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:64 +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:75 +msgid "any" +msgstr "Irgendein" + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:69 +msgid "Device:" +msgstr "Gerät:" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:46 +msgid "Select Unused Audio Files" +msgstr "Nicht verwendete Audiodateien auswählen" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:53 +#: ../src/gui/editors/segment/PlayListView.cpp:36 +msgid "File name" +msgstr "Dateiname" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:54 +msgid "File size" +msgstr "Dateigröße:" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:55 +msgid "Last modified date" +msgstr "Letztes Änderungsdatum" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:60 +msgid " (not found) " +msgstr "(nicht gefunden)" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:105 +msgid "Audio File Manager" +msgstr "Audiodatei Manager" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:126 +msgid "" +"* Some audio files are encoded at a sample rate different from that of the " +"JACK audio server.\n" +"Rosegarden will play them at the correct speed, but they will sound " +"terrible.\n" +"Please consider resampling such files externally, or adjusting the sample " +"rate of the JACK server." +msgstr "" +"* Einige der Audio Dateien haben eine andere Samplefrequenz als der JACK " +"Audio Server.\n" +"Rosegarden wird sie zwar mit der richtigen Geschwindigkeit abspielen, aber " +"der Klang wird vermutlich furchtbar sein.\n" +"Sie sollten versuchen, die Samplerate dieser Dateien extern zu ändern, oder " +"aber ggf. die Samplefrequenz des JACK Servers anpassen." + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:132 +msgid "&Add Audio File..." +msgstr "Audiodatei hinzufügen..." + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:135 +msgid "&Unload Audio File" +msgstr "Audiodatei herausnehmen" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:140 +msgid "&Play Preview" +msgstr "Vorschau abspielen" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:151 +msgid "&Insert into Selected Audio Track" +msgstr "&In ausgewählte Audiospur einfügen" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:155 +msgid "Unload &all Audio Files" +msgstr "Alle Audiodateien herausnehmen" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:159 +msgid "Unload all &Unused Audio Files" +msgstr "Alle unbenutzten Audiodateien herausnehmen" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:163 +msgid "&Delete Unused Audio Files..." +msgstr "Nicht verwendete Audiodateien löschen" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:167 +msgid "&Export Audio File..." +msgstr "Audiodatei exportieren..." + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:173 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:180 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:91 +msgid "Duration" +msgstr "Dauer" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:181 +msgid "Envelope" +msgstr "Hüllkurve" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:182 +msgid "Sample rate" +msgstr "Abtastrate" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:183 +msgid "Channels" +msgstr "Kanäle" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:282 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:488 +msgid "*.wav|WAV files (*.wav)" +msgstr "*.wav|WAV-Dateien (*.wav)" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:489 +msgid "Choose a name to save this file as" +msgstr "Einen Namen wählen, unter dem die Datei abgespeichert werden soll" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:499 +msgid "Exporting audio file..." +msgstr "Audiodatei wird exportiert..." + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:609 +msgid "" +"This will unload audio file \"%1\" and remove all associated segments. Are " +"you sure?" +msgstr "" +"Wirklich die Audiodatei \"%1\" und alle zugehörigen Audiosegmente löschen?" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:692 +#, fuzzy +msgid "" +"*.wav|WAV files (*.wav)\n" +"*.*|All files" +msgstr "*.wav|WAV-Dateien (*.wav)" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:697 +msgid "" +"*.wav *.flac *.ogg *.mp3|Audio files (*.wav *.flac *.ogg *.mp3)\n" +"*.wav|WAV files (*.wav)\n" +"*.flac|FLAC files (*.flac)\n" +"*.ogg|Ogg files (*.ogg)\n" +"*.mp3|MP3 files (*.mp3)\n" +"*.*|All files" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:704 +msgid "Select one or more audio files" +msgstr "Eine oder mehrere Audiodateien auswählen" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:763 +msgid "" +"This will unload all audio files and remove their associated segments.\n" +"This action cannot be undone, and associations with these files will be " +"lost.\n" +"Files will not be removed from your disk.\n" +"Are you sure?" +msgstr "" +"Dies wird alle Audiodateien herausnehmen sowie die zugehörigen Segmente " +"entfernen.\n" +"Diese Aktion kann nicht rückgängig gemacht werden und alle " +"Segmentzuordnungen sind unwiederbringlich verloren.\n" +"Die Dateien bleiben jedoch auf der Festplatte erhalten.\n" +"Wollen Sie das tun?" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:800 +msgid "" +"This will unload all audio files that are not associated with any segments " +"in this composition.\n" +"This action cannot be undone, and associations with these files will be " +"lost.\n" +"Files will not be removed from your disk.\n" +"Are you sure?" +msgstr "" +"Dies wird alle diejenigen Audiodateien aus der Komposition herausnehmen, die " +"keinem Segment zugeordnet sind.\n" +"Dies Aktion kann nicht rückgängig gemacht werden.\n" +"Die Dateien bleiben jedoch auf der Festplatte erhalten.\n" +"Wollen Sie das tun?" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:865 +msgid "" +"The following audio files are not used in the current composition.\n" +"\n" +"Please select the ones you wish to delete permanently from the hard disk.\n" +msgstr "" +"Die folgenden Audiodateien werden in der Komposition nicht verwendet.\n" +"\n" +"Bitte wählen Sie diejenigen aus, die permanent von der Festplatte gelöscht " +"werden sollen.\n" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:875 +#, c-format +msgid "" +"_n: About to delete 1 audio file permanently from the hard disk.
            This " +"action cannot be undone, and there will be no way to recover this file." +"
            Are you sure?
            \n" +"\n" +"About to delete %n audio files permanently from the hard disk.
            This " +"action cannot be undone, and there will be no way to recover these files." +"
            Are you sure?
            " +msgstr "" +"_n: Es soll 1 Audiodatei dauerhaft von der Festplatte gelöscht werden.\n" +"Diese Aktion kann nicht rückgängig gemacht werden und die einmal gelöschte " +"Datei kann danach nicht wieder hergestellt werden.\n" +"Sind Sie sicher?\n" +"Es sollen %1 Audiodateien dauerhaft von der Festplatte gelöscht werden.\n" +"Diese Aktion kann nicht rückgängig gemacht werden und die einmal gelöschten " +"Dateien können danach nicht wieder hergestellt werden.\n" +"Sind Sie sicher?" + +#: ../src/document/RosegardenGUIDoc.cpp:525 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:888 +msgid "File %1 could not be deleted." +msgstr "Die Datei %1 konnte nicht gelöscht werden." + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:921 +msgid "Change Audio File label" +msgstr "Audiodateibezeichung ändern" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6466 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:922 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1099 +msgid "Enter new label" +msgstr "Neue Bezeichnung eingeben" + +#: ../src/gui/application/RosegardenGUIView.cpp:1538 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1086 +msgid "Adding audio file..." +msgstr "Füge Audiodatei hinzu..." + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1107 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1112 +msgid "Failed to add audio file. " +msgstr "Der Sequenzer konnte die Audio-Datei %1 nicht hinzufügen" + +#: ../src/document/RosegardenGUIDoc.cpp:2789 +#: ../src/gui/application/RosegardenGUIApp.cpp:2736 +#: ../src/gui/application/RosegardenGUIView.cpp:1574 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1122 +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:180 +msgid "Generating audio preview..." +msgstr "Audio-Vorschau wird erzeugt..." + +#: ../src/gui/application/RosegardenGUIView.cpp:1581 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1130 +msgid "" +"Try copying this file to a directory where you have write permission and re-" +"add it" +msgstr "" +"Versuchen Sie diese Datei in ein Verzeichnis zu kopieren, für das Sie " +"Schreibberechtigung besitzen und fügen Sie sie erneut hinzu" + +#: ../src/gui/dialogs/TransportDialog.cpp:90 rc.cpp:357 +#, no-c-format +msgid "Rosegarden Transport" +msgstr "Rosegarden Bedienfeld" + +#: ../src/gui/dialogs/TransportDialog.cpp:925 +#: ../src/gui/dialogs/TransportDialog.cpp:985 +msgid "PITCH WHEEL" +msgstr "PITCH WHEEL" + +#: ../src/gui/dialogs/TransportDialog.cpp:929 +#: ../src/gui/dialogs/TransportDialog.cpp:989 +msgid "CONTROLLER" +msgstr "CONTROLLER" + +#: ../src/gui/dialogs/TransportDialog.cpp:933 +#: ../src/gui/dialogs/TransportDialog.cpp:993 +msgid "PROG CHNGE" +msgstr "PROG CHNGE" + +#: ../src/gui/dialogs/TransportDialog.cpp:938 +#: ../src/gui/dialogs/TransportDialog.cpp:998 +msgid "PRESSURE" +msgstr "PRESSURE" + +#: ../src/gui/dialogs/TransportDialog.cpp:942 +#: ../src/gui/dialogs/TransportDialog.cpp:1002 +msgid "SYS MESSAGE" +msgstr "SYS MESSAGE" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:177 +#: ../src/gui/dialogs/QuantizeDialog.cpp:40 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:127 +msgid "Quantize" +msgstr "Quantisieren" + +#: ../src/gui/dialogs/QuantizeDialog.cpp:52 +msgid "Advanced" +msgstr "Fortgeschritten" + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:42 +msgid "Export Devices..." +msgstr "Geräte exportieren als..." + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:47 +msgid "Export devices" +msgstr "Geräte exportieren" + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:49 +msgid "Export all devices" +msgstr "Alle Geräte exportieren" + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:50 +msgid "Export selected device only" +msgstr "Nur ausgewählte Geräte exportieren" + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:51 +msgid " (\"%1\")" +msgstr " (\"%1\")" + +#: ../src/gui/dialogs/CompositionLengthDialog.cpp:44 +msgid "Change Composition Length" +msgstr "Länge des Stücks verändern" + +#: ../src/gui/dialogs/CompositionLengthDialog.cpp:50 +msgid "Set the Start and End bar markers for this Composition" +msgstr "Anfangs- und Endtaktstriche für dieses Stück setzen" + +#: ../src/gui/dialogs/CompositionLengthDialog.cpp:54 +msgid "Start Bar" +msgstr "Anfangstakt" + +#: ../src/gui/dialogs/CompositionLengthDialog.cpp:62 +msgid "End Bar" +msgstr "Endtakt" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:62 +msgid "LilyPond Export/Preview" +msgstr "LilyPond Export/Vorschau" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:85 +msgid "General options" +msgstr "Allgemeine Konfiguration" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:90 +msgid "Advanced options" +msgstr "Experteneinstellungen" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:112 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:95 +msgid "Headers" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:106 +msgid "Basic options" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:113 +#, fuzzy +msgid "Compatibility level" +msgstr "LilyPond Kompatibilität" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:117 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:118 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:119 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:120 +#, fuzzy, c-format +msgid "LilyPond %1" +msgstr "LilyPond 2.2" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:125 +#, fuzzy +msgid "Paper size" +msgstr "je Datei" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:129 +msgid "A3" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:130 +msgid "A4" +msgstr "A4" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:131 +msgid "A5" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:132 +msgid "A6" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:133 +msgid "Legal" +msgstr "Legal" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:134 +msgid "US Letter" +msgstr "US Letter" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:135 +msgid "Tabloid" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:136 +msgid "do not specify" +msgstr "keine Angabe" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:152 +#, fuzzy +msgid "Font size" +msgstr "Dateigröße:" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:157 +#, fuzzy +msgid "%1 pt" +msgstr "%1 (Teil)" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:169 +#, fuzzy +msgid "Staff level options" +msgstr "Experteneinstellungen" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:176 +#, fuzzy +msgid "Export content" +msgstr "Geräte exportieren" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:179 +msgid "All tracks" +msgstr "Alle Spuren" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:180 +msgid "Non-muted tracks" +msgstr "Nicht-stummgeschaltete Spuren" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:181 +msgid "Selected track" +msgstr "&Ausgewählte Spur" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:182 +msgid "Selected segments" +msgstr "&Ausgewählte Segmente" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:188 +msgid "Merge tracks that have the same name" +msgstr "Zusammenführen gleichnamiger Spuren" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:198 +#, fuzzy +msgid "Notation options" +msgstr "Notationsparameter" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:206 +#, fuzzy +msgid "First" +msgstr "Pause" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:207 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:538 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:557 +msgid "All" +msgstr "Alle" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:211 +msgid "Export tempo marks " +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:215 +#, fuzzy +msgid "Export lyrics" +msgstr "\\Text - Blöcke exportieren" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:225 +msgid "Export beamings" +msgstr "Notenhälse exportieren" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:232 +msgid "Export track staff brackets" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:244 +#, fuzzy +msgid "Layout options" +msgstr "&Layout-Werkzeugleiste" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:257 +#, fuzzy +msgid "Lyrics alignment" +msgstr "Text für dieses Segment" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:261 +msgid "Ragged bottom (systems will not be spread vertically across the page)" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:267 +msgid "Miscellaneous options" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:274 +msgid "Enable \"point and click\" debugging" +msgstr "\"point and click\" Debugging einschalten" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:279 +msgid "Export \\midi block" +msgstr "\\midi-Block exportieren" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:284 +#, fuzzy +msgid "No markers" +msgstr "Keine Gruppenfader" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:285 +#, fuzzy +msgid "Rehearsal marks" +msgstr "Alle Marker entfernen" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:286 +#, fuzzy +msgid "Marker text" +msgstr "Marker Zeit" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:290 +#, fuzzy +msgid "Export markers" +msgstr "Exportieren als..." + +#: ../src/gui/dialogs/AudioSplitDialog.cpp:57 +msgid "Autosplit Audio Segment" +msgstr "Audiosegment-Autosplit" + +#: ../src/gui/dialogs/AudioSplitDialog.cpp:70 +msgid "AutoSplit Segment \"" +msgstr "AutoSplit Segment \"" + +#: ../src/gui/dialogs/AudioSplitDialog.cpp:84 +msgid "Threshold" +msgstr "Schwelle" + +#: ../src/gui/dialogs/AudioSplitDialog.cpp:142 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:70 +msgid "Audio Plugin" +msgstr "Audio-Plugin" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:94 +#: ../src/gui/widgets/AudioFaderBox.cpp:136 +msgid "Editor" +msgstr "Audio bearbeiten" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:100 +msgid "Plugin" +msgstr "Plugin" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:105 +msgid "Category:" +msgstr "Kategorie:" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:110 +msgid "Plugin:" +msgstr "Plugin:" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:114 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:398 +msgid "Select a plugin from this list." +msgstr "Ein Plugin aus der Liste wählen." + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:119 +msgid "Bypass" +msgstr "Bypass" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:121 +msgid "Bypass this plugin." +msgstr "Dieses Plugin umgehen." + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:127 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:390 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:130 +msgid "Input and output port counts." +msgstr "Anzahl Eingans- und Ausgangsanschlüsse." + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:132 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:391 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:135 +msgid "Unique ID of plugin." +msgstr "Eindeutige ID des Plugin." + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:149 +msgid "Copy plugin parameters" +msgstr "Plugin-Parameter kopieren" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:155 +msgid "Paste plugin parameters" +msgstr "Plugin-Parameter einfügen" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:161 +msgid "Set to defaults" +msgstr "Auf Standardeinstellungen setzen" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:225 +msgid "(any)" +msgstr "(irgendwelche)" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:226 +msgid "(unclassified)" +msgstr "(nicht näher bestimmt)" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:247 +msgid "(none)" +msgstr "(keine)" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:389 +#: ../src/gui/editors/parameters/AudioInstrumentParameterPanel.cpp:132 +#: ../src/gui/editors/parameters/AudioInstrumentParameterPanel.cpp:361 +#: ../src/gui/studio/AudioMixerWindow.cpp:685 +#: ../src/gui/studio/AudioMixerWindow.cpp:724 +#: ../src/gui/studio/AudioMixerWindow.cpp:906 +#: ../src/gui/widgets/AudioFaderBox.cpp:79 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:427 +msgid "This plugin has too many controls to edit here." +msgstr "" +"Das Plugin verfügt über mehr Controls, als hier editiert werden können." + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:438 +#, c-format +msgid "Id: %1" +msgstr "Hinzufügen: %1" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:490 +msgid "mono" +msgstr "mono" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:492 +msgid "stereo" +msgstr "stereo" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:494 +msgid "%1 in, %2 out" +msgstr "%1 in, %2 out" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:518 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:704 +msgid "Program: " +msgstr "Programm:" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:522 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:532 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:708 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:716 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:745 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:56 +msgid "Set the %1 property of the event selection:" +msgstr "Die %1 - Eigenschaft für die Eventauswahl setzen:" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:61 +msgid "Pattern" +msgstr "Muster" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:66 +msgid "Flat - set %1 to value" +msgstr "Flach - %1 auf den Wert setzen" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:70 +msgid "Alternating - set %1 to max and min on alternate events" +msgstr "Abwechselnd - %1 abwechselnd auf Max und Min setzen" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:74 +msgid "Crescendo - set %1 rising from min to max" +msgstr "Crescendo - %1 von Min auf Max steigen lassen" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:78 +msgid "Diminuendo - set %1 falling from max to min" +msgstr "Diminuendo - %1 von Max auf Min verringern" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:82 +msgid "Ringing - set %1 alternating from max to min with both dying to zero" +msgstr "" +"Ausklingen - %1 abwechselnd auf Max und Min setzen, dabei bis auf 0 " +"verringern" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:123 +#: ../src/gui/dialogs/EventParameterDialog.cpp:150 +msgid "First Value" +msgstr "Erster Wert" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:124 +#: ../src/gui/dialogs/EventParameterDialog.cpp:151 +msgid "Second Value" +msgstr "Zweiter Wert" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:132 +#: ../src/gui/dialogs/EventParameterDialog.cpp:142 +msgid "Low Value" +msgstr "LSB-Wert" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:133 +#: ../src/gui/dialogs/EventParameterDialog.cpp:141 +msgid "High Value" +msgstr "Erster Wert" + +#: ../src/gui/dialogs/TempoDialog.cpp:56 ../src/gui/rulers/TempoRuler.cpp:127 +msgid "Insert Tempo Change" +msgstr "Te&mpoveränderung einfügen" + +#: ../src/gui/dialogs/TempoDialog.cpp:69 +msgid "New tempo:" +msgstr "Neues Tempo:" + +#: ../src/gui/dialogs/TempoDialog.cpp:76 +msgid "Tap" +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:81 +msgid "Tempo is fixed until the following tempo change" +msgstr "Tempo ist bis zur nächsten Tempoänderung fixiert" + +#: ../src/gui/dialogs/TempoDialog.cpp:82 +msgid "Tempo ramps to the following tempo" +msgstr "Tempo gleitet ins nächte Tempo über" + +#: ../src/gui/dialogs/TempoDialog.cpp:83 +msgid "Tempo ramps to:" +msgstr "Tempo gleitet über nach:" + +#: ../src/gui/dialogs/TempoDialog.cpp:120 +msgid "Time of tempo change" +msgstr "Zeit der Tempoänderung" + +#: ../src/gui/dialogs/TempoDialog.cpp:138 +msgid "The pointer is currently at " +msgstr "Der Zeiger ist zur Zeit bei " + +#: ../src/gui/dialogs/TempoDialog.cpp:154 +msgid "Apply this tempo from here onwards" +msgstr "Dieses Tempo ab hier anwenden" + +#: ../src/gui/dialogs/TempoDialog.cpp:158 +msgid "Replace the last tempo change" +msgstr "Die letzte Tempoänderung ersetzen" + +#: ../src/gui/dialogs/TempoDialog.cpp:164 +msgid "Apply this tempo from the start of this bar" +msgstr "Dieses Tempo ab Beginn dieses Taktes anwenden" + +#: ../src/gui/dialogs/TempoDialog.cpp:167 +msgid "Apply this tempo to the whole composition" +msgstr "Dieses Tempo auf das ganze Stück anwenden" + +#: ../src/gui/dialogs/TempoDialog.cpp:172 +msgid "Also make this the default tempo" +msgstr "Dieses Tempo auch zum Standard machen" + +#: ../src/gui/dialogs/TempoDialog.cpp:256 +msgid "%1.%2 s," +msgstr "%1.%2 s," + +#: ../src/gui/dialogs/TempoDialog.cpp:262 +#, c-format +msgid "at the start of measure %1." +msgstr "am Beginn von Takt %1." + +#: ../src/gui/dialogs/TempoDialog.cpp:266 +#, c-format +msgid "in the middle of measure %1." +msgstr "in der Mitte von Takt %1." + +#: ../src/gui/dialogs/TempoDialog.cpp:285 +msgid " (at %1.%2 s, in measure %3)" +msgstr " (bei %1.%2 s, in Takt %3)" + +#: ../src/gui/dialogs/TempoDialog.cpp:302 +msgid "There are no preceding tempo changes." +msgstr "Es gibt keine vorherigen Tempoveränderungen" + +#: ../src/gui/dialogs/TempoDialog.cpp:310 +msgid "There are no other tempo changes." +msgstr "Es gibt keine anderen Tempoveränderungen." + +#: ../src/gui/dialogs/TempoDialog.cpp:328 +msgid " bpm" +msgstr " bpm" + +#: ../src/gui/dialogs/AudioPlayingDialog.cpp:42 +msgid "Playing audio file" +msgstr "Audiodatei wird abgespielt" + +#: ../src/gui/dialogs/AudioPlayingDialog.cpp:47 +msgid "Playing audio file \"%1\"" +msgstr "Audiodatei \"%1\" wird abgespielt" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:52 +#: ../src/gui/editors/matrix/MatrixView.cpp:2655 +msgid "Trigger Segment" +msgstr "Getriggertes Segment" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:61 +msgid "Trigger segment: " +msgstr "Getriggertes Segment" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:59 +msgid "Key Change" +msgstr "Tonart-Veränderung" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:77 +msgid "Key signature" +msgstr "Tonart" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:80 +msgid "Key transposition" +msgstr "Tonart transponieren" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:86 +msgid "Existing notes following key change" +msgstr "Vorhandene Noten folgen der Tonart-Veränderung" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:98 +msgid "Flatten" +msgstr "Erniedrigen" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:100 +msgid "Key" +msgstr "Tonart" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:105 +msgid "Sharpen" +msgstr "Erhöhen" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:109 +msgid "Major" +msgstr "dur" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:110 +#: ../src/gui/dialogs/KeySignatureDialog.cpp:369 +msgid "Minor" +msgstr "moll" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:123 +msgid "Transpose key according to segment transposition" +msgstr "Transponiere die Tonart gemäß der Segment Transposition" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:126 +msgid "Use specified key. Do not transpose" +msgstr "Verwende die angegebene Tonart. Transponiere nicht" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:134 +msgid "Apply to current segment only" +msgstr "Nur auf aktuelles Segment anwenden" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:137 +msgid "Apply to all segments at this time" +msgstr "Auf alle Segmente zu diesem Zeitpunkt anwenden" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:141 +msgid "Exclude percussion segments" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:155 +msgid "Maintain current accidentals" +msgstr "Aktuelle Vorzeichen beibehalten" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:158 +msgid "Transpose into this key" +msgstr "In diese Tonart transponieren" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:331 +msgid "No such key" +msgstr "Tonart nicht vorhanden" + +#: ../src/gui/dialogs/InterpretDialog.cpp:44 +#: ../src/gui/editors/notation/NotationSelector.cpp:118 +msgid "Interpret" +msgstr "Interpret" + +#: ../src/gui/dialogs/InterpretDialog.cpp:50 +msgid "Interpretations to apply" +msgstr "Anzuwendende Interpretationen" + +#: ../src/gui/dialogs/InterpretDialog.cpp:53 +msgid "Apply text dynamics (p, mf, ff etc)" +msgstr "Dynamik-Vortragszeichen anwenden (p, mf, ff etc.)" + +#: ../src/gui/dialogs/InterpretDialog.cpp:55 +msgid "Apply hairpin dynamics" +msgstr "Crescendo / Decrescendo anwenden" + +#: ../src/gui/dialogs/InterpretDialog.cpp:57 +msgid "Stress beats" +msgstr "Taktschläge betonen" + +#: ../src/gui/dialogs/InterpretDialog.cpp:59 +msgid "Articulate slurs, staccato, tenuto etc" +msgstr "Bögen, Staccato, Tenuto artikulieren" + +#: ../src/gui/dialogs/InterpretDialog.cpp:61 +msgid "All available interpretations" +msgstr "All verfübaren Interpretationen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:316 +#, fuzzy +msgid "" +"Attempted to launch JACK audio daemon failed. Audio will be disabled.\n" +"Please check configuration (Settings -> Configure Rosegarden -> Audio -> " +"Startup)\n" +" and restart." +msgstr "" +"Der Versuch, JACK zu starten,ist fehlgeschlagen. Audio wird abgeschaltet." +"\\n\n" +"Bitte prüfen Sie die Konfiguration (Einstellungen->Rosegarden einrichten-" +">Sequncer->Jack Steuerung)\\n\n" +" und starten Sie erneut." + +#: ../src/gui/application/RosegardenGUIApp.cpp:325 +msgid "Starting sequencer..." +msgstr "Sequenzer wird gestartet..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:333 +msgid "Initializing plugin manager..." +msgstr "Plugin Manager wird initialisiert..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:338 +msgid "Initializing view..." +msgstr "Ansicht wird initialisiert..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:354 +msgid "Special Parameters" +msgstr "Spezielle Parameter" + +#: ../src/gui/application/RosegardenGUIApp.cpp:430 +msgid "Starting sequence manager..." +msgstr "Sequenz-Manager wird gestartet..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:456 +msgid "Clearing studio data..." +msgstr "Studio-Daten werden gelöscht..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:475 +#: ../src/gui/editors/notation/NotationView.cpp:558 +msgid "Starting..." +msgstr "Beginn..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:556 +msgid "Import Rosegarden &Project file..." +msgstr "Rosegarden &Projekt-Datei importieren..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:560 +msgid "Import &MIDI file..." +msgstr "&MIDI-Datei importieren..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:564 +msgid "Import &Rosegarden 2.1 file..." +msgstr "&Rosegarden-2.1-Datei importieren..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:568 +msgid "Import &Hydrogen file..." +msgstr "&Hydrogen-Datei importieren..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:572 +msgid "Merge &File..." +msgstr "Datei mischen..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:576 +msgid "Merge &MIDI file..." +msgstr "&MIDI-Datei mischen..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:580 +msgid "Merge &Rosegarden 2.1 file..." +msgstr "&Rosegarden 2.1-Datei mischen..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:584 +msgid "Merge &Hydrogen file..." +msgstr "&Hydrogen-Datei mischen..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:588 +msgid "Export Rosegarden &Project file..." +msgstr "Rosegarden &Projekt-Datei exportieren..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:592 +msgid "Export &MIDI file..." +msgstr "&MIDI-Datei exportieren..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:596 +#, fuzzy +msgid "Export &LilyPond file..." +msgstr "&Lilypond-Datei exportieren..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:600 +msgid "Export Music&XML file..." +msgstr "Music&XML-Datei exportieren..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:604 +msgid "Export &Csound score file..." +msgstr "&Csound-Datei exportieren..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:608 +msgid "Export M&up file..." +msgstr "M&up-Datei exportieren..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:612 +#: ../src/gui/editors/notation/NotationView.cpp:1500 +#, fuzzy +msgid "Print &with LilyPond..." +msgstr "Vorschau mit Lil&yPond..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:616 +#: ../src/gui/editors/notation/NotationView.cpp:1504 +msgid "Preview with Lil&yPond..." +msgstr "Vorschau mit Lil&yPond..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:620 +msgid "Play&list" +msgstr "Wiedergabe Liste" + +#: ../src/gui/application/RosegardenGUIApp.cpp:627 +msgid "Rosegarden &Tutorial" +msgstr "Rosegarden &Tutorial" + +#: ../src/gui/application/RosegardenGUIApp.cpp:631 +msgid "&Bug Reporting Guidelines" +msgstr "Richtlinien für Fehlerberichte" + +#: ../src/gui/application/RosegardenGUIApp.cpp:645 +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:348 +#: ../src/gui/editors/segment/MarkerEditor.cpp:378 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:388 +#: ../src/gui/general/EditViewBase.cpp:190 +#: ../src/gui/studio/BankEditorDialog.cpp:318 +#: ../src/gui/studio/DeviceManagerDialog.cpp:227 +msgid "Und&o" +msgstr "&Rückgängig" + +#: ../src/gui/application/RosegardenGUIApp.cpp:651 +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:354 +#: ../src/gui/editors/segment/MarkerEditor.cpp:384 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:394 +#: ../src/gui/general/EditViewBase.cpp:196 +#: ../src/gui/studio/BankEditorDialog.cpp:324 +#: ../src/gui/studio/DeviceManagerDialog.cpp:233 +msgid "Re&do" +msgstr "&Wiederholen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:665 +#: ../src/gui/editors/notation/NotationView.cpp:2297 +msgid "Show T&ools Toolbar" +msgstr "&Werkzeug-Werkzeugleiste anzeigen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:669 +msgid "Show Trac&ks Toolbar" +msgstr "&Spuren-Werkzeugleiste anzeigen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:673 +msgid "Show &Editors Toolbar" +msgstr "&Editor-Werkzeugleiste anzeigen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:677 +#: ../src/gui/editors/notation/NotationView.cpp:2309 +msgid "Show Trans&port Toolbar" +msgstr "&Bedienfeld-Werkzeugleiste anzeigen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:681 +msgid "Show &Zoom Toolbar" +msgstr "&Zoom-Werkzeugleiste anzeigen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:688 +msgid "Show Tra&nsport" +msgstr "Bedienfeld anzeigen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:693 +msgid "Show Track &Labels" +msgstr "Tonspur-&Labels anzeigen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:698 +msgid "Show Playback Position R&uler" +msgstr "Wiedegabepositionslineal anzeigen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:703 +msgid "Show Te&mpo Ruler" +msgstr "Te&mpolineal anzeigen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:708 +msgid "Show Cho&rd Name Ruler" +msgstr "Ak&kordnamenlineal anzeigen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:714 +msgid "Show Segment Pre&views" +msgstr "Segment-&Vorschauen anzeigen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:719 +msgid "Show Special &Parameters" +msgstr "Spezielle Parameter anzeigen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:753 +#: ../src/gui/editors/matrix/MatrixView.cpp:641 +#: ../src/gui/editors/notation/NotationView.cpp:1772 +msgid "&Select and Edit" +msgstr "Aus&wählen und editieren" + +#: ../src/gui/application/RosegardenGUIApp.cpp:758 +#: ../src/gui/editors/matrix/MatrixView.cpp:646 +msgid "&Draw" +msgstr "&Zeichnen" + +#: ../src/commands/edit/EraseCommand.h:50 +#: ../src/gui/application/RosegardenGUIApp.cpp:763 +#: ../src/gui/editors/matrix/MatrixView.cpp:651 +#: ../src/gui/editors/notation/NotationView.cpp:1766 +msgid "&Erase" +msgstr "&Löschen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:768 +#: ../src/gui/editors/matrix/MatrixView.cpp:656 +msgid "&Move" +msgstr "&Bewegen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:775 +msgid "&Resize" +msgstr "&Größe verändern" + +#: ../src/gui/application/RosegardenGUIApp.cpp:782 rc.cpp:87 +#, no-c-format +msgid "&Split" +msgstr "Auf&teilen" + +#: ../src/commands/segment/SegmentJoinCommand.h:53 +#: ../src/gui/application/RosegardenGUIApp.cpp:789 +msgid "&Join" +msgstr "&Verbinden" + +#: ../src/gui/application/RosegardenGUIApp.cpp:795 +msgid "&Harmonize" +msgstr "&Harmonisieren" + +#: ../src/gui/application/RosegardenGUIApp.cpp:806 +#: ../src/gui/rulers/TempoRuler.cpp:157 +msgid "Open Tempo and Time Signature Editor" +msgstr "Tempo- und Taktarteditor öffnen" + +#: ../src/commands/segment/CutRangeCommand.cpp:41 +#: ../src/gui/application/RosegardenGUIApp.cpp:812 +msgid "Cut Range" +msgstr "Bereich schneiden" + +#: ../src/commands/edit/CopyCommand.cpp:73 +#: ../src/gui/application/RosegardenGUIApp.cpp:816 +msgid "Copy Range" +msgstr "Bereich kopieren" + +#: ../src/commands/segment/PasteRangeCommand.cpp:45 +#: ../src/gui/application/RosegardenGUIApp.cpp:820 +msgid "Paste Range" +msgstr "Bereich einfügen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:828 +#, fuzzy +msgid "Insert Range..." +msgstr "Pause einfügen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:832 +#: ../src/gui/editors/notation/NotationView.cpp:1804 +msgid "De&lete" +msgstr "&Löschen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:836 +msgid "Select &All Segments" +msgstr "&Alle Segmente auswählen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:852 +msgid "Edit Mar&kers..." +msgstr "Mar&ker editieren..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:856 +msgid "Edit Document P&roperties..." +msgstr "&Dokumenteigenschaften bearbeiten..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:864 +msgid "Open in &Default Editor" +msgstr "Im &Standardeditor öffnen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:870 +#: ../src/gui/general/EditViewBase.cpp:206 +msgid "Open in Matri&x Editor" +msgstr "Im &Matrixeditor öffnen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:876 +#: ../src/gui/general/EditViewBase.cpp:212 +msgid "Open in &Percussion Matrix Editor" +msgstr "Im &Percussion Matrix Editor öffnen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:882 +#: ../src/gui/general/EditViewBase.cpp:218 +msgid "Open in &Notation Editor" +msgstr "Im &Notationseditor öffnen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:888 +#: ../src/gui/general/EditViewBase.cpp:224 +msgid "Open in &Event List Editor" +msgstr "Im &Evenlisteneditor öffnen" + +#: ../src/commands/edit/EventQuantizeCommand.cpp:120 +#: ../src/commands/edit/EventUnquantizeCommand.cpp:87 +#: ../src/gui/application/RosegardenGUIApp.cpp:894 +msgid "&Quantize..." +msgstr "Quantisieren..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:908 +#: ../src/gui/editors/matrix/MatrixView.cpp:686 +msgid "Repeat Last Quantize" +msgstr "Letzte Quantisierung wiederholen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:928 +msgid "Split at Time..." +msgstr "Am Zeitpunkt aufteilen..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:932 +#: ../src/gui/general/EditView.cpp:796 +msgid "Jog &Left" +msgstr "Jog nach &links" + +#: ../src/gui/application/RosegardenGUIApp.cpp:936 +#: ../src/gui/general/EditView.cpp:800 +msgid "Jog &Right" +msgstr "Jog nach &rechts" + +#: ../src/gui/application/RosegardenGUIApp.cpp:940 +msgid "Set Start Time..." +msgstr "Anfangszeit setzen..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:944 +msgid "Set Duration..." +msgstr "Dauer festlegen ..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:953 +msgid "Turn Re&peats into Copies" +msgstr "&Wiederholungen in Kopien umwandeln" + +#: ../src/gui/application/RosegardenGUIApp.cpp:958 +msgid "Manage Tri&ggered Segments" +msgstr "Getri&ggerte Segmente verwalten" + +#: ../src/gui/application/RosegardenGUIApp.cpp:962 +msgid "Set Tempos from &Beat Segment" +msgstr "Tempi vom Beat-Segment setzen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:966 +msgid "Set &Tempo to Audio Segment Duration" +msgstr "&Tempo auf Audiosegmentdauer setzen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:972 +msgid "Manage A&udio Files" +msgstr "A&udiodateien verwalten" + +#: ../src/gui/application/RosegardenGUIApp.cpp:977 +msgid "Show Segment Labels" +msgstr "Zeige Segment-Label" + +#: ../src/gui/application/RosegardenGUIApp.cpp:986 +msgid "Add &Track" +msgstr "Spur hinzufügen..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:990 +msgid "&Add Tracks..." +msgstr "Mehrere Spuren hinzufügen..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:996 +msgid "D&elete Track" +msgstr "Spur &löschen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1002 +msgid "Move Track &Down" +msgstr "Spur nach &unten bewegen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1008 +msgid "Move Track &Up" +msgstr "Spur nach &oben bewegen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1012 +msgid "Select &Next Track" +msgstr "&Nächste Spur auswählen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1017 +msgid "Select &Previous Track" +msgstr "&Vorherige Spur auswählen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1022 +msgid "Mute or Unmute Track" +msgstr "Spur stummschalten oder lautschalten" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1027 +msgid "Arm or Un-arm Track for Record" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1034 +msgid "&Mute all Tracks" +msgstr "Alle Spuren stumm" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1040 +msgid "&Unmute all Tracks" +msgstr "Alle Spuren an" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1044 +msgid "&Remap Instruments..." +msgstr "Instrumente &neu zuordnen..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:1053 +msgid "&Audio Mixer" +msgstr "&Audio Mixer" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1059 +msgid "Midi Mi&xer" +msgstr "Midi Mi&xer" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1065 +msgid "Manage MIDI &Devices" +msgstr "MIDI-Geräte verwalten... " + +#: ../src/gui/application/RosegardenGUIApp.cpp:1071 +msgid "Manage S&ynth Plugins" +msgstr "S&ynth Plugins verwalten" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1075 +msgid "Modify MIDI &Filters" +msgstr "MIDI-&Filter ändern..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:1079 +msgid "MIDI Thru Routing" +msgstr "MIDI Thru Routing" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1085 +msgid "Manage &Metronome" +msgstr "Verwalte &Metronom" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1089 +msgid "&Save Current Document as Default Studio" +msgstr "Aktuelles Dokument als &Standardstudio speichern" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1093 +msgid "&Import Default Studio" +msgstr "&Importiere Standardstudio" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1097 +msgid "Im&port Studio from File..." +msgstr "Im&portiereStudio aus Datei..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:1101 +msgid "&Reset MIDI Network" +msgstr "MIDI Netzwerk zu&rücksetzen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1105 +msgid "Set Quick Marker at Playback Position" +msgstr "Setze eine Markierung an der Wiedergabeposition" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1109 +msgid "Jump to Quick Marker" +msgstr "Springe zur Markierung " + +#: ../src/gui/application/RosegardenGUIApp.cpp:1142 +#: ../src/gui/editors/matrix/MatrixView.cpp:782 +#: ../src/gui/editors/notation/NotationView.cpp:2397 +#: ../src/gui/studio/AudioMixerWindow.cpp:105 +#: ../src/gui/studio/MidiMixerWindow.cpp:81 +msgid "&Play" +msgstr "&Wiedergabe" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1153 +#: ../src/gui/editors/matrix/MatrixView.cpp:791 +#: ../src/gui/editors/notation/NotationView.cpp:2406 +#: ../src/gui/studio/AudioMixerWindow.cpp:114 +#: ../src/gui/studio/MidiMixerWindow.cpp:90 +msgid "&Stop" +msgstr "&Stop" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1160 +#: ../src/gui/editors/matrix/MatrixView.cpp:802 +#: ../src/gui/editors/notation/NotationView.cpp:2417 +#: ../src/gui/studio/AudioMixerWindow.cpp:125 +#: ../src/gui/studio/MidiMixerWindow.cpp:101 +msgid "&Fast Forward" +msgstr "&Vorspulen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1168 +#: ../src/gui/editors/matrix/MatrixView.cpp:796 +#: ../src/gui/editors/notation/NotationView.cpp:2411 +#: ../src/gui/studio/AudioMixerWindow.cpp:119 +#: ../src/gui/studio/MidiMixerWindow.cpp:95 +msgid "Re&wind" +msgstr "&Zurückspulen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1175 +msgid "P&unch in Record" +msgstr "P&unch-In-Aufnahme" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1182 +#: ../src/gui/studio/AudioMixerWindow.cpp:143 +#: ../src/gui/studio/MidiMixerWindow.cpp:119 +msgid "&Record" +msgstr "&Aufnehmen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1189 +#: ../src/gui/editors/matrix/MatrixView.cpp:808 +#: ../src/gui/editors/notation/NotationView.cpp:2423 +#: ../src/gui/studio/AudioMixerWindow.cpp:131 +#: ../src/gui/studio/MidiMixerWindow.cpp:107 +msgid "Rewind to &Beginning" +msgstr "Zum &Anfang spulen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1196 +#: ../src/gui/editors/matrix/MatrixView.cpp:814 +#: ../src/gui/editors/notation/NotationView.cpp:2429 +#: ../src/gui/studio/AudioMixerWindow.cpp:137 +#: ../src/gui/studio/MidiMixerWindow.cpp:113 +msgid "Fast Forward to &End" +msgstr "Zum &Ende spulen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1203 +#: ../src/gui/editors/matrix/MatrixView.cpp:832 +#: ../src/gui/editors/notation/NotationView.cpp:2447 +msgid "Scro&ll to Follow Playback" +msgstr "Ansicht fo&lgt der Wiedergabe" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1209 +#: ../src/gui/editors/matrix/MatrixView.cpp:838 +#: ../src/gui/editors/notation/NotationView.cpp:2453 +#: ../src/gui/studio/AudioMixerWindow.cpp:149 +#: ../src/gui/studio/MidiMixerWindow.cpp:125 +msgid "Panic" +msgstr "Panik" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1213 +msgid "Segment Debug Dump " +msgstr "Segment Debug Dump " + +#: ../src/gui/application/RosegardenGUIApp.cpp:1283 +msgid " Zoom: " +msgstr " Zoom: " + +#: ../src/gui/application/RosegardenGUIApp.cpp:1719 +msgid "File \"%1\" does not exist" +msgstr "Die Datei \"%1\" existiert nicht" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1725 +msgid "File \"%1\" is actually a directory" +msgstr "Die Datei \"%1\" ist ein Verzeichnis" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1734 +msgid "You do not have read permission for \"%1\"" +msgstr "Sie haben für diese Datei keinen Lesezugriff." + +#: ../src/gui/application/RosegardenGUIApp.cpp:1802 +msgid "" +"An auto-save file for this document has been found\n" +"Do you want to open it instead ?" +msgstr "" +"Es wurde eine automatische Sicherung für diese Datei gefunden.\n" +"Wollen Sie diese stattdessen öffnen?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1896 +msgid "Example Files" +msgstr "Beispiel Dateien" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2100 +msgid "Opening a new application window..." +msgstr "Neues Anwendungsfenster öffnen..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2110 +msgid "Creating new document..." +msgstr "Neues Dokument erzeugen..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2154 +#, c-format +msgid "" +"Malformed URL\n" +"%1" +msgstr "" +"Formal falsche URL\n" +"%1" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2179 +#: ../src/gui/application/RosegardenGUIApp.cpp:2240 +msgid "Opening file..." +msgstr "Datei öffnen..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2201 +#: ../src/gui/application/RosegardenGUIApp.cpp:2220 +msgid "Open File" +msgstr "Datei öffnen" + +#: ../src/document/RosegardenGUIDoc.cpp:1225 +#: ../src/gui/application/RosegardenGUIApp.cpp:2258 +msgid "Saving file..." +msgstr "Datei speichern..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2330 +msgid "This is not a valid filename.\n" +msgstr "Dies ist kein gültiger Dateiname.\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2335 +msgid "This is not a local file.\n" +msgstr "Dies ist keine lokale Datei.\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2342 +#: ../src/gui/studio/BankEditorDialog.cpp:1640 +#: ../src/gui/studio/DeviceManagerDialog.cpp:787 +msgid "You have specified a directory" +msgstr "Sie haben ein Verzeichnis angegeben " + +#: ../src/gui/application/RosegardenGUIApp.cpp:2348 +#: ../src/gui/studio/BankEditorDialog.cpp:1646 +#: ../src/gui/studio/DeviceManagerDialog.cpp:793 +msgid "The specified file exists. Overwrite?" +msgstr "Die angegebene Datei existiert schon. Überschreiben?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2362 +msgid "Saving file with a new filename..." +msgstr "Datei wird mit neuem Namen gespeichert..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2364 +#, fuzzy +msgid "Rosegarden files" +msgstr "Rosegarde-4-Dateien" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2365 +#: ../src/gui/application/RosegardenGUIApp.cpp:4860 +#: ../src/gui/application/RosegardenGUIApp.cpp:4904 +#: ../src/gui/application/RosegardenGUIApp.cpp:4942 +#: ../src/gui/application/RosegardenGUIApp.cpp:4975 +#: ../src/gui/application/RosegardenGUIApp.cpp:5009 +#: ../src/gui/application/RosegardenGUIApp.cpp:5116 +msgid "All files" +msgstr "Alle Dateien" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2366 +msgid "Save as..." +msgstr "Speichern unter..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2404 +msgid "Closing file..." +msgstr "Datei wird geschlossen..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2421 +#: ../src/gui/editors/notation/NotationView.cpp:4618 +msgid "Printing..." +msgstr "Drucken..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2433 +#: ../src/gui/editors/notation/NotationView.cpp:4635 +msgid "Previewing..." +msgstr "Vorschau..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2440 +msgid "Exiting..." +msgstr "Programm wird beendet..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2463 +msgid "Cutting selection..." +msgstr "Auswahl wird ausgeschnitten..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2474 +#: ../src/gui/editors/matrix/MatrixView.cpp:1614 +#: ../src/gui/editors/notation/NotationView.cpp:4763 +msgid "Copying selection to clipboard..." +msgstr "Auswahl in die Zwischenablage kopieren..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2484 +#: ../src/gui/editors/eventlist/EventView.cpp:878 +#: ../src/gui/editors/matrix/MatrixView.cpp:1625 +#: ../src/gui/editors/notation/NotationView.cpp:4796 +#: ../src/gui/editors/notation/NotationView.cpp:4841 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:352 +msgid "Clipboard is empty" +msgstr "Die Zwischenablage ist leer" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2487 +#: ../src/gui/editors/eventlist/EventView.cpp:882 +#: ../src/gui/editors/matrix/MatrixView.cpp:1629 +#: ../src/gui/editors/notation/NotationView.cpp:4804 +#: ../src/gui/editors/notation/NotationView.cpp:4845 +msgid "Inserting clipboard contents..." +msgstr "Inhalt der Zwischenablage einfügen..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2556 +#, fuzzy +msgid "Duration of empty range to insert" +msgstr "Dauer der Selektion" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2631 +msgid "This function needs no more than one segment to be selected." +msgstr "Für diese Funktion darf nur ein einziges Segment ausgewählt sein." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2654 +msgid "Can't join Audio segments" +msgstr "Audio-Segmente können nicht zusammengefasst werden" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2707 +#, fuzzy +msgid "rescaling an audio file" +msgstr "Audiodatei wird abgespielt" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2723 +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:172 +#, fuzzy +msgid "Rescaling audio file..." +msgstr "Audiodatei wird exportiert..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2767 +#, fuzzy +msgid "" +"The audio file path does not exist or is not writable.\n" +"You must set the audio file path to a valid directory in Document Properties " +"before %1.\n" +"Would you like to set it now?" +msgstr "" +"Der angegebene Audio-Dateipfad existiert entweder nicht oder ist nicht " +"schreibbar.\n" +"Bitte setzen Sie den Audio-Dateipfad auf ein gültiges Verzeichnis in dem\n" +"Dokumenteigenschaften bevor Sie Audio aufnehmen.\n" +"Möchten Sie den Pfad jetzt setzen?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2769 +#: ../src/gui/application/RosegardenGUIApp.cpp:5291 +#: ../src/gui/application/RosegardenGUIApp.cpp:5339 +#: ../src/gui/editors/segment/TrackButtons.cpp:419 +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:159 +msgid "Set audio file path" +msgstr "Pfad für Audiodateien" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2833 +msgid "Jog Selection" +msgstr "Auswahl joggen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2978 +#, fuzzy, c-format +msgid "" +"_n: Split Segment at Time\n" +"Split %n Segments at Time" +msgstr "" +"%1 - Segment - Notation\n" +"%1 - %n Segmente - Notation" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3013 +#: ../src/gui/general/EditViewBase.cpp:619 +msgid "Segment Start Time" +msgstr "Segment Anfangszeit" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3023 +msgid "Set Segment Start Times" +msgstr "Segment Anfangszeiten setzen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3024 +#: ../src/gui/general/EditViewBase.cpp:626 +msgid "Set Segment Start Time" +msgstr "Segment Anfangszeit setzen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3056 +#: ../src/gui/general/EditViewBase.cpp:644 +msgid "Segment Duration" +msgstr "Segment Dauer" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3068 +msgid "Set Segment Durations" +msgstr "Segmentlängen setzen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3069 +#: ../src/gui/general/EditViewBase.cpp:652 +msgid "Set Segment Duration" +msgstr "Segment Dauer setzen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3176 +#: ../src/gui/application/RosegardenGUIApp.cpp:5875 +msgid "Set Global Tempo" +msgstr "Globales Tempe setzen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3234 +#: ../src/gui/general/EditViewBase.cpp:477 +msgid "Toggle the toolbar..." +msgstr "Toolbar umschalten..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3244 +msgid "Toggle the tools toolbar..." +msgstr "Werkzeug-Werkzeugleiste umschalten..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3254 +msgid "Toggle the tracks toolbar..." +msgstr "Spur-Toolbar umschalten..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3264 +msgid "Toggle the editor toolbar..." +msgstr "Editor-Toolbar umschalten..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3274 +msgid "Toggle the transport toolbar..." +msgstr "Bedienfeld-Werkzeugleiste umschalten..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3284 +msgid "Toggle the zoom toolbar..." +msgstr "Zoom-Werkzeugleiste umschalten..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3294 +msgid "Toggle the Transport" +msgstr "Bedienfeld umschalten" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3377 +#: ../src/gui/general/EditViewBase.cpp:487 +msgid "Toggle the statusbar..." +msgstr "Statuszeile umschalten..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3434 +msgid "" +"The join tool isn't implemented yet. Instead please highlight the segments " +"you want to join and then use the menu option:\n" +"\n" +" Segments->Collapse Segments.\n" +msgstr "" +"Das Verbinden-Werkzeug ist noch nicht programmiert. Bitte markieren Sie " +"stattdessen die Segmente,\n" +" die Sie verbinden wollen und benutzen dann die Menüoption:\\n\n" +"Segmente->Segmente zusammenfassen.\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3437 +msgid "Join tool not yet implemented" +msgstr "Das Verbinden-Werkzeug ist noch nicht fertig." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3675 +msgid "Revert modified document to previous saved version?" +msgstr "Geändertes Dokument auf vorher gespeicherte Version zurücksetzen?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3691 +msgid "" +"*.rgp|Rosegarden Project files\n" +"*|All files" +msgstr "" +"*.rgp|Rosegarden Projekt Dateien\n" +"*|Alle Dateien" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3692 +msgid "Import Rosegarden Project File" +msgstr "Rosegarden Projekt-Datei importieren" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3717 +msgid "Failed to import project file \"%1\"" +msgstr "Import der Projektdatei \"%1\" fehlgeschlagen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3739 +msgid "Open MIDI File" +msgstr "MIDI-Datei öffnen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3756 +msgid "Merge MIDI File" +msgstr "MIDI-Datei mischen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3866 +msgid "Importing MIDI file..." +msgstr "MIDI-Datei wird importiert..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3903 +msgid "Calculating notation..." +msgstr "Notation wird berechnet..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3950 +msgid "Calculate Notation" +msgstr "Notation errechnen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3991 +#: ../src/gui/application/RosegardenGUIApp.cpp:4008 +msgid "" +"*.rose|Rosegarden-2 files\n" +"*|All files" +msgstr "" +"*.rose|Rosegarden-2 Dateien\n" +"*|Alle Dateien" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3992 +#: ../src/gui/application/RosegardenGUIApp.cpp:4009 +msgid "Open Rosegarden 2.1 File" +msgstr "Rosegarden 2.1-Datei öffnen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4026 +msgid "Importing Rosegarden 2.1 file..." +msgstr "Rosegarden.2.1-Datei wird importiert..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4052 +msgid "Can't load Rosegarden 2.1 file. It appears to be corrupted." +msgstr "" +"Diese Rosegarden-2.1-Datei kann nicht geladen werden. Sie scheint beschädigt " +"zu sein." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4078 +#: ../src/gui/application/RosegardenGUIApp.cpp:4095 +msgid "" +"*.h2song|Hydrogen files\n" +"*|All files" +msgstr "" +"*.h2song|Hydrogen Dateien\n" +"*|Alle Dateien" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4079 +#: ../src/gui/application/RosegardenGUIApp.cpp:4096 +msgid "Open Hydrogen File" +msgstr "Hydrogen Datei öffnen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4113 +msgid "Importing Hydrogen file..." +msgstr "Hydrogen Datei wird importiert..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4139 +msgid "Can't load Hydrogen file. It appears to be corrupted." +msgstr "" +"Diese Hydrogen Datei kann nicht geladen werden. Sie scheint beschädigt zu " +"sein." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4527 +msgid "Export and import of Rosegarden Project files" +msgstr "Export und Import von Rosegarden Projektdateien..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4529 +#, fuzzy +msgid "The Rosegarden Project Packager helper script" +msgstr "Rosegarde Projekt Dateien\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4533 +msgid "%1 - for project file support" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4550 +msgid "The Rosegarden LilyPondView helper script" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4554 +#, fuzzy +msgid "%1 - for LilyPond preview support" +msgstr "LilyPond-Vorschau Einstellungen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4570 +msgid "The Rosegarden Audio File Importer helper script" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4574 +#, fuzzy +msgid "%1 - for audio file import" +msgstr "Pfad für Audiodateien" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4585 +msgid "" +"

            Helper programs not found

            Rosegarden could not find one or more " +"helper programs which it needs to provide some features. The following " +"features will not be available:

            " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4586 +#: ../src/gui/application/RosegardenGUIApp.cpp:4592 +#, fuzzy +msgid "
              " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4588 +#: ../src/gui/application/RosegardenGUIApp.cpp:4594 +#, fuzzy +msgid "
            • %1
            • " +msgstr "-- %1 (von %2)\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4590 +#: ../src/gui/application/RosegardenGUIApp.cpp:4596 +msgid "
            " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4591 +msgid "" +"

            To fix this, you should install the following additional programs:

            " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4603 +msgid "Helper programs not found" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4686 +msgid "Starting the sequencer..." +msgstr "Sequencer wird gestartet..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4712 +msgid "Couldn't start the sequencer" +msgstr "Sequencer konnte nicht gestartet werden" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4789 +msgid "Clearing down jackd..." +msgstr "jackd wird heruntergefahren..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4803 +msgid "Starting jackd..." +msgstr "jackd wird gestartet..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4842 +msgid "" +"The Rosegarden sequencer process has exited unexpectedly. Sound and " +"recording will no longer be available for this session.\n" +"Please exit and restart Rosegarden to restore sound capability." +msgstr "" +"Der Rosegarden Sequenzer Process ist unerwartet abgebrochen. Aufnahme und " +"Wiedergabe stehen in dieser Sitzung nicht mehr zur Verfügung.\n" +"Bitte Beenden und erneut Starten, damit der Ton wieder funktioniert." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4846 +msgid "" +"The Rosegarden sequencer could not be started, so sound and recording will " +"be unavailable for this session.\n" +"For assistance with correct audio and MIDI configuration, go to http://" +"rosegardenmusic.com." +msgstr "" +"Der Rosegarden Sequenzer konnte nicht gestartet werden. Damit stehen " +"Aufnahme und Wiedergabe in dieser Sitzung nicht zur Verfügung.\n" +"Für Hilfestellung bei den Audio und MIDI-Einstellungen gehe nach http://" +"rosegardenmusic.com." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4856 +msgid "Exporting Rosegarden Project file..." +msgstr "Rosegarden Projekt Datei wird importiert..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4859 +msgid "Rosegarden Project files\n" +msgstr "Rosegarde Projekt Dateien\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4861 +#: ../src/gui/application/RosegardenGUIApp.cpp:4905 +#: ../src/gui/application/RosegardenGUIApp.cpp:4943 +#: ../src/gui/application/RosegardenGUIApp.cpp:4976 +#: ../src/gui/application/RosegardenGUIApp.cpp:5010 +#: ../src/gui/application/RosegardenGUIApp.cpp:5116 +msgid "Export as..." +msgstr "Exportieren als..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4875 +#, c-format +msgid "Saving Rosegarden file to package failed: %1" +msgstr "Speichern der Rosegarden-Datei beim Komprimieren fehlgeschlagen: %1" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4889 +msgid "Failed to export to project file \"%1\"" +msgstr "Export der Projekt-Datei \"%1\" fehlgeschlagen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4900 +#: ../src/gui/application/RosegardenGUIApp.cpp:4915 +msgid "Exporting MIDI file..." +msgstr "MIDI-Datei wird exportiert..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4903 +msgid "Standard MIDI files\n" +msgstr "Standard-MIDI-Dateien\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4934 +#: ../src/gui/application/RosegardenGUIApp.cpp:4966 +#: ../src/gui/application/RosegardenGUIApp.cpp:4999 +#: ../src/gui/application/RosegardenGUIApp.cpp:5103 +#: ../src/gui/application/RosegardenGUIApp.cpp:5140 +#: ../src/gui/editors/notation/NotationView.cpp:4733 +msgid "Export failed. The file could not be opened for writing." +msgstr "" +"Der Export ist fehlgeschlagen. Die Datei konnte nicht zum Schreiben geöffnet " +"werden." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4940 +#: ../src/gui/application/RosegardenGUIApp.cpp:4952 +msgid "Exporting Csound score file..." +msgstr "Csound-Partitur-Datei wird exportiert..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4972 +#: ../src/gui/application/RosegardenGUIApp.cpp:4985 +msgid "Exporting Mup file..." +msgstr "Mup-Datei wird exportiert..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4975 +msgid "Mup files\n" +msgstr "Mup-Dateien\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5005 +#: ../src/gui/application/RosegardenGUIApp.cpp:5089 +#: ../src/gui/editors/notation/NotationView.cpp:4719 +#, fuzzy +msgid "Exporting LilyPond file..." +msgstr "LilyPond-Datei wird exportiert..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:5008 +#, fuzzy +msgid "LilyPond files" +msgstr "LilyPond-Dateien" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5023 +#: ../src/gui/editors/notation/NotationView.cpp:4653 +#, fuzzy +msgid "Printing LilyPond file..." +msgstr "Vorschau der LilyPond-Datei..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:5028 +#: ../src/gui/application/RosegardenGUIApp.cpp:5052 +#: ../src/gui/editors/notation/NotationView.cpp:4658 +#: ../src/gui/editors/notation/NotationView.cpp:4682 +#, fuzzy +msgid "Failed to open a temporary file for LilyPond export." +msgstr "Anlegen der temporären Datei für den LilyPond-Export fehlgeschlagen." + +#: ../src/gui/application/RosegardenGUIApp.cpp:5047 +#: ../src/gui/editors/notation/NotationView.cpp:4677 +#, fuzzy +msgid "Previewing LilyPond file..." +msgstr "Vorschau der LilyPond-Datei..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:5080 +#: ../src/gui/editors/notation/NotationView.cpp:4710 +#, fuzzy +msgid "LilyPond Preview Options" +msgstr "LilyPond-Vorschau Einstellungen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5081 +#: ../src/gui/editors/notation/NotationView.cpp:4711 +#, fuzzy +msgid "LilyPond preview options" +msgstr "LilyPond-Vorschau Einstellungen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5112 +#: ../src/gui/application/RosegardenGUIApp.cpp:5126 +msgid "Exporting MusicXML file..." +msgstr "MusicXML-Datei wird exportiert..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:5115 +msgid "XML files" +msgstr "XML-Dateien" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5289 +#: ../src/gui/editors/segment/TrackButtons.cpp:417 +msgid "" +"The audio file path does not exist or is not writable.\n" +"Please set the audio file path to a valid directory in Document Properties " +"before recording audio.\n" +"Would you like to set it now?" +msgstr "" +"Der angegebene Audio-Dateipfad existiert entweder nicht oder ist nicht " +"schreibbar.\n" +"Bitte setzen Sie den Audio-Dateipfad auf ein gültiges Verzeichnis in dem\n" +"Dokumenteigenschaften bevor Sie Audio aufnehmen.\n" +"Möchten Sie den Pfad jetzt setzen?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5337 +msgid "" +"The audio file path does not exist or is not writable.\n" +"Please set the audio file path to a valid directory in Document Properties " +"before you start to record audio.\n" +"Would you like to set it now?" +msgstr "" +"Der angegebene Audio-Dateipfad existiert entweder nicht oder ist nicht " +"schreibbar.\n" +"Bitte setzen Sie den Audio-Dateipfad auf ein gültiges Verzeichnis in dem\n" +"Dokumenteigenschaften bevor Sie Audio aufnehmen.\n" +"Möchten Sie den Pfad jetzt setzen?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5780 +msgid "Move playback pointer to time" +msgstr "Wiedergabezeiger zu einer &Zeit bewegen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5793 +#: ../src/gui/editors/matrix/MatrixView.cpp:2240 +msgid "%1%" +msgstr "%1%" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5861 +#, c-format +msgid "Replace Tempo Change at %1" +msgstr "Tempoveränderung ersetzen bei %1" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5891 +msgid "Set Global and Default Tempo" +msgstr "Globales und Standard-Tempo setzen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5914 +msgid "Move Tempo Change" +msgstr "&Tempoveränderung verschieben..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:5949 +msgid "new marker" +msgstr "Neue Markierung" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5950 +msgid "no description" +msgstr "Keine Beschreibung" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6363 +#, c-format +msgid "Sequencer failed to add audio file %1" +msgstr "Der Sequenzer konnte die Audio-Datei %1 nicht hinzufügen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6388 +#, c-format +msgid "Sequencer failed to remove audio file id %1" +msgstr "Der Sequenzer konnte die Audio-Datei %1 nicht entfernen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6448 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1086 +msgid "Modify Segment label" +msgstr "Segmentbezeichnung ändern" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6450 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1088 +msgid "Modify Segments label" +msgstr "Segmentbezeichnungen ändern" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6452 +msgid "Relabelling selection..." +msgstr "Auswahl umbenennen..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:7539 +msgid "Play List" +msgstr "Liste Abspielen " + +#: ../src/gui/application/RosegardenGUIApp.cpp:7567 +msgid "http://rosegarden.sourceforge.net/tutorial/en/chapter-0.html" +msgstr "http://rosegarden.sourceforge.net/tutorial/en/chapter-0.html" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7574 +msgid "http://rosegarden.sourceforge.net/tutorial/bug-guidelines.html" +msgstr "http://rosegarden.sourceforge.net/tutorial/bug-guidelines.html" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7650 +msgid "Queueing MIDI panic events for tranmission..." +msgstr "MIDI Oanik Event in Transmissionswarteschlange eingestellt...." + +#: ../src/gui/application/RosegardenGUIApp.cpp:7708 +msgid "Are you sure you want to save this as your default studio?" +msgstr "" +"Sind Sie sicher, dass Sie dies als Ihr Standardstudio speichern wollen?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7713 +msgid "Saving current document as default studio..." +msgstr "Aktuelles Dokument wird als Standartstudio gespeichert..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:7738 +msgid "" +"Are you sure you want to import your default studio and lose the current one?" +msgstr "" +"Sind Sie sicher dass Sie Ihr Standardstudio importieren und dabei das " +"Aktuelle überschreiben wollen?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7773 +msgid "Import Studio from File" +msgstr "Studio aus Datei importieren" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7807 +msgid "Import Studio" +msgstr "Studio importieren" + +#: ../src/gui/application/RosegardenGUIApp.cpp:8015 +msgid "" +"

            Newer version available

            A newer version of Rosegarden may be " +"available.
            Please consult the Rosegarden website for more information.

            " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:8016 +msgid "Newer version available" +msgstr "Eine neuere Version ist verfügbar" + +#: ../src/gui/application/RosegardenApplication.cpp:104 +#, c-format +msgid "Failed to load soundfont %1" +msgstr "Laden von Soundfont nicht gelungen: %1" + +#: ../src/gui/application/main.cpp:311 +msgid "Rosegarden - A sequencer and musical notation editor" +msgstr "Rosegarden - ein Sequenzer und Notationseditor" + +#: ../src/gui/application/main.cpp:315 +msgid "Don't use the sequencer (support editing only)" +msgstr "Sequenzer nicht verwenden (nur editieren möglich)" + +#: ../src/gui/application/main.cpp:316 +msgid "Don't show the splash screen" +msgstr "Kein Startbild" + +#: ../src/gui/application/main.cpp:317 +msgid "Don't automatically run in the background" +msgstr "Laufe nicht automatisch im Hintergrund" + +#: ../src/gui/application/main.cpp:318 +msgid "Attach to a running sequencer process, if found" +msgstr "In einen laufenden Sequenzer einklicken, falls vorhanden" + +#: ../src/gui/application/main.cpp:319 +msgid "Ignore installed version - for devs only" +msgstr "Ignoriere installierte Version - nur für Entwickler" + +#: ../src/gui/application/main.cpp:320 +msgid "file to open" +msgstr "zu öffnende Datei" + +#: ../src/gui/application/main.cpp:370 +msgid "Installation contains the wrong version of Rosegarden." +msgstr "Die Installation enthält die falsche Rosegarden-Version." + +#: ../src/gui/application/main.cpp:371 +#, fuzzy +msgid "" +" The wrong versions of Rosegarden's data files were\n" +" found in the standard KDE installation directories.\n" +" (I am %1, but the installed files are for version %2.)\n" +"\n" +" This may mean one of the following:\n" +"\n" +" 1. This is a new upgrade of Rosegarden, and it has not yet been\n" +" installed. If you compiled it yourself, check that you have\n" +" run \"make install\" and that the procedure completed\n" +" successfully.\n" +"\n" +" 2. The upgrade was installed in a non-standard directory,\n" +" and an old version was found in a standard directory. If so,\n" +" you will need to add the correct directory to your KDEDIRS\n" +" environment variable before you can run it." +msgstr "" +" Es wurden falsche Versionen der Rosegarden-Dateien\n" +" in den Standard-KDE-Verzeichnissen gefunden.\n" +" (Dies ist Version %1, aber die installierten Dateien sind für Version %2.)\n" +" Dies könnte folgendes bedeuten:\n" +" \n" +" 1. Dies ist eine neue Version von Rosegarden, die noch nicht \n" +" installiert worden ist. Wenn Sie sie selbst kompiliert haben, prüfen \n" +" Sie bitte, ob Sie \"scons install\" erfolgreich ausgeführt haben.\n" +"\n" +" 2. Die neue Version wurde nicht im Standardverzeichnis installiert,\n" +" und eine alte Version wurde im Standardverzeichnis gefunden.\n" +" In diesem Fall müssen Sie das korrekte Verzeichnis zur " +"Umgebungsvariablen\n" +" KDEDIRS hinzufügen, damit Rosegarden funktioniert." + +#: ../src/gui/application/main.cpp:383 ../src/gui/application/main.cpp:401 +msgid "Installation problem" +msgstr "Installationsproblem" + +#: ../src/gui/application/main.cpp:389 +msgid "Rosegarden does not appear to have been installed." +msgstr "Rosegarden scheint nicht installiert worden zu sein." + +#: ../src/gui/application/main.cpp:390 +#, fuzzy +msgid "" +" One or more of Rosegarden's data files could not be\n" +" found in the standard KDE installation directories.\n" +"\n" +" This may mean one of the following:\n" +"\n" +" 1. Rosegarden has not been correctly installed. If you compiled\n" +" it yourself, check that you have run \"make install\" and that\n" +" the procedure completed successfully.\n" +"\n" +" 2. Rosegarden has been installed in a non-standard directory,\n" +" and you need to add this directory to your KDEDIRS environment\n" +" variable before you can run it. This may be the case if you\n" +" installed into $HOME or a local third-party package directory\n" +" like /usr/local or /opt." +msgstr "" +" Mindestens eine der Rosegarden-Dateien wurde nicht\n" +" in den Standard-KDE-Verzeichnissen gefunden.\n" +"\n" +" Dies könnte folgendes bedeuten:\n" +" \n" +" 1. Rosegarden wurde nicht korrekt installiert. Wenn Sie es selbst " +"kompiliert haben,\n" +" prüfen Sie bitte, ob Sie \"scons install\" erfolgreich ausgeführt " +"haben.\n" +"\n" +" 2. Die neue Version wurde nicht im Standardverzeichnis installiert,\n" +" und Sie müssen das korrekte Verzeichnis zur Umgebungsvariablen\n" +" KDEDIRS hinzufügen, damit Rosegarden funktioniert. Dies könnte der Fall " +"sein,\n" +" wenn Sie nach $HOME oder in ein lokales Verzeichnis für " +"Anwenderprogramme\n" +" wie /usr/local oder /opt installiert haben." + +#: ../src/gui/application/main.cpp:414 +msgid "Rosegarden" +msgstr "Rosegarden" + +#: ../src/gui/application/main.cpp:416 +#, fuzzy +msgid "" +"Copyright 2000 - 2008 Guillaume Laurent, Chris Cannam, Richard Bown\n" +"Parts copyright 1994 - 2004 Chris Cannam, Andy Green, Richard Bown, " +"Guillaume Laurent\n" +"LilyPond fonts copyright 1997 - 2005 Han-Wen Nienhuys and Jan Nieuwenhuizen" +msgstr "" +"Copyright 2000 - 2006 Guillaume Laurent, Chris Cannam, Richard Bown\n" +"Teile Copyright 1994 - 2004 Chris Cannam, Andy Green, Richard Bown, " +"Guillaume Laurent\n" +"LilyPond Schriftarten Copyright 1997 - 2005 Han-Wen Nienhuys und Jan " +"Nieuwenhuizen" + +#: ../src/gui/application/main.cpp:428 +msgid "Chord labelling code" +msgstr "" + +#: ../src/gui/application/main.cpp:429 +#, fuzzy +msgid "" +"LilyPond output\n" +"assorted other patches\n" +"i18n-ization" +msgstr "" +"LilyPond Ausgabe\n" +"verschiedene andere Patches\n" +"i18n-ization" + +#: ../src/gui/application/main.cpp:430 +msgid "" +"UI improvements\n" +"bug fixes" +msgstr "" +"UI Verbesserungen\n" +"Fehlerbeseitigung" + +#: ../src/gui/application/main.cpp:431 +msgid "" +"Segment colours\n" +"Other UI and bug fixes" +msgstr "" +"Segmentfarben\n" +"Andere UI und sonstige Fehler beseitigt" + +#: ../src/gui/application/main.cpp:432 +msgid "" +"Russian translation\n" +"i18n-ization" +msgstr "" +"Russische Übersetzung\n" +"i18n-ization" + +#: ../src/gui/application/main.cpp:433 ../src/gui/application/main.cpp:434 +msgid "German translation" +msgstr "Deutsche Übersetzung" + +#: ../src/gui/application/main.cpp:435 +msgid "Welsh translation" +msgstr "Walisische Übersetzung" + +#: ../src/gui/application/main.cpp:436 +msgid "French translation" +msgstr "Französische Übersetzung" + +#: ../src/gui/application/main.cpp:437 +#, fuzzy +msgid "" +"French translation\n" +"Bug fixes" +msgstr "Französische Übersetzung" + +#: ../src/gui/application/main.cpp:438 ../src/gui/application/main.cpp:439 +msgid "Italian translation" +msgstr "Italienische Übersetzung" + +#: ../src/gui/application/main.cpp:440 ../src/gui/application/main.cpp:441 +msgid "Swedish translation" +msgstr "Schwedische Übersetzung" + +#: ../src/gui/application/main.cpp:442 +msgid "Estonian translation" +msgstr "Estnische Übersetzung" + +#: ../src/gui/application/main.cpp:443 ../src/gui/application/main.cpp:444 +msgid "Dutch translation" +msgstr "Niederländische Übersetzung" + +#: ../src/gui/application/main.cpp:445 +msgid "HSpinBox class" +msgstr "HSpinBox Class" + +#: ../src/gui/application/main.cpp:446 +msgid "Transposition by interval" +msgstr "" + +#: ../src/gui/application/main.cpp:447 +msgid "Original designs for rotary controllers" +msgstr "Ursprüngliches Design der Drehknöfpe" + +#: ../src/gui/application/main.cpp:448 +msgid "Japanese translation" +msgstr "Japanische Übersetzung" + +#: ../src/gui/application/main.cpp:449 +msgid "" +"Auto-scroll deceleration\n" +"Rests outside staves and other bug fixes" +msgstr "" +"Autoscroll Abbremsung\n" +"Pausen ausserhalb von Systemen und andere Fehlerbeseitigung" + +#: ../src/gui/application/main.cpp:450 +msgid "Simplified Chinese translation" +msgstr "Übersetzung in vereinfachtes Chinesisch" + +#: ../src/gui/application/main.cpp:451 +msgid "LIRC infrared remote-controller support" +msgstr "Unterstützung für LIRC Infrarot Fernsteuerung" + +#: ../src/gui/application/main.cpp:452 +msgid "MTC slave timing implementation" +msgstr "MTC-Slave Timing Implementierung" + +#: ../src/gui/application/main.cpp:453 +msgid "Czech translation" +msgstr "Tschechische Übersetzung" + +#: ../src/gui/application/main.cpp:454 +msgid "SCons/bksys building system" +msgstr "SCons/bksys Buildsystem" + +#: ../src/gui/application/main.cpp:455 +msgid "icons, icons, icons" +msgstr "Icons, Icons, Icons" + +#: ../src/gui/application/main.cpp:456 ../src/gui/application/main.cpp:457 +#: ../src/gui/application/main.cpp:458 ../src/gui/application/main.cpp:459 +msgid "Spanish translation" +msgstr "Spanische Übersetzung" + +#: ../src/gui/application/main.cpp:460 ../src/gui/application/main.cpp:461 +msgid "Catalan translation" +msgstr "Katalanische Übersetzung" + +#: ../src/gui/application/main.cpp:462 +msgid "" +"1.2.3 splash screen photo\n" +"Gave birth to D. Michael McIntyre, bought him a good flute once\n" +"upon a time, and always humored him when he came over to play her\n" +"some new instrument, even though she really hated his playing.\n" +"Born October 19, 1951, died September 21, 2007, R. I. P." +msgstr "" + +#: ../src/gui/application/main.cpp:463 +#, fuzzy +msgid "Initial guitar chord editing code" +msgstr "Guitarrenakkord Editor" + +#: ../src/gui/application/main.cpp:464 +#, fuzzy +msgid "Polish translation" +msgstr "Walisische Übersetzung" + +#: ../src/gui/application/main.cpp:465 +#, fuzzy +msgid "Basque translation" +msgstr "Japanische Übersetzung" + +#: ../src/gui/application/main.cpp:466 +msgid "Klearlook theme" +msgstr "" + +#: ../src/_translatorinfo.cpp:1 ../src/gui/application/main.cpp:468 +msgid "" +"_: NAME OF TRANSLATORS\n" +"Your names" +msgstr "" +"Eckhard Jokisch\n" +"Michael Gerdau" + +#: ../src/_translatorinfo.cpp:3 ../src/gui/application/main.cpp:468 +msgid "" +"_: EMAIL OF TRANSLATORS\n" +"Your emails" +msgstr "" +"e.jokisch@u-code.de\n" +"mgd@technosis.de" + +#: ../src/gui/application/main.cpp:719 +msgid "Welcome!" +msgstr "" + +#: ../src/gui/application/main.cpp:731 +msgid "" +"

            Welcome to Rosegarden!

            Welcome to the Rosegarden audio and MIDI " +"sequencer and musical notation editor.

            • If you have not already " +"done so, you may wish to install some DSSI synth plugins, or a separate " +"synth program such as QSynth. Rosegarden does not synthesize sounds from " +"MIDI on its own, so without these you will hear nothing.

            • Rosegarden uses the JACK audio server for recording and " +"playback of audio, and for playback from DSSI synth plugins. These features " +"will only be available if the JACK server is running.

            • Rosegarden has comprehensive documentation: see the Help menu " +"for the handbook, tutorials, and other information!

            Rosegarden " +"was brought to you by a team of volunteers across the world. To learn more, " +"go to http://www.rosegardenmusic." +"com/.

            " +msgstr "" + +#: ../src/gui/application/RosegardenGUIView.cpp:257 +msgid "No non-audio segments in composition" +msgstr "Keine Nicht-Audiosegmente in diesem Stück." + +#: ../src/gui/application/RosegardenGUIView.cpp:333 +msgid "Selection must contain only audio or non-audio segments" +msgstr "Die Auswahl darf nur Audio- oder Nichtaudiosegmente enthalten" + +#: ../src/gui/application/RosegardenGUIView.cpp:431 +#: ../src/gui/application/RosegardenGUIView.cpp:576 +#: ../src/gui/application/RosegardenGUIView.cpp:612 +#: ../src/gui/application/RosegardenGUIView.cpp:776 +msgid "No non-audio segments selected" +msgstr "Keine Nichtaudiosegmente ausgeählt" + +#: ../src/gui/application/RosegardenGUIView.cpp:851 +#, fuzzy +msgid "" +"You've not yet defined an audio editor for Rosegarden to use.\n" +"See Settings -> Configure Rosegarden -> Audio." +msgstr "" +"Sie haben bisher noch keinen Audioeditor für Rosegarden festgelegt.\n" +"Siehe Einstellungen -> Konfiguriere Rosegarden -> Allgemein -> Externe " +"Editoren." + +#: ../src/gui/application/RosegardenGUIView.cpp:1559 +#: ../src/gui/application/RosegardenGUIView.cpp:1564 +msgid "Can't add dropped file. " +msgstr "Kann entfernte Datei nicht hinzufügen." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1014 +#: ../src/gui/seqmanager/SequenceManager.cpp:1150 +msgid "" +"The JACK Audio subsystem has failed or it has stopped Rosegarden from " +"processing audio.\n" +"Please restart Rosegarden to continue working with audio.\n" +"Quitting other running applications may improve Rosegarden's performance." +msgstr "" +"Das JACK Audio Subsystem hat eine Fehler gemeldet oder Rosegarden " +"anderweitig an der Verarbeitung von Audio gehindert.\n" +"Bitte starten Sie Rosegarden erneut, wenn Sie mit Audio weiterarbeiten " +"möchten.\n" +"Das Beenden anderer laufender Anwendung könnte u.U. die Leistung von " +"Rosegarden verbessern." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1020 +#: ../src/gui/seqmanager/SequenceManager.cpp:1156 +msgid "" +"The JACK Audio subsystem has stopped Rosegarden from processing audio, " +"probably because of a processing overload.\n" +"An attempt to restart the audio service has been made, but some problems may " +"remain.\n" +"Quitting other running applications may improve Rosegarden's performance." +msgstr "" +"Das JACK Audio Subsystem hat eine Fehler gemeldet oder Rosegarden " +"anderweitig an der Verarbeitung von Audio gehindert, möglicherweise wegen " +"Überlastung.\n" +"Der Audiodienst wurde neu gestartet, aber ev. sind damit nicht alle Probleme " +"behoben.\n" +"Das Beenden anderer laufender Anwendung könnte u.U. die Leistung von " +"Rosegarden verbessern." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1031 +msgid "" +"Run out of processor power for real-time audio processing. Cannot continue." +msgstr "" +"Es steht nicht geügend CPU-Leistung für die Echtzeit Audiobearbeitung zur " +"Verfügung. Kann nicht fortfahren." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1057 +msgid "" +"A serious error has occurred in the ALSA MIDI subsystem. It may not be " +"possible to continue sequencing. Please check console output for more " +"information." +msgstr "" +"Im ALSA MIDI Subsystem ist ein schwerer Fehler aufgetreten. Es könnte sein, " +"dass weiteres Sequenzing nicht möglich ist. Auf der Konsole finden Sie " +"vielleicht weitergehende Informationen." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1078 +msgid "JACK Audio subsystem is losing sample frames." +msgstr "Das JACK Audio Subsystem verliert Sampleframes." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1096 +msgid "" +"Failed to read audio data from disc in time to service the audio subsystem." +msgstr "" +"Audiodaten konnten nicht an das Audio Subsystem weiterleitet werden, da sie " +"nicht schnell genug von der Platte gelesen wurden." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1100 +msgid "" +"Failed to write audio data to disc fast enough to service the audio " +"subsystem." +msgstr "" +"Audiodaten konnten nicht vom Audio Subsystem angenommen werden, da sie nicht " +"schnell genug auf die Platte geschrieben wurden." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1104 +msgid "The audio mixing subsystem is failing to keep up." +msgstr "Das Audio Mixer Subsystem kommt nicht mit (ist zu langsam)." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1108 +msgid "The audio subsystem is failing to keep up." +msgstr "Das Audio Subsystem kommt nicht mit (ist zu langsam)." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1112 +msgid "Unknown sequencer failure mode!" +msgstr "Unbekannter Sequenzer Fehlermodus!" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1170 +#, fuzzy +msgid "" +"

            System timer resolution is too low

            Rosegarden was unable to find " +"a high-resolution timing source for MIDI performance.

            This may mean " +"you are using a Linux system with the kernel timer resolution set too low. " +"Please contact your Linux distributor for more information.

            Some Linux " +"distributors already provide low latency kernels, see http://rosegarden.wiki." +"sourceforge.net/Low+latency+kernels for instructions.

            " +msgstr "" +"

            Die System-Timer Auflösung ist zu niedrig

            Rosegarden war nicht in " +"der Lage eine hochauflösende Zeitquelle für die MIDI Performance zu finden.

            Das kann bedeuten, dass bei Ihrem Linux System die \"Kernel timer " +"resolution\" zu niedrig eingestellt ist. Bitte erfragen Sie nähere " +"Informationen bei Ihrem Linux Distributor.

            " + +#: ../src/gui/seqmanager/SequenceManager.cpp:1188 +#, fuzzy +msgid "" +"

            System timer resolution is too low

            Rosegarden was unable to find " +"a high-resolution timing source for MIDI performance.

            You may be able " +"to solve this problem by loading the RTC timer kernel module. To do this, " +"try running sudo modprobe snd-rtctimer in a terminal window and then " +"restarting Rosegarden.

            Alternatively, check whether your Linux " +"distributor provides a multimedia-optimized kernel. See http://rosegarden.wiki." +"sourceforge.net/Low+latency+kernels for notes about this.

            " +msgstr "" +"

            Die System-Timer Auflösung ist zu niedrig

            Rosegarden war nicht in " +"der Lage eine hochauflösende Zeitquelle für die MIDI Performance zu finden.

            Das kann bedeuten, dass bei Ihrem Linux System die \"Kernel timer " +"resolution\" zu niedrig eingestellt ist. Bitte erfragen Sie nähere " +"Informationen bei Ihrem Linux Distributor.

            " + +#: ../src/gui/seqmanager/SequenceManager.cpp:1312 +msgid "" +"

            Both MIDI and Audio subsystems have failed to initialize.

            You may " +"continue without the sequencer, but we suggest closing Rosegarden, running " +"\"alsaconf\" as root, and starting Rosegarden again. If you wish to run " +"with no sequencer by design, then use \"rosegarden --nosequencer\" to avoid " +"seeing this error in the future.

            " +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1314 +msgid "" +"

            The MIDI subsystem has failed to initialize.

            You may continue " +"without the sequencer, but we suggest closing Rosegarden, running \"modprobe " +"snd-seq-midi\" as root, and starting Rosegarden again. If you wish to run " +"with no sequencer by design, then use \"rosegarden --nosequencer\" to avoid " +"seeing this error in the future.

            " +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1316 +msgid "" +"

            The Rosegarden sequencer module version does not match the GUI module " +"version.

            You have probably mixed up files from two different versions " +"of Rosegarden. Please check your installation.

            " +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1322 +#, c-format +msgid "

            Sequencer startup failed

            %1" +msgstr "

            Sequenzerstart fehlgeschlagen:

            %1" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1330 +msgid "" +"

            Failed to connect to JACK audio server.

            Rosegarden could not " +"connect to the JACK audio server. This probably means the JACK server is " +"not running.

            If you want to be able to play or record audio files or " +"use plugins, you should exit Rosegarden and start the JACK server before " +"running Rosegarden again.

            " +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1331 +msgid "Failed to connect to JACK" +msgstr "" + +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:46 +msgid "Modify MIDI filters..." +msgstr "MIDI-Filter ändern..." + +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:58 +msgid "THRU events to ignore" +msgstr "THRU-Events, die ignoriert werden sollen" + +#: ../src/gui/editors/eventlist/EventView.cpp:131 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:60 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:96 +msgid "Note" +msgstr "Note" + +#: ../src/gui/editors/eventlist/EventView.cpp:132 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:61 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:97 +msgid "Program Change" +msgstr "Programmwechsel" + +#: ../src/gui/editors/eventlist/EventView.cpp:136 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:62 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:98 +msgid "Key Pressure" +msgstr "Key Pressure" + +#: ../src/gui/editors/eventlist/EventView.cpp:137 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:63 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:99 +msgid "Channel Pressure" +msgstr "Channel Pressure" + +#: ../src/gui/editors/eventlist/EventView.cpp:134 +#: ../src/gui/general/EditView.cpp:899 +#: ../src/gui/rulers/ControllerEventsRuler.cpp:198 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:64 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:100 +msgid "Pitch Bend" +msgstr "Pitch Bend" + +#: ../src/gui/editors/eventlist/EventView.cpp:133 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:65 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:101 +msgid "Controller" +msgstr "Controller" + +#: ../src/gui/editors/eventlist/EventView.cpp:135 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:66 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:102 +msgid "System Exclusive" +msgstr "System Exclusive" + +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:94 +msgid "RECORD events to ignore" +msgstr "RECORD-Events, die ignoriert werden sollen" + +#: ../src/gui/widgets/TimeWidget.cpp:101 +msgid "Note:" +msgstr "Notiz:" + +#: ../src/gui/widgets/TimeWidget.cpp:108 ../src/gui/widgets/TimeWidget.cpp:145 +msgid "" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:151 +msgid "Units:" +msgstr "Einheiten:" + +#: ../src/gui/widgets/TimeWidget.cpp:173 +msgid "Time:" +msgstr "Zeit:" + +#: ../src/gui/widgets/TimeWidget.cpp:184 +msgid "units" +msgstr "Einheiten" + +#: ../src/gui/widgets/TimeWidget.cpp:193 +msgid "Measures:" +msgstr "Takte:" + +#: ../src/gui/widgets/TimeWidget.cpp:193 +msgid "Measure:" +msgstr "Takt:" + +#: ../src/gui/widgets/TimeWidget.cpp:212 +msgid "beats:" +msgstr "Schläge:" + +#: ../src/gui/widgets/TimeWidget.cpp:212 +msgid "beat:" +msgstr "Schlag:" + +#: ../src/gui/widgets/TimeWidget.cpp:230 +msgid "%1:" +msgstr "%1:" + +#: ../src/gui/widgets/TimeWidget.cpp:254 +msgid "Seconds:" +msgstr "Sekunden:" + +#: ../src/gui/widgets/TimeWidget.cpp:273 +msgid "msec:" +msgstr "msec:" + +#: ../src/gui/widgets/TimeWidget.cpp:407 ../src/gui/widgets/TimeWidget.cpp:531 +msgid "(%1/%2 time)" +msgstr "(%1/%2 Zeit)" + +#: ../src/gui/widgets/TimeWidget.cpp:452 +msgid "(starting %1.%2 qpm, %2.%3 bpm)" +msgstr "(beginnt bei %1.%2 qpm, %2.%3 bpm)" + +#: ../src/gui/widgets/TimeWidget.cpp:458 +msgid "(starting %1.%2 bpm)" +msgstr "(beginnt bei %1.%2 bpm)" + +#: ../src/gui/widgets/TimeWidget.cpp:464 +msgid "(%1.%2 qpm, %2.%3 bpm)" +msgstr "(%1.%2 qpm, %2.%3 bpm)" + +#: ../src/gui/widgets/TimeWidget.cpp:470 +msgid "(%1.%2 bpm)" +msgstr "(%1.%2 bpm)" + +#: ../src/gui/editors/notation/TrackHeader.cpp:239 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:60 +msgid "C" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:241 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:61 +#, fuzzy +msgid "D" +msgstr "ID" + +#: ../src/gui/editors/notation/TrackHeader.cpp:243 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:62 +msgid "E" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:244 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:63 +msgid "F" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:246 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:64 +msgid "G" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:248 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:65 +#, fuzzy +msgid "A" +msgstr "A4" + +#: ../src/gui/editors/notation/TrackHeader.cpp:250 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:66 +msgid "B" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:70 +msgid "-2" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:71 +msgid "-1" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:72 +msgid "0" +msgstr "0" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:73 +#, fuzzy +msgid "1" +msgstr "%1" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:74 +msgid "2" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:75 +msgid "3" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:76 +#, fuzzy +msgid "4" +msgstr "A4" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:77 +msgid "5" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:78 +msgid "6" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:79 +msgid "7" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:83 +#, fuzzy +msgid "double flat" +msgstr "Doppel-B" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:84 +#, fuzzy +msgid "flat" +msgstr "B" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:85 +#, fuzzy +msgid "natural" +msgstr "l" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:86 +#, fuzzy +msgid "sharp" +msgstr "Kreuz" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:87 +#, fuzzy +msgid "double sharp" +msgstr "Doppelkreuz" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:234 +#, c-format +msgid "In %1" +msgstr "In %1" + +#: ../src/gui/studio/AudioMixerWindow.cpp:587 +#: ../src/gui/widgets/AudioRouteMenu.cpp:236 +#: ../src/gui/widgets/AudioRouteMenu.cpp:259 +msgid "Master" +msgstr "Master" + +#: ../src/gui/studio/AudioMixerWindow.cpp:528 +#: ../src/gui/widgets/AudioRouteMenu.cpp:238 +#: ../src/gui/widgets/AudioRouteMenu.cpp:261 +#, c-format +msgid "Sub %1" +msgstr "Gruppe %1" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:244 +msgid "In %1 R" +msgstr "In %1 R" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:245 +msgid "In %1 L" +msgstr "In %1 L" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:247 +msgid "Master R" +msgstr "Master R" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:248 +msgid "Master L" +msgstr "Master L" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:250 +msgid "Sub %1 R" +msgstr "Gruppe %1 R" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:251 +msgid "Sub %1 L" +msgstr "Gruppe %1 L" + +#: ../src/gui/studio/AudioMixerWindow.cpp:391 +#: ../src/gui/studio/AudioMixerWindow.cpp:522 +#: ../src/gui/widgets/AudioFaderBox.cpp:82 +msgid "Audio plugin button" +msgstr "Audio-Plugin-Knopf" + +#: ../src/gui/editors/parameters/AudioInstrumentParameterPanel.cpp:129 +#: ../src/gui/editors/parameters/AudioInstrumentParameterPanel.cpp:357 +#: ../src/gui/widgets/AudioFaderBox.cpp:91 +msgid "" +msgstr "" + +#: ../src/gui/widgets/AudioFaderBox.cpp:93 +msgid "Synth plugin button" +msgstr "Synth-Plugin Knopf" + +#: ../src/gui/widgets/AudioFaderBox.cpp:153 +msgid "Set the audio pan position in the stereo field" +msgstr "Die Audio-Hörposition im Stereofeld setzen" + +#: ../src/gui/widgets/AudioFaderBox.cpp:155 +msgid "Open synth plugin's native editor" +msgstr "Den eigenen Editor des Synth-Plugins öffnen" + +#: ../src/gui/widgets/AudioFaderBox.cpp:157 +msgid "Mono or Stereo Instrument" +msgstr "Audio-Instrument in Mono oder Stereo" + +#: ../src/gui/widgets/AudioFaderBox.cpp:159 +msgid "Record level" +msgstr "Aufnahmelautstärke = " + +#: ../src/gui/widgets/AudioFaderBox.cpp:161 +msgid "Playback level" +msgstr "Wiedergabelautstärke = " + +#: ../src/gui/studio/AudioMixerWindow.cpp:345 +#: ../src/gui/studio/AudioMixerWindow.cpp:347 +#: ../src/gui/studio/AudioMixerWindow.cpp:503 +#: ../src/gui/studio/AudioMixerWindow.cpp:505 +#: ../src/gui/widgets/AudioFaderBox.cpp:163 +msgid "Audio level" +msgstr "Audiodatei hinzufügen" + +#: ../src/gui/widgets/AudioFaderBox.cpp:170 +msgid "In:" +msgstr "In:" + +#: ../src/gui/widgets/AudioFaderBox.cpp:173 +msgid "Out:" +msgstr "Out:" + +#: ../src/gui/widgets/ProgressDialog.cpp:48 +#: ../src/gui/widgets/ProgressDialog.cpp:53 +#: ../src/gui/widgets/ProgressDialog.cpp:76 +msgid "Processing..." +msgstr "Verarbeitung..." + +#: ../src/gui/configuration/ColourConfigurationPage.h:60 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:130 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:346 +#: ../src/gui/widgets/ColourTable.cpp:52 +msgid "Color" +msgstr "Farbe" + +#: ../src/gui/widgets/ColourTable.cpp:68 +msgid "Modify Color Name" +msgstr "Farbname verändern" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:129 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:983 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:882 +#: ../src/gui/widgets/ColourTable.cpp:68 +msgid "Enter new name" +msgstr "Neuen Namen eingeben" + +#: ../src/gui/widgets/ColourTable.cpp:107 +msgid "Default Color" +msgstr "Standardfarbe" + +#: ../src/gui/widgets/Rotary.cpp:108 +msgid "" +"Click and drag up and down or left and right to modify.\n" +"Double click to edit value directly." +msgstr "" +"Klicken und Ziehen. auf und ab oder von links nach rechts, um den Wert zu " +"verändern." + +#: ../src/gui/widgets/Rotary.cpp:433 +msgid "Select a new value" +msgstr "Neuen Wert wählen" + +#: ../src/gui/widgets/Rotary.cpp:434 +msgid "Enter a new value" +msgstr "Neuen Wert eingeben" + +#: ../src/gui/widgets/QuantizeParameters.cpp:80 +msgid "Quantizer" +msgstr "Quantisierer" + +#: ../src/gui/widgets/QuantizeParameters.cpp:86 +msgid "Quantizer type:" +msgstr "Quantisiererungstyp" + +#: ../src/gui/widgets/QuantizeParameters.cpp:88 +msgid "Grid quantizer" +msgstr "Raster-Quantisierer" + +#: ../src/gui/widgets/QuantizeParameters.cpp:89 +msgid "Legato quantizer" +msgstr "Legato Quantisierer" + +#: ../src/gui/widgets/QuantizeParameters.cpp:90 +msgid "Heuristic notation quantizer" +msgstr "Heuristischer Notationsquantisierer" + +#: ../src/gui/widgets/QuantizeParameters.cpp:94 +msgid "Quantize for notation only (leave performance unchanged)" +msgstr "Quantisieren nur für die Notation (die Darbietung unverändert lassen)" + +#: ../src/gui/widgets/QuantizeParameters.cpp:104 +msgid "Notation parameters" +msgstr "Notationsparameter" + +#: ../src/gui/widgets/QuantizeParameters.cpp:109 +#: ../src/gui/widgets/QuantizeParameters.cpp:150 +msgid "Base grid unit:" +msgstr "Basis-Rastereinheit:" + +#: ../src/gui/widgets/QuantizeParameters.cpp:114 +msgid "Complexity:" +msgstr "Komplexität:" + +#: ../src/gui/widgets/QuantizeParameters.cpp:118 +msgid "Very high" +msgstr "Sehr hoch" + +#: ../src/gui/widgets/QuantizeParameters.cpp:119 +msgid "High" +msgstr "Hoch" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:224 +#: ../src/gui/widgets/QuantizeParameters.cpp:120 +msgid "Normal" +msgstr "Normal" + +#: ../src/gui/widgets/QuantizeParameters.cpp:121 +msgid "Low" +msgstr "Niedrig" + +#: ../src/gui/widgets/QuantizeParameters.cpp:122 +msgid "Very low" +msgstr "Sehr niedrig" + +#: ../src/gui/widgets/QuantizeParameters.cpp:125 +msgid "Tuplet level:" +msgstr "Tuolenebene:" + +#: ../src/gui/widgets/QuantizeParameters.cpp:129 +msgid "2-in-the-time-of-3" +msgstr "2-auf-3" + +#: ../src/gui/editors/notation/NotationView.cpp:4241 +#: ../src/gui/widgets/QuantizeParameters.cpp:130 +msgid "Triplet" +msgstr "Triole" + +#: ../src/gui/widgets/QuantizeParameters.cpp:138 +msgid "Any" +msgstr "Irgendein" + +#: ../src/gui/widgets/QuantizeParameters.cpp:141 +msgid "Permit counterpoint" +msgstr "Kontrapunkt erlauben" + +#: ../src/gui/widgets/QuantizeParameters.cpp:145 +msgid "Grid parameters" +msgstr "Rasterparameter" + +#: ../src/gui/widgets/QuantizeParameters.cpp:154 +msgid "Swing:" +msgstr "Swing:" + +#: ../src/gui/widgets/QuantizeParameters.cpp:159 +msgid "Iterative amount:" +msgstr "Iterativer Anteil" + +#: ../src/gui/widgets/QuantizeParameters.cpp:165 +msgid "Quantize durations as well as start times" +msgstr "Sowohl Dauern als auch Startzeiten quantisieren" + +#: ../src/gui/widgets/QuantizeParameters.cpp:169 +msgid "After quantization" +msgstr "Nach Quantisierung" + +#: ../src/gui/widgets/QuantizeParameters.cpp:183 +msgid "Show advanced options" +msgstr "Experteneinstellungen" + +#: ../src/gui/widgets/QuantizeParameters.cpp:192 +msgid "Re-beam" +msgstr "Wieder Balken hinzufügen" + +#: ../src/gui/widgets/QuantizeParameters.cpp:194 +msgid "Add articulations (staccato, tenuto, slurs)" +msgstr "Artikulation hinzufügen (staccato, tenuto, Bögen)" + +#: ../src/gui/widgets/QuantizeParameters.cpp:195 +msgid "Tie notes at barlines etc" +msgstr "Noten an Taktstrichen verbinden etc." + +#: ../src/gui/widgets/QuantizeParameters.cpp:196 +msgid "Split-and-tie overlapping chords" +msgstr "Überlappende Akkorde aufteilen und verbinden" + +#: ../src/gui/widgets/QuantizeParameters.cpp:307 +msgid "Full quantize" +msgstr "Vollständiges Quantisieren" + +#: ../src/gui/widgets/QuantizeParameters.cpp:450 +msgid "Show Advanced Options" +msgstr "Experteneinstellungen" + +#: ../src/gui/widgets/QuantizeParameters.cpp:454 +msgid "Hide Advanced Options" +msgstr "Experteneinstellungen verstecken" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:257 +#: ../src/gui/configuration/MatrixConfigurationPage.h:56 +#: ../src/gui/configuration/MatrixConfigurationPage.h:57 +#: ../src/gui/editors/matrix/MatrixView.cpp:2709 +msgid "Matrix" +msgstr "Matrix" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:64 +msgid "Printable headers" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:92 +#, fuzzy +msgid "Dedication" +msgstr "Indication" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:96 +#: ../src/gui/editors/segment/PlayListView.cpp:35 +msgid "Title" +msgstr "Titel" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:100 +msgid "Subtitle" +msgstr "Untertitel" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:104 +#, fuzzy +msgid "Subsubtitle" +msgstr "Untertitel" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:108 +#, fuzzy +msgid "Poet" +msgstr "Presto" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:116 +msgid "Composer" +msgstr "Komponist" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:120 +#, fuzzy +msgid "Meter" +msgstr "Master" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:124 +msgid "Arranger" +msgstr "Arrangiert" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:128 +#, fuzzy +msgid "Piece" +msgstr "Tonhöhen" + +#: ../data/fonts/mappings/fonts.cpp:26 +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:132 +msgid "Opus" +msgstr "Opus" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:136 +msgid "Copyright" +msgstr "Copyright" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:140 +#, fuzzy +msgid "Tagline" +msgstr "Dreieck" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:155 +#, fuzzy +msgid "The composition comes here." +msgstr "Länge des Stücks verändern" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:172 +msgid "Non-printable headers" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:213 +msgid "Add New Property" +msgstr "Neue Eigenschaft hinzufügen" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:217 +msgid "Delete Property" +msgstr "Eigenschaft löschen" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:236 +msgid "{new property %1}" +msgstr "{neue Eigenschaft %1}" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:236 +msgid "{new property}" +msgstr "{neue Eigenschaft}" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:243 +msgid "{undefined}" +msgstr "{undefiniert}" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:87 +msgid "Double-click opens segment in" +msgstr "Default-Editor (bei Doppelklick auf ein Segment)" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:91 +msgid "Notation editor" +msgstr "im Notationseditor öffnen" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:92 +msgid "Matrix editor" +msgstr "im Matrixeditor öffnen" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:93 +msgid "Event List editor" +msgstr "im Evenlisteneditor öffnen" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:99 +msgid "Number of count-in measures when recording" +msgstr "Anzahl vorzuzählender Takte bei Aufnahmen" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:109 +#, fuzzy +msgid "Auto-save interval" +msgstr "Abstand für automatisches Speichern (in Sekunden)" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:112 +msgid "Every 30 seconds" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:113 +msgid "Every minute" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:114 +msgid "Every five minutes" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:115 +msgid "Every half an hour" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:116 +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:277 +#: ../src/gui/configuration/NotationConfigurationPage.cpp:157 +msgid "Never" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:140 +msgid "Use JACK transport" +msgstr "Verwende den JACK Transportmodus" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:173 +msgid "Unknown" +msgstr "Unbekannt" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:179 +msgid "No MIDI, audio OK" +msgstr "Kein MIDI, aber Audio" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:182 +msgid "MIDI OK, no audio" +msgstr "MIDI, aber kein Audio" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:185 +msgid "MIDI OK, audio OK" +msgstr "MID und Audio OK" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:188 +msgid "No driver" +msgstr "Kein Treiber" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:195 +msgid "Details..." +msgstr "Zeige Detailinformationen..." + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:204 +msgid "Behavior" +msgstr "Verhalten" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:219 +msgid "Side-bar parameter box layout" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:223 +msgid "Vertically stacked" +msgstr "Übereinander" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:225 +msgid "Tabbed" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:233 +msgid "Note name style" +msgstr "Notennamenstil" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:237 +msgid "Always use US names (e.g. quarter, 8th)" +msgstr "Always use US names (e.g. quarter, 8th)" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:238 +msgid "Localized (where available)" +msgstr "Lokalisiert (soweit verfügbar, sonst UK)" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:252 +#, fuzzy +msgid "Show textured background on" +msgstr "Gemusterte Hintergründe auf freien Flächen" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:254 +msgid "Main window" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:275 +msgid "Use bundled Klearlook theme" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:278 +msgid "When not running under KDE" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:279 +#: ../src/gui/configuration/NotationConfigurationPage.cpp:159 +msgid "Always" +msgstr "Immer" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:287 +msgid "Presentation" +msgstr "Aufbereitung" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:423 +msgid "" +"Changes to the textured background in the main window will not take effect " +"until you restart Rosegarden." +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:168 +#: ../src/gui/configuration/GeneralConfigurationPage.h:78 +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:207 +#: ../src/gui/configuration/MatrixConfigurationPage.cpp:59 +msgid "General" +msgstr "Allgemein" + +#: ../src/gui/configuration/GeneralConfigurationPage.h:79 +msgid "General Configuration" +msgstr "Allgemeine Konfiguration" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:92 +msgid "Base octave number for MIDI pitch display" +msgstr "Basis-Oktavennummer für die MIDI-Tonhöhenanzeige" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:107 +msgid "Always use default studio when loading files" +msgstr "Beim laden von Dateien immer \"default\"-Studio benutzen" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:119 +#, fuzzy +msgid "Send all MIDI Controllers at start of each playback" +msgstr "" +"MIDI-Controller zum Start der Wiedergabe senden\\n\n" +" (führt zu deutlicher Verzögerung am Beginn)" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:121 +msgid "" +"Rosegarden can send all MIDI Controllers (Pan, Reverb etc) to all MIDI " +"devices every\n" +"time you hit play if you so wish. Please note that this option will usually " +"incur a\n" +"delay at the start of playback due to the amount of data being transmitted." +msgstr "" +"Rosegarden kann alle MIDI Steuernachrichten (Pan, Hall, etc.) jedesmal an " +"alle MIDI Geräte senden,\n" +"wenn Sie \"Wiedergabe\" drücken. Bitte beachten Sie, dass diese Option\n" +"wegen der zu übertragenden Datenmenge normalerweise eine Verzögerung zum " +"Beginn der Wiedergabe\n" +"verursacht." + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:138 +msgid "Sequencer timing source" +msgstr "Zeitgeber (-Quelle) des Sequencers" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:163 +msgid "Load SoundFont to SoundBlaster card at startup" +msgstr "Beim Starten lade SoundFont in die SoundBlaster Karte" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:164 +msgid "" +"Check this box to enable soundfont loading on EMU10K-based cards when " +"Rosegarden is launched" +msgstr "" +"Mache einen Hacken um das Laden von SoundFont für EMU10K-basierte Karten " +"beim Start von Rosegarden einzuschalten" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:173 +msgid "Path to 'asfxload' or 'sfxload' command" +msgstr "Pfad zum 'asfxload' oder 'sfxload' Befehl" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:180 +msgid "SoundFont" +msgstr "SoundFont" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:223 +msgid "MIDI Clock and System messages" +msgstr "MIDI-Clock und -System-Nachrichten " + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:229 +msgid "Send MIDI Clock, Start and Stop" +msgstr "MIDI-Clock, -Start und -Stop -Nachrichten senden" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:230 +msgid "Accept Start, Stop and Continue" +msgstr "Reagiere auf Start, Stop und Continue" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:241 +msgid "MIDI Machine Control mode" +msgstr "MIDI Machine Control Modus" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:248 +msgid "MMC Master" +msgstr "MMC Master" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:249 +msgid "MMC Slave" +msgstr "MMC Slave" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:260 +msgid "MIDI Time Code mode" +msgstr "MIDI Time Code Modus" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:267 +msgid "MTC Master" +msgstr "MTC Master" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:268 +msgid "MTC Slave" +msgstr "MTC Slave" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:281 +msgid "Automatically connect sync output to all devices in use" +msgstr "Verbinde Sync-Ausgang automatisch mit allen verwendeten Geräten" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:292 +msgid "MIDI Sync" +msgstr "MIDI Sync" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:308 +msgid "sfxload path" +msgstr "sfxload Pfad" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:315 +msgid "Soundfont path" +msgstr "SoundFont Pfad" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:67 +msgid "%1 minutes %2.%3%4 seconds (%5 units, %6 measures)" +msgstr "%1 Minuten %2.%3%4 Sekunden (%5 Einheiten, %6 Takte)" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:133 +msgid "Filename:" +msgstr "Dateiname:" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:136 +msgid "Formal duration (to end marker):" +msgstr "Formale Länge (bis zur Ende-Markierung):" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:141 +msgid "Playing duration:" +msgstr "Spieldauer:" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:146 +msgid "Tracks:" +msgstr "Spuren:" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:147 +msgid "%1 used, %2 total" +msgstr "%1 verwendet, %2 Gesamt" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:152 +msgid "Segments:" +msgstr "Segmente:" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:153 +msgid "%1 MIDI, %2 audio, %3 total" +msgstr "%1 MIDI, %2 Audio, %3 Gesamt" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:161 +msgid "Statistics" +msgstr "Statistiken" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:170 +#: ../src/gui/editors/parameters/InstrumentParameterBox.cpp:155 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:92 +msgid "Track" +msgstr "Spur" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:171 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:125 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:90 +msgid "Label" +msgstr "Bezeichnung" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:172 +msgid "Time" +msgstr "Zeit" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:174 +msgid "Events" +msgstr "Events" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:175 +msgid "Polyphony" +msgstr "Polyphonie" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:176 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:126 +msgid "Repeat" +msgstr "Wiederholen" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:178 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:128 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:305 +#: ../src/gui/general/EditView.cpp:1488 +msgid "Transpose" +msgstr "Transponieren" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:179 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:129 +msgid "Delay" +msgstr "Verzögerung" + +#: ../src/gui/configuration/AudioConfigurationPage.h:61 +#: ../src/gui/configuration/AudioPropertiesPage.h:58 +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:204 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:523 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:524 +msgid "Audio" +msgstr "Audio" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:204 +#: ../src/gui/configuration/MIDIConfigurationPage.h:62 +msgid "MIDI" +msgstr "MIDI" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:317 +msgid "Segment Summary" +msgstr "Segment Zusammenfassung" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:63 +msgid "Audio file path:" +msgstr "Pfad für Audiodateien" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:137 +#: ../src/gui/configuration/AudioPropertiesPage.cpp:68 +msgid "Choose..." +msgstr "Auswählen..." + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:73 +msgid "Disk space remaining:" +msgstr "Verbleibender Plattenplatz:" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:78 +msgid "Equivalent minutes of 16-bit stereo:" +msgstr "Entsprechende Anzahl Minuten bei 16-bit-Stereo" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:90 +msgid "Modify audio path" +msgstr "Audiodateipfad ändern" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:113 +msgid "%1 out of %2 (%3% used)" +msgstr "%1 von %2 (%3% verwendet)" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:144 +msgid "minutes at" +msgstr "Minuten bei" + +#: ../src/gui/configuration/MIDIConfigurationPage.h:63 +msgid "MIDI Settings" +msgstr "MIDI Einstellungen" + +#: ../src/gui/configuration/AudioConfigurationPage.h:62 +#: ../src/gui/configuration/AudioPropertiesPage.h:59 +msgid "Audio Settings" +msgstr "Audioeinstellungen" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:87 +msgid "Default layout mode" +msgstr "Default Layout-Modus" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:91 +msgid "Linear layout" +msgstr "Lineares Layout" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:92 +msgid "Continuous page layout" +msgstr "Fortlaufende Seite Layout" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:93 +msgid "Multiple page layout" +msgstr "Mehrere Seiten Layout" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:101 +msgid "Default spacing" +msgstr "Standard-Abstände" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:125 +msgid "Default duration factor" +msgstr "Standard Längen Faktor" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:141 +msgid "Full" +msgstr "Ganz" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:152 +msgid "Show track headers (linear layout only)" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:158 +msgid "When needed" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:166 +msgid "" +"\"Always\" and \"Never\" mean what they usually mean\n" +"\"When needed\" means \"when staves are too many to all fit in the current " +"window\"" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:178 +msgid "Show non-notation events as question marks" +msgstr "Nicht-Notationsevents als Fragezeichen zeigen" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:188 +msgid "Show notation-quantized notes in a different color" +msgstr "Notations-quantisierte Events in einer anderen Farbe anzeigen" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:198 +msgid "Show \"invisible\" events in grey" +msgstr "\"unsichtbare\" Events in grau anzeigen" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:208 +msgid "Show notes outside suggested playable range in red" +msgstr "Noten außerhalb des vorgeschlagenen spielbaren Bereiches in Rot zeigen" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:218 +msgid "Highlight superimposed notes with a halo effect" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:231 +msgid "When recording MIDI, split-and-tie long notes at barlines" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:242 +msgid "Layout" +msgstr "Layout" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:255 +msgid "Default note style for new notes" +msgstr "Standard Notenstil für neue Noten" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:287 +msgid "When inserting notes..." +msgstr "Beim Einfügen neuer Noten..." + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:294 +msgid "Split notes into ties to make durations match" +msgstr "" +"Noten in \"verbundene\" aufbrechen, um Längen in Übereinstimmung zu bringen" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:295 +msgid "Ignore existing durations" +msgstr "Vorhandene Längen ignorieren" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:305 +msgid "Auto-beam on insert when appropriate" +msgstr "Balken automatisch hinzufügen, wenn angemessen" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:317 +#: ../src/gui/editors/notation/NotationEraser.cpp:54 +msgid "Collapse rests after erase" +msgstr "Pausen nach Löschen zusammenfassen" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:328 +msgid "Default paste type" +msgstr "Standard-Einfügetyp" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:350 +msgid "Editing" +msgstr "Ändern" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:362 +msgid "Accidentals in one octave..." +msgstr "Vorzeichen in einer Oktave..." + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:364 +msgid "Affect only that octave" +msgstr "Betrifft nur diese Oktave" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:365 +msgid "Require cautionaries in other octaves" +msgstr "Verlange Sicherheitsvorzeichen in anderen Oktaven" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:366 +msgid "Affect all subsequent octaves" +msgstr "Betrifft alle folgenden Oktaven" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:374 +msgid "Accidentals in one bar..." +msgstr "Vorzeichen innerhalb eines Taktes..." + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:376 +msgid "Affect only that bar" +msgstr "Betrifft nur diesen Takt" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:377 +msgid "Require cautionary resets in following bar" +msgstr "Verlange Sicherheitsauflösungszeichen im folgenden Takt" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:378 +msgid "Require explicit resets in following bar" +msgstr "Verlange ausdrückliche Auflösungszeichen im folgenden Takt" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:386 +#, fuzzy +msgid "Key signature cancellation style" +msgstr "Tonart Auflösungsstil:" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:388 +msgid "Cancel only when entering C major or A minor" +msgstr "Nur bei Eingabe von C-dur oder a-moll auflösen" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:389 +msgid "Cancel whenever removing sharps or flats" +msgstr "Immer auflösen, wenn # oder b entfernt werden" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:390 +msgid "Cancel always" +msgstr "Immer auflösen" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:400 +msgid "Accidentals" +msgstr "Vorzeichen" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:441 +msgid "Notation font" +msgstr "Notationsfont" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:467 +msgid "Origin:" +msgstr "Ursprung:" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:471 +msgid "Copyright:" +msgstr "Copyright:" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:475 +msgid "Mapped by:" +msgstr "Zugeordnet von:" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:479 +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:81 +msgid "Type:" +msgstr "Typ:" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:508 +msgid "Font size for single-staff views" +msgstr "Fontgröße für Ansichten mit einem System" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:516 +msgid "Font size for multi-staff views" +msgstr "Fontgröße für Ansichten mit mehreren Systemen" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:524 +msgid "Font size for printing (pt)" +msgstr "Fontgröße zum Drucken (in Punkten)" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:541 +msgid "Text font" +msgstr "Schriftart für Text" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:549 +msgid "Sans-serif font" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:664 +msgid "%1 (smooth)" +msgstr "%1 (sanft)" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:667 +msgid "%1 (jaggy)" +msgstr "%1 (zackig)" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:58 +msgid "JACK latency" +msgstr "Jack-Verzögerung" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:61 +msgid "" +"Use the \"Fetch JACK latencies\" button to discover the latency values set " +"at\n" +"the sequencer. It's recommended that you use the returned values but it's " +"also\n" +"possible to override them manually using the sliders. Note that if you " +"change\n" +"your JACK server parameters you should always fetch the latency values " +"again.\n" +"The latency values will be stored by Rosegarden for use next time." +msgstr "" +"Benutzen Sie den Knopf \"JACK-Verzögerungen holen\" um auf die " +"Verzögerungswerte\n" +"des Sequncers zuzugreifen. Wir empfehlen Ihnen, die zurückgelieferten Werte " +"zu verwenden,\n" +"aber es ist auch möglich, diese Werte manuell mit den Stellbalken zu " +"verändern.\n" +"Denken Sie daran, immer die Verzögerungswerte erneut zu holen, wenn Sie die\n" +"Jack-Serverparameter verändern. Rosegarden speichert die Verzögerungswerte " +"für\n" +"die nächste Verwendung." + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:65 +msgid "JACK playback latency (in ms)" +msgstr "Wiedergabeverzögerung für JACK (in ms)" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:66 +msgid "JACK record latency (in ms)" +msgstr "Aufnahmeverzögerung für JACK (in ms)" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:68 +msgid "Fetch JACK latencies" +msgstr "JACK-Verzögerungen holen" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:121 +msgid "JACK Latency" +msgstr "Jack Verzögerung" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:92 +msgid "Audio preview scale" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:96 +msgid "Linear - easier to see loud peaks" +msgstr "Linear - einfacher, laute Stellen zu erkennen" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:97 +msgid "Meter scaling - easier to see quiet activity" +msgstr "" +"Meßgerät Skalierung - einfacher Aktivität bei ruhigen Stellen zu erkennen" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:105 +msgid "Record audio files as" +msgstr "Speichere Audio-Aufnahmen als" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:107 +msgid "16-bit PCM WAV format (smaller files)" +msgstr "16-bit PCM WAV Format (kleinere Dateien)" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:108 +msgid "32-bit float WAV format (higher quality)" +msgstr "32-bit float WAV Format (höhere Qualität)" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:117 +msgid "External audio editor" +msgstr "Erterner Audioeditor" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:145 +msgid "Create JACK outputs" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:150 +#, fuzzy +msgid "for individual audio instruments" +msgstr "je Audio Instrument" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:157 +#, fuzzy +msgid "for submasters" +msgstr "Keine Gruppenfader" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:184 +#, fuzzy +msgid "" +"Rosegarden can start the JACK audio daemon (jackd) for you automatically if " +"it isn't already running when Rosegarden starts.\n" +"\n" +"This is recommended for beginners and those who use Rosegarden as their main " +"audio application, but it might not be to the liking of advanced users.\n" +"\n" +"If you want to start JACK automatically, make sure the command includes a " +"full path where necessary as well as any command-line arguments you want to " +"use.\n" +"\n" +"For example: /usr/local/bin/jackd -d alsa -d hw -r44100 -p 2048 -n 2\n" +"\n" +msgstr "" +"Rosegarden kann prüfen, ob der JACK audio daemon (jackd) läuft, wenn " +"Rosegarden startet und wenn nicht, ihn für die aktuelle Session zu starten.\n" +"\n" +"JACK so zu steuern wird Rosegarden-Neulingen und solchen Anwendern, die " +"Rosegarden als Hauptanwendung für JACK nutzen, empfohlen; dies mag einigen " +"fortgeschritteneren Benutzern nicht ausreichen.\n" +"Wenn Sie JACK automatisch starten wollen, muss die Kommandozeile einen " +"vollständigen Pfad (soweit notwendig) sowie die Argumente, die Sie übergeben " +"wollen, enthalten, z. B.: /usr/local/bin/jackd -d alsa -d hw -r44100 -p 2048 " +"-n 2\n" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:196 +msgid "Start JACK when Rosegarden starts" +msgstr "JACK mit Rosegarden starten" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:201 +msgid "JACK command" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:214 +#, fuzzy +msgid "JACK Startup" +msgstr "Start" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:224 +msgid "External audio editor path" +msgstr "Erterner Audioeditor" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:262 +msgid "External audio editor \"%1\" not found or not executable" +msgstr "" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:70 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:448 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:863 +msgid "Add New Color" +msgstr "Neue Farbe hinzufügen" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:74 +msgid "Delete Color" +msgstr "Farbe löschen" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:93 +msgid "Color Map" +msgstr "Farbtabelle" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:128 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:983 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:882 +msgid "New Color Name" +msgstr "Neuer Farbname" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:130 +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:59 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:984 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:883 +#: ../src/gui/studio/DeviceManagerDialog.cpp:115 +#: ../src/gui/studio/DeviceManagerDialog.cpp:174 +msgid "New" +msgstr "Neu" + +#: ../src/gui/configuration/LatencyConfigurationPage.h:62 +msgid "Latency" +msgstr "Verzögerung" + +#: ../src/gui/configuration/LatencyConfigurationPage.h:63 +msgid "Sequencer Latency" +msgstr "Sequencer-Verzögerung" + +#: ../src/gui/configuration/ColourConfigurationPage.h:61 +msgid "Color Settings" +msgstr "Farbeinstellungen" + +#: ../src/gui/studio/MidiDeviceListViewItem.cpp:55 +#: ../src/gui/studio/MidiKeyMapListViewItem.cpp:44 +msgid "Key Mapping" +msgstr "Tasten-Übersetzungstabelle" + +#: ../src/gui/studio/BankEditorDialog.cpp:97 +msgid "Manage MIDI Banks and Programs" +msgstr "MIDI-Bänke und -Programme verwalten" + +#: ../src/gui/studio/BankEditorDialog.cpp:128 +msgid "MIDI Device" +msgstr "MIDI-Gerät" + +#: ../src/gui/studio/BankEditorDialog.cpp:130 +#: ../src/gui/studio/BankEditorDialog.cpp:219 +msgid "MSB" +msgstr "MSB" + +#: ../src/gui/studio/BankEditorDialog.cpp:131 +#: ../src/gui/studio/BankEditorDialog.cpp:218 +msgid "LSB" +msgstr "LSB" + +#: ../src/gui/studio/BankEditorDialog.cpp:140 +msgid "Add Bank" +msgstr "Bank hinzufügen" + +#: ../src/gui/studio/BankEditorDialog.cpp:141 +msgid "Add Key Mapping" +msgstr "Tasten-Übersetzungstabelle hinzufügen" + +#: ../src/gui/studio/BankEditorDialog.cpp:153 +msgid "Add a Bank to the current device" +msgstr "Zum aktuellen Gerät eine Bank hinhzufügen" + +#: ../src/gui/studio/BankEditorDialog.cpp:157 +msgid "Add a Percussion Key Mapping to the current device" +msgstr "Füge Percussions-Tasten-Übersetzungstabelle zum aktuellen Gerät hinzu" + +#: ../src/gui/studio/BankEditorDialog.cpp:161 +msgid "Delete the current Bank or Key Mapping" +msgstr "Aktuelle Bank oder Tasten-Übersetzungstabelle löschen" + +#: ../src/gui/studio/BankEditorDialog.cpp:165 +msgid "Delete all Banks and Key Mappings from the current Device" +msgstr "Alle Bänke und Tasten-Übersetzungstabellen im aktuellen Gerät löschen" + +#: ../src/gui/studio/BankEditorDialog.cpp:167 +#: ../src/gui/studio/DeviceManagerDialog.cpp:117 +msgid "Import..." +msgstr "&Import" + +#: ../src/gui/studio/BankEditorDialog.cpp:168 +#: ../src/gui/studio/DeviceManagerDialog.cpp:118 +msgid "Export..." +msgstr "Exportieren als..." + +#: ../src/gui/studio/BankEditorDialog.cpp:176 +msgid "" +"Import Bank and Program data from a Rosegarden file to the current Device" +msgstr "" +"Bank- und Programmdaten aus einer Rosegarden-Datei in das aktuelle Gerät " +"importieren" + +#: ../src/gui/studio/BankEditorDialog.cpp:179 +msgid "" +"Export all Device and Bank information to a Rosegarden format interchange " +"file" +msgstr "" +"Alle Geräte- und Bank-Informationen in ein Rosegarden-Datenaustauschformat " +"exportieren" + +#: ../src/gui/studio/BankEditorDialog.cpp:190 +msgid "Copy all Program names from current Bank to clipboard" +msgstr "Alle Programmnamen der aktuellen Bank in die Zwischenablage kopieren" + +#: ../src/gui/studio/BankEditorDialog.cpp:194 +msgid "Paste Program names from clipboard to current Bank" +msgstr "Programmnamen von der Zwischenablage in die aktuelle Bank einfügen" + +#: ../src/gui/studio/BankEditorDialog.cpp:216 +msgid "Show Variation list based on " +msgstr "Abweichungsliste anzeigen basiert auf " + +#: ../src/gui/studio/BankEditorDialog.cpp:1010 +msgid "" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1046 +msgid "" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1048 +msgid "" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1089 +msgid "Really delete this bank?" +msgstr "Diese Bank wirklich löschen?" + +#: ../src/gui/studio/BankEditorDialog.cpp:1137 +msgid "Really delete this key mapping?" +msgstr "Diese Bank wirklich löschen?" + +#: ../src/gui/studio/BankEditorDialog.cpp:1187 +msgid "Really delete all banks for " +msgstr "Wirklich alle Bänke löschen für " + +#: ../src/gui/studio/BankEditorDialog.cpp:1476 +msgid "Import Banks from Device in File" +msgstr "Bänke von einem Gerät in eine Datei importieren " + +#: ../src/gui/studio/BankEditorDialog.cpp:1623 +#: ../src/gui/studio/DeviceManagerDialog.cpp:770 +msgid "Export Device as..." +msgstr "Gerät exportieren als..." + +#: ../src/gui/studio/BankEditorDialog.cpp:1694 +msgid "" +"There are unsaved changes.\n" +"Do you want to apply the changes before exiting the Bank Editor or discard " +"the changes ?" +msgstr "" +"Ungesicherte Änderungen:\n" +"Vor Verlassen des Bank-Editors Änderungen speichern oder verwerfen" + +#: ../src/gui/studio/BankEditorDialog.cpp:1697 +msgid "Unsaved Changes" +msgstr "Tonart-Veränderung" + +#: ../src/gui/studio/NameSetEditor.cpp:68 +msgid "Librarian" +msgstr "Bibliothekar" + +#: ../src/gui/studio/NameSetEditor.cpp:75 +msgid "Email" +msgstr "Email" + +#: ../src/gui/studio/NameSetEditor.cpp:80 +msgid "" +"The librarian maintains the Rosegarden device data for this device.\n" +"If you've made modifications to suit your own device, it might be worth\n" +"liaising with the librarian in order to publish your information for the " +"benefit\n" +"of others." +msgstr "" +"Der Bibliothekar verwaltet die Daten, die Rosegarden zu diesem Gerät kennt.\n" +"Falls Sie hier Anpassungen vorgenommen haben, um Ihr eigenes Gerät besser\n" +"zu unterstützen, sollten Sie überlegen den Bibliothekar zu kontaktieren, " +"damit\n" +"möglicherweise auch Andere von Ihren Anpassungen profitieren können." + +#: ../src/gui/studio/MidiBankListViewItem.cpp:51 +#: ../src/gui/studio/MidiDeviceListViewItem.cpp:48 +msgid "Percussion Bank" +msgstr "Percussion Bank" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:84 +#: ../src/gui/studio/MidiBankListViewItem.cpp:51 +#: ../src/gui/studio/MidiDeviceListViewItem.cpp:48 +msgid "Bank" +msgstr "Bank" + +#: ../src/gui/studio/ChangeRecordDeviceCommand.h:39 +msgid "Change Record Device" +msgstr "Aufnahmegerät wechseln" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:61 +#: ../src/gui/studio/DeviceManagerDialog.cpp:96 +msgid "Manage MIDI Devices" +msgstr "MIDI-Geräte verwalten... " + +#: ../src/gui/studio/DeviceManagerDialog.cpp:98 +msgid "Play devices" +msgstr "Vorschau abspielen" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:76 +#: ../src/gui/studio/DeviceManagerDialog.cpp:106 +#: ../src/gui/studio/DeviceManagerDialog.cpp:165 +msgid "Connection" +msgstr "Verbindung" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:119 +msgid "Banks..." +msgstr "Bänke verwalten..." + +#: ../src/gui/studio/DeviceManagerDialog.cpp:120 +msgid "Control Events..." +msgstr "Kontroll-Events..." + +#: ../src/gui/studio/DeviceManagerDialog.cpp:126 +msgid "Create a new Play device" +msgstr "Neues Abspielgerät anlegen" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:129 +#: ../src/gui/studio/DeviceManagerDialog.cpp:184 +msgid "Delete the selected device" +msgstr "Gewähltes Gerät löschen" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:132 +msgid "" +"Import Bank, Program and Controller data from a Rosegarden file to the " +"selected device" +msgstr "" +"Bank- und Programmdaten aus einer Rosegarden-Datei in das aktuelle Gerät " +"importieren" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:135 +msgid "Export Bank and Controller data to a Rosegarden interchange file" +msgstr "" +"Alle Geräte- und Bank-Informationen in ein Rosegarden-Datenaustauschformat " +"exportieren" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:138 +msgid "View and edit Banks and Programs for the selected device" +msgstr "Ansehen und ändern von Bänken und Programmen für das ausgewählte Gerät" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:141 +msgid "" +"View and edit Control Events for the selected device - these are special " +"Event types that you can define against your device and control through " +"Control Rulers or the Instrument Parameter Box " +msgstr "" +"Ansehen und ändern der Kontrol-Events für das ausgewählte Gerät - es handelt " +"sich hierbei um spezielle Event-Typen, die Sie für Ihr Gerät definieren und " +"mittels der Kontrollineale der Instrument Parameter Box kontrollieren können." + +#: ../src/gui/studio/DeviceManagerDialog.cpp:156 +msgid "Record devices" +msgstr "Aufnahmegeräte" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:164 +msgid "Current" +msgstr "Aktuell" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:181 +msgid "Create a new Record device" +msgstr "Erzeuge ein neues Aufnahmegerät" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:360 +#: ../src/gui/studio/DeviceEditorDialog.cpp:378 +#: ../src/gui/studio/DeviceManagerDialog.cpp:486 +#: ../src/gui/studio/DeviceManagerDialog.cpp:501 +msgid "New Device" +msgstr "Neues Gerät" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:703 +msgid "Import from Device in File" +msgstr "Von Gerät in Datei importieren" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:55 +msgid "Remap Instrument assigments..." +msgstr "Instrumentzuordnungen neu verteilen..." + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:62 +msgid "Device or Instrument" +msgstr "Gerät oder Instrument" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:65 +msgid "Remap Tracks by all Instruments on a Device or by single Instrument" +msgstr "" +"Spuren für alle Instrumente eines Geräts oder für ein einzelnes Instrument " +"neu verteilen" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:74 +msgid "Choose Source and Destination" +msgstr "Quelle und Ziel wählen" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:77 +msgid "From" +msgstr "Von" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:78 +msgid "To" +msgstr "Nach" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:120 +#: ../src/gui/studio/RemapInstrumentDialog.cpp:121 +msgid "" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:155 +msgid "Show Audio &Faders" +msgstr "Zeige Audio &Fader" + +#: ../src/gui/studio/AudioMixerWindow.cpp:160 +msgid "Show Synth &Faders" +msgstr "Zeige Synth &Fader" + +#: ../src/gui/studio/AudioMixerWindow.cpp:165 +msgid "Show &Submasters" +msgstr "Zeige Gruppenfader" + +#: ../src/gui/studio/AudioMixerWindow.cpp:170 +msgid "Show &Plugin Buttons" +msgstr "Audio-Plugin-Knopf" + +#: ../src/gui/studio/AudioMixerWindow.cpp:175 +msgid "Show &Unassigned Faders" +msgstr "Zeige nicht zugeordnete Fader" + +#: ../src/gui/studio/AudioMixerWindow.cpp:184 +#, c-format +msgid "" +"_n: 1 Input\n" +"%n Inputs" +msgstr "" +"_n: 1 Eingang\n" +"%n Eingänge" + +#: ../src/gui/studio/AudioMixerWindow.cpp:194 +msgid "No Submasters" +msgstr "Keine Gruppenfader" + +#: ../src/gui/studio/AudioMixerWindow.cpp:203 +#, c-format +msgid "" +"_n: 1 Submaster\n" +"%n Submasters" +msgstr "" +"_n: 1 Gruppenfader\n" +"%n Gruppenfader" + +#: ../src/gui/studio/AudioMixerWindow.cpp:279 +msgid "Audio Mixer" +msgstr "Audio Fader" + +#: ../src/gui/studio/AudioMixerWindow.cpp:311 +msgid "Record input source" +msgstr "Aufnahmequelle" + +#: ../src/gui/studio/AudioMixerWindow.cpp:322 +msgid "Output destination" +msgstr "Ausgabeziel" + +#: ../src/gui/studio/AudioMixerWindow.cpp:336 +#: ../src/gui/studio/AudioMixerWindow.cpp:495 +msgid "Pan" +msgstr "Pan" + +#: ../src/gui/studio/AudioMixerWindow.cpp:355 +msgid "Mono or stereo" +msgstr "Mono oder Stereo" + +#: ../src/gui/studio/AudioMixerWindow.cpp:364 +#: ../src/gui/studio/AudioMixerWindow.cpp:513 +msgid "Mute" +msgstr "Stummschalten" + +#: ../src/gui/studio/AudioMixerWindow.cpp:373 rc.cpp:408 +#, no-c-format +msgid "Solo" +msgstr "Solo" + +#: ../src/gui/studio/AudioMixerWindow.cpp:382 +msgid "Arm recording" +msgstr "Aufnahme vorbereiten" + +#: ../src/gui/studio/AudioMixerWindow.cpp:400 +#, c-format +msgid "Audio %1" +msgstr "Audio %1" + +#: ../src/gui/studio/AudioMixerWindow.cpp:404 +#, c-format +msgid "Synth %1" +msgstr "Synth %1" + +#: ../src/gui/studio/AudioMixerWindow.cpp:578 +#: ../src/gui/studio/AudioMixerWindow.cpp:580 +msgid "Audio master output level" +msgstr "Audio Master Ausgangspegel" + +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:71 +msgid "Manage Synth Plugins" +msgstr "Synth Plugins verwalten" + +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:78 +msgid "Synth plugins" +msgstr "Synth Plugins" + +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:145 +msgid "Controls" +msgstr "Controls" + +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:152 +msgid "Editor >>" +msgstr "Editor >>" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:66 +#: ../src/gui/studio/MidiProgramsEditor.cpp:169 +msgid "Bank and Program details" +msgstr "Bank- und Programm-Details" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:67 +msgid "Programs" +msgstr "Programme" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2711 +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:88 +#: ../src/gui/studio/MidiProgramsEditor.cpp:93 +msgid "Percussion" +msgstr "Percussion" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:99 +msgid "MSB Value" +msgstr "MSB-Wert" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:107 +msgid "" +"Selects a MSB controller Bank number (MSB/LSB pairs are always unique for " +"any Device)" +msgstr "" +"Wählt eine Banknummer des MSB-Controllers aus (MSB/LSB-Paare sind stets " +"eindeutig für ein Gerät)" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:111 +msgid "" +"Selects a LSB controller Bank number (MSB/LSB pairs are always unique for " +"any Device)" +msgstr "" +"Wählt eine Banknummer des LSB-Controllers aus (MSB/LSB-Paare sind stets " +"eindeutig für ein Gerät)" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:116 +msgid "LSB Value" +msgstr "LSB-Wert" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:254 +#: ../src/gui/studio/MidiProgramsEditor.cpp:541 +#, c-format +msgid "Key Mapping: %1" +msgstr "Tasten-Übersetzungstabelle: %1" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:476 +msgid "" +msgstr "" + +#: ../src/gui/studio/MidiKeyMappingEditor.cpp:57 +#: ../src/gui/studio/MidiKeyMappingEditor.cpp:81 +msgid "Key Mapping details" +msgstr "Tasten-Übersetzungstabelle Details" + +#: ../src/gui/studio/MidiKeyMappingEditor.cpp:58 +msgid "Pitches" +msgstr "Tonhöhen" + +#: ../src/gui/studio/MidiMixerWindow.cpp:152 +msgid "MIDI Mixer" +msgstr "MIDI Mischer" + +#: ../src/gui/studio/MidiMixerWindow.cpp:199 +msgid "Volume" +msgstr "Lautstärke" + +#: ../src/gui/studio/AudioPluginOSCGUIManager.cpp:444 +msgid "Rosegarden Plugin" +msgstr "Rosegarden PLugin" + +#: ../src/gui/studio/AudioPluginOSCGUIManager.cpp:447 +#, c-format +msgid "Rosegarden: %1" +msgstr "Rosegarden: %1" + +#: ../src/gui/studio/AudioPluginOSCGUIManager.cpp:449 +msgid "Rosegarden: %1: %2" +msgstr "Rosegarden: %1: %2" + +#: ../src/gui/studio/AudioPluginOSCGUIManager.cpp:450 +#, c-format +msgid "Plugin slot %1" +msgstr "Plugin %1" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:92 +msgid "Add Play Device" +msgstr "Wiedergabegerät hinzufügen" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:93 +msgid "Add Record Device" +msgstr "Aufnahmegerät hinzufügen" + +#: ../src/commands/studio/CreateOrDeleteDeviceCommand.h:68 +#: ../src/gui/studio/DeviceEditorDialog.cpp:94 +msgid "Delete Device" +msgstr "Gerät löschen" + +#: ../src/gui/editors/segment/PlayList.cpp:77 +#: ../src/gui/studio/DeviceEditorDialog.cpp:156 +#: ../src/gui/studio/DeviceEditorDialog.cpp:361 +msgid "Play" +msgstr "Wiedergabe" + +#: ../src/commands/segment/SegmentRecordCommand.cpp:37 +#: ../src/gui/studio/DeviceEditorDialog.cpp:156 +#: ../src/gui/studio/DeviceEditorDialog.cpp:379 rc.cpp:394 +#, no-c-format +msgid "Record" +msgstr "Aufnahme" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:256 +msgid "Apply pending changes?" +msgstr "Ausstehende Änderungen anwenden?" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:359 +#: ../src/gui/studio/DeviceEditorDialog.cpp:377 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentEraser.cpp:82 +msgid "Click on a segment to delete it" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSplitter.cpp:166 +msgid "" +"Click on a segment to split it in two; hold Shift to avoid snapping to beat " +"grid" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSplitter.cpp:168 +msgid "Click on a segment to split it in two" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:81 +msgid "Click and drag to select segments" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentMover.cpp:154 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:238 +msgid "Move Segment" +msgstr "Segment bewegen" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentMover.cpp:154 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:239 +msgid "Move Segments" +msgstr "Segmente bewegen" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:217 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:169 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:141 +#: ../src/gui/editors/segment/segmentcanvas/SegmentMover.cpp:210 +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:255 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:359 +msgid "Hold Shift to avoid snapping to beat grid" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:485 +msgid "" +"Click and drag to select segments; middle-click and drag to draw an empty " +"segment" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:384 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:502 +msgid "" +"Click and drag to resize a segment; hold Ctrl as well to rescale its contents" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:386 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:504 +msgid "Click and drag to rescale segment" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:509 +msgid "Click and drag to move segments; hold Ctrl as well to copy them" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:511 +msgid "Click and drag to copy segments" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:515 +msgid "" +"Click and drag to move segment; hold Ctrl as well to copy it; double-click " +"to edit" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:517 +msgid "Click and drag to copy segment" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:157 +#, fuzzy +msgid "" +"The audio file path does not exist or is not writable.\n" +"You must set the audio file path to a valid directory in Document Properties " +"before rescaling an audio file.\n" +"Would you like to set it now?" +msgstr "" +"Der angegebene Audio-Dateipfad existiert entweder nicht oder ist nicht " +"schreibbar.\n" +"Bitte setzen Sie den Audio-Dateipfad auf ein gültiges Verzeichnis in dem\n" +"Dokumenteigenschaften bevor Sie Audio aufnehmen.\n" +"Möchten Sie den Pfad jetzt setzen?" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:261 +msgid "" +"Hold Shift to avoid snapping to beat grid; hold Ctrl as well to rescale " +"contents" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentMover.cpp:325 +msgid "Click and drag to move a segment" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentPencil.cpp:225 +msgid "Hold Shift to avoid snapping to bar lines" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentPencil.cpp:283 +#, fuzzy +msgid "Record or drop audio here" +msgstr "MIDI- oder Audio-Aufnahme" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentPencil.cpp:289 +msgid "" +"Click and drag to draw an empty segment. Control+Alt click and drag to draw " +"in overlap mode." +msgstr "" + +#: ../src/gui/editors/segment/TrackLabel.cpp:77 +msgid "" +"Click and hold with left mouse button to assign this Track to an Instrument." +msgstr "" +"Klicke und halte mit dem linken Mausknopf um diese Spur einem Instrument " +"zuzuweisen." + +#: ../src/gui/editors/segment/TrackLabel.cpp:191 +msgid "Change track name" +msgstr "Spurnamen ändern" + +#: ../src/gui/editors/segment/TrackLabel.cpp:192 +msgid "Enter new track name" +msgstr "Neuen Spurnamen eingeben" + +#: ../src/gui/editors/segment/TrackEditor.cpp:648 +msgid "Turn Repeating Segment into Real Copies" +msgstr "Wiederholungssegment in echte Kopien umwandeln" + +#: ../src/gui/editors/segment/TrackEditor.cpp:650 +msgid "Turn Repeating Segments into Real Copies" +msgstr "Wiederholungssegmente in echte Kopien umwandeln" + +#: ../src/gui/editors/segment/TrackEditor.cpp:814 +msgid "" +"You can't drop files into Rosegarden from this client. Try using Konqueror " +"instead." +msgstr "" +"Von diesem Programm aus können Sie keine Dateien in Rosegarden " +"\"hinüberziehen\". Probieren Sie es doch mit Konqueror." + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:85 +msgid "Manage Triggered Segments" +msgstr "Verwalte getriggerte Segmente" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:89 +msgid "ID" +msgstr "ID" + +#: ../src/gui/editors/eventlist/EventView.cpp:735 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:93 +msgid "Base velocity" +msgstr "Basis Anschlagstärke" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:94 +msgid "Triggers" +msgstr "Trigger" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:115 +msgid "Add a Triggered Segment" +msgstr "Füge getriggertes Segment hinzu" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:119 +msgid "Delete a Triggered Segment" +msgstr "Lösche getriggertes Segment" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:123 +msgid "Delete All Triggered Segments" +msgstr "Alle getriggerten Segemente löschen" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:127 +msgid "Close the Triggered Segment Manager" +msgstr "Schleße den Getriggerte Segmente Manager" + +#: ../src/gui/editors/eventlist/EventView.cpp:169 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:245 +msgid "" +msgstr "(keine)" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:248 +msgid "" +"_n: %1 on 1 track\n" +"%1 on %n tracks" +msgstr "" +"_n: %1 auf 1 Spur\n" +"%1 auf %n Spuren" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:284 +msgid "" +"This will remove all triggered segments from the whole composition. Are you " +"sure?" +msgstr "" +"Das wird alle getriggerten Segmente der gesamten Komposition entfernen. Sind " +"Sie sicher?" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:288 +msgid "Remove all triggered segments" +msgstr "Entferne alle getriggerten Segmente" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:313 +msgid "Trigger Segment Duration" +msgstr "Länge des getriggerten Segments" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:336 +#, c-format +msgid "" +"_n: This triggered segment is used 1 time in the current composition. Are " +"you sure you want to remove it?\n" +"This triggered segment is used %n times in the current composition. Are you " +"sure you want to remove it?" +msgstr "" +"_n: Dieses getriggerte Segment wird 1 mal in der aktuellen Komposition " +"verwendet.Sind Sie sicher, daß Sie es entfernen möchten?\n" +"Dieses getriggerte Segment wird %n mal in der aktuellen Komposition " +"verwendet.Sind Sie sicher, daß Sie es entfernen möchten?" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:400 +msgid "Pa&ste as New Triggered Segment" +msgstr "Als neues getriggertes Segment einfügen" + +#: ../src/gui/editors/eventlist/EventView.cpp:1169 +#: ../src/gui/editors/segment/MarkerEditor.cpp:399 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:412 +#: ../src/gui/editors/tempo/TempoView.cpp:622 +msgid "&Musical Times" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1179 +#: ../src/gui/editors/segment/MarkerEditor.cpp:409 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:422 +#: ../src/gui/editors/tempo/TempoView.cpp:632 +msgid "&Real Times" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1189 +#: ../src/gui/editors/segment/MarkerEditor.cpp:419 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:432 +#: ../src/gui/editors/tempo/TempoView.cpp:642 +msgid "Ra&w Times" +msgstr "" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:83 +msgid "Manage Markers" +msgstr "Marker verwalten" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:86 +msgid "Marker time " +msgstr "Marker Zeit" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:87 +#, fuzzy +msgid "Marker text " +msgstr "Marker Zeit" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:88 +msgid "Marker description " +msgstr "Marker Beschreibung" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:95 +msgid "Pointer position" +msgstr "Zeiger Position" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:100 +msgid "Real time:" +msgstr "" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:103 +msgid "In measure:" +msgstr "In Takten:" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:121 +msgid "Add a Marker" +msgstr "Marker hinzufügen" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:125 +msgid "Delete a Marker" +msgstr "Marker löschen" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:129 +msgid "Delete All Markers" +msgstr "Alle Marker löschen" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:133 +msgid "Close the Marker Editor" +msgstr "Marker Editor schließen" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:296 +msgid "Remove all markers" +msgstr "Alle Marker entfernen" + +#: ../src/gui/editors/segment/PlayList.cpp:76 +msgid "Add..." +msgstr "Hinzufügen..." + +#: ../src/gui/editors/segment/PlayList.cpp:78 +msgid "Move Up" +msgstr "Nach oben" + +#: ../src/gui/editors/segment/PlayList.cpp:79 +msgid "Move Down" +msgstr "Nach unten" + +#: ../src/gui/editors/segment/PlayList.cpp:124 +msgid "Select one or more Rosegarden files" +msgstr "Eine oder mehrere Rosegarden-Dateien auswählen" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:73 +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:55 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:89 +msgid "Manage Control Events" +msgstr "Control Events verwalten" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:91 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:99 +msgid " Control Events for %1 (device %2)" +msgstr " Control Events für %1 (Gerät %2)" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:104 +msgid "Control Event name " +msgstr "Control Event Name " + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:105 +msgid "Control Event type " +msgstr "Control Event-Art " + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:106 +msgid "Control Event value " +msgstr "Control Event Wert " + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:107 +msgid "Description " +msgstr "Beschreibung" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:108 +msgid "Min " +msgstr "Min " + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:109 +msgid "Max " +msgstr "Max " + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:110 +msgid "Default " +msgstr "Standard-Einfügetyp" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:111 +msgid "Color " +msgstr "Farbe" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:112 +msgid "Position on instrument panel" +msgstr "Position in der Instrumentenansicht" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:136 +msgid "Add a Control Parameter to the Studio" +msgstr "Control Parameter zum Studio hinzufügen" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:140 +msgid "Delete a Control Parameter from the Studio" +msgstr "Control Parameter aus dem Studio löschen" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:144 +msgid "Close the Control Parameter editor" +msgstr "Control Parameter Editor schließen" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:221 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:62 +msgid "Edit Control Parameter" +msgstr "Control Parameter anpassen" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:71 +msgid "Control Event Properties" +msgstr "Event-Eigenschaften" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:77 +msgid "Name:" +msgstr "Name" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:93 +msgid "Control Event value:" +msgstr "Controller" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:97 +msgid "Minimum value:" +msgstr "Minimaler Wert:" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:101 +msgid "Maximum value:" +msgstr "Maximaler Wert:" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:105 +msgid "Default value:" +msgstr "Standardwert:" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:109 +msgid "Color:" +msgstr "Farbe:" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:113 +msgid "Instrument Parameter Box position:" +msgstr "Position der Instrument-Parameter-Box:" + +#: ../src/gui/editors/segment/TrackButtons.cpp:209 +#: ../src/gui/editors/segment/TrackButtons.cpp:585 +#: ../src/gui/editors/segment/TrackButtons.cpp:935 +#: ../src/gui/editors/segment/TrackButtons.cpp:1127 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/TrackButtons.cpp:352 +#: ../src/gui/editors/segment/TrackButtons.cpp:1094 +msgid "" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:130 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:662 +#: ../src/gui/editors/segment/TrackButtons.cpp:354 +#: ../src/gui/editors/segment/TrackButtons.cpp:1096 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/TrackButtons.cpp:1058 +msgid "Mute track" +msgstr "Spur stummschalten" + +#: ../src/gui/editors/segment/TrackButtons.cpp:1063 +msgid "Record on this track" +msgstr "Auf dieser Spur aufnehmen" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:88 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:1015 +msgid "Segment" +msgstr "Segment" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:89 +msgid "Segment Parameters" +msgstr "Segment Parameter" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:366 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:697 +msgid "%1 ms" +msgstr "%1 ms" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1031 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:910 +msgid "Highest playable note" +msgstr "Höchste spielbare Note" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1051 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:930 +msgid "Lowest playable note" +msgstr "Tiefste spielbare Note" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:93 +msgid "Track Parameters" +msgstr "Spurparameter" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:137 +msgid "Playback parameters" +msgstr "Wiedergabeparameter" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:172 +msgid "Recording filters" +msgstr "Aufnahmefilter" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:191 +msgid "Channel" +msgstr "Kanal" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:203 +#, fuzzy +msgid "Staff export options" +msgstr "Experteneinstellungen" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:220 +msgid "Notation size:" +msgstr "Notationsgröße:" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:225 +msgid "Small" +msgstr "Klein" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:226 +msgid "Tiny" +msgstr "Winzig" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:233 +msgid "Bracket type:" +msgstr "Art der Klammern:" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:237 +msgid "-----" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:238 +msgid "[----" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:239 +msgid "----]" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:240 +msgid "[---]" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:241 +msgid "{----" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:242 +msgid "----}" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:243 +msgid "{[---" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:244 +msgid "---]}" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:253 +msgid "Create segments with" +msgstr "Segmente erzeugen mit" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:264 +msgid "Preset" +msgstr "Voreinstellung" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:272 +msgid "Load" +msgstr "Laden" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:282 +msgid "treble" +msgstr "Sopran" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:283 +msgid "bass" +msgstr "Baß" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:284 +msgid "crotales" +msgstr "Crotales" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:285 +msgid "xylophone" +msgstr "Xylophone" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:286 +msgid "guitar" +msgstr "Guitarre" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:287 +msgid "contrabass" +msgstr "Kontrabaß" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:288 +msgid "celesta" +msgstr "Celesta" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:289 +msgid "old celesta" +msgstr "Alte Celesta" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:290 +msgid "french" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:291 +msgid "soprano" +msgstr "Sopran" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:292 +#, fuzzy +msgid "mezzosoprano" +msgstr "Sopran" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:293 +msgid "alto" +msgstr "Alt" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:294 +msgid "tenor" +msgstr "Tenor" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:295 +#, fuzzy +msgid "baritone" +msgstr "Variation" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:296 +#, fuzzy +msgid "varbaritone" +msgstr "Variation" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:297 +#, fuzzy +msgid "subbass" +msgstr "Baß" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:327 +msgid "Lowest" +msgstr "Niedrigste" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:329 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:336 +msgid "---" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:331 +msgid "Choose the lowest suggested playable note, using a staff" +msgstr "" +"Wählen Sie die tiefste vorgeschlagene spielbare Note, unter Verwendung des " +"Notensystems" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:334 +msgid "Highest" +msgstr "Höchste" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:338 +msgid "Choose the highest suggested playable note, using a staff" +msgstr "" +"Wählen Sie die höchste vorgeschlagene spielbare Note, unter Verwendung des " +"Notensystems" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:666 +#, fuzzy +msgid "[ Track %1 - %2 ]" +msgstr "[ Spur#%1 - %2 ]" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:985 +msgid "The instrument preset database is corrupt. Check your installation." +msgstr "" +"Die Instrumentvoreinstellungen Datenbank ist korrupt. Überprüfen Sie Ihre " +"Installation." + +#: ../src/gui/editors/matrix/MatrixView.cpp:173 +#: ../src/gui/editors/parameters/InstrumentParameterBox.cpp:54 +msgid "Instrument Parameters" +msgstr "Instrumentenparameter" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:85 +msgid "Variation" +msgstr "Variation" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:86 +msgid "Program" +msgstr "Programm" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:87 +msgid "Channel out" +msgstr "Ausgabekanal" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:215 +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:221 +msgid "[ %1 ]" +msgstr "[ %1 ]" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:58 +#: ../src/gui/editors/matrix/MatrixMover.cpp:71 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:67 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:77 +msgid "Switch to Draw Tool" +msgstr "Zum Zeichenwerkzeug wechseln" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:75 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:69 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:71 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:81 +#: ../src/gui/editors/notation/ClefInserter.cpp:57 +#: ../src/gui/editors/notation/GuitarChordInserter.cpp:63 +#: ../src/gui/editors/notation/NotationSelector.cpp:87 +#: ../src/gui/editors/notation/NoteInserter.cpp:113 +#: ../src/gui/editors/notation/RestInserter.cpp:72 +#: ../src/gui/editors/notation/TextInserter.cpp:61 +msgid "Switch to Erase Tool" +msgstr "Zum Löschwerkzeug wechseln" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:62 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:73 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:75 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:85 +msgid "Switch to Move Tool" +msgstr "Zum Bewegungswerkzeug wechseln" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:68 +#: ../src/gui/editors/matrix/MatrixMover.cpp:81 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:79 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:93 +msgid "Switch to Resize Tool" +msgstr "Zum Größenänderungswerkzeug wechseln" + +#: ../src/gui/editors/matrix/MatrixSelector.cpp:446 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:579 +msgid "Click and drag to select; middle-click and drag to draw new note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixResizer.cpp:324 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:597 +msgid "Click and drag to resize selected notes" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixSelector.cpp:599 +msgid "Click and drag to resize note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:471 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:604 +msgid "Click and drag to move selected notes; hold Ctrl as well to copy" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:473 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:606 +msgid "Click and drag to copy selected notes" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixSelector.cpp:610 +msgid "Click and drag to move note; hold Ctrl as well to copy" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixSelector.cpp:612 +msgid "Click and drag to copy note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:54 +#: ../src/gui/editors/matrix/MatrixMover.cpp:67 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:65 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:63 +#: ../src/gui/editors/notation/ClefInserter.cpp:53 +#: ../src/gui/editors/notation/GuitarChordInserter.cpp:59 +#: ../src/gui/editors/notation/NotationEraser.cpp:67 +#: ../src/gui/editors/notation/NoteInserter.cpp:109 +#: ../src/gui/editors/notation/RestInserter.cpp:68 +#: ../src/gui/editors/notation/TextInserter.cpp:57 +msgid "Switch to Select Tool" +msgstr "Zum Auswahlwerkzeug wechseln" + +#: ../src/gui/editors/matrix/MatrixResizer.cpp:218 +msgid "Resize Event" +msgstr "Eventgröße verändern" + +#: ../src/gui/editors/matrix/MatrixResizer.cpp:221 +msgid "Resize Events" +msgstr "Eventgrößen verändern" + +#: ../src/gui/editors/matrix/MatrixResizer.cpp:326 +msgid "Click and drag to resize a note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:328 +msgid "Copy and Move Event" +msgstr "Event kopieren und bewegen" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:330 +msgid "Copy and Move Events" +msgstr "Mehrere Events kopieren und bewegen" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:334 +msgid "Move Event" +msgstr "Event bewegen" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:336 +msgid "Move Events" +msgstr "Events bewegen" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:465 +msgid "Click and drag to move a note; hold Ctrl as well to copy it" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:467 +msgid "Click and drag to copy a note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixPainter.cpp:361 +msgid "Click and drag to draw a note; Shift to avoid snapping to grid" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixPainter.cpp:363 +msgid "Click and drag to draw a note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:437 +#: ../src/gui/editors/matrix/MatrixView.cpp:3053 +msgid "Couldn't apply piano roll layout" +msgstr "Klavierrollen-Layout konnte nicht angewandt werden" + +#: ../src/gui/editors/matrix/MatrixView.cpp:663 +msgid "Resi&ze" +msgstr "Größe &ändern" + +#: ../src/gui/editors/matrix/MatrixView.cpp:669 +#: ../src/gui/editors/notation/NotationView.cpp:1919 +msgid "C&hord Insert Mode" +msgstr "A&kkord-Einfügemodus" + +#: ../src/gui/editors/matrix/MatrixView.cpp:676 +#: ../src/gui/editors/notation/NotationView.cpp:1778 +msgid "Ste&p Recording" +msgstr "Schritt&weise Aufnahme" + +#: ../src/gui/editors/matrix/MatrixView.cpp:694 +msgid "&Legato" +msgstr "&Legato" + +#: ../src/gui/editors/matrix/MatrixView.cpp:708 +msgid "Set to Current Velocity" +msgstr "Setze auf momentane Anschlagstärke" + +#: ../src/gui/editors/matrix/MatrixView.cpp:712 +msgid "Set Event &Velocities..." +msgstr "Anschlagstärke der Events setzen..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:716 +msgid "Trigger Se&gment..." +msgstr "Trigger Se&gment..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:720 +msgid "Remove Triggers..." +msgstr "&Tempoveränderungen entfernen..." + +#: ../src/gui/editors/eventlist/EventView.cpp:1153 +#: ../src/gui/editors/matrix/MatrixView.cpp:724 +#: ../src/gui/editors/tempo/TempoView.cpp:606 +msgid "Select &All" +msgstr "&Alles auswählen" + +#: ../src/gui/editors/matrix/MatrixView.cpp:732 +#: ../src/gui/editors/notation/NotationView.cpp:2325 +msgid "Cursor &Back" +msgstr "Cursor &zurück" + +#: ../src/gui/editors/matrix/MatrixView.cpp:736 +#: ../src/gui/editors/notation/NotationView.cpp:2329 +msgid "Cursor &Forward" +msgstr "Cursor &vorwärts" + +#: ../src/gui/editors/matrix/MatrixView.cpp:740 +#: ../src/gui/editors/notation/NotationView.cpp:2333 +msgid "Cursor Ba&ck Bar" +msgstr "Cursor &Takt zurück" + +#: ../src/gui/editors/matrix/MatrixView.cpp:744 +#: ../src/gui/editors/notation/NotationView.cpp:2337 +msgid "Cursor For&ward Bar" +msgstr "Cursor Ta&kt vorwärts" + +#: ../src/gui/editors/matrix/MatrixView.cpp:748 +#: ../src/gui/editors/notation/NotationView.cpp:2341 +msgid "Cursor Back and Se&lect" +msgstr "Cursor zurück und Aus&wählen" + +#: ../src/gui/editors/matrix/MatrixView.cpp:752 +#: ../src/gui/editors/notation/NotationView.cpp:2345 +msgid "Cursor Forward and &Select" +msgstr "Cursor vorwärts und auswäh&len" + +#: ../src/gui/editors/matrix/MatrixView.cpp:756 +#: ../src/gui/editors/notation/NotationView.cpp:2349 +msgid "Cursor Back Bar and Select" +msgstr "Cursor Takt zurück und auswählen" + +#: ../src/gui/editors/matrix/MatrixView.cpp:760 +#: ../src/gui/editors/notation/NotationView.cpp:2353 +msgid "Cursor Forward Bar and Select" +msgstr "Cursor Takt vorwärts und auswählen" + +#: ../src/gui/editors/matrix/MatrixView.cpp:764 +#: ../src/gui/editors/notation/NotationView.cpp:2363 +msgid "Cursor to St&art" +msgstr "Cursor zum &Anfang" + +#: ../src/gui/editors/matrix/MatrixView.cpp:770 +#: ../src/gui/editors/notation/NotationView.cpp:2369 +msgid "Cursor to &End" +msgstr "Cursor zum &Ende" + +#: ../src/gui/editors/matrix/MatrixView.cpp:776 +#: ../src/gui/editors/notation/NotationView.cpp:2391 +msgid "Cursor to &Playback Pointer" +msgstr "Cursor zum &Wiedergabezeiger" + +#: ../src/gui/editors/matrix/MatrixView.cpp:820 +#: ../src/gui/editors/notation/NotationView.cpp:2435 +msgid "Playback Pointer to &Cursor" +msgstr "Wiedergabezeiger zum &Cursor" + +#: ../src/gui/editors/matrix/MatrixView.cpp:826 +#: ../src/gui/editors/notation/NotationView.cpp:2441 +msgid "&Solo" +msgstr "&Solo" + +#: ../src/gui/editors/matrix/MatrixView.cpp:841 +#: ../src/gui/editors/notation/NotationView.cpp:2456 +msgid "Set Loop to Selection" +msgstr "Auswahl als Schleife festlegen" + +#: ../src/gui/editors/matrix/MatrixView.cpp:845 +#: ../src/gui/editors/notation/NotationView.cpp:2460 +msgid "Clear L&oop" +msgstr "Schleife l&öschen" + +#: ../src/gui/editors/eventlist/EventView.cpp:1157 +#: ../src/gui/editors/matrix/MatrixView.cpp:849 +#: ../src/gui/editors/notation/NotationView.cpp:2464 +#: ../src/gui/editors/tempo/TempoView.cpp:610 +msgid "Clear Selection" +msgstr "Auswahl löschen" + +#: ../src/gui/editors/eventlist/EventView.cpp:1149 +#: ../src/gui/editors/matrix/MatrixView.cpp:854 +#: ../src/gui/editors/notation/NotationView.cpp:2471 +msgid "&Filter Selection" +msgstr "&Filter-Auswahl" + +#: ../src/gui/editors/matrix/MatrixView.cpp:879 +msgid "&No Snap" +msgstr "&Einrasten aus" + +#: ../src/gui/editors/matrix/MatrixView.cpp:884 +msgid "Snap to Bea&t" +msgstr "Auf Schla&g einrasten" + +#: ../src/gui/editors/matrix/MatrixView.cpp:888 +msgid "Snap to &Bar" +msgstr "Auf &Takt einrasten" + +#: ../src/gui/editors/matrix/MatrixView.cpp:908 +#, fuzzy, c-format +msgid "Snap to %1" +msgstr "Auf Halbe einrasten" + +#: ../src/gui/editors/matrix/MatrixView.cpp:917 +msgid "Show Instrument Parameters" +msgstr "&Instrumentparameter anzeigen" + +#: ../src/gui/editors/matrix/MatrixView.cpp:922 +#: ../src/gui/editors/notation/NotationView.cpp:1850 +msgid "Show Ch&ord Name Ruler" +msgstr "Ak&kordnamenlineal anzeigen" + +#: ../src/gui/editors/matrix/MatrixView.cpp:926 +#: ../src/gui/editors/notation/NotationView.cpp:1858 +msgid "Show &Tempo Ruler" +msgstr "&Tempolineal anzeigen" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1238 +#: ../src/gui/editors/notation/NotationView.cpp:3245 +#, c-format +msgid "" +"_n: 1 event selected \n" +" %n events selected " +msgstr "" +"_n: 1 Event ausgewählt \n" +" %n Events ausgewählt " + +#: ../src/gui/editors/matrix/MatrixView.cpp:1241 +#: ../src/gui/editors/notation/NotationView.cpp:3247 +msgid " No selection " +msgstr " Keine Auswahl " + +#: ../src/gui/editors/matrix/MatrixView.cpp:1348 +#: ../src/gui/editors/matrix/MatrixView.cpp:1360 +#: ../src/gui/editors/matrix/MatrixView.cpp:2079 +#: ../src/gui/editors/notation/NotationView.cpp:5869 +msgid "Quantizing..." +msgstr "Quantisieren..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:1370 +#: ../src/gui/editors/notation/NotationView.cpp:5407 +msgid "Collapsing notes..." +msgstr "linkend=\\\"nv-rulers\\\">Rulers and Cursors" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1381 +msgid "Making legato..." +msgstr "Mache Legato..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:1476 +#, fuzzy +msgid "Note: %1 (%2.%3s)" +msgstr "Zeit: %1 (%2.%3)" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1531 +#: ../src/gui/editors/notation/NotationView.cpp:7206 +msgid "Time: %1 (%2.%3s)" +msgstr "Zeit: %1 (%2.%3)" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1604 +#: ../src/gui/editors/notation/NotationView.cpp:4744 +#: ../src/gui/editors/notation/NotationView.cpp:4773 +msgid "Cutting selection to clipboard..." +msgstr "Auswahl in die Zwischenablage ausschneiden..." + +#: ../src/gui/editors/eventlist/EventView.cpp:912 +#: ../src/gui/editors/matrix/MatrixView.cpp:1636 +#: ../src/gui/editors/notation/NotationSelectionPaster.cpp:82 +msgid "Couldn't paste at this point" +msgstr "An dieser Stelle kein Einfügen möglich" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1647 +#: ../src/gui/editors/notation/NotationView.cpp:4754 +msgid "Deleting selection..." +msgstr "Auswahl löschen..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:1833 +#: ../src/gui/editors/notation/NotationView.cpp:5617 +#, c-format +msgid "Unknown note insert action %1" +msgstr "Unbekannte Noten-Einfügeaktion %1" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1837 +#: ../src/gui/editors/matrix/MatrixView.cpp:2857 +#: ../src/gui/editors/notation/NotationView.cpp:5621 +msgid "Inserting note" +msgstr "Note einfügen" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2091 +msgid "Unquantizing..." +msgstr "Dequantisieren..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:2120 +msgid " Grid: " +msgstr "Raster: " + +#: ../src/gui/editors/matrix/MatrixView.cpp:2134 +msgid "Unit" +msgstr "Einheit" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2136 +msgid "Beat" +msgstr "Beat" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2138 +msgid "Bar" +msgstr "Takt" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2159 +msgid " Velocity: " +msgstr "Anschlagstärke: " + +#: ../src/gui/editors/matrix/MatrixView.cpp:2170 +msgid " Quantize: " +msgstr "Quantisieren: " + +#: ../src/gui/editors/matrix/MatrixView.cpp:2584 +msgid "Raising velocities..." +msgstr "Anschlagstärke erhöhen..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:2596 +msgid "Lowering velocities..." +msgstr "Anschlagstärke verringern..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:2611 +msgid "Set Event Velocities" +msgstr "Anschlagstärke der Events setzen" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2616 +msgid "Setting Velocities..." +msgstr "Anschlagstärke setzen..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:2665 +msgid "Remove Triggers" +msgstr "Alle Ma&rken löschen" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2723 +msgid "%1 - Segment Track #%2 - %3" +msgstr "%1 - Segment Spur #%2 - %3" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2730 +msgid "%1 - All Segments - %2" +msgstr "%1 - Alle Segmente - %2" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2737 +msgid "" +"_n: %1 - 1 Segment - %2\n" +"%1 - %n Segments - %2" +msgstr "" +"_n: %1 - 1 Segment - %2\n" +"%1 - %n Segmente - %2" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2885 +msgid "Can't insert note: No grid duration selected" +msgstr "Kann Note nicht einfügen: Keine Rasterdauer gewählt" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2935 +#, fuzzy +msgid " Chord " +msgstr " Akkord" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:105 +msgid "Click on a note to delete it" +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:89 +msgid "Filter" +msgstr "Filter" + +#: ../src/gui/editors/eventlist/EventView.cpp:245 +#: ../src/gui/editors/tempo/TempoView.cpp:117 +msgid "Time " +msgstr "Zeit " + +#: ../src/gui/editors/tempo/TempoView.cpp:118 +msgid "Type " +msgstr "Typ" + +#: ../src/gui/editors/tempo/TempoView.cpp:119 +msgid "Value " +msgstr "Wert" + +#: ../src/gui/editors/tempo/TempoView.cpp:120 +msgid "Properties " +msgstr "Eigenschaften" + +#: ../src/gui/editors/tempo/TempoView.cpp:208 +msgid "Common, hidden" +msgstr "Allgemein, versteckt" + +#: ../src/gui/editors/tempo/TempoView.cpp:210 +msgid "Hidden" +msgstr "Versteckt" + +#: ../src/gui/editors/tempo/TempoView.cpp:213 +msgid "Common" +msgstr "Allgemein" + +#: ../src/gui/editors/tempo/TempoView.cpp:220 +msgid "Time Signature " +msgstr "Taktart" + +#: ../src/gui/editors/tempo/TempoView.cpp:245 +msgid "%1.%2%3" +msgstr "%1.%2%3" + +#: ../src/gui/editors/tempo/TempoView.cpp:255 +msgid "%1.%2%3 qpm (%4.%5%6 bpm) " +msgstr "%1.%2%3 qpm (%4.%5%6 bpm) " + +#: ../src/gui/editors/tempo/TempoView.cpp:264 +msgid "Tempo " +msgstr "Tempo" + +#: ../src/gui/editors/tempo/TempoView.cpp:271 +msgid "" +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:463 +msgid "Delete Tempo or Time Signature" +msgstr "Tempo oder Taktart löschen" + +#: ../src/gui/editors/tempo/TempoView.cpp:602 +msgid "&Edit Item" +msgstr "Objekt b&earbeiten" + +#: ../src/gui/editors/tempo/TempoView.cpp:834 +msgid "%1 - Tempo and Time Signature Editor" +msgstr "%1 - Tempo- und Taktart-Editor" + +#: ../src/gui/editors/guitar/GuitarChordEditorDialog.cpp:43 +#, fuzzy +msgid "Guitar Chord Editor" +msgstr "Guitarrenakkord Editor" + +#: ../src/gui/editors/guitar/GuitarChordEditorDialog.cpp:51 +#, fuzzy +msgid "Start fret" +msgstr "Anfangstakt" + +#: ../src/gui/editors/guitar/GuitarChordEditorDialog.cpp:58 +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:51 +msgid "Root" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordEditorDialog.cpp:62 +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:55 +msgid "Extension" +msgstr "Erweiterung" + +#: ../src/gui/editors/guitar/Fingering.cpp:118 +msgid "couldn't parse fingering '%1' in '%2'" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:45 +#, fuzzy +msgid "Guitar Chord Selector" +msgstr "Akkord wählen" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:64 +msgid "beginner" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:65 +#, fuzzy +msgid "common" +msgstr "Allgemein" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:66 +#, fuzzy +msgid "all" +msgstr "Alle" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:86 +msgid "Fingerings" +msgstr "&Fingersätze" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:419 +msgid "couldn't open file '%1'" +msgstr "Datei %1 kann nicht geöfnet werden '" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:428 +#, c-format +msgid "couldn't parse chord dictionnary : %1" +msgstr "" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:87 +#, c-format +msgid "Note Font Viewer: %1" +msgstr "Noten Schriftart Anzeige: %1" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:93 +msgid " Component: " +msgstr "Komponente" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:101 +msgid " View: " +msgstr "Ansicht" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:104 +msgid "Glyphs" +msgstr "Akzentuierungszeichen" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:105 +msgid "Codes" +msgstr "" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:107 +msgid " Page: " +msgstr "Seite:" + +#: ../src/gui/editors/notation/ClefInserter.cpp:64 +#: ../src/gui/editors/notation/GuitarChordInserter.cpp:71 +#: ../src/gui/editors/notation/RestInserter.cpp:79 +#: ../src/gui/editors/notation/TextInserter.cpp:68 +msgid "Switch to Inserting Notes" +msgstr "Zum Einfügen von Noten wechseln" + +#: ../src/gui/editors/notation/NotationView.cpp:522 +#, fuzzy +msgid "Close track headers" +msgstr "Spurnamen ändern" + +#: ../src/gui/editors/notation/NotationView.cpp:917 +msgid "Preparing to print..." +msgstr "Druck wird vorbereitet..." + +#: ../src/gui/editors/notation/NotationView.cpp:1516 +msgid "Note &Font" +msgstr "Noten&font" + +#: ../src/gui/editors/notation/NotationView.cpp:1539 +msgid "Si&ze" +msgstr "&Größe" + +#: ../src/gui/editors/notation/NotationView.cpp:1545 +#, fuzzy +msgid "Show Track Headers" +msgstr "Tonspur-&Labels anzeigen" + +#: ../src/gui/editors/notation/NotationView.cpp:1550 +msgid "S&pacing" +msgstr "&Abstände" + +#: ../src/gui/editors/notation/NotationView.cpp:1572 +msgid "Du&ration Factor" +msgstr "Dauer: " + +#: ../src/gui/editors/notation/NotationView.cpp:1598 +msgid "Note &Style" +msgstr "Noten&stil" + +#: ../src/gui/editors/notation/NotationView.cpp:1624 +msgid "Insert Rest" +msgstr "Pause einfügen" + +#: ../src/gui/editors/notation/NotationView.cpp:1628 +msgid "Switch from Note to Rest" +msgstr "Von Note auf Pause umschalten" + +#: ../src/gui/editors/notation/NotationView.cpp:1633 +msgid "Switch from Rest to Note" +msgstr "Von Pause auf Note umschalten" + +#: ../src/gui/editors/notation/NotationView.cpp:1690 +msgid "No accidental" +msgstr "Kein Vorzeichen" + +#: ../src/gui/editors/notation/NotationView.cpp:1691 +msgid "Follow previous accidental" +msgstr "Vorzeichen werden erzwungen..." + +#: ../src/gui/editors/notation/NotationView.cpp:1692 +msgid "Sharp" +msgstr "Kreuz" + +#: ../src/gui/editors/notation/NotationView.cpp:1693 +msgid "Flat" +msgstr "B" + +#: ../src/gui/editors/notation/NotationView.cpp:1694 +msgid "Natural" +msgstr "l" + +#: ../src/gui/editors/notation/NotationView.cpp:1695 +msgid "Double sharp" +msgstr "Doppelkreuz" + +#: ../src/gui/editors/notation/NotationView.cpp:1696 +msgid "Double flat" +msgstr "Doppel-B" + +#: ../src/gui/editors/notation/NotationView.cpp:1717 +msgid "&Treble Clef" +msgstr "&Violinschlüssel" + +#: ../src/gui/editors/notation/NotationView.cpp:1724 +msgid "&Alto Clef" +msgstr "&Altschlüssel" + +#: ../src/gui/editors/notation/NotationView.cpp:1731 +msgid "Te&nor Clef" +msgstr "&Tenorschlüssel" + +#: ../src/gui/editors/notation/NotationView.cpp:1738 +msgid "&Bass Clef" +msgstr "&Bassschlüssel" + +#: ../src/gui/editors/notation/NotationView.cpp:1745 +msgid "&Text" +msgstr "&Text" + +#: ../src/gui/editors/notation/NotationView.cpp:1751 +#, fuzzy +msgid "&Guitar Chord" +msgstr "Guitarrenakkord Editor" + +#: ../src/gui/editors/notation/NotationView.cpp:1784 +msgid "Select from Sta&rt" +msgstr "Vom Sta&rt an auswählen" + +#: ../src/gui/editors/notation/NotationView.cpp:1788 +msgid "Select to &End" +msgstr "Bis zum &Ende auswählen" + +#: ../src/gui/editors/notation/NotationView.cpp:1792 +msgid "Select Whole St&aff" +msgstr "Das komplette S&ystem auswählen" + +#: ../src/commands/edit/CutAndCloseCommand.h:53 +#: ../src/gui/editors/notation/NotationView.cpp:1796 +msgid "C&ut and Close" +msgstr "Sch&neiden und Schließen" + +#: ../src/gui/editors/notation/NotationView.cpp:1800 +msgid "Pa&ste..." +msgstr "Ein&fügen..." + +#: ../src/gui/editors/notation/NotationSelector.cpp:122 +#: ../src/gui/editors/notation/NotationView.cpp:1808 +msgid "Move to Staff Above" +msgstr "" + +#: ../src/gui/editors/notation/NotationSelector.cpp:126 +#: ../src/gui/editors/notation/NotationView.cpp:1812 +msgid "Move to Staff Below" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1826 +msgid "&Linear Layout" +msgstr "&Lineares Layout" + +#: ../src/gui/editors/notation/NotationView.cpp:1835 +msgid "&Continuous Page Layout" +msgstr "&Seitenlayout" + +#: ../src/gui/editors/notation/NotationView.cpp:1844 +msgid "&Multiple Page Layout" +msgstr "&Seitenlayout" + +#: ../src/gui/editors/notation/NotationView.cpp:1854 +msgid "Show Ra&w Note Ruler" +msgstr "&Rohnotenlineal zeigen" + +#: ../src/gui/editors/notation/NotationView.cpp:1862 +msgid "Show &Annotations" +msgstr "&Bemerkungen zeigen" + +#: ../src/gui/editors/notation/NotationView.cpp:1866 +msgid "Show Lily&Pond Directives" +msgstr "Zeige Lily&Pond Anweisungen" + +#: ../src/gui/editors/notation/NotationView.cpp:1870 +msgid "Open L&yric Editor" +msgstr "&Texteditor öffnen" + +#: ../src/gui/editors/notation/NotationView.cpp:1912 +msgid "Trip&let Insert Mode" +msgstr "Tri&olen-Einfügemodus" + +#: ../src/gui/editors/notation/NotationView.cpp:1926 +#, fuzzy +msgid "Grace Insert Mode" +msgstr "Tri&olen-Einfügemodus" + +#: ../src/gui/editors/notation/NotationView.cpp:2180 +msgid "&Dump selected events to stderr" +msgstr "&Ausgewählte Events nach stderr ausgeben" + +#: ../src/gui/editors/notation/NotationView.cpp:2248 +msgid "Ma&ke Ornament..." +msgstr "Verzierungen..." + +#: ../src/gui/editors/notation/NotationView.cpp:2252 +msgid "Trigger &Ornament..." +msgstr "Trigger Verzierung..." + +#: ../src/gui/editors/notation/NotationView.cpp:2256 +msgid "Remove Ornament..." +msgstr "Verzierung entfernen..." + +#: ../src/gui/editors/notation/NotationView.cpp:2261 +msgid "&None" +msgstr "&Kein" + +#: ../src/gui/editors/notation/NotationView.cpp:2289 +#, fuzzy +msgid "Convert Notation For..." +msgstr "Audiodatei wird exportiert..." + +#: ../src/gui/editors/notation/NotationView.cpp:2298 +msgid "Show &Notes Toolbar" +msgstr "&Noten-Werkzeugleiste anzeigen" + +#: ../src/gui/editors/notation/NotationView.cpp:2299 +msgid "Show &Rests Toolbar" +msgstr "&Pausen-Werkzeugleiste anzeigen" + +#: ../src/gui/editors/notation/NotationView.cpp:2300 +msgid "Show &Accidentals Toolbar" +msgstr "&Vorzeichen-Werkzeugleiste anzeigen" + +#: ../src/gui/editors/notation/NotationView.cpp:2301 +msgid "Show Cle&fs Toolbar" +msgstr "&Schlüssel-Werkzeugleiste anzeigen" + +#: ../src/gui/editors/notation/NotationView.cpp:2303 +msgid "Show &Marks Toolbar" +msgstr "&Vortragszeichen-Werkzeugleiste anzeigen" + +#: ../src/gui/editors/notation/NotationView.cpp:2305 +msgid "Show &Group Toolbar" +msgstr "&Gruppen-Werkzeugleiste anzeigen" + +#: ../src/gui/editors/notation/NotationView.cpp:2307 +msgid "Show &Layout Toolbar" +msgstr "&Layout-Werkzeugleiste anzeigen" + +#: ../src/gui/editors/notation/NotationView.cpp:2311 +msgid "Show M&eta Toolbar" +msgstr "M&eta-Werkzeugleiste anzeigen" + +#: ../src/gui/editors/notation/NotationView.cpp:2373 +msgid "Cursor &Up Staff" +msgstr "Cursor ein System nach &oben" + +#: ../src/gui/editors/notation/NotationView.cpp:2377 +msgid "Cursor &Down Staff" +msgstr "Cursor ein System nach &unten" + +#: ../src/gui/editors/notation/NotationView.cpp:2381 +msgid "Cursor Pre&vious Segment" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2385 +#, fuzzy +msgid "Cursor Ne&xt Segment" +msgstr "Segmente erzeugen" + +#: ../src/gui/editors/notation/NotationView.cpp:2475 +msgid "Push &Left" +msgstr "Nach &links schieben" + +#: ../src/gui/editors/notation/NotationView.cpp:2479 +msgid "Push &Right" +msgstr "Nach &rechts schieben" + +#: ../src/gui/editors/notation/NotationView.cpp:2483 +msgid "Push &Up" +msgstr "Nach oben schieben" + +#: ../src/gui/editors/notation/NotationView.cpp:2487 +msgid "Push &Down" +msgstr "Nach unten schieben" + +#: ../src/gui/editors/notation/NotationView.cpp:2491 +msgid "&Restore Positions" +msgstr "Be&rechnete Positionen wiederherstellen" + +#: ../src/gui/editors/notation/NotationView.cpp:2495 +msgid "Make &Invisible" +msgstr "Mache unsichtbar" + +#: ../src/gui/editors/notation/NotationView.cpp:2499 +msgid "Make &Visible" +msgstr "Mach sichtbar" + +#: ../src/gui/editors/notation/NotationView.cpp:2503 +msgid "Toggle Dot" +msgstr "Punktierung umschalten" + +#: ../src/gui/editors/notation/NotationView.cpp:2507 +#: ../src/gui/editors/notation/NotationView.cpp:2511 +msgid "Add Dot" +msgstr "Punktierung hinzufügen" + +#: ../src/gui/editors/notation/NotationView.cpp:2570 +#, c-format +msgid "" +"_n: 1 pixel\n" +"%n pixels" +msgstr "" +"_n: 1 Pixel\n" +"%n Pixel" + +#: ../src/gui/editors/notation/NotationView.cpp:2619 +msgid " Font: " +msgstr " Font: " + +#: ../src/gui/editors/notation/NotationView.cpp:2647 +msgid "Unknown font \"%1\", using default" +msgstr "Font \"%1\" ist unbekannt, stattdessen wird der Standardfont benutzt" + +#: ../src/gui/editors/notation/NotationView.cpp:2655 +msgid " Size: " +msgstr " Größe " + +#: ../src/gui/editors/notation/NotationView.cpp:2677 +msgid " Spacing: " +msgstr " Abstände " + +#: ../src/gui/editors/notation/NotationView.cpp:2993 +#: ../src/gui/editors/notation/NotationView.cpp:3818 +msgid " Ready." +msgstr " Fertig." + +#: ../src/gui/editors/notation/NotationView.cpp:2998 +msgid "Laying out score..." +msgstr "Partitur wird angeordnet..." + +#: ../src/gui/editors/notation/NotationView.cpp:3011 +msgid "Laying out staff %1..." +msgstr "System %1 wird angeordnet..." + +#: ../src/gui/editors/notation/NotationView.cpp:3020 +msgid "Reconciling staffs..." +msgstr "Systeme werden ausgerichtet..." + +#: ../src/gui/editors/notation/NotationView.cpp:3885 +msgid "Sizing and allocating canvas..." +msgstr "Die Darstellungsfläche wird berechnet..." + +#: ../src/gui/editors/notation/NotationView.cpp:4050 +msgid "note" +msgstr "Note" + +#: ../src/gui/editors/notation/NotationView.cpp:4050 +msgid "rest" +msgstr "Pause" + +#: ../src/gui/editors/notation/NotationView.cpp:4211 +msgid "%1 - Segment Track #%2 - Notation" +msgstr "%1 - Segment Spur #%2 - Notation" + +#: ../src/gui/editors/notation/NotationView.cpp:4217 +msgid "%1 - All Segments - Notation" +msgstr "%1 - Alle Segmente - Notation" + +#: ../src/gui/editors/notation/NotationView.cpp:4222 +msgid "" +"_n: %1 - Segment - Notation\n" +"%1 - %n Segments - Notation" +msgstr "" +"%1 - Segment - Notation\n" +"%1 - %n Segmente - Notation" + +#: ../src/gui/editors/notation/NotationView.cpp:4243 +#, fuzzy +msgid "Grace" +msgstr "Grave" + +#: ../src/gui/editors/notation/NotationView.cpp:4247 +#: ../src/gui/editors/notation/NotationView.cpp:4251 +#: ../src/gui/editors/notation/NotationView.cpp:4255 +#, fuzzy +msgid "%1 %2" +msgstr "%1 (%2)" + +#: ../src/gui/editors/notation/NotationView.cpp:4271 +msgid "Hidden annotations" +msgstr "Verborgene Anmerkungen" + +#: ../src/gui/editors/notation/NotationView.cpp:4293 +msgid "Hidden LilyPond directives" +msgstr "Verborgene LilyPond Anweisungen" + +#: ../src/gui/editors/notation/NotationView.cpp:4326 +#, c-format +msgid "Unknown spacing action %1" +msgstr "Abstandsaktion %1 ist unbekannt" + +#: ../src/gui/editors/notation/NotationView.cpp:4384 +#, c-format +msgid "Unknown proportion action %1" +msgstr "Proportions-Aktion %1 ist unbekannt" + +#: ../src/gui/editors/notation/NotationView.cpp:4431 +#, c-format +msgid "Unknown font action %1" +msgstr "Font-Aktion %1 ist unbekannt" + +#: ../src/gui/editors/notation/NotationView.cpp:4449 +#, c-format +msgid "Unknown font size %1" +msgstr "Unbekannte Fontgröße: %1" + +#: ../src/gui/editors/notation/NotationView.cpp:4453 +#, c-format +msgid "Unknown font size action %1" +msgstr "Unbekannte Fontgrößenaktion: %1" + +#: ../src/gui/editors/notation/NotationView.cpp:4780 +#, fuzzy +msgid "" +"The Restricted paste type requires enough empty space (containing only " +"rests) at the paste position to hold all of the events to be pasted.\n" +"Not enough space was found.\n" +"If you want to paste anyway, consider using one of the other paste types " +"from the \"Paste...\" option on the Edit menu. You can also change the " +"default paste type to something other than Restricted if you wish." +msgstr "" +"Das eingeschränkte Einfügen erfordert ausreichend leeren Platz (Pausen) an " +"der \n" +"Einfügeposition, um alle einzufügenden Events aufzunehmen.\n" +"Es wurde nicht ausreichend Platz gefunden.\n" +"Wenn Sie trotzdem einfügen wollen, sollten Sie einen der anderen Einfügemodi " +"aus dem \n" +"\"Einfügen...\"-Menü in Betracht ziehen. Sie können dort auch einen anderen " +"Standard-Einfügemodus \n" +"als den eingeschränkten wählen." + +#: ../src/gui/editors/notation/NotationView.cpp:4800 +msgid "Can't paste multiple Segments into one" +msgstr "Mehrere Segments können nicht in eins eingefügt werden" + +#: ../src/gui/editors/notation/NotationView.cpp:4828 +#: ../src/gui/editors/notation/NotationView.cpp:4877 +msgid "Couldn't paste at this point." +msgstr "Kein Einfügen an diesem Punkt möglich" + +#: ../src/gui/editors/notation/NotationView.cpp:4896 +#, fuzzy +msgid "Move Events to Staff Above" +msgstr "Event ausserhalb eines Segments" + +#: ../src/gui/editors/notation/NotationView.cpp:4924 +#, fuzzy +msgid "Move Events to Staff Below" +msgstr "Event ausserhalb eines Segments" + +#: ../src/gui/editors/notation/NotationView.cpp:5036 +msgid "Pushing selection left..." +msgstr "Auswahl nach links verschieben..." + +#: ../src/gui/editors/notation/NotationView.cpp:5047 +msgid "Pushing selection right..." +msgstr "Auswahl nach rechts verschieben..." + +#: ../src/gui/editors/notation/NotationView.cpp:5058 +msgid "Pushing selection up..." +msgstr "Auswahl nach oben verschieben..." + +#: ../src/gui/editors/notation/NotationView.cpp:5069 +msgid "Pushing selection down..." +msgstr "Auswahl nach unten verschieben..." + +#: ../src/gui/editors/notation/NotationView.cpp:5080 +msgid "Restoring computed positions..." +msgstr "Berechnete Positionen wiederherstellen..." + +#: ../src/gui/editors/notation/NotationView.cpp:5089 +msgid "Making visible..." +msgstr "Sichtbar machen..." + +#: ../src/gui/editors/notation/NotationView.cpp:5098 +msgid "Making invisible..." +msgstr "Unsichtbar machen..." + +#: ../src/gui/editors/notation/NotationView.cpp:5185 +msgid "Beaming group..." +msgstr "Gruppe bekommt Balken..." + +#: ../src/gui/editors/notation/NotationView.cpp:5195 +msgid "Auto-beaming selection..." +msgstr "Auswahl wird automatisch mit Balken versehen..." + +#: ../src/gui/editors/notation/NotationView.cpp:5205 +msgid "Breaking groups..." +msgstr "Gruppen werden aufgebrochen..." + +#: ../src/gui/editors/notation/NotationView.cpp:5293 +msgid "Untupleting..." +msgstr "Tuolen werden aufgelöst..." + +#: ../src/gui/editors/notation/NotationView.cpp:5301 +msgid "Adding slur..." +msgstr "Bogen hinzufügen..." + +#: ../src/gui/editors/notation/NotationView.cpp:5302 +msgid "slur" +msgstr "Bogen" + +#: ../src/gui/editors/notation/NotationView.cpp:5307 +msgid "Adding phrasing slur..." +msgstr "Phrasierungsbogen hinzufügen..." + +#: ../src/gui/editors/notation/NotationView.cpp:5308 +msgid "phrasing slur" +msgstr "Phrasierungsbogen" + +#: ../src/gui/editors/notation/NotationView.cpp:5313 +msgid "Adding glissando..." +msgstr "Glissando hinzufügen..." + +#: ../src/gui/editors/notation/NotationView.cpp:5314 +msgid "glissando" +msgstr "Glissando" + +#: ../src/gui/editors/notation/NotationView.cpp:5319 +msgid "Adding crescendo..." +msgstr "Crescendo hinzufügen..." + +#: ../src/gui/editors/notation/NotationView.cpp:5320 +#: ../src/gui/editors/notation/NotationView.cpp:5326 +msgid "dynamic" +msgstr "Dynamik" + +#: ../src/gui/editors/notation/NotationView.cpp:5325 +msgid "Adding decrescendo..." +msgstr "Decrescendo hinzufügen..." + +#: ../src/gui/editors/notation/NotationView.cpp:5331 +#: ../src/gui/editors/notation/NotationView.cpp:5337 +#: ../src/gui/editors/notation/NotationView.cpp:5343 +#: ../src/gui/editors/notation/NotationView.cpp:5349 +msgid "Adding octave..." +msgstr "Oktave hinzufügen..." + +#: ../src/gui/editors/notation/NotationView.cpp:5332 +#: ../src/gui/editors/notation/NotationView.cpp:5338 +#: ../src/gui/editors/notation/NotationView.cpp:5344 +#: ../src/gui/editors/notation/NotationView.cpp:5350 +msgid "ottava" +msgstr "8va" + +#: ../src/gui/editors/notation/NotationView.cpp:5366 +msgid "Can't add overlapping %1 indications" +msgstr "Kann überlappende %1 Bezeichnungen nicht hinzufügen" + +#: ../src/gui/editors/notation/NotationView.cpp:5375 +msgid "Making chord..." +msgstr "Erzeuge Akkord..." + +#: ../src/gui/editors/notation/NotationView.cpp:5387 +msgid "Normalizing rests..." +msgstr "Pausen normalisieren..." + +#: ../src/gui/editors/notation/NotationView.cpp:5397 +msgid "Collapsing rests..." +msgstr "Pausen zusammenfassen..." + +#: ../src/gui/editors/notation/NotationView.cpp:5417 +msgid "Tying notes..." +msgstr "Noten verbinden..." + +#: ../src/gui/editors/notation/NotationView.cpp:5427 +msgid "Untying notes..." +msgstr "Noten trennen..." + +#: ../src/gui/editors/notation/NotationView.cpp:5437 +msgid "Making notes viable..." +msgstr "Noten werden in vernünftige Längen aufgebrochen..." + +#: ../src/gui/editors/notation/NotationView.cpp:5447 +msgid "Removing counterpoint..." +msgstr "Kontrapunkt wird gelöscht..." + +#: ../src/gui/editors/notation/NotationView.cpp:5457 +msgid "Pointing stems up..." +msgstr "Notenhälse nach oben..." + +#: ../src/gui/editors/notation/NotationView.cpp:5467 +msgid "Pointing stems down..." +msgstr "Notenhälse nach unten..." + +#: ../src/gui/editors/notation/NotationView.cpp:5478 +msgid "Restoring computed stem directions..." +msgstr "Errechnete Notenhälse werden wiederhergestellt..." + +#: ../src/gui/editors/notation/NotationView.cpp:5488 +#: ../src/gui/editors/notation/NotationView.cpp:5498 +msgid "Positioning slurs..." +msgstr "Bögen positionieren..." + +#: ../src/gui/editors/notation/NotationView.cpp:5509 +msgid "Restoring slur positions..." +msgstr "Bogenpositionen wiederherstellen..." + +#: ../src/gui/editors/notation/NotationView.cpp:5519 +#: ../src/gui/editors/notation/NotationView.cpp:5529 +#, fuzzy +msgid "Positioning ties..." +msgstr "Bögen positionieren..." + +#: ../src/gui/editors/notation/NotationView.cpp:5540 +#, fuzzy +msgid "Restoring tie positions..." +msgstr "Berechnete Positionen wiederherstellen..." + +#: ../src/gui/editors/notation/NotationView.cpp:5550 +msgid "Fixing notation quantization..." +msgstr "Notations-Quantisierung wird korrigiert..." + +#: ../src/gui/editors/notation/NotationView.cpp:5560 +msgid "Removing notation quantization..." +msgstr "Darstellungsquantisierung entfernen..." + +#: ../src/gui/editors/notation/NotationView.cpp:5577 +msgid "Changing to %1 style..." +msgstr "Wechsel zu Stil %1..." + +#: ../src/gui/editors/notation/NotationView.cpp:5585 +#, c-format +msgid "Unknown style action %1" +msgstr "Unbekannte Stilaktion: %1" + +#: ../src/gui/editors/notation/NotationView.cpp:5598 +#: ../src/gui/editors/notation/NotationView.cpp:5639 +#: ../src/gui/editors/notation/NotationView.cpp:5695 +msgid "No note duration selected" +msgstr "Keine Dauer ausgewählt" + +#: ../src/gui/editors/notation/NotationView.cpp:5660 +msgid "No rest duration selected" +msgstr "Keine Pausendauer ausgewählt" + +#: ../src/gui/editors/notation/NotationView.cpp:5746 +msgid "No note or rest duration selected" +msgstr "Keine Noten- oder Pausenlänge gewählt" + +#: ../src/gui/editors/notation/NotationView.cpp:5757 +#: ../src/gui/editors/notation/NotationView.cpp:5768 +#: ../src/gui/editors/notation/NotationView.cpp:5779 +#: ../src/gui/editors/notation/NotationView.cpp:5790 +#: ../src/gui/editors/notation/NotationView.cpp:5801 +#: ../src/gui/editors/notation/NotationView.cpp:5812 +#: ../src/gui/editors/notation/NotationView.cpp:5823 +msgid "Forcing accidentals..." +msgstr "Vorzeichen werden erzwungen..." + +#: ../src/gui/editors/notation/NotationView.cpp:5834 +msgid "Restoring accidentals..." +msgstr "Vorzeichen werden wiederhergestellt" + +#: ../src/gui/editors/notation/NotationView.cpp:5845 +msgid "Showing cautionary accidentals..." +msgstr "Zeige Sicherheitsvorzeichen..." + +#: ../src/gui/editors/notation/NotationView.cpp:5855 +msgid "Cancelling cautionary accidentals..." +msgstr "Lösche Sicherheitsvorzeichen..." + +#: ../src/gui/editors/notation/NotationView.cpp:5884 +msgid "Interpreting selection..." +msgstr "Auswahl wird interpretiert..." + +#: ../src/gui/editors/notation/NotationView.cpp:5896 +msgid "Setting note durations..." +msgstr "Notenlänge setzen..." + +#: ../src/gui/editors/notation/NotationView.cpp:5904 +#: ../src/gui/editors/notation/NotationView.cpp:5912 +msgid "Adding dot..." +msgstr "Punktierung hinzufügen..." + +#: ../src/gui/editors/notation/NotationView.cpp:5934 +msgid "Text: " +msgstr "Text: " + +#: ../src/gui/editors/notation/NotationView.cpp:5948 +msgid "Fingering: " +msgstr "Fingersatz:" + +#: ../src/gui/editors/notation/NotationView.cpp:6036 +msgid "Ornament track %1 bar %2" +msgstr "Verzierung auf Spur %1 Takt %2" + +#: ../src/gui/editors/notation/NotationView.cpp:6038 +#, c-format +msgid "Ornament bar %1" +msgstr "Verzierung in Takt %1" + +#: ../src/gui/editors/notation/NotationView.cpp:6098 +msgid "Remove Ornaments" +msgstr "Verzierungen entfernen" + +#: ../src/gui/editors/notation/NotationView.cpp:6145 +msgid "Estimated key signature shown" +msgstr "Ermittelte Tonart wird angezeigt" + +#: ../src/gui/editors/notation/NotationStaff.cpp:1249 +#: ../src/gui/editors/notation/NotationView.cpp:6202 +msgid "Sustain" +msgstr "Halten" + +#: ../src/gui/editors/notation/NotationView.cpp:6218 +msgid "" +"There is no sustain controller defined for this device.\n" +"Please ensure the device is configured correctly in the Manage MIDI Devices " +"dialog in the main window." +msgstr "" +"Für dieses Gerät ist kein Sustain-Controller definiert.\n" +"Bitte überprüfen Sie die Einstellungen im Verwalte MIDI Geräte Dialog im " +"Hauptfenster." + +#: ../src/gui/editors/notation/NotationView.cpp:7250 +msgid "Can't insert note: No note duration selected" +msgstr "Note kann nicht eingefügt werden: Keine Dauer ausgewählt" + +#: ../src/gui/editors/notation/NotationEraser.cpp:61 +#: ../src/gui/editors/notation/NotationSelector.cpp:83 +msgid "Switch to Insert Tool" +msgstr "Zum Einfügewerkzeug wechseln" + +#: ../src/gui/editors/notation/NotePixmapFactory.cpp:2303 +#: ../src/gui/editors/notation/NotePixmapFactory.cpp:2347 +msgid "..." +msgstr "..." + +#: ../src/gui/editors/notation/NoteFontFactory.cpp:200 +msgid "Can't obtain a default font -- no fonts found" +msgstr "Kann keine Standardschriftart bestimmen - kein Schriftarten gefunden" + +#: ../src/gui/editors/notation/NoteFontMap.cpp:52 +#: ../src/gui/general/PresetGroup.cpp:49 +msgid "unknown error" +msgstr "unbekannter Fehler" + +#: ../src/gui/editors/notation/NoteFontMap.cpp:78 +msgid "Can't open font mapping file %1 or %2" +msgstr "Kann Schriftartenübersetzungsdatei %1 oder %2 nicht öffnen" + +#: ../src/gui/editors/notation/NoteFontMap.cpp:82 +#, c-format +msgid "Can't open font mapping file %1" +msgstr "Die Schriftartenübersetzungsdatei %1 kann nicht geöffnet werden" + +#: ../src/gui/editors/notation/NotationStrings.cpp:52 +msgid "%1-dotted-%2" +msgstr "%1-punktiert-%2" + +#: ../src/gui/editors/notation/NotationStrings.cpp:54 +msgid "%1-dotted %2" +msgstr "%1-punktiert %2" + +#: ../src/gui/editors/notation/NotationStrings.cpp:57 +#, c-format +msgid "dotted-%1" +msgstr "punktiert-%1" + +#: ../src/gui/editors/notation/NotationStrings.cpp:59 +#, c-format +msgid "dotted %1" +msgstr "Punktierte %1" + +#: ../src/gui/editors/notation/NotationStrings.cpp:83 +msgid "sixty-fourth note" +msgstr "64tel-Note" + +#: ../src/gui/editors/notation/NotationStrings.cpp:83 +msgid "thirty-second note" +msgstr "32tel-Note" + +#: ../src/gui/editors/notation/NotationStrings.cpp:84 +msgid "sixteenth note" +msgstr "16tel-Note" + +#: ../src/gui/editors/notation/NotationStrings.cpp:84 +msgid "eighth note" +msgstr "Achtelnote" + +#: ../src/gui/editors/notation/NotationStrings.cpp:85 +msgid "quarter note" +msgstr "Viertelnote" + +#: ../src/gui/editors/notation/NotationStrings.cpp:85 +msgid "half note" +msgstr "Halbe Note" + +#: ../src/gui/editors/notation/NotationStrings.cpp:86 +msgid "whole note" +msgstr "Ganze Note" + +#: ../src/gui/editors/notation/NotationStrings.cpp:86 +msgid "double whole note" +msgstr "Doppelte Ganze Note" + +#: ../src/gui/editors/notation/NotationStrings.cpp:89 +msgid "sixty-fourth notes" +msgstr "64tel-Noten" + +#: ../src/gui/editors/notation/NotationStrings.cpp:89 +msgid "thirty-second notes" +msgstr "32tel-Noten" + +#: ../src/gui/editors/notation/NotationStrings.cpp:90 +msgid "sixteenth notes" +msgstr "16tel-Noten" + +#: ../src/gui/editors/notation/NotationStrings.cpp:90 +msgid "eighth notes" +msgstr "Achtelnoten" + +#: ../src/gui/editors/notation/NotationStrings.cpp:91 +msgid "quarter notes" +msgstr "Viertelnoten" + +#: ../src/gui/editors/notation/NotationStrings.cpp:91 +msgid "half notes" +msgstr "Halbe Noten" + +#: ../src/gui/editors/notation/NotationStrings.cpp:92 +msgid "whole notes" +msgstr "Ganze Noten" + +#: ../src/gui/editors/notation/NotationStrings.cpp:92 +msgid "double whole notes" +msgstr "Doppelte Ganze Noten" + +#: ../src/gui/editors/notation/NotationStrings.cpp:96 +#: ../src/gui/editors/notation/NotationStrings.cpp:154 +msgid "%1 triplets" +msgstr "%1 Triolen" + +#: ../src/gui/editors/notation/NotationStrings.cpp:100 +#: ../src/gui/editors/notation/NotationStrings.cpp:158 +msgid "%1 triplet" +msgstr "%1 Triole" + +#: ../src/gui/editors/notation/NotationStrings.cpp:143 +msgid "64th" +msgstr "64tel" + +#: ../src/gui/editors/notation/NotationStrings.cpp:143 +msgid "32nd" +msgstr "32tel" + +#: ../src/gui/editors/notation/NotationStrings.cpp:143 +msgid "16th" +msgstr "16tel" + +#: ../src/gui/editors/notation/NotationStrings.cpp:143 +msgid "8th" +msgstr "Achtel" + +#: ../src/gui/editors/notation/NotationStrings.cpp:144 +msgid "quarter" +msgstr "Viertel" + +#: ../src/gui/editors/notation/NotationStrings.cpp:144 +msgid "half" +msgstr "Halbe" + +#: ../src/gui/editors/notation/NotationStrings.cpp:144 +msgid "whole" +msgstr "Ganze" + +#: ../src/gui/editors/notation/NotationStrings.cpp:145 +msgid "double whole" +msgstr "Doppelganze" + +#: ../src/gui/editors/notation/NotationStrings.cpp:148 +msgid "64ths" +msgstr "64tel" + +#: ../src/gui/editors/notation/NotationStrings.cpp:148 +msgid "32nds" +msgstr "32tel" + +#: ../src/gui/editors/notation/NotationStrings.cpp:148 +msgid "16ths" +msgstr "16tel" + +#: ../src/gui/editors/notation/NotationStrings.cpp:148 +msgid "8ths" +msgstr "Achtel" + +#: ../src/gui/editors/notation/NotationStrings.cpp:149 +msgid "quarters" +msgstr "Viertel" + +#: ../src/gui/editors/notation/NotationStrings.cpp:149 +msgid "halves" +msgstr "Halbe Noten" + +#: ../src/gui/editors/notation/NotationStrings.cpp:149 +msgid "wholes" +msgstr "Ganze" + +#: ../src/gui/editors/notation/NotationStrings.cpp:150 +msgid "double wholes" +msgstr "Doppelganze" + +#: ../src/gui/editors/notation/NotationStrings.cpp:278 +msgid "%1 ticks" +msgstr "%1 ticks" + +#: ../src/gui/editors/notation/FontViewFrame.cpp:100 +#, c-format +msgid "Error: Unable to match font name %1" +msgstr "Fehler: Kann Schriftnamen %1 nicht zuordnen" + +#: ../src/gui/editors/notation/FontViewFrame.cpp:108 +msgid "Warning: No good match for font name %1 (best is %2)" +msgstr "" +"Warnung: Keine treffende Zuordnung für den Schriftnamen %1 (treffendste ist %" +"2)" + +#: ../src/gui/editors/notation/FontViewFrame.cpp:116 +#, c-format +msgid "Error: Unable to open best-match font %1" +msgstr "Fehler: Kann die passendste Schriftart %1 nicht öffnen" + +#: ../src/gui/editors/notation/TrackHeader.cpp:113 +#, fuzzy +msgid "Track %1 : \"%2\"" +msgstr "[ Spur#%1 - %2 ]" + +#: ../src/gui/editors/notation/TrackHeader.cpp:119 +#, fuzzy, c-format +msgid "" +"\n" +"Notate for: %1" +msgstr "Noten Schriftart Anzeige: %1" + +#: ../src/gui/editors/notation/TrackHeader.cpp:121 +#, fuzzy +msgid "normal" +msgstr "Normal" + +#: ../src/gui/editors/notation/TrackHeader.cpp:124 +#, fuzzy +msgid "small" +msgstr "Alle" + +#: ../src/gui/editors/notation/TrackHeader.cpp:127 +msgid "tiny" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:131 +msgid "--" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:156 +msgid "" +"\n" +"Size: %1, Bracket: %2 " +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:183 +msgid "" +"\n" +"bars [%1-%2] in %3 (tr=%4) : \"%5\"" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:190 +msgid "" +"\n" +"bars [%1-%2] (tr=%3) : \"%4\"" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:240 +#, fuzzy +msgid "C#" +msgstr "C#%1" + +#: ../src/gui/editors/notation/TrackHeader.cpp:242 +msgid "Eb" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:245 +#, fuzzy +msgid "F#" +msgstr "F#%1" + +#: ../src/gui/editors/notation/TrackHeader.cpp:247 +#, fuzzy +msgid "G#" +msgstr "G#%1" + +#: ../src/gui/editors/notation/TrackHeader.cpp:249 +msgid "Bb" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:352 +#, fuzzy +msgid "%1: %2" +msgstr "%1 (%2)" + +#: ../src/gui/editors/notation/TrackHeader.cpp:355 +#, fuzzy, c-format +msgid " in %1" +msgstr "In %1" + +#: ../src/gui/editors/notation/NotationStaff.cpp:452 +msgid "Rendering staff %1..." +msgstr "System %1 wird dargestellt..." + +#: ../src/gui/editors/notation/NotationStaff.cpp:515 +msgid "Rendering notes on staff %1..." +msgstr "System %1 wird dargestellt..." + +#: ../src/gui/editors/notation/NotationStaff.cpp:583 +msgid "Positioning staff %1..." +msgstr "System %1 wird positioniert..." + +#: ../src/gui/editors/notation/NotationSelectionPaster.cpp:85 +msgid "Ready." +msgstr "Fertig." + +#: ../src/gui/editors/notation/RestInserter.cpp:62 +msgid "Dotted rest" +msgstr "Punktierte Pause" + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:57 +#, c-format +msgid "Can't open style file %1" +msgstr "Stildatei %1 kann nicht geöffent werden" + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:92 +msgid "type is a required attribute of note" +msgstr "Das Typattribut wird für die Note benötigt " + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:101 +#, c-format +msgid "Unrecognised note name %1" +msgstr "Unbekannter Notenname: %1" + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:108 +msgid "global element must precede note elements" +msgstr "Globale Elemente müssen vor Notenelementen kommen" + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:137 +msgid "" +"global and note elements may have shape or charname attribute, but not both" +msgstr "" +"global- und note-Elemente dürfen entweder das Attribut shape oder das " +"Attribut charname haben" + +#: ../src/gui/editors/notation/NotationVLayout.cpp:493 +msgid "" +"Spanned note at %1 has no HEIGHT_ON_STAFF property!\n" +"This is a bug (the program would previously have crashed by now)" +msgstr "" +"Die Note bei %1 hat keine HEIGHT_ON_STAFF-Eigenschaft! \n" +"Dies ist ein Fehler (das Programm ist vermutlich inzwischen abgestürzt)" + +#: ../src/gui/editors/notation/NoteInserter.cpp:82 +msgid "Auto-Beam when appropriate" +msgstr "Automatisch mit Balken wo angemessen" + +#: ../src/gui/editors/notation/NoteInserter.cpp:103 +msgid "Dotted note" +msgstr "Punktierte Note" + +#: ../src/gui/editors/notation/NoteInserter.cpp:120 +msgid "Switch to Inserting Rests" +msgstr "Zum EInfügen von Pausen wechseln" + +#: ../src/gui/editors/notation/NotationSelector.cpp:98 +msgid "Collapse Rests" +msgstr "Pausen &zusammenfassen" + +#: ../src/gui/editors/notation/NotationSelector.cpp:102 +msgid "Respell as Flat" +msgstr "Enharmonisch nach b wechseln" + +#: ../src/gui/editors/notation/NotationSelector.cpp:106 +msgid "Respell as Sharp" +msgstr "Enharmonisch nach # wechseln" + +#: ../src/gui/editors/notation/NotationSelector.cpp:110 +msgid "Respell as Natural" +msgstr "Enharmonisch ohne Vorzeichen" + +#: ../src/gui/editors/notation/NotationSelector.cpp:114 +msgid "Collapse Notes" +msgstr "" + +#: ../src/gui/editors/notation/NotationSelector.cpp:130 +msgid "Make Invisible" +msgstr "Mache unsichtbar" + +#: ../src/gui/editors/notation/NotationSelector.cpp:134 +msgid "Make Visible" +msgstr "Mache sichtbar" + +#: ../src/gui/editors/eventlist/EventView.cpp:129 +msgid "Event filters" +msgstr "Eventfilter" + +#: ../src/gui/editors/eventlist/EventView.cpp:138 +msgid "Rest" +msgstr "Pause" + +#: ../src/gui/editors/eventlist/EventView.cpp:139 +msgid "Indication" +msgstr "Indication" + +#: ../src/gui/editors/eventlist/EventView.cpp:141 +msgid "Other" +msgstr "Andere" + +#: ../src/gui/editors/eventlist/EventView.cpp:161 +msgid "Triggered Segment Properties" +msgstr "Getriggerte Event-Eigenschaften" + +#: ../src/gui/editors/eventlist/EventView.cpp:166 +msgid "Label: " +msgstr "Bezeichnung: " + +#: ../src/gui/editors/eventlist/EventView.cpp:176 +msgid "Base pitch: " +msgstr "Basis Tonhöhe:" + +#: ../src/gui/editors/eventlist/EventView.cpp:183 +msgid "Base velocity: " +msgstr "Basis Anschlagstärke:" + +#: ../src/gui/editors/eventlist/EventView.cpp:246 +msgid "Duration " +msgstr "Dauer " + +#: ../src/gui/editors/eventlist/EventView.cpp:247 +msgid "Event Type " +msgstr "Event-Art " + +#: ../src/gui/editors/eventlist/EventView.cpp:248 +msgid "Pitch " +msgstr "Tonhöhe " + +#: ../src/gui/editors/eventlist/EventView.cpp:249 +msgid "Velocity " +msgstr "Anschlagstärke" + +#: ../src/gui/editors/eventlist/EventView.cpp:250 +msgid "Type (Data1) " +msgstr "Typ (Data1) " + +#: ../src/gui/editors/eventlist/EventView.cpp:251 +msgid "Value (Data2) " +msgstr "Wert (Data2)" + +#: ../src/gui/editors/eventlist/EventView.cpp:461 +msgid "(group %1) " +msgstr "(Gruppe %1)" + +#: ../src/gui/editors/eventlist/EventView.cpp:519 +msgid "" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:521 +msgid "" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:696 +msgid "Segment label" +msgstr "Segmentbezeichnung ändern" + +#: ../src/gui/editors/eventlist/EventView.cpp:696 +msgid "Label:" +msgstr "Bezeichnung" + +#: ../src/gui/editors/eventlist/EventView.cpp:1123 +msgid "&Insert Event" +msgstr "Event e&infügen" + +#: ../src/gui/editors/eventlist/EventView.cpp:1130 +msgid "&Delete Event" +msgstr "Event löschen" + +#: ../src/gui/editors/eventlist/EventView.cpp:1137 +msgid "&Edit Event" +msgstr "Event verändern" + +#: ../src/gui/editors/eventlist/EventView.cpp:1144 +msgid "&Advanced Event Editor" +msgstr "Erweiterter Event-Editor" + +#: ../src/gui/editors/eventlist/EventView.cpp:1518 +msgid "Open in Event Editor" +msgstr "Im Event-Editor öffnen" + +#: ../src/gui/editors/eventlist/EventView.cpp:1519 +msgid "Open in Expert Event Editor" +msgstr "Im Experten-Event-Editor öffnen" + +#: ../src/gui/editors/eventlist/EventView.cpp:1577 +msgid "%1 - Triggered Segment: %2" +msgstr "%1 - Getriggertes Segment: %2" + +#: ../src/gui/editors/eventlist/EventView.cpp:1592 +msgid "%1 - Segment Track #%2 - Event List" +msgstr "%1 - Segment Spur #%2 - Event Liste" + +#: ../src/gui/editors/eventlist/EventView.cpp:1598 +msgid "%1 - %2 Segments - Event List" +msgstr "%1 - %2 Segmente - Event Liste" + +#: ../src/gui/rulers/TempoRuler.cpp:131 +msgid "Insert Tempo Change at Playback Position" +msgstr "Te&mpoveränderung an Wiedergabeposition einfügen" + +#: ../src/gui/rulers/TempoRuler.cpp:136 +msgid "Delete Tempo Change" +msgstr "Te&mpoveränderung löschen" + +#: ../src/gui/rulers/TempoRuler.cpp:140 +msgid "Ramp Tempo to Next Tempo" +msgstr "Gleichmäßiger Übergang zu nächstem Tempo" + +#: ../src/gui/rulers/TempoRuler.cpp:144 +msgid "Un-Ramp Tempo" +msgstr "Tempoübergang entfernen" + +#: ../src/gui/rulers/TempoRuler.cpp:149 +msgid "Edit Tempo..." +msgstr "Tempo.ändern..." + +#: ../src/gui/rulers/TempoRuler.cpp:153 +msgid "Edit Time Signature..." +msgstr "Taktart ändern..." + +#: ../src/gui/rulers/TempoRuler.cpp:588 +msgid "%1.%2%3 (%4.%5%6 bpm)" +msgstr "%1.%2%3 (%4.%5%6 bpm)" + +#: ../src/gui/rulers/TempoRuler.cpp:596 +msgid "%1.%2%3 bpm" +msgstr "%1.%2%3 bpm" + +#: ../src/gui/rulers/TempoRuler.cpp:604 +msgid "%1 - %2.%3%4" +msgstr "%1 - %2.%3%4" + +#: ../src/gui/rulers/ControlRulerEventInsertCommand.cpp:36 +msgid "Insert Controller Event" +msgstr "Controller Event einfügen" + +#: ../src/gui/rulers/ControlChangeCommand.cpp:35 +msgid "Control Change" +msgstr "Control Change" + +#: ../src/gui/rulers/PropertyViewRuler.cpp:72 +msgid "%1 controller" +msgstr "%1 Controller" + +#: ../src/gui/rulers/RawNoteRuler.cpp:453 +msgid "Track #%1, Segment \"%2\" (runtime id %3)" +msgstr "" + +#: ../src/gui/rulers/MarkerRuler.cpp:100 +msgid "Insert Marker" +msgstr "Markierung einfügen" + +#: ../src/gui/rulers/MarkerRuler.cpp:104 +#, fuzzy +msgid "Insert Marker at Playback Position" +msgstr "Te&mpoveränderung an Wiedergabeposition einfügen" + +#: ../src/gui/rulers/MarkerRuler.cpp:109 +msgid "Delete Marker" +msgstr "Markierung löschen" + +#: ../src/gui/rulers/MarkerRuler.cpp:114 +msgid "Edit Marker..." +msgstr "Mar&kierung bearbeiten..." + +#: ../src/gui/rulers/MarkerRuler.cpp:119 +msgid "" +"Click on a marker to move the playback pointer.\n" +"Shift-click to set a range between markers.\n" +"Double-click to open the marker editor." +msgstr "" + +#: ../src/gui/rulers/ChordNameRuler.cpp:97 +msgid "" +"Chord name ruler.\n" +"Turn it on and off from the Settings->Rulers menu." +msgstr "" +"Akkordlineal.\n" +"Wird im Menu unter Einstellungen -> Lineale ein- und ausgeschaltet." + +#: ../src/gui/rulers/ControlRulerEventEraseCommand.cpp:37 +msgid "Erase Controller Event(s)" +msgstr "Controller Event(s) entfernen" + +#: ../src/gui/general/EditView.cpp:901 +#: ../src/gui/rulers/ControllerEventsRuler.cpp:188 +msgid "Unsupported Event Type" +msgstr "Nicht unterstützter Eventtyp" + +#: ../src/gui/rulers/ControllerEventsRuler.cpp:203 +msgid "Controller Events" +msgstr "Controller Events" + +#: ../src/gui/rulers/ControllerEventsRuler.cpp:278 +msgid "Controller Event Number" +msgstr "Controller Event Nummer" + +#: ../src/gui/rulers/ControllerEventsRuler.cpp:471 +msgid "Add line of controllers" +msgstr "Controller Linie hinzufügen" + +#: ../src/gui/rulers/LoopRuler.cpp:89 +#, fuzzy +msgid "" +"Click and drag to move the playback pointer.\n" +"Shift-click and drag to set a range for looping or editing.\n" +"Shift-click to clear the loop or range.\n" +"Double-click to start playback." +msgstr "" +"Klicken mit der linken Maustaste positioniert den Wiedergabe.\n" +"Umschalttaste + linke Maustaste + ziehen wählt einen Bereich als Loop oder " +"zum Editieren aus.\n" +"Umschalttaste + linke Maustaste löscht die Loop oder den Bereich." + +#: ../src/gui/general/EditViewBase.cpp:228 +msgid "Set Segment Start Time..." +msgstr "Segment Anfangszeit setzen..." + +#: ../src/gui/general/EditViewBase.cpp:232 +msgid "Set Segment Duration..." +msgstr "Segment Dauer setzen..." + +#: ../src/gui/general/PresetHandlerDialog.cpp:56 +msgid "Load track parameters preset" +msgstr "Lade Spurparameter Voreinstellungen" + +#: ../src/gui/general/PresetHandlerDialog.cpp:62 +#, fuzzy +msgid "Convert notation for..." +msgstr "Audiodatei wird exportiert..." + +#: ../src/gui/general/PresetHandlerDialog.cpp:86 +msgid "Select preset track parameters for:" +msgstr "Wähle Spurparameter Voreinstellungen für:" + +#: ../src/gui/general/PresetHandlerDialog.cpp:87 +msgid "Create appropriate notation for:" +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:89 +msgid "Category" +msgstr "Kategorie" + +#: ../src/gui/general/PresetHandlerDialog.cpp:95 +msgid "Player Ability" +msgstr "Spieler Fähigkeit" + +#: ../src/gui/general/PresetHandlerDialog.cpp:97 +msgid "Amateur" +msgstr "Amateur" + +#: ../src/gui/general/PresetHandlerDialog.cpp:98 +msgid "Professional" +msgstr "Professionell" + +#: ../src/gui/general/PresetHandlerDialog.cpp:104 +msgid "Only selected segments" +msgstr "Nur a&usgewählte Segmente" + +#: ../src/gui/general/PresetHandlerDialog.cpp:106 +msgid "All segments in this track" +msgstr "Auf alle Segmente auf dieser Spur" + +#: ../src/gui/general/PresetHandlerDialog.cpp:111 +msgid "Only for new segments" +msgstr "Nur für neue Segmente" + +#: ../src/gui/general/PresetHandlerDialog.cpp:113 +#, fuzzy +msgid "Convert existing segments" +msgstr "Segmente erzeugen" + +#: ../src/gui/general/MidiPitchLabel.cpp:39 +#, c-format +msgid "C%1" +msgstr "C%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:39 +#, c-format +msgid "C#%1" +msgstr "C#%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:39 +#, c-format +msgid "D%1" +msgstr "D%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:39 +#, c-format +msgid "D#%1" +msgstr "D#%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:40 +#, c-format +msgid "E%1" +msgstr "E%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:40 +#, c-format +msgid "F%1" +msgstr "F%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:40 +#, c-format +msgid "F#%1" +msgstr "F#%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:40 +#, c-format +msgid "G%1" +msgstr "G%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:41 +#, c-format +msgid "G#%1" +msgstr "G#%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:41 +#, c-format +msgid "A%1" +msgstr "A%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:41 +#, c-format +msgid "A#%1" +msgstr "A#%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:41 +#, c-format +msgid "B%1" +msgstr "H%1" + +#: ../src/gui/general/PresetGroup.cpp:95 +#, c-format +msgid "Can't open preset file %1" +msgstr "Voreinstellungsdatei %1 kann nicht geöffnet werden" + +#: ../src/gui/general/EditView.cpp:744 +#, fuzzy +msgid "&Halve Durations" +msgstr "Dauer" + +#: ../src/gui/general/EditView.cpp:748 +#, fuzzy +msgid "&Double Durations" +msgstr "Doppel-B" + +#: ../src/gui/general/EditView.cpp:806 +msgid "Show Velocity Property Ruler" +msgstr "Leiste für Anschlagstärke zeigen" + +#: ../src/gui/general/EditView.cpp:825 +msgid "Insert item" +msgstr "Note einfügen" + +#: ../src/gui/general/EditView.cpp:831 +msgid "Erase selected items" +msgstr "Ausgewählte Objekte löschen" + +#: ../src/gui/general/EditView.cpp:835 +msgid "Clear ruler" +msgstr "Lineal löschen" + +#: ../src/gui/general/EditView.cpp:839 +msgid "Insert line of controllers" +msgstr "Controller-Linie einfügen" + +#: ../src/gui/general/EditView.cpp:843 +msgid "Flip forward" +msgstr "Flippe vorwärts" + +#: ../src/gui/general/EditView.cpp:847 +msgid "Flip backwards" +msgstr "Flippe rückwärts" + +#: ../src/gui/general/EditView.cpp:851 +msgid "Draw property line" +msgstr "Eigenschaftenlinie zeichnen" + +#: ../src/gui/general/EditView.cpp:855 +msgid "Select all property values" +msgstr "Alle Eigenschaften auswählen" + +#: ../src/gui/general/EditView.cpp:894 +msgid "%1 Controller %2 %3" +msgstr "%1 Controller %2 %3" + +#: ../src/gui/general/EditView.cpp:1066 +msgid "I" +msgstr "I" + +#: ../src/gui/general/EditView.cpp:1066 +msgid "II" +msgstr "II" + +#: ../src/gui/general/EditView.cpp:1066 +msgid "III" +msgstr "III" + +#: ../src/gui/general/EditView.cpp:1066 +msgid "IV" +msgstr "IV" + +#: ../src/gui/general/EditView.cpp:1067 +msgid "V" +msgstr "V" + +#: ../src/gui/general/EditView.cpp:1067 +msgid "VI" +msgstr "VI" + +#: ../src/gui/general/EditView.cpp:1067 +msgid "VII" +msgstr "VII" + +#: ../src/gui/general/EditView.cpp:1067 +msgid "VIII" +msgstr "VIII" + +#: ../src/gui/general/EditView.cpp:1069 +msgid "%1 flat" +msgstr "%1 b" + +#: ../src/gui/general/EditView.cpp:1070 +msgid "%1 sharp" +msgstr "%1 #" + +#: ../src/gui/general/EditView.cpp:1085 +msgid "&Insert Note" +msgstr "Note &einfügen" + +#: ../src/gui/general/EditView.cpp:1091 +msgid "&Upper Octave" +msgstr "&Obere Oktave" + +#: ../src/gui/general/EditView.cpp:1096 +msgid "&Lower Octave" +msgstr "&Untere Oktave" + +#: ../src/gui/general/EditView.cpp:1268 +msgid "Estimated time signature shown" +msgstr "Ermittelte Taktart wird angezeigt" + +#: ../src/gui/general/EditView.cpp:1431 +#, fuzzy +msgid "Halving durations..." +msgstr "Notenlänge setzen..." + +#: ../src/gui/general/EditView.cpp:1445 +#, fuzzy +msgid "Doubling durations..." +msgstr "Notenlänge setzen..." + +#: ../src/gui/general/EditView.cpp:1469 +msgid "Rescaling..." +msgstr "&Reskalieren..." + +#: ../src/gui/general/EditView.cpp:1489 +#, fuzzy +msgid "By number of semitones: " +msgstr "Anzahl der Halbtöne, um die transponiert werden soll:" + +#: ../src/gui/general/EditView.cpp:1496 ../src/gui/general/EditView.cpp:1518 +msgid "Transposing..." +msgstr "Transponieren..." + +#: ../src/gui/general/EditView.cpp:1536 +msgid "Transposing up one semitone..." +msgstr "Einen Halbton nach oben transponieren..." + +#: ../src/gui/general/EditView.cpp:1545 +msgid "Transposing up one octave..." +msgstr "Eine Oktave nach oben transponieren..." + +#: ../src/gui/general/EditView.cpp:1554 +msgid "Transposing down one semitone..." +msgstr "Einen Halbton nach unten transponieren..." + +#: ../src/gui/general/EditView.cpp:1563 +msgid "Transposing down one octave..." +msgstr "Eine Oktave nach unten transponieren..." + +#: ../src/gui/general/EditView.cpp:1575 +msgid "Inverting..." +msgstr "Spiegele Tonhöhenverlauf..." + +#: ../src/gui/general/EditView.cpp:1587 +#, fuzzy +msgid "Retrograding..." +msgstr "Spiegele zeitlich (retro)..." + +#: ../src/gui/general/EditView.cpp:1599 +msgid "Retrograde inverting..." +msgstr "Spiegele zeitlich und tonhöhig..." + +#: ../src/gui/general/EditView.cpp:1608 +msgid "Jogging left..." +msgstr "Nach links joggen..." + +#: ../src/gui/general/EditView.cpp:1623 +msgid "Jogging right..." +msgstr "Nach rechts joggen..." + +#: ../src/sound/AudioFileManager.cpp:660 +#, fuzzy, c-format +msgid "Downloading file %1" +msgstr "Kann Datei %1 nicht herunterladen" + +#: ../src/sound/AudioFileManager.cpp:735 +#, fuzzy +msgid "Converting audio file..." +msgstr "Audiodatei wird exportiert..." + +#: ../src/sound/AudioFileManager.cpp:737 +#, fuzzy +msgid "Resampling audio file..." +msgstr "Audiodatei wird exportiert..." + +#: ../src/sound/AudioFileManager.cpp:739 +#, fuzzy +msgid "Converting and resampling audio file..." +msgstr "Audiodatei wird exportiert..." + +#: ../src/sound/AudioFileManager.cpp:741 +#, fuzzy +msgid "Importing audio file..." +msgstr "Audiodatei wird exportiert..." + +#: ../src/sound/AudioFileManager.cpp:794 +#, fuzzy +msgid "Failed to convert or resample audio file on import" +msgstr "Anlegen der temporären Datei für den LilyPond-Export fehlgeschlagen." + +#: ../src/sequencer/main.cpp:46 ../src/sequencer/main.cpp:86 +#, fuzzy +msgid "RosegardenSequencer" +msgstr "Rosegarden" + +#: ../src/sequencer/main.cpp:54 +#, fuzzy +msgid "JACK playback and capture ports" +msgstr "Wiedergabeverzögerung für JACK (in ms)" + +#: ../src/commands/segment/SegmentSyncCommand.cpp:38 +#: ../src/commands/segment/SegmentSyncCommand.cpp:44 +#: ../src/commands/segment/SegmentSyncCommand.cpp:55 +#: ../src/commands/segment/SegmentSyncCommand.cpp:63 +#, fuzzy +msgid "Sync segment parameters" +msgstr "Segment Parameter" + +#: ../src/commands/segment/RenameTrackCommand.h:52 +msgid "Rename Track" +msgstr "Spur umbenennen" + +#: ../src/commands/segment/SegmentRepeatToCopyCommand.cpp:39 +msgid "Turn Repeats into Copies" +msgstr "Wiederholungen in Kopien umwandeln" + +#: ../src/commands/segment/SegmentTransposeCommand.cpp:36 +#: ../src/commands/segment/SegmentTransposeCommand.cpp:42 +#, fuzzy +msgid "Change segment transposition" +msgstr "Segmentfarbe ändern" + +#: ../src/commands/edit/RescaleCommand.h:50 +#: ../src/commands/segment/AudioSegmentRescaleCommand.h:62 +#: ../src/commands/segment/SegmentRescaleCommand.h:58 +msgid "Stretch or S&quash..." +msgstr "Strecken oder Stauchen..." + +#: ../src/commands/segment/SegmentLabelCommand.h:52 +msgid "Re&label..." +msgstr "Um&benennen..." + +#: ../src/commands/segment/AudioSegmentResizeFromStartCommand.cpp:39 +#: ../src/commands/segment/SegmentResizeFromStartCommand.cpp:39 +msgid "Resize Segment" +msgstr "Segmentgröße verändern" + +#: ../src/commands/segment/RemoveTempoChangeCommand.h:58 +msgid "Remove &Tempo Change..." +msgstr "&Tempoveränderungen entfernen..." + +#: ../src/commands/segment/SegmentEraseCommand.cpp:40 +#: ../src/commands/segment/SegmentEraseCommand.cpp:52 +msgid "Erase Segment" +msgstr "Segment löschen" + +#: ../src/commands/segment/AudioSegmentRescaleCommand.cpp:126 +#: ../src/commands/segment/SegmentRescaleCommand.cpp:102 +#, fuzzy +msgid "(rescaled)" +msgstr "%1 (reskaliert)" + +#: ../src/commands/segment/AudioSegmentRescaleCommand.cpp:127 +#: ../src/commands/segment/SegmentRescaleCommand.cpp:105 +msgid "%1 (rescaled)" +msgstr "%1 (reskaliert)" + +#: ../src/commands/segment/PasteToTriggerSegmentCommand.cpp:47 +msgid "Paste as New Triggered Segment" +msgstr "Als neues getriggertes Segment einfügen" + +#: ../src/commands/segment/SegmentColourMapCommand.h:52 +msgid "Change Segment Color Map..." +msgstr "Segment Farbtabelle ändern..." + +#: ../src/commands/segment/SegmentQuickCopyCommand.h:55 +msgid "Quick-Copy Segment" +msgstr "Schnelle Segmentkopie" + +#: ../src/commands/segment/AudioSegmentSplitCommand.cpp:42 +msgid "Split Audio Segment" +msgstr "Audiosegment splitten" + +#: ../src/commands/segment/AudioSegmentSplitCommand.cpp:103 +#: ../src/commands/segment/SegmentSplitCommand.cpp:135 +msgid " (split)" +msgstr "(aufgetrennt)" + +#: ../src/commands/segment/AudioSegmentSplitCommand.cpp:104 +#: ../src/commands/segment/SegmentSplitByRecordingSrcCommand.cpp:120 +#: ../src/commands/segment/SegmentSplitByRecordingSrcCommand.cpp:122 +#: ../src/commands/segment/SegmentSplitCommand.cpp:136 +msgid "%1 (split)" +msgstr "%1 (aufgetrennt)" + +#: ../src/commands/segment/SegmentLabelCommand.cpp:40 +msgid "Label Segments" +msgstr "Segmente kennzeichnen" + +#: ../src/commands/segment/OpenOrCloseRangeCommand.cpp:43 +msgid "Open or Close Range" +msgstr "Bereich öffnen oder schließen" + +#: ../src/commands/edit/TransposeCommand.h:55 +#: ../src/commands/segment/SegmentTransposeCommand.h:54 +#, fuzzy +msgid "Transpose by &Interval..." +msgstr "&Transponieren.,." + +#: ../src/commands/segment/SegmentAutoSplitCommand.cpp:148 +msgid "%1 (part)" +msgstr "%1 (Teil)" + +#: ../src/commands/segment/AudioSegmentInsertCommand.cpp:51 +#: ../src/commands/segment/SegmentInsertCommand.cpp:43 +#: ../src/commands/segment/SegmentInsertCommand.cpp:56 +msgid "Create Segment" +msgstr "Segmente erzeugen" + +#: ../src/commands/segment/AudioSegmentInsertCommand.cpp:114 +msgid "%1 (inserted)" +msgstr "%1 (eingefügt)" + +#: ../src/commands/segment/AudioSegmentInsertCommand.cpp:117 +msgid "unknown audio file" +msgstr "unbekannte Audiodatei>" + +#: ../src/commands/segment/CreateTempoMapFromSegmentCommand.cpp:40 +msgid "Set Tempos from Beat Segment" +msgstr "" + +#: ../src/commands/segment/SegmentSplitByRecordingSrcCommand.h:52 +msgid "Split by &Recording Source..." +msgstr "Nach Aufnahmequelle aufteilen..." + +#: ../src/commands/segment/SegmentColourMapCommand.cpp:40 +msgid "Change Segment Color Map" +msgstr "Segment Farbtabelle ändern" + +#: ../src/commands/edit/CopyCommand.cpp:64 +#: ../src/commands/segment/SegmentQuickCopyCommand.cpp:57 +msgid "%1 (copied)" +msgstr "%1 (kopiert)" + +#: ../src/commands/segment/SegmentColourCommand.h:52 +msgid "Change Segment Color..." +msgstr "Segmentfarbe ändern..." + +#: ../src/commands/segment/SegmentSplitByPitchCommand.cpp:170 +msgid "%1 (upper)" +msgstr "%1 (oben)" + +#: ../src/commands/segment/SegmentSplitByPitchCommand.cpp:172 +msgid "%1 (lower)" +msgstr "%1 (unten)" + +#: ../src/commands/segment/SegmentSingleRepeatToCopyCommand.cpp:39 +msgid "Turn Single Repeat into Copy" +msgstr "Wiederholungen in Kopien umwandeln" + +#: ../src/commands/segment/AddTempoChangeCommand.h:58 +msgid "Add Te&mpo Change..." +msgstr "Te&mpoänderung hinzufügen..." + +#: ../src/commands/segment/AudioSegmentAutoSplitCommand.h:57 +#: ../src/commands/segment/SegmentAutoSplitCommand.h:53 +msgid "&Split on Silence" +msgstr "Bei Pause &splitten" + +#: ../src/commands/segment/SetTriggerSegmentBaseVelocityCommand.cpp:39 +msgid "Set Base Velocity" +msgstr "Basis Anschlagstärke setzen" + +#: ../src/commands/segment/DeleteRangeCommand.cpp:43 +#: ../src/commands/segment/EraseSegmentsStartingInRangeCommand.cpp:39 +msgid "Delete Range" +msgstr "Bereich löschen" + +#: ../src/commands/segment/ChangeCompositionLengthCommand.h:53 +msgid "Change &Composition Start and End..." +msgstr "Anfang und Ende der Komposition ändern..." + +#: ../src/commands/segment/MoveTracksCommand.h:51 +msgid "Move Tracks..." +msgstr "Spuren bewegen..." + +#: ../src/commands/segment/SegmentColourCommand.cpp:39 +msgid "Change Segment Color" +msgstr "Segmentfarbe ändern" + +#: ../src/commands/segment/AudioSegmentDistributeCommand.h:66 +msgid "Distribute Audio Segments over MIDI" +msgstr "Verteile Audio Segmente über MIDI" + +#: ../src/commands/segment/AudioSegmentAutoSplitCommand.cpp:147 +msgid "%1 (autosplit %2)" +msgstr "%1 (autoteilen %2)" + +#: ../src/commands/segment/SetTriggerSegmentDefaultRetuneCommand.cpp:39 +msgid "Set Default Retune" +msgstr "" + +#: ../src/commands/segment/AddTimeSignatureCommand.h:52 +msgid "Add Time Si&gnature Change..." +msgstr "Änderung der &Taktart hinzufügen..." + +#: ../src/commands/segment/AddTriggerSegmentCommand.cpp:42 +msgid "Add Triggered Segment" +msgstr "Getriggertes Segment hinzufügen" + +#: ../src/commands/segment/SetTriggerSegmentDefaultTimeAdjustCommand.cpp:39 +msgid "Set Default Time Adjust" +msgstr "Standard Zeitadjustierung setzen" + +#: ../src/commands/segment/RemoveTimeSignatureCommand.h:58 +msgid "Remove &Time Signature Change..." +msgstr "Taktartänderung entfernen..." + +#: ../src/commands/segment/SegmentCommandRepeat.cpp:39 +msgid "Repeat Segments" +msgstr "Segmente wiederholen" + +#: ../src/commands/segment/AddTracksCommand.h:55 +msgid "Add Tracks..." +msgstr "Spuren hinzufügen..." + +#: ../src/commands/segment/ModifyDefaultTempoCommand.h:51 +msgid "Modify &Default Tempo..." +msgstr "&Standardtempo.ändern..." + +#: ../src/commands/segment/SegmentSplitByPitchCommand.h:61 +msgid "Split by &Pitch..." +msgstr "Nach &Tonhöhe aufteilen..." + +#: ../src/commands/segment/DeleteTriggerSegmentCommand.cpp:40 +msgid "Delete Triggered Segment" +msgstr "Getriggertes Segment löschen" + +#: ../src/commands/segment/SegmentSplitCommand.cpp:42 +msgid "Split Segment" +msgstr "Segment teilen" + +#: ../src/commands/segment/DeleteTracksCommand.h:51 +msgid "Delete Tracks..." +msgstr "Spuren löschen..." + +#: ../src/commands/segment/InsertRangeCommand.cpp:42 +#, fuzzy +msgid "Insert Range" +msgstr "Pause einfügen" + +#: ../src/commands/segment/DeleteRangeCommand.h:62 +msgid "Rejoin Command" +msgstr "Ernerut verbinden Befehl" + +#: ../src/commands/segment/SetTriggerSegmentBasePitchCommand.cpp:39 +msgid "Set Base Pitch" +msgstr "Grundstimmung setzen" + +#: ../src/commands/segment/PasteConductorDataCommand.cpp:41 +msgid "Paste Tempos and Time Signatures" +msgstr "Tempi und Taktarten einfügen" + +#: ../src/commands/segment/SegmentSyncClefCommand.cpp:34 +#, fuzzy +msgid "Sync segment clef" +msgstr "Segmentbezeichnung ändern" + +#: ../src/commands/matrix/MatrixInsertionCommand.cpp:46 +#: ../src/commands/notation/NoteInsertionCommand.cpp:54 +msgid "Insert Note" +msgstr "Note einfügen" + +#: ../src/commands/matrix/MatrixEraseCommand.cpp:41 +msgid "Erase Note" +msgstr "Note löschen" + +#: ../src/commands/matrix/MatrixPercussionInsertionCommand.cpp:47 +msgid "Insert Percussion Note" +msgstr "Percussionnote einfügen" + +#: ../src/commands/matrix/MatrixModifyCommand.cpp:43 +msgid "Move Note" +msgstr "Note bewegen" + +#: ../src/commands/matrix/MatrixModifyCommand.cpp:43 +msgid "Modify Note" +msgstr "Note ändern" + +#: ../src/commands/edit/PasteEventsCommand.cpp:98 +msgid "Paste into an existing gap [\"restricted\"]" +msgstr "In vorhandene Lücke einfügen [\"eingeschränkt\"]" + +#: ../src/commands/edit/PasteEventsCommand.cpp:100 +msgid "Erase existing events to make room [\"simple\"]" +msgstr "Vorhandene Events löschen, um Plazu zu machen [\"einfach\"]" + +#: ../src/commands/edit/PasteEventsCommand.cpp:102 +msgid "Move existing events out of the way [\"open-n-paste\"]" +msgstr "Vorhandene Events wegschieben [\"öffnen + einfügen\"]" + +#: ../src/commands/edit/PasteEventsCommand.cpp:104 +msgid "Overlay notes, tying against present notes [\"note-overlay\"]" +msgstr "Noten überlagern und an bestehende Noten binden [\"Noten-Überlagern\"]" + +#: ../src/commands/edit/PasteEventsCommand.cpp:106 +msgid "Overlay notes, ignoring present notes [\"matrix-overlay\"]" +msgstr "" +"Noten überlagern und bestehenden Noten ignorieren [\"Matrix-Überlagern\"]" + +#: ../src/commands/edit/AddDotCommand.h:52 +msgid "&Add Dot" +msgstr "Punktierung hinzufügen" + +#: ../src/commands/edit/RemoveMarkerCommand.h:55 +msgid "&Remove Marker" +msgstr "Ma&rker löschen" + +#: ../src/commands/edit/EventUnquantizeCommand.cpp:43 +#: ../src/commands/edit/EventUnquantizeCommand.cpp:54 +msgid "Unquantize Events" +msgstr "Events entquantisieren" + +#: ../src/commands/edit/ChangeVelocityCommand.h:53 +msgid "&Increase Velocity" +msgstr "Anschlagstärke er&höhen" + +#: ../src/commands/edit/ChangeVelocityCommand.h:54 +msgid "&Reduce Velocity" +msgstr "Anschlagstärke &verringern " + +#: ../src/commands/edit/CopyCommand.cpp:46 +msgid "(excerpt)" +msgstr "(Auszug)" + +#: ../src/commands/edit/CopyCommand.cpp:60 +msgid "(copied)" +msgstr "(kopiert)" + +#: ../src/commands/edit/EventInsertionCommand.cpp:39 +msgid "Insert Event" +msgstr "Event einfügen" + +#: ../src/commands/edit/InsertTriggerNoteCommand.cpp:55 +msgid "Insert Trigger Note" +msgstr "Note einfügen" + +#: ../src/commands/edit/CollapseNotesCommand.h:50 +msgid "Collapse &Equal-Pitch Notes" +msgstr "Gleich hohe Not&en zusammenfassen" + +#: ../src/commands/edit/TransposeCommand.h:61 +msgid "&Up a Semitone" +msgstr "Halbton a&ufwärts" + +#: ../src/commands/edit/TransposeCommand.h:62 +msgid "&Down a Semitone" +msgstr "Halbton a&bwärts" + +#: ../src/commands/edit/TransposeCommand.h:63 +msgid "Up an &Octave" +msgstr "&Oktave höher" + +#: ../src/commands/edit/TransposeCommand.h:64 +msgid "Down an Octa&ve" +msgstr "Oktave her&unter" + +#: ../src/commands/edit/TransposeCommand.h:65 +msgid "&Transpose by Semitones..." +msgstr "&Transponiere um Halbtonschritte..." + +#: ../src/commands/edit/SetNoteTypeCommand.h:56 +msgid "&Set Note Type" +msgstr "Notentyp &setzen" + +#: ../src/commands/edit/EventEditCommand.h:55 +msgid "Edit E&vent" +msgstr "E&vent verändern" + +#: ../src/commands/edit/AddMarkerCommand.h:54 +msgid "&Add Marker" +msgstr "Marker hinzufügen" + +#: ../src/commands/edit/SelectionPropertyCommand.h:66 +msgid "Set &Property" +msgstr "&Eigenschaft setzen" + +#: ../src/commands/edit/CutCommand.h:55 +msgid "Cu&t" +msgstr "Sch&neiden" + +#: ../src/commands/edit/EventQuantizeCommand.cpp:114 +msgid "Heuristic Notation &Quantize" +msgstr "Heuristische Notenquantisierung" + +#: ../src/commands/edit/EventQuantizeCommand.cpp:116 +msgid "Grid &Quantize" +msgstr "Raster-&Quantisierung" + +#: ../src/commands/edit/ClearTriggersCommand.h:52 +msgid "&Clear Triggers" +msgstr "Trigger löschen" + +#: ../src/commands/edit/RetrogradeCommand.h:51 +msgid "&Retrograde" +msgstr "&Zeitlich spiegeln (retro)" + +#: ../src/commands/edit/InvertCommand.h:51 +msgid "&Invert" +msgstr "&Tonhöhenverlauf spiegeln" + +#: ../src/commands/edit/SetTriggerCommand.h:64 +msgid "Tri&gger Segment" +msgstr "Getri&ggertes Segment" + +#: ../src/commands/edit/SetLyricsCommand.h:50 +msgid "Edit L&yrics" +msgstr "Te&xt bearbeiten" + +#: ../src/commands/edit/MoveAcrossSegmentsCommand.cpp:73 +msgid "&Move Events to Other Segment" +msgstr "Event ausserhalb eines Segments" + +#: ../src/commands/edit/RetrogradeInvertCommand.h:51 +msgid "Re&trograde Invert" +msgstr "Zeitlich und tonhöhig &spiegeln" + +#: ../src/commands/edit/ModifyMarkerCommand.h:55 +msgid "&Modify Marker" +msgstr "Marker verändern" + +#: ../src/commands/studio/AddControlParameterCommand.h:61 +msgid "&Add Control Parameter" +msgstr "Control Parameter hinzufügen" + +#: ../src/commands/studio/ModifyInstrumentMappingCommand.h:55 +msgid "Modify &Instrument Mapping" +msgstr "&Instrumentzuordnung ändern" + +#: ../src/commands/studio/RemoveControlParameterCommand.h:60 +msgid "&Remove Control Parameter" +msgstr "Control Parameter entfernen" + +#: ../src/commands/studio/ReconnectDeviceCommand.h:55 +msgid "Reconnect Device" +msgstr "Gerät wieder verbinden" + +#: ../src/commands/studio/ModifyDeviceCommand.h:68 +msgid "Modify &MIDI Bank" +msgstr "&MIDI Bank ändern" + +#: ../src/commands/studio/CreateOrDeleteDeviceCommand.h:68 +msgid "Create Device" +msgstr "Gerät erzeugen" + +#: ../src/commands/studio/ModifyDeviceMappingCommand.h:55 +msgid "Modify &Device Mapping" +msgstr "&Gerätezuordnung ändern" + +#: ../src/commands/studio/RenameDeviceCommand.h:55 +msgid "Rename Device" +msgstr "Gerät umbenennen" + +#: ../src/commands/studio/ModifyControlParameterCommand.h:61 +msgid "&Modify Control Parameter" +msgstr "Control Parameter verändern" + +#: ../src/commands/notation/TieNotesCommand.h:49 +msgid "&Tie" +msgstr "Verbinden" + +#: ../src/commands/notation/ClefInsertionCommand.cpp:74 +msgid "Add Cle&f Change..." +msgstr "&Schlüsselveränderung hinzufügen..." + +#: ../src/commands/notation/GuitarChordInsertionCommand.cpp:40 +#, fuzzy +msgid "Insert Guitar Chord" +msgstr "Guitarrenakkord einfügen" + +#: ../src/commands/notation/RespellCommand.cpp:47 +#, c-format +msgid "Respell with %1" +msgstr "Enharmonisch verwechseln mit %1" + +#: ../src/commands/notation/RespellCommand.cpp:50 +msgid "Do&uble Sharp" +msgstr "Do&ppelkreuz" + +#: ../src/commands/notation/RespellCommand.cpp:52 +msgid "&Sharp" +msgstr "&Kreuz" + +#: ../src/commands/notation/RespellCommand.cpp:54 +msgid "&Flat" +msgstr "&b" + +#: ../src/commands/notation/RespellCommand.cpp:56 +msgid "Dou&ble Flat" +msgstr "Doppe&l-b" + +#: ../src/commands/notation/RespellCommand.cpp:58 +msgid "&Natural" +msgstr "Auf&lösungszeichen" + +#: ../src/commands/notation/RespellCommand.cpp:60 +msgid "N&one" +msgstr "&Kein" + +#: ../src/commands/notation/RespellCommand.cpp:66 +msgid "Respell Accidentals &Upward" +msgstr "Enharmonisch nach oben" + +#: ../src/commands/notation/RespellCommand.cpp:69 +msgid "Respell Accidentals &Downward" +msgstr "Enharmonisch nach unten" + +#: ../src/commands/notation/RespellCommand.cpp:72 +#, fuzzy +msgid "&Restore Accidentals" +msgstr "Enharmonisch verwechseln" + +#: ../src/commands/notation/RespellCommand.cpp:75 +msgid "Respell Accidentals" +msgstr "Enharmonisch verwechseln" + +#: ../src/commands/notation/DeCounterpointCommand.h:55 +msgid "Split-and-Tie Overlapping &Chords" +msgstr "Überlappende Akkorde aufteilen und verbinden" + +#: ../src/commands/notation/BeamCommand.h:49 +msgid "&Beam Group" +msgstr "&Balkengruppe" + +#: ../src/commands/notation/AddTextMarkCommand.h:51 +msgid "Add Te&xt Mark..." +msgstr "Te&xtmarke hinzufügen..." + +#: ../src/commands/notation/RestoreSlursCommand.h:49 +#, fuzzy +msgid "&Restore Slur Positions" +msgstr "Er&rechnete Notenhälse wiederherstellen" + +#: ../src/commands/notation/SustainInsertionCommand.h:56 +msgid "Add Pedal &Press" +msgstr "Pedaldruck hinzufügen" + +#: ../src/commands/notation/SustainInsertionCommand.h:58 +msgid "Add Pedal &Release" +msgstr "Pedalfreigabe hinzufügen" + +#: ../src/commands/notation/FixNotationQuantizeCommand.h:49 +msgid "Fi&x Notation Quantization" +msgstr "Darstellungsquantisierung korrigieren" + +#: ../src/commands/notation/ChangeStemsCommand.h:51 +msgid "Stems &Up" +msgstr "Notenhälse &aufwärts" + +#: ../src/commands/notation/ChangeStemsCommand.h:51 +msgid "Stems &Down" +msgstr " &Notenhälse abwärts" + +#: ../src/commands/notation/MakeAccidentalsCautionaryCommand.cpp:43 +msgid "Use &Cautionary Accidentals" +msgstr "Zeige Sicherheits-Vorzeichen" + +#: ../src/commands/notation/MakeAccidentalsCautionaryCommand.cpp:45 +msgid "Cancel C&autionary Accidentals" +msgstr "Entferne Sicherheits-Vorzeichen" + +#: ../src/commands/notation/SetVisibilityCommand.h:50 +msgid "Set Visibility" +msgstr "Sichtbarkeit setzen" + +#: ../src/commands/notation/ChangeStyleCommand.h:53 +msgid "Change &Note Style" +msgstr "&Notenstil ändern" + +#: ../src/commands/notation/TextInsertionCommand.cpp:41 +msgid "Insert Text" +msgstr "Text einfügen" + +#: ../src/commands/notation/InterpretCommand.h:70 +msgid "&Interpret..." +msgstr "&Interpretieren..." + +#: ../src/commands/notation/TupletCommand.h:53 +msgid "&Triplet" +msgstr "Triole" + +#: ../src/commands/notation/TupletCommand.h:54 +msgid "Tu&plet..." +msgstr "&Tuole" + +#: ../src/commands/notation/UnTupletCommand.h:50 +msgid "&Untuplet" +msgstr "Tuolen &auflösen" + +#: ../src/commands/notation/CollapseRestsCommand.h:54 +msgid "&Collapse Rests" +msgstr "Pausen &zusammenfassen" + +#: ../src/commands/notation/AddIndicationCommand.cpp:145 +msgid "Add S&lur" +msgstr "&Bogen hinzufügen" + +#: ../src/commands/notation/AddIndicationCommand.cpp:147 +msgid "Add &Phrasing Slur" +msgstr "&Phrasierungsbogen einfügen" + +#: ../src/commands/notation/AddIndicationCommand.cpp:149 +msgid "Add Double-Octave Up" +msgstr "2 Octaven höher einfügen" + +#: ../src/commands/notation/AddIndicationCommand.cpp:151 +msgid "Add Octave &Up" +msgstr "Octave höher einfügen" + +#: ../src/commands/notation/AddIndicationCommand.cpp:153 +msgid "Add Octave &Down" +msgstr "Octave tiefer einfügen" + +#: ../src/commands/notation/AddIndicationCommand.cpp:155 +msgid "Add Double Octave Down" +msgstr "2 Octaven tiefer einfügen" + +#: ../src/commands/notation/AddIndicationCommand.cpp:160 +msgid "Add &Crescendo" +msgstr "Crescendo einfügen" + +#: ../src/commands/notation/AddIndicationCommand.cpp:162 +msgid "Add &Decrescendo" +msgstr "Decrescendo einfügen" + +#: ../src/commands/notation/AddIndicationCommand.cpp:164 +msgid "Add &Glissando" +msgstr "Glissando einfügen" + +#: ../src/commands/notation/AddIndicationCommand.cpp:167 +msgid "Add &%1%2" +msgstr "Hinzufügen: &%1%2" + +#: ../src/commands/notation/RemoveNotationQuantizeCommand.h:49 +msgid "Remo&ve Notation Quantization" +msgstr "Darstellungsquantisierung entfernen" + +#: ../src/commands/notation/MakeChordCommand.h:50 +msgid "Make &Chord" +msgstr " Akkord" + +#: ../src/commands/notation/MultiKeyInsertionCommand.h:63 +msgid "Change all to &Key %1..." +msgstr "Alles ändern auf &Tonart %1..." + +#: ../src/commands/notation/KeyInsertionCommand.h:67 +#: ../src/commands/notation/MultiKeyInsertionCommand.h:65 +msgid "Add &Key Change..." +msgstr "&Tonartveränderung hinzufügen..." + +#: ../src/commands/notation/RestoreStemsCommand.h:49 +#, fuzzy +msgid "&Restore Stems" +msgstr "Er&rechnete Notenhälse wiederherstellen" + +#: ../src/commands/notation/MakeNotesViableCommand.h:55 +#: ../src/commands/notation/MakeRegionViableCommand.h:52 +msgid "Tie Notes at &Barlines" +msgstr "Noten an Taktstrichen verbinden etc." + +#: ../src/commands/notation/AddSlashesCommand.h:46 +msgid "Slashes" +msgstr "Wiederholungsstriche" + +#: ../src/commands/notation/ChangeSlurPositionCommand.h:51 +msgid "Slur &Above" +msgstr "Bogen oberhalb" + +#: ../src/commands/notation/ChangeSlurPositionCommand.h:51 +msgid "Slur &Below" +msgstr "Bogen unterhalb" + +#: ../src/commands/notation/NormalizeRestsCommand.h:54 +msgid "&Normalize Rests" +msgstr "Pausen &normalisieren..." + +#: ../src/commands/notation/TextChangeCommand.cpp:41 +msgid "Edit Text" +msgstr "Event verändern" + +#: ../src/commands/notation/RemoveMarksCommand.h:49 +msgid "&Remove All Marks" +msgstr "Alle Ma&rken löschen" + +#: ../src/commands/notation/AutoBeamCommand.h:52 +msgid "&Auto-Beam" +msgstr "&Automatische Balken" + +#: ../src/commands/notation/UntieNotesCommand.h:49 +msgid "&Untie" +msgstr "Lösen" + +#: ../src/commands/notation/AddMarkCommand.cpp:48 +msgid "S&forzando" +msgstr "S&forzando" + +#: ../src/commands/notation/AddMarkCommand.cpp:50 +msgid "Sta&ccato" +msgstr "Sta&ccato" + +#: ../src/commands/notation/AddMarkCommand.cpp:52 +msgid "R&inforzando" +msgstr "R&inforzando" + +#: ../src/commands/notation/AddMarkCommand.cpp:54 +msgid "T&enuto" +msgstr "T&enuto" + +#: ../src/commands/notation/AddMarkCommand.cpp:56 +msgid "Tri&ll" +msgstr "&Triller" + +#: ../src/commands/notation/AddMarkCommand.cpp:58 +msgid "Trill &with Line" +msgstr "Triller folgt der Linie" + +#: ../src/commands/notation/AddMarkCommand.cpp:60 +msgid "Trill Line" +msgstr "&Triller" + +#: ../src/commands/notation/AddMarkCommand.cpp:62 +msgid "&Turn" +msgstr "&Doppelschlag" + +#: ../src/commands/notation/AddMarkCommand.cpp:64 +msgid "&Accent" +msgstr "&Akzent" + +#: ../src/commands/notation/AddMarkCommand.cpp:66 +msgid "&Staccatissimo" +msgstr "&Staccatissimo" + +#: ../src/commands/notation/AddMarkCommand.cpp:68 +msgid "&Marcato" +msgstr "&Marcato" + +#: ../src/commands/notation/AddMarkCommand.cpp:70 +msgid "&Pause" +msgstr "&Pause" + +#: ../src/commands/notation/AddMarkCommand.cpp:72 +msgid "&Up-Bow" +msgstr "A&ufstrich" + +#: ../src/commands/notation/AddMarkCommand.cpp:74 +msgid "&Down-Bow" +msgstr "A&bstrich" + +#: ../src/commands/notation/AddMarkCommand.cpp:76 +msgid "Mo&rdent" +msgstr "Mo&rdent" + +#: ../src/commands/notation/AddMarkCommand.cpp:78 +msgid "Inverted Mordent" +msgstr "Umgekehrter Mordent" + +#: ../src/commands/notation/AddMarkCommand.cpp:80 +msgid "Long Mordent" +msgstr "Langer Mordent" + +#: ../src/commands/notation/AddMarkCommand.cpp:82 +msgid "Lon&g Inverted Mordent" +msgstr "Langer umgekehrter Mordent" + +#: ../src/commands/notation/AddMarkCommand.cpp:84 +msgid "&%1%2" +msgstr "&%1%2" + +#: ../src/commands/notation/AddMarkCommand.cpp:89 +#, c-format +msgid "Add %1" +msgstr "Hinzufügen: %1" + +#: ../src/commands/notation/ResetDisplacementsCommand.h:49 +#, fuzzy +msgid "Restore Positions" +msgstr "Berechnete Positionen wiederherstellen" + +#: ../src/commands/notation/IncrementDisplacementsCommand.h:52 +msgid "Fine Reposition" +msgstr "Feines Positionieren" + +#: ../src/commands/notation/RestoreTiesCommand.h:49 +#, fuzzy +msgid "&Restore Tie Positions" +msgstr "Berechnete Positionen wiederherstellen" + +#: ../src/commands/notation/ChangeTiePositionCommand.h:47 +#, fuzzy +msgid "Tie &Above" +msgstr "Bogen oberhalb" + +#: ../src/commands/notation/ChangeTiePositionCommand.h:47 +#, fuzzy +msgid "Tie &Below" +msgstr "Bogen unterhalb" + +#: ../src/commands/notation/KeyInsertionCommand.h:65 +msgid "Change to &Key %1..." +msgstr "Wechsel zu Tonart %1..." + +#: ../src/commands/notation/RemoveFingeringMarksCommand.h:49 +msgid "&Remove Fingerings" +msgstr "Alle Ma&rken löschen" + +#: ../src/commands/notation/BreakCommand.h:49 +msgid "&Unbeam" +msgstr "Balken &entfernen" + +#: ../src/commands/notation/UnGraceCommand.h:48 +msgid "Ung&race" +msgstr "Verzierung &entfernen" + +#: ../src/commands/notation/AddFingeringMarkCommand.cpp:45 +msgid "Add Other &Fingering..." +msgstr "Andere & Fingersatz hinzufügen..." + +#: ../src/commands/notation/AddFingeringMarkCommand.cpp:47 +msgid "Add Fingering &0 (Thumb)" +msgstr "Fingersatz &0 (Daumen) einfügen" + +#: ../src/commands/notation/AddFingeringMarkCommand.cpp:49 +#, c-format +msgid "Add Fingering &%1" +msgstr "Fingersatz &%1 einfügen" + +#: ../src/document/io/HydrogenXMLHandler.cpp:277 +msgid " imported from Hydrogen " +msgstr " von Hydrogen importiert " + +#: ../src/document/io/LilyPondExporter.cpp:404 +#, fuzzy +msgid "" +"LilyPond does not allow spaces or backslashes in filenames.\n" +"\n" +"Would you like to use\n" +"\n" +" %1\n" +"\n" +" instead?" +msgstr "" +"Lilyond erlaubt weder Leerräume noch Backslashes in Dateinamen. Wollen Sie " +"stattdessen\n" +"\n" +" %1\n" +"benutzen?" + +#: ../src/document/io/LilyPondExporter.cpp:2054 +msgid "warning: overlong bar truncated here" +msgstr "Warnung: Überlanger Takt hier abgeschnitten" + +#: ../src/document/io/LilyPondExporter.cpp:2060 +msgid "warning: bar too short, padding with rests" +msgstr "Warnung: Takt zu kurz, wird mit Pausen aufgefüllt" + +#: ../src/document/MultiViewCommandHistory.cpp:318 +msgid "Nothing to undo" +msgstr "Nichts rückgängig zu machen" + +#: ../src/document/MultiViewCommandHistory.cpp:320 +msgid "Nothing to redo" +msgstr "Nichts zu wiederholen" + +#: ../src/document/MultiViewCommandHistory.cpp:328 +#: ../src/document/MultiViewCommandHistory.cpp:372 +#, c-format +msgid "Und&o %1" +msgstr "Rückgängig %1" + +#: ../src/document/MultiViewCommandHistory.cpp:330 +#: ../src/document/MultiViewCommandHistory.cpp:374 +#, c-format +msgid "Re&do %1" +msgstr "%1 &wiederholen" + +#: ../src/document/RosegardenGUIDoc.cpp:328 +msgid "" +"The current file has been modified.\n" +"Do you want to save it?" +msgstr "" +"Die aktuelle Datei wurde verändert.\n" +"Wollen Sie sie speichern?" + +#: ../src/document/RosegardenGUIDoc.cpp:480 +#, c-format +msgid "" +"_n: Delete the 1 audio file recorded during the unsaved session?\n" +"Delete the %n audio files recorded during the unsaved session?" +msgstr "" +"_n: Soll die 1 Audio Datei, die während der ungespeicherten Sitzung " +"aufgenommen wurde, gelöscht werden?\n" +"Sollen die %n Audio Dateien, die während der ungespeicherten Sitzung " +"aufgenommen wurden, gelöscht werden?" + +#: ../src/document/RosegardenGUIDoc.cpp:501 +msgid "" +"The following audio files were recorded during this session but have been " +"unloaded\n" +"from the audio file manager, and so are no longer in use in the document you " +"are saving.\n" +"\n" +"You may want to clean up these files to save disk space.\n" +"\n" +"Please select any you wish to delete permanently from the hard disk.\n" +msgstr "" +"Die folgenden Audio Dateien wurden zwar während dieser Sitzung\n" +"aufgenommen, sind aber nicht mehr im Audio Datei Manager geladen\n" +"und werden daher vom zu speichernden Dokument nicht mehr verwendet.\n" +"\n" +"Sie können entscheiden diese Dateien zu löschen um Plattenplatz zu sparen.\n" +"\n" +"Bitte wählen diejenigen aus, die Sie permanent von der Festplatte entfernen " +"möchten.\n" + +#: ../src/document/RosegardenGUIDoc.cpp:517 +#, fuzzy, c-format +msgid "" +"_n: About to delete 1 audio file permanently from the hard disk." +"
            There will be no way to recover this file.
            Are you sure?
            \n" +"\n" +"About to delete %n audio files permanently from the hard disk.
            There " +"will be no way to recover these files.
            Are you sure?
            " +msgstr "" +"_n: Gleich wird 1 Audio Datei permanent von der Festplatte gelöscht.\n" +"Es gibt dann keine Möglichkeit, sie zu restaurieren.\n" +"Sind Sie sicher?\n" +"Gleich werden %n Audio Dateien permanent von der Festplatte gelöscht.\n" +"Es gibt dann keine Möglichkeit, sie zu restaurieren.\n" +"Sind Sie sicher?" + +#: ../src/document/RosegardenGUIDoc.cpp:580 +msgid "Can't open file '%1'" +msgstr "Datei %1 kann nicht geöfnet werden '" + +#: ../src/document/RosegardenGUIDoc.cpp:585 +msgid "Reading file..." +msgstr "Datei wird gelesen..." + +#: ../src/document/RosegardenGUIDoc.cpp:603 +#, fuzzy +msgid "Could not open Rosegarden file" +msgstr "Konnte Rosegarden-4-Datei nicht öffnen" + +#: ../src/document/RosegardenGUIDoc.cpp:641 +msgid "Error when parsing file '%1': \"%2\"" +msgstr "Fehler beim Parsen der Datei '%1': \"%2\"" + +#: ../src/document/RosegardenGUIDoc.cpp:689 +msgid "Generating audio previews..." +msgstr "Audio-Vorschau wird erzeugt..." + +#: ../src/document/RosegardenGUIDoc.cpp:721 +msgid "Merge" +msgstr "Mischen" + +#: ../src/document/RosegardenGUIDoc.cpp:1605 +msgid "File load cancelled" +msgstr "Laden der Datei wurde abgebrochen" + +#: ../src/document/RosegardenGUIDoc.cpp:1625 +msgid "" +"

            Audio and plugins not available

            This composition uses audio files " +"or plugins, but Rosegarden is currently running without audio because the " +"JACK audio server was not available on startup.

            Please exit " +"Rosegarden, start the JACK audio server and re-start Rosegarden if you wish " +"to load this complete composition.

            WARNING: If you re-save this " +"composition, all audio and plugin data and settings in it will be lost.

            " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1628 +msgid "" +"

            Audio and plugins not available

            This composition uses audio files " +"or plugins, but you are running a version of Rosegarden that was compiled " +"without audio support.

            WARNING: If you re-save this composition " +"from this version of Rosegarden, all audio and plugin data and settings in " +"it will be lost.

            " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1665 +msgid "" +"

            Incorrect audio sample rate

            This composition contains audio files " +"that were recorded or imported with the audio server running at a different " +"sample rate (%1 Hz) from the current JACK server sample rate (%2 Hz).

            Rosegarden will play this composition at the correct speed, but any " +"audio files in it will probably sound awful.

            Please consider re-" +"starting the JACK server at the correct rate (%3 Hz) and re-loading this " +"composition before you do any more work with it.

            " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1675 +msgid "" +"

            Inconsistent audio sample rates

            This composition contains audio " +"files at more than one sample rate.

            Rosegarden will play them at the " +"correct speed, but any audio files that were recorded or imported at rates " +"different from the current JACK server sample rate (%1 Hz) will probably " +"sound awful.

            Please see the audio file manager dialog for more " +"details, and consider resampling any files that are at the wrong rate.

            " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1676 +#, fuzzy +msgid "Inconsistent sample rates" +msgstr "Nicht-dauerhafte Eigenschaften" + +#: ../src/document/RosegardenGUIDoc.cpp:1690 +#, fuzzy +msgid "" +"

            Plugins not found

            The following audio plugins could not be loaded:" +"

              " +msgstr "" +"Die folgenden Plugins konnten nicht geladen werden:\n" +"\n" + +#: ../src/document/RosegardenGUIDoc.cpp:1698 +#, fuzzy +msgid "
            • %1 (from %2)
            • " +msgstr "-- %1 (von %2)\n" + +#: ../src/document/RosegardenGUIDoc.cpp:1712 +msgid "" +"This file contains one or more old element types that are now deprecated.\n" +"Support for these elements may disappear in future versions of Rosegarden.\n" +"We recommend you re-save this file from this version of Rosegarden to ensure " +"that it can still be re-loaded in future versions." +msgstr "" +"Diese Datei enthält mindestens einen veralteten Elementtyp.\n" +"In Zukunft wird dieser Elementtyp vielleicht nicht mehr unterstützt.\n" +"Empfehlung: speichern Sie diese Datei aus dieser Version von Rosegarden " +"heraus\n" +"um sicherzustellen, daß sie auch in Zukunft gelesen werden kann." + +#: ../src/document/RosegardenGUIDoc.cpp:2207 +msgid "Insert Recorded MIDI" +msgstr "MIDI-Aufnahme einfügen" + +#: ../src/document/RosegardenGUIDoc.cpp:2560 +msgid "%1 (recorded)" +msgstr "%1 (aufgenommen)" + +#: ../src/document/RoseXmlHandler.cpp:442 +msgid "" +"This file was written by Rosegarden %1, and it uses\n" +"a different file format that cannot be read by this version." +msgstr "" +"Diese Datei wurde von Rosegarden %1 geschrieben und verwendet\n" +"ein Dateiformat, daß von dieser Version nicht gelesen werden kann." + +#: ../src/document/RoseXmlHandler.cpp:452 +msgid "" +"This file was written by Rosegarden %1, which is more recent than this " +"version.\n" +"There may be some incompatibilities with the file format." +msgstr "" +"Diese Datei wurde von Rosegarden %1 geschrieben. Das ist eine neuere " +"Version, als Sie gerade verwenden.\n" +"Möglicherweise gibt es Inkompatibilitäten zwischen den Dateiformaten." + +#: ../src/document/RoseXmlHandler.cpp:1687 +msgid "Loading plugins..." +msgstr "Plugins werden geladen..." + +#: rc.cpp:6 rc.cpp:144 +#, no-c-format +msgid "Se&gment" +msgstr "Se&gment" + +#: rc.cpp:9 rc.cpp:84 rc.cpp:147 rc.cpp:303 +#, no-c-format +msgid "Edit &With" +msgstr "Editieren mit" + +#: rc.cpp:12 rc.cpp:21 rc.cpp:30 rc.cpp:39 rc.cpp:345 +#, no-c-format +msgid "Actions Toolbar" +msgstr "Aktion-Werkzeugleiste" + +#: rc.cpp:15 rc.cpp:33 rc.cpp:129 rc.cpp:285 +#, no-c-format +msgid "Time Toolbar" +msgstr "Zeit-Werkzeugleiste" + +#: rc.cpp:18 rc.cpp:36 rc.cpp:57 rc.cpp:63 rc.cpp:120 rc.cpp:243 rc.cpp:342 +#, no-c-format +msgid "Transport Toolbar" +msgstr "Bedienfeld-Werkzeugleiste " + +#: rc.cpp:24 rc.cpp:42 rc.cpp:123 rc.cpp:348 +#, no-c-format +msgid "Zoom Toolbar" +msgstr "Zoom-Werkzeugleiste" + +#: rc.cpp:45 rc.cpp:60 rc.cpp:99 rc.cpp:228 rc.cpp:327 +#, no-c-format +msgid "T&ransport" +msgstr "&Bedieneinheit" + +#: rc.cpp:51 +#, no-c-format +msgid "Number of Stereo &Inputs" +msgstr "Anzahl der Stereo E&ingänge" + +#: rc.cpp:54 +#, no-c-format +msgid "&Number of Submasters" +msgstr "A&nzahl Gruppen" + +#: rc.cpp:66 +#, no-c-format +msgid "&Import" +msgstr "&Import" + +#: rc.cpp:69 +#, no-c-format +msgid "&Merge" +msgstr "&Mischen" + +#: rc.cpp:72 +#, no-c-format +msgid "&Export" +msgstr "E&xport" + +#: rc.cpp:75 rc.cpp:141 rc.cpp:297 +#, no-c-format +msgid "&Composition" +msgstr "Komposition" + +#: rc.cpp:78 +#, no-c-format +msgid "&Studio" +msgstr "&Studio" + +#: rc.cpp:81 +#, no-c-format +msgid "Se&gments" +msgstr "Segmente" + +#: rc.cpp:90 +#, no-c-format +msgid "Trac&ks" +msgstr "S&puren" + +#: rc.cpp:93 +#, no-c-format +msgid "Set &Instrument" +msgstr "Instrument setzen" + +#: rc.cpp:102 rc.cpp:234 rc.cpp:333 +#, no-c-format +msgid "&Toolbars" +msgstr "&Werkzeugleisten" + +#: rc.cpp:105 rc.cpp:237 rc.cpp:336 +#, no-c-format +msgid "&Rulers" +msgstr "&Lineale anzeigen" + +#: rc.cpp:111 rc.cpp:240 rc.cpp:339 +#, no-c-format +msgid "Tools Toolbar" +msgstr "Werkzeug-Werkzeugleiste" + +#: rc.cpp:114 +#, no-c-format +msgid "Tracks Toolbar" +msgstr "Spuren-Werkzeugleiste" + +#: rc.cpp:117 +#, no-c-format +msgid "Editors Toolbar" +msgstr "Editor-Werkzeugleiste" + +#: rc.cpp:135 +#, no-c-format +msgid "&Layout Mode" +msgstr "&Layout Modus" + +#: rc.cpp:138 rc.cpp:294 +#, no-c-format +msgid "Add Event Ruler" +msgstr "Event-Lineal hinzufügen" + +#: rc.cpp:150 +#, fuzzy, no-c-format +msgid "N&ote" +msgstr "&Noten" + +#: rc.cpp:153 +#, no-c-format +msgid "Mar&ks" +msgstr "Mar&kierungen" + +#: rc.cpp:156 +#, no-c-format +msgid "&Ornaments" +msgstr "Verzierungen" + +#: rc.cpp:159 +#, no-c-format +msgid "&Fingerings" +msgstr "&Fingersätze" + +#: rc.cpp:162 +#, no-c-format +msgid "S&lashes" +msgstr "&Wiederholungsstriche" + +#: rc.cpp:165 rc.cpp:219 +#, no-c-format +msgid "&Accidentals" +msgstr "&Vorzeichen" + +#: rc.cpp:168 +#, fuzzy, no-c-format +msgid "&Phrase" +msgstr "&Löschen" + +#: rc.cpp:171 +#, no-c-format +msgid "Slur &Position" +msgstr "&Position des Bindebogen" + +#: rc.cpp:174 +#, fuzzy, no-c-format +msgid "Tie &Position" +msgstr "&Position des Bindebogen" + +#: rc.cpp:177 +#, no-c-format +msgid "&Octaves" +msgstr "&Oktaven" + +#: rc.cpp:180 rc.cpp:306 +#, no-c-format +msgid "Ad&just" +msgstr "Anpassen" + +#: rc.cpp:183 +#, no-c-format +msgid "R&ests" +msgstr "Pausen" + +#: rc.cpp:186 rc.cpp:213 +#, no-c-format +msgid "&Notes" +msgstr "&Noten" + +#: rc.cpp:189 rc.cpp:309 +#, no-c-format +msgid "&Quantize" +msgstr "&Quantisieren" + +#: rc.cpp:195 rc.cpp:315 +#, no-c-format +msgid "Trans&pose" +msgstr "Trans&ponieren" + +#: rc.cpp:198 rc.cpp:318 +#, no-c-format +msgid "Convert" +msgstr "Gewählte Events spie&geln" + +#: rc.cpp:201 +#, no-c-format +msgid "&Fine Positioning" +msgstr "&Feine Positionierung" + +#: rc.cpp:204 +#, no-c-format +msgid "Fine Ti&ming" +msgstr "Feines Ti&ming" + +#: rc.cpp:207 +#, no-c-format +msgid "&Visibility" +msgstr "Sichtbarkeit" + +#: rc.cpp:216 +#, no-c-format +msgid "&Rests" +msgstr "&Pausen" + +#: rc.cpp:222 +#, no-c-format +msgid "&Clefs" +msgstr "&Schlüssel" + +#: rc.cpp:225 rc.cpp:324 +#, no-c-format +msgid "Local &Cursor" +msgstr "Lokaler Zeiger" + +#: rc.cpp:246 +#, no-c-format +msgid "Notes Toolbar" +msgstr "Noten-Werkzeugleiste" + +#: rc.cpp:249 +#, no-c-format +msgid "Rests Toolbar" +msgstr "Pausen-Werkzeugleiste" + +#: rc.cpp:252 +#, no-c-format +msgid "Clefs Toolbar" +msgstr "Schlüssel-Werkzeugleiste" + +#: rc.cpp:255 +#, no-c-format +msgid "Accidentals Toolbar" +msgstr "Vorzeichen-Werkzeugleiste" + +#: rc.cpp:258 +#, no-c-format +msgid "Group Toolbar" +msgstr "Gruppen-Werkzeugleiste" + +#: rc.cpp:261 +#, no-c-format +msgid "Marks Toolbar" +msgstr "Vortragszeichen-Werkzeugleiste" + +#: rc.cpp:264 +#, no-c-format +msgid "Meta Toolbar" +msgstr "&Meta-Werkzeugleiste" + +#: rc.cpp:267 +#, no-c-format +msgid "Layout Toolbar" +msgstr "&Layout-Werkzeugleiste" + +#: rc.cpp:270 rc.cpp:351 +#, no-c-format +msgid "Control Ruler actions" +msgstr "Control-Lineal Aktionen" + +#: rc.cpp:273 rc.cpp:354 +#, no-c-format +msgid "Property Ruler actions" +msgstr "Eigenschaften-Lineal Aktionen" + +#: rc.cpp:276 +#, no-c-format +msgid "&Action" +msgstr "&Aktion" + +#: rc.cpp:279 +#, no-c-format +msgid "General Toolbar" +msgstr "e" + +#: rc.cpp:291 +#, no-c-format +msgid "&Grid" +msgstr "&Raster" + +#: rc.cpp:300 +#, no-c-format +msgid "&Segment" +msgstr "&Segment" + +#: rc.cpp:361 +#, no-c-format +msgid "Hide additional controls" +msgstr "Zusätzliche Kontrollelemente verbergen" + +#: rc.cpp:365 +#, no-c-format +msgid "Panic Button" +msgstr "Not-Halt" + +#: rc.cpp:368 +#, no-c-format +msgid "Resets all MIDI devices if you've got stuck notes" +msgstr "Setzt alle MIDI-Geräte zurück bei hängengebliebenen Tönen" + +#: rc.cpp:375 +#, no-c-format +msgid "Provides a metronome click for you to play along with" +msgstr "Stellt einen Metronom-Klick zur Verfügung" + +#: rc.cpp:378 +#, no-c-format +msgid "Shows MIDI activity in and out of Rosegarden" +msgstr "" +"Zeigt MIDI-Aktivitäten aus Rosegarden heraus und nach Rosegarden hinein" + +#: rc.cpp:381 +#, no-c-format +msgid "IN" +msgstr "IN" + +#: rc.cpp:384 +#, no-c-format +msgid "OUT" +msgstr "OUT" + +#: rc.cpp:387 rc.cpp:390 +#, no-c-format +msgid "NO EVENTS" +msgstr "NO EVENTS" + +#: rc.cpp:397 +#, no-c-format +msgid "Record either MIDI or audio" +msgstr "MIDI- oder Audio-Aufnahme" + +#: rc.cpp:401 +#, no-c-format +msgid "Loop" +msgstr "Loop" + +#: rc.cpp:404 +#, no-c-format +msgid "Turn on and off the loop markers (if set)" +msgstr "Loop-Markierungen an- oder ausschalten (wenn gesetzt)" + +#: rc.cpp:411 +#, no-c-format +msgid "Mutes all but the currently selected track" +msgstr "Schaltet alle Spuren stumm bis auf die aktuell angewählte" + +#: rc.cpp:415 +#, no-c-format +msgid "Start loop or range here" +msgstr "Beginne Loop oder Bereich hier" + +#: rc.cpp:419 +#, no-c-format +msgid "End loop or range here" +msgstr "Beende Loop oder Bereich hier" + +#: rc.cpp:422 +#, no-c-format +msgid "SIG" +msgstr "SIG" + +#: rc.cpp:425 +#, no-c-format +msgid "DIV" +msgstr "DIV" + +#: rc.cpp:428 +#, no-c-format +msgid "/16" +msgstr "/16" + +#: rc.cpp:431 +#, no-c-format +msgid "TEMPO" +msgstr "TEMPO" + +#: rc.cpp:434 +#, no-c-format +msgid "END" +msgstr "END" + +#: rc.cpp:437 +#, no-c-format +msgid "BAR" +msgstr "BAR" + +#: rc.cpp:441 +#, no-c-format +msgid "Switch between real time, musical time, and frame count" +msgstr "Zwischen Echtzeit, Taktschlägen und SMPTE Frames umschalten" + +#: rc.cpp:445 +#, no-c-format +msgid "Show additional controls" +msgstr "Weitere Steuerelemente anzeigen" + +#: rc.cpp:449 +#, no-c-format +msgid "Rewind" +msgstr "Zurückspulen" + +#: rc.cpp:452 +#, no-c-format +msgid "Moves the current pointer position back one bar." +msgstr "Bewegt den aktuellen Zeiger einen Takt zurück." + +#: rc.cpp:456 +#, no-c-format +msgid "Rewind to beginning" +msgstr "Zum Beginn zurückspulen" + +#: rc.cpp:459 +#, no-c-format +msgid "" +"Moves the pointer position to the start of the composition. (This may mean " +"going forwards if the pointer is currently before the start.)" +msgstr "" +"Bewegt den Zeiger zum Beginn des Stücks. (Wenn sich der Zeiger bereits vor " +"dem Beginn des Stücks befindet, wird der Zeiger entsprechend vorwärts " +"bewegt.)" + +#: rc.cpp:463 +#, no-c-format +msgid "Play/Pause" +msgstr "Wiedergabe/Pause" + +#: rc.cpp:466 +#, no-c-format +msgid "" +"Plays from the current pointer position, or pauses playback if already in " +"progress." +msgstr "" +"Spielt von der aktuellen Cursorposition, oder hält die Wiedergabe an, wenn " +"sie schon im Gang ist." + +#: rc.cpp:473 +#, no-c-format +msgid "Stops playback or recording." +msgstr "Beendet Wiedergabe bzw. Aufnahme" + +#: rc.cpp:477 +#, no-c-format +msgid "Fast forward" +msgstr "Schnell vorspulen" + +#: rc.cpp:480 +#, no-c-format +msgid "Moves the current pointer position forwards one bar." +msgstr "Bewegt die aktuelle Cursorposition einen Takt vorwärts." + +#: rc.cpp:484 +#, no-c-format +msgid "Fast forward to end" +msgstr "Schnell ans Ende vorspulen" + +#: rc.cpp:487 +#, no-c-format +msgid "" +"Moves the pointer position to the end of the composition. (This may mean " +"going backwards if the pointer is already beyond the end.)" +msgstr "" +"Bewegt den Zeiger zum Ende des Stücks. (Wenn sich der Zeiger bereits hinter " +"dem Ende des Stücks befindet, wird der Zeiger entsprechend zurück bewegt.)" + +#: rc.cpp:491 +#, no-c-format +msgid "Display time to end" +msgstr "Zeit bis zum Ende zeigen" + +#: ../docs/en/tips.cpp:3 +msgid "" +"

              To configure a track to play using a particular instrument:

              \n" +"  * click on the track label and hold a moment
              \n" +"  * select an output device
              \n" +"  * select one of that device's available instruments (#1 - #16)" +"
              \n" +"  * adjust that instrument's output channel, program, bank, and\n" +"controllers via the instrument parameters box\n" +msgstr "" +"

              Um einer Spur ein bestimmtes Instrument zuzuweisen, gehe wie folgt vor:\n" +"  * klicke für einen Moment auf den Spurnamen
              \n" +"  * wähle ein Ausgabedevice
              \n" +"  * wähle eines der verfügbaren Instrumente dieses Devices (#1 - " +"#16)
              \n" +"  * passe die Instrumentparameter (Ausgabekanal, Programm, Bank " +"und Controller) über die Instrument Parameter Box an\n" + +#: ../docs/en/tips.cpp:13 +msgid "" +"

              ...that Rosegarden has an autosave feature?

              \n" +"You can select your autosave interval from Settings->Configure\n" +"Rosegarden.

              \n" +"When something goes awry, such as a power outage or a Rosegarden crash\n" +"(unfortunately, it happens...) simply load the file you were working on, and " +"you'll be given the\n" +"option to load the autosaved version, or the unmodified original.

              \n" +msgstr "" +"

              ...dass Rosegarden ein Autospeichern-Feature hat?

              \n" +"Sie können den Abstand zwischen zwei automatischen Speicherungen über \n" +"Einstellungen->Rosegarden einrichten auswählen.

              \n" +"Wenn etwas schief geht, zum Beispiel ein Stromausfall oder ein Absturz von " +"Rosegarden\n" +" (das kommt leider vor...), laden Sie einfach die Datei an der Sie " +"gearbeitet haben, und Sie\n" +" haben dann die Auswahl, ob Sie die automatisch gespeicherte Version oder " +"das unveränderte\n" +" Original laden wollen.

              \n" + +#: ../docs/en/tips.cpp:23 +#, fuzzy +msgid "" +"

              \n" +"...that you can save the current document as your default studio by using\n" +"Composition -> Studio -> Save Current Document as Default Studio?\n" +msgstr "" +"

              \n" +"Sie können das aktuelle Dokument als Ihr Standardstudio speichern. Wählen " +"Sie Komposition -> Studio -> Speichere aktuelles Dokument als " +"Standardstudio.

              \n" + +#: ../docs/en/tips.cpp:30 +msgid "" +"

              ...that your default studio is a complete Rosegarden composition that " +"gets\n" +"loaded every time you create a new document or import a MIDI file?

              \n" +msgstr "" +"

              ...dass ihr Standardstudio ein komplettes Rosegarden-Stück ist, das " +"jedesmal geladen wird,\n" +" wenn Sie ein neues Dokument erzeugen oder eine MIDI-Datei importieren?

              \n" + +#: ../docs/en/tips.cpp:36 +#, fuzzy +msgid "" +"

              ...that your default studio can contain instrument assignments, document " +"properties, LilyPond headers,\n" +"and many other things?

              The default studio is a complete Rosegarden " +"composition, so it can contain anything that you may wish to have available " +"in each\n" +"new document you create.

              \n" +msgstr "" +"

              Weil Ihr Standardstudio ein komplettes Rosegarden-Stück ist, kann es\n" +" Standard-Instrumentenzuordnungen, Dokumenteigenschaften, LilyPond-Header " +"und viele\n" +" andere Dinge enthalten, die Sie standardmäßig in jedem neuen von Ihnen " +"erzeugten Dokument\n" +" verfügbar haben möchten.

              \n" + +#: ../docs/en/tips.cpp:43 +#, fuzzy +msgid "" +"

              ...that Rosegarden will detect and create a default connection for ALSA " +"soft\n" +"synth applications that are started after Rosegarden is already running?\n" +msgstr "" +"

              ...dass Rosegarden eine Standardverbindung zu ALSA Software Synthesizern " +"herstellt,\n" +" die gestartet werden, während Rosegarden schon läuft?

              \n" + +#: ../docs/en/tips.cpp:49 +#, fuzzy +msgid "" +"

              ...that you can make your default studio override that in every " +"Rosegarden composition you load?

              If your studio setup does not change " +"very often, and you would prefer for\n" +"the settings in your default studio to take precedence over whatever\n" +"studio is saved with any files you happen to load, you can make your studio " +"the default for everything using Settings -> Configure Rosegarden ->\n" +"MIDI -> Always use default studio when loading files.

              \n" +msgstr "" +"

              Falls sich die Zusammensetzung Ihres Studios nur selten ändert und\n" +"sie daher möchten, dass die Einstellungen in Ihrer autoload.rg\n" +"Vorrang haben vor jenen, die lokal in jedem Song mit abgespeichert werden,\n" +"so können Sie Ihr autoloadautoload.rg zum Standard machen:\n" +"Wählen Sie Settings -> Einrichten Rosegarden -> Verhalten ->\n" +"Beim Laden von Dateien immer Standardstudio verwenden.

              \n" + +#: ../docs/en/tips.cpp:57 +msgid "" +"

              If you have accidentally recorded a segment so short that it does not\n" +"appear on the canvas, which you can only hear during subsequent recording\n" +"sessions, you can gain access to it by using Composition -> Change\n" +"Composition Start and End and then setting the composition to start at a " +"negative number.

              \n" +msgstr "" +"

              Falls Sie versehentlich ein Segment aufgenommen haben, das zu kurz ist,\n" +"als dass es auf dem Canvas dargestellt wird, das Sie also nur bei " +"nachfolgenden\n" +"Aufnahmen hören können, so erlangen Sie Zugriff auf dieses Segment, indem " +"Sie\n" +"Komposition -> Ändern Anfang und Ende der Komposition wählen und dann " +"den Anfang auf einen negativen Wert setzen.

              \n" + +#: ../docs/en/tips.cpp:65 +#, fuzzy +msgid "" +"

              ...that if you place a note at the wrong pitch using the notation or " +"matrix editor, you can move it one semitone at a time with the up and down " +"arrow keys on your keyboard?

              \n" +msgstr "" +"

              ...dass Sie im Notationseditor Noten, die Sie auf die falsche Tonhöhe " +"gesetzt haben,\n" +" um jeweils einen Halbton mit den Pfeiltasten auf Ihrer Tastatur nach oben " +"und unten\n" +" verschieben können?

              \n" + +#: ../docs/en/tips.cpp:70 +msgid "" +"

              ...that you can toggle stem directions in the notation editor by " +"selecting\n" +"one or more notes and using Ctrl-PageUp and Ctrl-PageDown?

              \n" +msgstr "" +"

              ...dass Sie die Richtung von Notenhälsen verändern können, indem Sie eine " +"oder mehrere\n" +" Noten auswählen und Strg-BildAuf und Strg-BildAb benutzen?

              \n" + +#: ../docs/en/tips.cpp:76 +msgid "" +"

              ...that you can change the accidental used for a note in the notation " +"editor (without changing the pitch of the note) by selecting\n" +"it and using the up and down arrow keys with both Ctrl and Shift pressed?\n" +msgstr "" +"

              ...dass Sie im Notationseditor das Vorzeichen einer Note ändern können " +"(ohne die Tonhöhe zu verändern)\\\n" +"indem Sie sie auswählen und Strg-Shift-Pfeiltaste benutzen??

              \n" + +#: ../docs/en/tips.cpp:82 ../docs/en/tips.cpp:93 +msgid "" +"

              ...that you can hold down the Shift key while repositioning segments on " +"the\n" +"segment canvas in order to avoid the \"snap-to\" effect and exert finer " +"control?

              \n" +msgstr "" +"

              ...dass Sie beim Verschieben von Segmenten die Shift-Taste festhalten und " +"so den\n" +" \"Einschnapp-Effekt\" vermeiden und feinere Kontrolle ausüben können?

              \n" + +#: ../docs/en/tips.cpp:88 +msgid "" +"

              ...that you can use the arrow tool to draw, move, and resize segments and " +"events as well as to select them?

              Drag a segment or event block to " +"move it, drag the right edge of a block to resize it, and drag with the " +"middle mouse button pressed to draw a new segment or event.

              (Of " +"course, the dedicated draw, move and resize tools are still quicker for " +"repeated operations.)

              \n" +msgstr "" + +#: ../docs/en/tips.cpp:99 +msgid "" +"

              ...that you can hold down the Shift key while repositioning or resizing " +"events in the\n" +"matrix view in order to avoid the \"snap-to\" effect and exert finer control?" +"

              \n" +msgstr "" +"

              ...dass Sie beim Verschieben von Segmenten die Shift-Taste festhalten und " +"so den\n" +" \"Einschnapp-Effekt\" vermeiden und feinere Kontrolle ausüben können?

              \n" + +#: ../docs/en/tips.cpp:105 +msgid "" +"

              ...that you can edit multiple segments on multiple tracks simultaneously " +"in\n" +"the notation editor? Simply select the segments, then use Edit -> Open " +"in Notation Editor.

              \n" +msgstr "" +"

              ...dass Sie mehrere Segmente auf mehreren Spuren gleichzeitig im " +"Notationseditor\n" +" bearbeiten können? Wählen Sie einfach die Segmente aus, und rufen Sie dann\n" +" Segmente -> Im Notationseditor öffnen auf.

              \n" + +#: ../docs/en/tips.cpp:111 +msgid "" +"

              ...that Rosegarden can export files for use by LilyPond, the high-quality " +"score typesetting system?

              \n" +"From the File menu, navigate to Export -> Export LilyPond File

              \n" +msgstr "" +"

              ...dass Rosegarden Dateien für die Verwendung mit Lilypond, dem System " +"für anspruchsvollen\n" +" Notensatz, exportieren kann? Öffnen Sie Datei->Export->Lilypond-Datei " +"exportieren

              \n" + +#: ../docs/en/tips.cpp:117 +#, fuzzy +msgid "" +"

              ...that Rosegarden can print via LilyPond, the high-quality score " +"typesetting system?

              \n" +"From the File menu, navigate to Preview with LilyPond. The " +"file\n" +"will be exported, rendered, and a preview will appear in KPDF, or one of\n" +"several other PDF viewers, where it can then be printed as well.

              \n" +msgstr "" +"

              ...dass Rosegarden auch über Lilypond, dem System für anspruchsvollen\n" +" Notensatz, drucken kann?

              \n" +"Wählen Sie im Datei-Menu Vorschau mit LilyPond. Die Datei wird " +"exportiert, gerendert und eine Vorschau über KGhostView oder einen der " +"diversen anderen PDF-Viewer angezeigt. Von dort kann sie dann ausgedruckt " +"werden.

              \n" + +#: ../docs/en/tips.cpp:125 +msgid "" +"

              ...that if you use the quantizer from within the notation view, you can " +"tell it to quantize only the timing used for notation -- making it possible " +"to have good looking notation and a human MIDI performance?

              \n" +msgstr "" +"

              ...dass der Quantisierer, wenn er aus der Notationsansicht aus aufgerufen " +"wird, nur das für\n" +" die Notation notwendige Timing quantisieren kann -- und auf diese Weise " +"eine gut aussehende\n" +" Notation und eine vollständig menschliche MIDI-Darbeitung ermöglicht?" +"

              \n" + +#: ../docs/en/tips.cpp:130 +msgid "" +"

              ...that you can change segment labels using the controls on the Segment " +"Parameters box\n" +"in the main window?

              \n" +msgstr "" +"

              ...dass Sie Segmentbeschriftungen über die Segmentparameter-Dialogbox im " +"Hauptfenster\n" +" ändern können?

              \n" + +#: ../docs/en/tips.cpp:136 +msgid "" +"

              ...that the number of tracks in new documents is based on the contents " +"of\n" +"your autoload.rg file?\n" +"

              \n" +"Whether you prefer to start with three tracks or 43, create a document that\n" +"contains the desired number of tracks, plus any other studio or document " +"properties settings\n" +"you wish to configure, and use Composition -> Studio -> Save Current " +"Document as Default\n" +"Studio to make this your new default.

              \n" +msgstr "" +"

              ...dass die Anzahl von Spuren in neuen Stücken vom Inhalt Ihrer autoload." +"rg-Datei abhängt?\n" +" Wenn Sie lieber mit 3 oder 43 Spuren anfangen wollen, erzeugen Sie einfach " +"ein Dokument mit der\n" +" gewünschten Anzahl von Spuren sowie der weiteren Sudio- oder " +"Stückeigenschaften, die Sie\n" +" konfigurieren möchten, und benutzen dann\n" +" Studio -> Aktuelles Studio als Standardstudio speichern, um dies zu " +"Ihren neuen\n" +" Standardeinstellungen zu machen.

              \n" + +#: ../docs/en/tips.cpp:147 +msgid "" +"

              ...that you can change the name of a track by double clicking on the " +"label? (The\n" +"label must be visible for this to work.)

              \n" +msgstr "" +"

              ...dass Sie den Namen einer Spur verändern können, indem Sie doppelt auf " +"die Beschriftung\n" +" klicken? (Damit das funktioniert, muss die Beschriftung sichtbar sein.)\n" + +#: ../docs/en/tips.cpp:153 +#, fuzzy +msgid "" +"

              ...that you can configure what happens when you double-click on a segment?" +"

              Go to Settings -> Configure Rosegarden and choose your " +"preferred editing window under the Behaviour tab.

              \n" +msgstr "" +"

              ...daß Sie einstellen können, was bei einen Doppelklick auf ein Segment " +"passieren soll? Gehen Sie nach Einstellungen->Rosegarden einrichten " +"und wählen Sie ihr bevorzugtes Editorfenster unter dem Verhalten " +"Reiter.

              \n" + +#: ../docs/en/tips.cpp:158 +msgid "" +"

              ...that Rosegarden is being developed as a community effort with\n" +"contributions from around the world?

              \n" +"The four most active developers live in London (England), Cannes, " +"Barcelona,\n" +"and... Christiansburg? (Christiansburg is a town of about 50,000 in\n" +"southwestern Virginia, USA.)

              \n" +"We have had contributors from elsewhere in the US, UK, Spain, Mexico, " +"Argentina, Germany,\n" +"Sweden, Russia, Japan, Finland, and Italy, just to name a few...

              \n" +msgstr "" +"

              ...dass Rosegarden von Freiwilligen aus der ganzen Welt entwickelt wird?" +"

              \n" +"Die vier zentralen Entwickler leben in London (Großbritannien), Cannes,\n" +"Barcelona und Christiansburg? (Christiansburg ist eine Stadt mit ca. 50,000\n" +"Einwohnern im Südwesten Virginias, USA)

              \n" +"Weitere Entwickler leben anderswo in den USA, Großbritanien, Spanien, " +"Mexiko, Argentinien, Deutschland, Schweden, Russland, Japan, Finnland und " +"Italien, um nur einige wenige zu nennen...

              \n" + +#: ../docs/en/tips.cpp:169 +msgid "" +"

              ...that Rosegarden is available in Spanish, French, German, Russian, " +"Welsh, Swedish, Italian and Estonian\n" +"translations? (Just to name a few.)

              \n" +"If you're interested in translating Rosegarden to another language, drop us " +"a\n" +"line at rosegarden-devel@lists.sourceforge.net.

              \n" +msgstr "" +"

              ...dass es Rosegarden auf Spanisch, Französisch, Deutsch, Russisch, " +"Walisisch, Schwedisch, Italienisch und Estisch gibt? (Um nur einige wenige " +"zu nennen)

              \n" +"Wenn Sie daran interessiert sind, Rosegarden in eine andere Sprache\n" +"zu übersetzen, schreiben Sie uns doch kurz eine Nachricht an\n" +"rosegarden-devel@lists.sourceforge.net.

              \n" + +#: ../docs/en/tips.cpp:177 +msgid "" +"

              ...that you can change the total number of bars in the composition via\n" +"Composition -> Change Composition Start and End?

              \n" +msgstr "" +"

              ...dass Sie die Gesamtzahl der Takte eines Stücks über\n" +" Komposition -> Dauer des Stücks verändern ändern können?

              \n" + +#: ../docs/en/tips.cpp:183 +msgid "" +"

              ...that you can see the difference between performance and display " +"duration\n" +"of duration-quantized notes in the notation editor?

              \n" +"Use Settings -> Show Raw Note Ruler to turn on this handy\n" +"feature.

              \n" +"Note that this feature does not work in page layout view.

              \n" +msgstr "" +"

              ...dass Sie den Unterschied zwischen Länge der Wiedergabe und Länge der " +"Notation für\n" +" längen-quantisierte Noten im Notationseditor sehen können?

              \n" +"Rufen Sie Einstellungen -> Rohnotenlineal zeigen auf, um dieses " +"nützliche Feature\n" +" einzuschalten.

              \n" +"Achtung: dieses Feature funktioniert nicht in der Seitenlayoutansicht.

              \n" + +#: ../docs/en/tips.cpp:192 +msgid "" +"

              ...that you can add tempo and time-signature changes by double-clicking " +"on the values displayed in the transport window or tempo rulers?

              \n" +msgstr "" +"

              ...dass Sie Veränderungen von Tempo und Taktart einfügen können, indem " +"Sie auf die im\n" +" Bedienfeld angezeigten Werte doppelt klicken?

              \n" + +#: ../docs/en/tips.cpp:197 +#, fuzzy +msgid "" +"

              ...that the transport window can display musical time, sample frame " +"count, and a visual metronome as well as real time?

              Just click on the " +"small button at the extreme top left of the window.

              \n" +msgstr "" +"

              ...dass das Bedienfeld sowohl Taktschläge und 24-fps SMPTE-Frames als " +"auch Echtzeit\n" +" anzeigen kann? Klicken Sie einfach auf den kleinen Knopf an der äußersten " +"linken oberen Ecke\n" +" des Fensters.

              \n" + +#: ../docs/en/tips.cpp:202 +#, fuzzy +msgid "" +"

              ...that you can select all notes of a particular pitch in the matrix " +"view, by shift-clicking on that pitch on the piano keyboard at the left?" +"

              If you shift-click-drag, you can select whole ranges too.

              \n" +msgstr "" +"

              ...dass Sie alle Noten einer bestimmten Höhe auswählen können, indem Sie " +"auf diese\n" +" Tonhöhe Umschalt-Klicken? Wenn Sie Umschalt-Klicken und Ziehen, können Sie " +"sogar ganze\n" +" Bereiche auswählen.

              \n" + +#: ../docs/en/tips.cpp:207 +#, fuzzy +msgid "" +"

              ...that you can set a loop in the main window by clicking-and-dragging on " +"the time ruler with Shift pressed?

              (If the ruler isn't visible, use " +"Settings -> Show Rulers.)

              \n" +msgstr "" +"

              ...dass Sie eine Schleife im Hauptfenster erzeugen können, indem Sie auf " +"die Zeitskala\n" +" Klicken-und-Ziehen und dabei die Umschalttaste drücken? (Wenn die Zeitskala " +"nicht sichtbar ist,\n" +" rufen Sie Einstellungen -> Lineale anzeigen auf.)

              \n" + +#: ../docs/en/tips.cpp:212 +#, fuzzy +msgid "" +"

              ...that if you're editing a section in the matrix or notation view, you " +"can\n" +"set that section to loop while you edit it?

              Select it and use " +"Tools ->\n" +"Local Cursor -> Set Loop to Selection, then hit Play.



              \n" +"This feature does not work quite as well for compositions that include " +"sampled\n" +"audio.\n" +msgstr "" +"

              ...das Sie einen Bereich, den Sie in der Matrix- oder Notationsansicht " +"berabeiten,\n" +" als Loop definieren können während Sie ihn bearbeiten? Selektieren Sie ihn\n" +"und wählen Sie Werkzeuge -> Lokaler Cursor -> Auswahl als Schleife " +"festlegen aus,\n" +" und drücken Sie Wiedergabe.


              \n" +"Diese Funktion funktioniert nur eingeschränkt gut, sofern die " +"Komposition\n" +"Audio-samples enthält
              \n" + +#: ../docs/en/tips.cpp:221 +msgid "" +"

              ...if you have more than one note or controller event at the same time, " +"you\n" +"can use the [ and ] keys to flip the stack of events around on the " +"controller\n" +"and velocity rulers in order to bring the item you wish to adjust into\n" +"focus.

              \n" +msgstr "" +"

              ...falls Sie mehrere Noten- oder Controller-Events zum gleichen Zeitpunkt " +"haben\n" +"dann können Sie deren Darstellungsreihenfolge im Anschlagdynamik- und " +"Controller-\n" +"Lineal mit den Tasten [ und ] verändern und so das Ereignis, das Sie " +"verändern\n" +"möchten, aktivieren.

              \n" + +#: ../docs/en/tips.cpp:229 +#, fuzzy +msgid "" +"

              ...that the notation view shows you notes using their display duration, " +"while the\n" +"matrix allows you to edit their performance duration?

              \n" +"Be careful with tied notes in the matrix. It is not apparent that they " +"are\n" +"tied, and if you split up a pair of tied notes, subsequent notation views " +"will\n" +"be confused and unhappy. This is an old bug that has been on our TODO list\n" +"for years. Sorry about that, folks. Patches welcome.\n" +"

              \n" +msgstr "" +"

              Die Notationsansicht stellt Noten in Ihrer Darstellungslänge dar, " +"wogegen\n" +"Sie im Matrixeditor die tatsächlich gespielte Länge anpassen können.

              \n" +"Seien Sie bei gebundenen Noten im Matrixeditor besonders aufmerksam.\n" +"Es ist ev. nicht offensichtlich, dass sie gebunden sind Sie können so " +"gebundene\n" +"Noten trennen, was wiederum die Notationsansicht \"verwirrt\".\n" +"Dies ist ein alter Fehler und seine Beseitigung befindet sich schon seit " +"Jahren\n" +"auf unserer TODO-Liste\n" +"Tut uns leid. Patches sind willkommen.\n" + +#: ../docs/en/tips.cpp:240 +#, fuzzy +msgid "" +"

              If you're working with a human performance and you need to insert some " +"new\n" +"notes, these new notes will sound for their entire written duration. To " +"blend\n" +"these new notes into a human performance, select them, then use Adjust -> " +"Interpret... \n" +"from the notation view to interpret any marks and massage their " +"performance\n" +"durations to something less mechanical.

              \n" +msgstr "" +"

              Falls Sie mit einer \"echten\" (gespielten MIDI-) Aufnahme arbeiten und " +"eine Note\n" +"einfügen wollen, so wird sie für die gesamte notierte Dauer erklingen. Um " +"die eingefügte\n" +"Note stilistisch in die Aufnahme einzupassen gehen Sie wie folgt vor:\n" +"Wählen Sie in der Notationsansicht Anpassen -> Noten -> interpretieren. Nun wird die Spieldauer der markierten Noten derart angepasst, dass es " +"weniger\n" +"mechanisch klingt.

              \n" + +#: ../docs/en/tips.cpp:249 +#, fuzzy +msgid "" +"

              ...that Rosegarden can export certain things to LilyPond that it cannot " +"yet\n" +"display within its own native interface?

              These new directives can be " +"inserted\n" +"via the T text insert tool in the notation view.

              \n" +"Load the example files\n" +"lilypond-alternative-endings.rg and lilypond-directives.rg for " +"a\n" +"demonstration of how to use the new exportable directives.

              \n" +"Use File -> Preview with\n" +"LilyPond to see what they look like on the exported page.

              \n" +"Be sure to turn on\n" +"Settings -> Show LilyPond Directives and Show Annotations " +"within\n" +"the notation view.

              \n" +msgstr "" +"

              Rosegarden kann jetzt Dinge nach LilyPond exportieren,\n" +"die es bisher noch nicht selbst darstellen kann. Die dafür zuständigen\n" +"neuen Anweisungen werden mit dem T text Einfügewerkzeug\n" +"in der Notationsansicht eingefügt.

              \n" +"Loaden Sie die Beispieldateien lilypond-alternative-endings.rg\n" +"und lilypond-directives.rg um zu sehen, wie diese neuen\n" +"exportierbaren Anweisungen verwendet werden.

              \n" +"Wählen Sie Datei -> Vorschau mit LilyPond um zu sehen,\n" +"wie sie auf der exportierten Seite aussehen.

              \n" +"Achten Sie darauf Einstellungen -> Anzeige LilyPond Anweisungen\n" +"sowie Zeige Ergänzugen in der Notationsansicht einzuschalten.\n" + +#: ../docs/en/tips.cpp:264 +#, fuzzy +msgid "" +"

              ...that Rosegarden has track parameters allowing you to Create " +"segments with: certain\n" +"properties by default?

              You can pre-select the clef, transposition, " +"colour, and specify\n" +"the highest and lowest playable notes (notes outside this range display in\n" +"red by default). Then draw a segment with the pencil, or record one, and " +"any\n" +"new segments created on this track will take these properties as segment\n" +"parameters.

              \n" +"These parameters do not apply to audio tracks.

              \n" +msgstr "" +"

              Rosegarden unterstützt jetzt die Vorauswahl von Spurparametern für\n" +"Erzeuge Segmente mit: bestimmten Eigenschaften. Sie können\n" +"den Schlüssel, Transposition, Farbe sowie höchste und tiefste spielbare\n" +"Note (Noten ausserhalb dieses Bereiches werden standardmässig in rot\n" +"dargestellt). Jedes neue Segment auf dieser Spur, sei es mit dem Stift\n" +"gezeichtnet oder aufgenommen, hat dann diese Eigenschaften als\n" +"Segmentparameter.

              \n" +"Dies gilt nicht für Audiospuren.

              \n" + +#: ../docs/en/tips.cpp:275 +#, fuzzy +msgid "" +"

              ...that Rosegarden has a database of preset parameters describing more " +"than 300\n" +"musical instruments from the real world, grouped into several convenient\n" +"categories?

              Each preset contains a clef, transposition, and playable " +"range\n" +"suggestions for both amateur and professional players.

              Click the\n" +"Load button in the new track parameters box to get started! (If " +"you\n" +"do not see a Load button, be sure your parameter panel is set for\n" +"tabbed mode, rather than stacked mode.)

              (Special thanks to " +"Magnus\n" +"Johansson for assembling this extraordinary database.)

              \n" +msgstr "" +"

              Rosegarden verfügt jetzt über eine Datenbank mit mehr als 300\n" +"Voreinstellungen (Presets) für reale Musikinstrumente, die in verschiedene\n" +"praktische Kategorien gruppiert sind. Jede Voreinstellung umfasst den " +"Schlüssel, ev. Transposition sowie Vorschläge für den spielbaren\n" +"Bereich sowohl für Amateure als auch professionelle Spieler.

              \n" +"Klicken Sie auf den Laden Knopf in der neuen Spurparameterbox\n" +"um sich damit vertraut zu machen.(falls Sie keine Laden Knopf\n" +"sehen überprüfen Sie bitte, ob sich die Parameter Schaltfläche im \"Tabbed " +"Mode\"\n" +"befindet und nicht im \"Stapelmodus\".)

              (Besonderer Dank\n" +"gilt Magnus Johansson, der diese außergeöhnliche Datenbank zusammengestellt\n" +"hat.)

              \n" + +#: ../docs/en/tips.cpp:287 +#, fuzzy +msgid "" +"

              ...that when exporting to Lilypond, you can merge tracks that have the " +"same name onto a single staff?

              For example, if there are three voices " +"in a single part, write each\n" +"voice as an independent segment/staff, each on a separate track. Give all\n" +"three tracks the same name, and select [x] Merge tracks that have the " +"same\n" +"name from the options dialog that appears when you export to, or " +"preview\n" +"with LilyPond.

              \n" +"The tracks must have a non-default name for this to work.

              \n" +msgstr "" +"

              Sie können mehrere gleichnamige Spuren in ein einziges zusammengefügtes\n" +"System in LilyPond exportieren. Besteht z.B. ein Part aus drei einzelnen\n" +"Stimmen, dann notieren Sie die einzelnen Stimmen in getrennten Segmenten\n" +"auf getrennten Spuren. Benennen Sie alle Spuren gleich und wählen\n" +"[x] Zusammenführen gleichnamiger Spuren im Auswahldialog,\n" +"der beim Export nach oder der Vorschau in LilyPond erscheint.

              \n" +"Damit das funktioniert dürfen die Spuren nicht die Standardnamen haben.

              \n" + +#: ../docs/en/tips.cpp:297 +msgid "" +" \t \n" +"

              ...that you can use the mouse wheel to scroll up and down, scroll left " +"and right, and zoom in and out?

              Just roll the wheel to scroll up or " +"down. Hold Alt as well to scroll left or right, or hold Ctrl to zoom in and " +"out.

              \t \n" +msgstr "" + +#: ../docs/en/tips.cpp:303 +msgid "" +" \t \n" +"

              ...that you can time-stretch an audio segment -- stretching or squashing " +"a\n" +"sample to a different duration without changing its pitch -- just by\n" +"dragging its right edge with the Ctrl key pressed?

              \n" +msgstr "" + +#: ../docs/en/tips.cpp:311 +msgid "" +" \t \n" +"

              ...that you can add audio to your Rosegarden composition just by dragging " +"an audio file from your file manager and dropping it on the Rosegarden " +"segment canvas? (Make sure you drop it on an audio track!)

              You can " +"also drop audio files from Rosegarden's audio file manager window onto the " +"segment canvas, and from other programs onto the audio file manager.

              \n" +msgstr "" + +#: ../docs/en/tips.cpp:317 +msgid "" +" \t \n" +"

              ...that you can set the tempo to match the duration of an audio segment " +"if you know it's an exact number of bars or beats long?

              Just select " +"the audio segment and use Composition -> Tempo and Time Signature -> Set " +"Tempo to Audio Segment Duration.

              \n" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:1 +msgid "Feta Pixmaps" +msgstr "Feta Bitmap" + +#: ../data/fonts/mappings/fonts.cpp:2 ../data/fonts/mappings/fonts.cpp:7 +msgid "GNU Lilypond" +msgstr "GNU Lilypond" + +#: ../data/fonts/mappings/fonts.cpp:3 ../data/fonts/mappings/fonts.cpp:8 +msgid "Copyright (c) 1997--2003 Han-Wen Nienhuys and Jan Nieuwenhuizen" +msgstr "Copyright (c) 1997--2003 Han-Wen Nienhuys und Jan Nieuwenhuizen" + +#: ../data/fonts/mappings/fonts.cpp:4 ../data/fonts/mappings/fonts.cpp:9 +#: ../data/fonts/mappings/fonts.cpp:14 ../data/fonts/mappings/fonts.cpp:19 +#: ../data/fonts/mappings/fonts.cpp:24 ../data/fonts/mappings/fonts.cpp:29 +#: ../data/fonts/mappings/fonts.cpp:34 ../data/fonts/mappings/fonts.cpp:39 +#: ../data/fonts/mappings/fonts.cpp:44 ../data/fonts/mappings/fonts.cpp:49 +#: ../data/fonts/mappings/fonts.cpp:54 +msgid "Chris Cannam" +msgstr "Chris Cannam" + +#: ../data/fonts/mappings/fonts.cpp:5 ../data/fonts/mappings/fonts.cpp:40 +msgid "pixmap" +msgstr "Bitmap" + +#: ../data/fonts/mappings/fonts.cpp:6 +msgid "Feta" +msgstr "Feta" + +#: ../data/fonts/mappings/fonts.cpp:10 ../data/fonts/mappings/fonts.cpp:15 +#: ../data/fonts/mappings/fonts.cpp:20 ../data/fonts/mappings/fonts.cpp:25 +#: ../data/fonts/mappings/fonts.cpp:30 ../data/fonts/mappings/fonts.cpp:35 +#: ../data/fonts/mappings/fonts.cpp:45 ../data/fonts/mappings/fonts.cpp:50 +#: ../data/fonts/mappings/fonts.cpp:55 +msgid "scalable" +msgstr "skalierbar" + +#: ../data/fonts/mappings/fonts.cpp:11 +msgid "Fughetta" +msgstr "Fughetta" + +#: ../data/fonts/mappings/fonts.cpp:12 +#, fuzzy +msgid "" +"Created by Blake Hodgetts; freely redistributable. See http://www.efn.org/" +"~bch/aboutfonts.html" +msgstr "" +"Created by Blake Hodgetts; freely redistributable. See http://www.efh.org/" +"~bch/aboutfonts.html" + +#: ../data/fonts/mappings/fonts.cpp:13 +msgid "Copyright 1995-1999 Blake Hodgetts" +msgstr "Copyright 1995-1999 Blake Hodgetts" + +#: ../data/fonts/mappings/fonts.cpp:16 +msgid "Inkpen" +msgstr "Inkpen" + +#: ../data/fonts/mappings/fonts.cpp:17 +msgid "Inkpen is part of Sibelius, but other fonts may use the same mappings." +msgstr "" +"Inkpen gehört zu Sibelius, aber andere Schriftarten verwenden möglicherweise " +"das gleiche Mapping." + +#: ../data/fonts/mappings/fonts.cpp:18 ../data/fonts/mappings/fonts.cpp:28 +msgid "Copyright Sibelius Software Ltd" +msgstr "Copyright Sibelius Software Ltd" + +#: ../data/fonts/mappings/fonts.cpp:21 +msgid "Maestro" +msgstr "Maestro" + +#: ../data/fonts/mappings/fonts.cpp:22 +msgid "Maestro is part of Finale, but other fonts use the same mappings." +msgstr "" +"Maestro gehört zu Finale, aber andere Schriftarten verwenden möglicherweise " +"das gleiche Mapping." + +#: ../data/fonts/mappings/fonts.cpp:23 ../data/fonts/mappings/fonts.cpp:33 +msgid "Copyright Coda Inc" +msgstr "Copyright Coda Inc" + +#: ../data/fonts/mappings/fonts.cpp:27 +msgid "Opus is part of Sibelius, but other fonts may use the same mappings." +msgstr "" +"Opus gehört zu Sibelius, aber andere Schriftarten verwenden möglicherweise " +"das gleiche Mapping." + +#: ../data/fonts/mappings/fonts.cpp:31 +msgid "Petrucci" +msgstr "Petrucci" + +#: ../data/fonts/mappings/fonts.cpp:32 +msgid "Petrucci is part of Finale, but other fonts use the same mappings." +msgstr "" +"Petrucci gehört zu Finale, aber andere Schriftarten verwenden möglicherweise " +"das gleiche Mapping." + +#: ../data/fonts/mappings/fonts.cpp:36 +msgid "RG21" +msgstr "RG21" + +#: ../data/fonts/mappings/fonts.cpp:37 +msgid "Rosegarden 2.1" +msgstr "Rosegarden 2.1" + +#: ../data/fonts/mappings/fonts.cpp:38 +msgid "Copyright (c) 1994--2001 Chris Cannam" +msgstr "Copyright (c) 1994--2001 Chris Cannam" + +#: ../data/fonts/mappings/fonts.cpp:41 +msgid "Sonata" +msgstr "Sonata" + +#: ../data/fonts/mappings/fonts.cpp:42 +msgid "Adobe" +msgstr "Adobe" + +#: ../data/fonts/mappings/fonts.cpp:43 +msgid "Copyright Adobe Inc" +msgstr "Copyright Adobe Inc" + +#: ../data/fonts/mappings/fonts.cpp:46 +msgid "Steinberg" +msgstr "Steinberg" + +#: ../data/fonts/mappings/fonts.cpp:47 +msgid "The Steinberg Notation font is part of Cubase." +msgstr "Die Schriftart Steinberg Notation ist Teil von Cubase." + +#: ../data/fonts/mappings/fonts.cpp:48 +msgid "Copyright Steinberg Inc" +msgstr "Copyright Steinberg Inc" + +#: ../data/fonts/mappings/fonts.cpp:51 +msgid "Xinfonia" +msgstr "Xinfonia" + +#: ../data/fonts/mappings/fonts.cpp:52 +msgid "xemo.org" +msgstr "xemo.org" + +#: ../data/fonts/mappings/fonts.cpp:53 +msgid "Copyright 2001-2003 Xemus Software LLC" +msgstr "Copyright 2001-2003 Xemus Software LLC" + +#: ../data/styles/styles.cpp:1 +msgid "Classical" +msgstr "Klassisch" + +#: ../data/styles/styles.cpp:2 +msgid "Cross" +msgstr "Kreuz" + +#: ../data/styles/styles.cpp:3 +msgid "Mensural" +msgstr "Mensurisch" + +#: ../data/styles/styles.cpp:4 +msgid "Triangle" +msgstr "Dreieck" + +#, fuzzy +#~ msgid "Set Quick Marker" +#~ msgstr "Marker löschen" + +#~ msgid "" +#~ "Finnish translation\n" +#~ "LilyPond export fixes/improvements" +#~ msgstr "" +#~ "Finnische Übersetzung\n" +#~ "\n" +#~ "LilyPond Export Fehlerbeseitigung/Verbesserungen" + +#, fuzzy +#~ msgid "LilyPond previews not available" +#~ msgstr "LilyPond-Vorschau Einstellungen" + +#, fuzzy +#~ msgid "Audio file importer not available" +#~ msgstr "Schreib-Buffer für Audiodateien" + +#~ msgid " Triplet Chord" +#~ msgstr " Triolen-Akkord" + +#~ msgid " Chord" +#~ msgstr " Akkord" + +#~ msgid " Triplet" +#~ msgstr " Triole" + +#~ msgid "Making grace notes..." +#~ msgstr "Verzierungen..." + +#~ msgid "Making non-grace notes..." +#~ msgstr "Noten ohne Verzierungen..." + +#~ msgid "Marker name " +#~ msgstr "Marker Name" + +#~ msgid "Time Signature font" +#~ msgstr "Schriftart für Taktart" + +#~ msgid "&Halve Speed" +#~ msgstr "&Halbes Tempo" + +#~ msgid "&Double Speed" +#~ msgstr "&Doppeltes Tempo" + +#~ msgid "Halving speed..." +#~ msgstr "Halbiere Tempo..." + +#~ msgid "Doubling speed..." +#~ msgstr "Verdoppele Tempo..." + +#~ msgid "Add staff group bracket" +#~ msgstr "Füge Systemgruppierungsklammer hinzu" + +#~ msgid "Make subsequent bar lines hidden" +#~ msgstr "Verstecke alle folgenden Taktstriche" + +#~ msgid "Make &Grace Notes" +#~ msgstr "&Verzierungen einfügen" + +#~ msgid "Change Te&mpo..." +#~ msgstr "Te&mpo ändern..." + +#~ msgid "Insert Fretboard" +#~ msgstr "Griffbrett einfügen" + +#~ msgid "&Restore Computed Accidentals" +#~ msgstr "Stelle berechnete Vorzeichen wieder her" + +#~ msgid "LilyPond export/preview options" +#~ msgstr "Optionen für LilyPond Export/Vorschau" + +#~ msgid "LilyPond 2.6" +#~ msgstr "LilyPond 2.6" + +#~ msgid "LilyPond 2.8" +#~ msgstr "LilyPond 2.8" + +#, fuzzy +#~ msgid "LilyPond 2.12" +#~ msgstr "LilyPond 2.2" + +#~ msgid "Export Document Properties as \\header block" +#~ msgstr "Dokumenteigenschaften als \\Header-Block exportieren" + +#, fuzzy +#~ msgid "prime" +#~ msgstr "Zeit" + +#, fuzzy +#~ msgid " and 1 octave" +#~ msgstr "Oktave höher" + +#, fuzzy +#~ msgid " and %1 octaves" +#~ msgstr "%1 Oktave höher" + +#, fuzzy +#~ msgid "Transpose by Interval" +#~ msgstr "Transponieren" + +#~ msgid "Manage Files Associated with A&udio Segments" +#~ msgstr "Verwalte mit A&udio Segmenten verbundene Dateien" + +#~ msgid "&Add Multiple Tracks..." +#~ msgstr "Spuren &hinzufügen..." + +#~ msgid "Split Segments at Time" +#~ msgstr "Segmente am Zeitpunkt teilen" + +#~ msgid "Split Segment at Time" +#~ msgstr "Segment am Zeitpunkt teilen" + +#~ msgid "Add Multiple Tracks" +#~ msgstr "Mehrere Spuren hinzufügen" + +#~ msgid "" +#~ "1.2.3 splash screen photo (of Michael's rose garden)\n" +#~ "new splash screen photo (of Michael McIntyre's\n" +#~ "instruments along with a rose from the garden of Hassell Arnold Hale, " +#~ "1916-2006,\n" +#~ "may he rest in peace)" +#~ msgstr "" +#~ "1.2.3 Splash Photo (von Michael's Rosengarten)\n" +#~ "Neues Splash Photo (von Michael McIntyre's\n" +#~ "Instruments zusammen mit einer Rose aus dem Garten von Hassell Arnold " +#~ "Hale, 1916-2006,\n" +#~ "möge er in Frieden ruhen)" + +#~ msgid "Event List" +#~ msgstr "Eventliste" + +#~ msgid "External Editors" +#~ msgstr "Externe Editoren" + +#~ msgid "Enable auto-save" +#~ msgstr "Automatisches Speichern aktivieren" + +#~ msgid "Auto-save" +#~ msgstr "Automatisches Speichern" + +#~ msgid "Show detailed status" +#~ msgstr "Statusdetails zeigen" + +#~ msgid "JACK command (including path as necessary)" +#~ msgstr "JACK Aufruf (inklusive Pfad, soweit notwendig)" + +#~ msgid "" +#~ "Longer buffers usually improve playback quality, but use more memory and " +#~ "slow response." +#~ msgstr "" +#~ "Größere Buffer verbessern für gewöhnlich die Wiedergabequalität, " +#~ "benötigen aber mehr Hauptspeicher und verlängern die Reaktionszeit." + +#~ msgid "Event read-ahead" +#~ msgstr "Event Vorauslesen" + +#~ msgid "Audio mix buffer" +#~ msgstr "Audio-Mixbuffer" + +#~ msgid "Audio file read buffer" +#~ msgstr "Lese-Buffer für Audiodateien" + +#~ msgid "Audio file write buffer" +#~ msgstr "Schreib-Buffer für Audiodateien" + +#~ msgid "Per-file limit for cacheable audio files" +#~ msgstr "Limit je Datei für cacheable Audio Dateien" + +#~ msgid "20 msec" +#~ msgstr "20 msec" + +#~ msgid "5 sec" +#~ msgstr "5 sec" + +#~ msgid "per file" +#~ msgstr "je Datei" + +#~ msgid "32KB" +#~ msgstr "32KB" + +#~ msgid "32MB" +#~ msgstr "32MB" + +#~ msgid "Audio mix and monitor mode:" +#~ msgstr "Audio Mix und Monitor Modus:" + +#~ msgid "Low latency" +#~ msgstr "Geringe Latenz" + +#~ msgid "Buffered" +#~ msgstr "Gepuffert" + +#~ msgid "Create post-fader outputs for audio instruments" +#~ msgstr "Erzeuge Post-Fader Ausgänge für Audio Instrumente" + +#~ msgid "Create post-fader outputs for submasters" +#~ msgstr "Erzeuge Post-Fader Ausgänge für Gruppen" + +#~ msgid "Record and Mix" +#~ msgstr "Aufnahme und Mix" + +#~ msgid "JACK transport mode" +#~ msgstr "JACK Transportmodus" + +#~ msgid "Sync" +#~ msgstr "Sync" + +#~ msgid "Synchronisation" +#~ msgstr "Synchronisation" + +#~ msgid "%1 msec / %2 KB %3" +#~ msgstr "%1 msec / %2 KB %3" + +#~ msgid "%1 msec / %2 MB %3" +#~ msgstr "%1 msec / %2 MB %3" + +#~ msgid "%1 sec / %2 KB %3" +#~ msgstr "%1 sec / %2 KB %3" + +#~ msgid "%1 sec / %2 MB %3" +#~ msgstr "%1 sec / %2 MB %3" + +#~ msgid "%1 msec" +#~ msgstr "%1 msec" + +#~ msgid "%1 sec" +#~ msgstr "%1 sec" + +#~ msgid "%1 KB" +#~ msgstr "%1 KB" + +#~ msgid "%1 MB" +#~ msgstr "%1 MB" + +#~ msgid "Other fonts" +#~ msgstr "Andere Schriftarten" + +#~ msgid "Rescan available fonts" +#~ msgstr "Verfügbare Schriftarten neu einlesen" + +#~ msgid "" +#~ "Rosegarden can apply automatic quantization to recorded or imported MIDI " +#~ "data for notation purposes only. This does not affect playback, and does " +#~ "not affect editing in any of the views except notation." +#~ msgstr "" +#~ "Rosegarden kann automatische Quantisierung auf aufgenommene oder " +#~ "importierte MIDI-Daten nur zum Zweck der Notation anwenden. Dies " +#~ "beinflußt weder die Wiedergabe noch das Ändern in einer der Sichten " +#~ "ausser bei Notation." + +#~ msgid "Sequencer" +#~ msgstr "Sequencer" + +#~ msgid "Sequencer Settings" +#~ msgstr "Sequencer-Einstellungen" + +#~ msgid "Audio auto-fade" +#~ msgstr "Automatische Audio-Überblendung" + +#~ msgid "Fade in" +#~ msgstr "Einblenden" + +#~ msgid "Fade out" +#~ msgstr "Ausblenden" + +#~ msgid "Range" +#~ msgstr "Bereich" + +#~ msgid "" +#~ "_: used internally for spacing\n" +#~ "High: ----" +#~ msgstr "" +#~ "_: intern als Zwischenraum verwendet\n" +#~ "Hoch: ----" + +#~ msgid "High: ---" +#~ msgstr "Hoch: ---" + +#~ msgid "Low: ----" +#~ msgstr "Tief: ----" + +#~ msgid " ms" +#~ msgstr " ms" + +#~ msgid "&Fretboard" +#~ msgstr "&Griffbrett" + +#~ msgid "Restore &Computed Positions" +#~ msgstr "Berechnete Positionen wiederherstellen" + +#~ msgid "" +#~ "You encountered an enharmonic resolution bug somewhere during this " +#~ "operation. You may wish to save a copy of your current composition and " +#~ "email it to dmmcintyr@users.sourceforge.net for analysis.\n" +#~ "\n" +#~ "In the meantime, you will probably need to make manual adjustments to the " +#~ "file you've just exported." +#~ msgstr "" +#~ "Während der letzten Operation trat ein \"enharmonic resolution\" Fehler " +#~ "auf. Bitte speichern Sie eine Kopie des aktuellen Zustands Ihrer " +#~ "Komposition und senden es per Email an dmmcintyr@users.sourceforge.net " +#~ "zur weiteren Analyse.\n" +#~ "\n" +#~ "In der Zwischenzeit werden Sie wohl nicht umhinkommen, händische " +#~ "Anpassungen an der Datei, die Sie gerade exportiert haben, vorzunehmen." + +#~ msgid "&Tempo and Time Signature" +#~ msgstr "&Tempo und Taktart" + +#~ msgid "&Split..." +#~ msgstr "Auf&teilen..." + +#~ msgid "&Editor Tools" +#~ msgstr "Editor-Werkzeugleiste" + +#~ msgid "&Beams" +#~ msgstr "&Balken" + +#~ msgid "&Indications" +#~ msgstr "Bezeichnungen" + +#~ msgid "Trip&lets and Tuplets" +#~ msgstr "Trio&len und n-Tolen" + +#~ msgid "S&tem Direction" +#~ msgstr "Richtung des &Halses" + +#~ msgid "&Clear" +#~ msgstr "Lös&chen" + +#~ msgid "A&dd Alias" +#~ msgstr "Alias hinzufügen" + +#~ msgid "C&ancel" +#~ msgstr "&Abbrechen" + +#~ msgid "&Ok" +#~ msgstr "&Ok" + +#~ msgid "Toggle &Mode" +#~ msgstr "&Modus wechseln" + +#~ msgid "Scale" +#~ msgstr "Skala" + +#~ msgid "Modifier" +#~ msgstr "Modifizierer" + +#~ msgid "Suffix" +#~ msgstr "Endung" + +#~ msgid "&New" +#~ msgstr "&Neu" + +#~ msgid "Additivies" +#~ msgstr "Zusätze" + +#~ msgid "Fingering" +#~ msgstr "Fingersatz" + +#~ msgid "" +#~ "

              When exporting to LilyPond, you will see extra empty bars if the " +#~ "Rosegarden\n" +#~ "composition is longer than the notation it contains. To cure this, " +#~ "navigate\n" +#~ "to Composition -> Change Composition Start and End... then set " +#~ "End\n" +#~ "Bar to the end of your notation.

              \n" +#~ msgstr "" +#~ "

              Beim Export nach LilyPond kann es vorkommen, dass Sie zusätzliche\n" +#~ "leere Takte sehen, nämlich genau dann, wenn die Rosegarden Komposition\n" +#~ "länger ist, als tatsächliche Notation vorhanden ist.\n" +#~ "Um das zu bereinigen gehen Sie zu Komposition -> Komposition Anfang " +#~ "und Ende anpassen...\n" +#~ "und dann setzen Sie Schlusstakt auf das Notationsende.

              \n" + +#~ msgid "" +#~ "

              You can use the mouse wheel to scroll up and down, or to scroll left " +#~ "and right (by holding the Alt key at the same time), or to zoom in and " +#~ "out (by holding the Control key).

              \n" +#~ msgstr "" +#~ "

              Mit dem Mausrad können hoch und runter scrollen, links und\n" +#~ "rechts (wenn Sie gleichzeitig die ALT-Taste drücken), oder hinein bzw.\n" +#~ "heraus Zoomen (gleichzeitig die STRG/CTRL-Taste drücken).

              \n" + +#~ msgid "LilyPond 2.4" +#~ msgstr "LilyPond 2.4" + +#~ msgid "Paper size to use in \\paper block" +#~ msgstr "Zu benutzende Papiergrösse im \\paper-Block" + +#~ msgid "LilyPond font size" +#~ msgstr "Fontgröße für LilyPond" + +#~ msgid "Do not export muted tracks" +#~ msgstr "Stummgeschaltete Spuren nicht exportieren" + +#~ msgid "Write bar checks at end of measures" +#~ msgstr "\"Bar Checks\" am Ende des Takts schreiben" + +#~ msgid "Half Speed" +#~ msgstr "Halbes Tempo" + +#~ msgid "Double Speed" +#~ msgstr "Doppeltes Tempo" + +#~ msgid " (takes effect only from next restart)" +#~ msgstr " (wird erst nach dem nächsten Programmstart wirksam)" + +#~ msgid "&Select" +#~ msgstr "&Auswählen" + +#~ msgid "Snap to 1/64" +#~ msgstr "Auf 64tel einrasten" + +#~ msgid "Snap to 1/48" +#~ msgstr "Auf Achtel einrasten" + +#~ msgid "Snap to 1/32" +#~ msgstr "Auf 32tel einrasten" + +#~ msgid "Snap to 1/24" +#~ msgstr "Auf Viertel einrasten" + +#~ msgid "Snap to 1/16" +#~ msgstr "Auf 16tel einrasten" + +#~ msgid "Snap to 1/12" +#~ msgstr "Auf Halbe einrasten" + +#~ msgid "Snap to 1/8" +#~ msgstr "Auf Achtel einrasten" + +#~ msgid "Snap to 1/6" +#~ msgstr "Auf Sechstel einrasten" + +#~ msgid "Snap to 1/4" +#~ msgstr "Auf Viertel einrasten" + +#~ msgid "Snap to &Unit" +#~ msgstr "Auf &Einheit einrasten" + +#~ msgid "%1 (%2.%3s)" +#~ msgstr "%1 (%2.%3s)" + +#~ msgid "%1 (%2): %3" +#~ msgstr "%1 (%2): %3" + +#~ msgid "Add Fretboard" +#~ msgstr "Griffbrett hinzufügen" + +#~ msgid "Getting sound driver status..." +#~ msgstr "Status des Soundtreibers wird geholt..." + +#~ msgid "Distribute Audio on &MIDI" +#~ msgstr "Audio auf &MIDI verteilen" + +#~ msgid "Cannot add file %1: %2" +#~ msgstr "Kann Datei %1 nicht hinzufügen: %2" + +#~ msgid "Enable" +#~ msgstr "Aktivieren" + +#~ msgid "from:" +#~ msgstr "Von:" + +#~ msgid "to:" +#~ msgstr "Bis:" + +#~ msgid "unlimited" +#~ msgstr "unbegrenzt" + +#~ msgid "Number:" +#~ msgstr "Nummer" + +#~ msgid "Value:" +#~ msgstr "Wert:" + +#~ msgid "Wheel Events" +#~ msgstr "Modulationsrad Events" + +#~ msgid "Amount:" +#~ msgstr "Betrag:" + +#~ msgid "Pitch from" +#~ msgstr "Tonhöhe von" + +#~ msgid "Pitch to" +#~ msgstr "Tonhöhe bin" + +#~ msgid "High: %1" +#~ msgstr "Hoch: %1" + +#~ msgid "[+]" +#~ msgstr "[+]" + +#~ msgid "&Velocity" +#~ msgstr "Anschlagstärke" diff --git a/po/en.po b/po/en.po new file mode 100644 index 0000000..8c5523a --- /dev/null +++ b/po/en.po @@ -0,0 +1,10792 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: en\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-04-24 18:19-0400\n" +"PO-Revision-Date: 2003-04-26 11:55+0200\n" +"Last-Translator: Richard Bown \n" +"Language-Team: none>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/gui/dialogs/RescaleDialog.cpp:51 rc.cpp:192 rc.cpp:312 +#, no-c-format +msgid "Rescale" +msgstr "" + +#: ../src/gui/dialogs/RescaleDialog.cpp:56 +msgid "Duration of selection" +msgstr "" + +#: ../src/gui/dialogs/RescaleDialog.cpp:62 +msgid "Adjust times of following events accordingly" +msgstr "" + +#: ../src/gui/dialogs/PitchDialog.cpp:45 +#: ../src/gui/dialogs/RescaleDialog.cpp:72 +#: ../src/gui/dialogs/TimeDialog.cpp:51 ../src/gui/dialogs/TimeDialog.cpp:68 +#: ../src/gui/studio/BankEditorDialog.cpp:109 +msgid "Reset" +msgstr "" + +#: ../src/commands/segment/SegmentSplitByPitchCommand.cpp:46 +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:46 +msgid "Split by Pitch" +msgstr "" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:54 +msgid "Starting split pitch" +msgstr "" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:57 +msgid "Range up and down to follow music" +msgstr "" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:63 +msgid "Duplicate non-note events" +msgstr "" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:66 +msgid "Clef handling:" +msgstr "" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:69 +msgid "Leave clefs alone" +msgstr "" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:70 +msgid "Guess new clefs" +msgstr "" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:71 +msgid "Use treble and bass clefs" +msgstr "" + +#: ../src/gui/dialogs/DocumentConfigureDialog.cpp:64 +msgid "Document Properties" +msgstr "" + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:45 +#: ../src/gui/editors/notation/NotationView.cpp:6048 +msgid "Make Ornament" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:183 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:179 +#: ../src/gui/dialogs/EventEditDialog.cpp:128 +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:49 +#: ../src/gui/studio/DeviceEditorDialog.cpp:74 +#: ../src/gui/studio/NameSetEditor.cpp:72 +#: ../src/gui/widgets/ColourTable.cpp:51 +msgid "Name" +msgstr "" + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:51 +msgid "" +"The name is used to identify both the ornament\n" +"and the triggered segment that stores\n" +"the ornament's notes." +msgstr "" + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:54 +msgid "Name: " +msgstr "" + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:57 +#: ../src/gui/editors/eventlist/EventView.cpp:717 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:92 +msgid "Base pitch" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:57 +#: ../src/gui/editors/eventlist/EventView.cpp:140 +msgid "Text" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:66 +msgid "Specification" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:68 +msgid "Preview" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:72 +msgid "Text: " +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:79 +msgid "Style: " +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:90 +msgid "Dynamic" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:93 +msgid "Direction" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:96 +msgid "Local Direction" +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:63 +#: ../src/gui/dialogs/TextEventDialog.cpp:99 +#: ../src/gui/editors/tempo/TempoView.cpp:91 +msgid "Tempo" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:102 +msgid "Local Tempo" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:105 +msgid "Lyric" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:108 +#: ../src/gui/editors/notation/NotationView.cpp:4242 +msgid "Chord" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:111 +msgid "Annotation" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:114 +msgid "LilyPond Directive" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:138 +msgid "Verse: " +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:148 +msgid "Dynamic: " +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:152 +msgid "ppp" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:153 +msgid "pp" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:154 +msgid "p" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:155 +msgid "mp" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:156 +msgid "mf" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:157 +msgid "f" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:158 +msgid "ff" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:159 +msgid "fff" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:160 +msgid "rfz" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:161 +msgid "sf" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:165 +msgid "Direction: " +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:174 +msgid " ," +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:175 +msgid "D.C. al Fine" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:176 +msgid "D.S. al Fine" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:177 +msgid "Fine" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:178 +msgid "D.S. al Coda" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:179 +msgid "to Coda" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:180 +msgid "Coda" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:184 +msgid "Local Direction: " +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:188 +msgid "accel." +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:189 +msgid "ritard." +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:190 +msgid "ralletando" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:191 +msgid "a tempo" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:192 +msgid "legato" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:193 +msgid "simile" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:194 +msgid "pizz." +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:195 +msgid "arco" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:196 +msgid "non vib." +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:197 +msgid "sul pont." +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:198 +#: ../src/gui/dialogs/TextEventDialog.cpp:200 +msgid "sul tasto" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:199 +msgid "con legno" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:201 +msgid "sul G" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:202 +msgid "ordinario" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:203 +msgid "Muta in " +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:204 +msgid "volti subito " +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:205 +msgid "soli" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:206 +msgid "div." +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:210 +msgid "Tempo: " +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:214 +#: ../src/gui/dialogs/TextEventDialog.cpp:238 +msgid "Grave" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:215 +#: ../src/gui/dialogs/TextEventDialog.cpp:239 +msgid "Adagio" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:216 +#: ../src/gui/dialogs/TextEventDialog.cpp:240 +msgid "Largo" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:217 +#: ../src/gui/dialogs/TextEventDialog.cpp:241 +msgid "Lento" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:218 +#: ../src/gui/dialogs/TextEventDialog.cpp:242 +msgid "Andante" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:219 +#: ../src/gui/dialogs/TextEventDialog.cpp:243 +msgid "Moderato" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:220 +#: ../src/gui/dialogs/TextEventDialog.cpp:244 +msgid "Allegretto" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:221 +#: ../src/gui/dialogs/TextEventDialog.cpp:245 +msgid "Allegro" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:222 +#: ../src/gui/dialogs/TextEventDialog.cpp:246 +msgid "Vivace" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:223 +#: ../src/gui/dialogs/TextEventDialog.cpp:247 +msgid "Presto" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:224 +#: ../src/gui/dialogs/TextEventDialog.cpp:248 +msgid "Prestissimo" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:225 +#: ../src/gui/dialogs/TextEventDialog.cpp:249 +msgid "Maestoso" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:226 +#: ../src/gui/dialogs/TextEventDialog.cpp:250 +msgid "Sostenuto" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:227 +#: ../src/gui/dialogs/TextEventDialog.cpp:251 +msgid "Tempo Primo" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:234 +msgid "Local Tempo: " +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:255 +msgid "Directive: " +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:312 +msgid "Example" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:65 +msgid "Event Filter" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:86 +msgid "Note Events" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:90 +msgid "lowest:" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:93 +msgid "highest:" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:96 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:141 +#: ../src/gui/widgets/PitchChooser.cpp:53 +msgid "Pitch:" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:99 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:163 +msgid "Velocity:" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:102 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:129 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:257 +msgid "Duration:" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:107 +#: ../src/gui/dialogs/EventFilterDialog.cpp:114 +#: ../src/gui/dialogs/EventFilterDialog.cpp:121 +msgid "include" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:108 +#: ../src/gui/dialogs/EventFilterDialog.cpp:115 +#: ../src/gui/dialogs/EventFilterDialog.cpp:122 +msgid "exclude" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:136 +#: ../src/gui/dialogs/EventFilterDialog.cpp:155 +#: ../src/gui/editors/eventlist/EventView.cpp:172 +#: ../src/gui/editors/eventlist/EventView.cpp:179 +#: ../src/gui/editors/eventlist/EventView.cpp:186 +msgid "edit" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:141 +#: ../src/gui/dialogs/EventFilterDialog.cpp:157 +msgid "choose a pitch using a staff" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:182 +#: ../src/gui/dialogs/EventFilterDialog.cpp:188 +msgid "longest" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:200 +msgid "Include all" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:203 +msgid "Include entire range of values" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:206 +msgid "Exclude all" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:209 +msgid "Exclude entire range of values" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:233 +#: ../src/gui/dialogs/EventFilterDialog.cpp:234 +msgid "shortest" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:333 +msgid "Lowest pitch" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:343 +msgid "Highest pitch" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:56 +#: ../src/gui/editors/notation/NotationView.cpp:1619 +#: ../src/gui/editors/notation/NotationView.cpp:6088 +msgid "Use Ornament" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:260 +#: ../src/gui/configuration/NotationConfigurationPage.h:64 +#: ../src/gui/configuration/NotationConfigurationPage.h:65 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:63 +msgid "Notation" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:68 +msgid "Display as: " +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:84 +msgid "Trill" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:84 +msgid "Trill with line" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:84 +msgid "Trill line only" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:85 +msgid "Turn" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:85 +msgid "Mordent" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:85 +msgid "Inverted mordent" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:86 +msgid "Long mordent" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:86 +msgid "Long inverted mordent" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:94 +msgid "Text mark" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:98 +msgid " Text: " +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:104 +msgid "Performance" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:109 +msgid "Perform using triggered segment: " +msgstr "" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:75 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:123 +msgid "Perform with timing: " +msgstr "" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:81 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:129 +msgid "As stored" +msgstr "" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:82 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:130 +msgid "Truncate if longer than note" +msgstr "" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:83 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:131 +msgid "End at same time as note" +msgstr "" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:84 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:132 +msgid "Stretch or squash segment to note duration" +msgstr "" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:86 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:134 +msgid "Adjust pitch to note" +msgstr "" + +#: ../src/gui/dialogs/PitchPickerDialog.cpp:40 +msgid "Pitch Selector" +msgstr "" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:44 +msgid "Audio Segment Duration" +msgstr "" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:50 +msgid "The selected audio segment contains:" +msgstr "" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:59 +msgid "beat(s)" +msgstr "" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:60 +msgid "bar(s)" +msgstr "" + +#: ../src/gui/dialogs/TupletDialog.cpp:51 +msgid "Tuplet" +msgstr "" + +#: ../src/gui/dialogs/TupletDialog.cpp:58 +msgid "New timing for tuplet group" +msgstr "" + +#: ../src/gui/dialogs/TupletDialog.cpp:76 +msgid "Play " +msgstr "" + +#: ../src/gui/dialogs/TupletDialog.cpp:98 +msgid "in the time of " +msgstr "" + +#: ../src/gui/dialogs/TupletDialog.cpp:104 +msgid "Timing is already correct: update display only" +msgstr "" + +#: ../src/gui/dialogs/TupletDialog.cpp:114 +msgid "Timing calculations" +msgstr "" + +#: ../src/gui/dialogs/TupletDialog.cpp:120 +msgid "Selected region:" +msgstr "" + +#: ../src/gui/dialogs/TupletDialog.cpp:129 +msgid "Group with current timing:" +msgstr "" + +#: ../src/gui/dialogs/TupletDialog.cpp:135 +msgid "Group with new timing:" +msgstr "" + +#: ../src/gui/dialogs/TupletDialog.cpp:141 +msgid "Gap created by timing change:" +msgstr "" + +#: ../src/gui/dialogs/TupletDialog.cpp:149 +msgid "Unchanged at end of selection:" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:63 rc.cpp:372 +#, no-c-format +msgid "Metronome" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:77 +msgid "Metronome Instrument" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:82 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:150 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:183 +#: ../src/gui/studio/DeviceEditorDialog.cpp:73 +#: ../src/gui/studio/DeviceManagerDialog.cpp:105 +#: ../src/gui/studio/DeviceManagerDialog.cpp:163 +#: ../src/gui/studio/RemapInstrumentDialog.cpp:66 +msgid "Device" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:101 +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:89 +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:215 +#: ../src/gui/studio/DeviceEditorDialog.cpp:195 +#: ../src/gui/studio/DeviceEditorDialog.cpp:218 +#: ../src/gui/studio/DeviceEditorDialog.cpp:230 +#: ../src/gui/studio/DeviceManagerDialog.cpp:196 +#: ../src/gui/studio/DeviceManagerDialog.cpp:440 +#: ../src/gui/studio/DeviceManagerDialog.cpp:452 +msgid "No connection" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:112 +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:111 +#: ../src/gui/editors/parameters/InstrumentParameterBox.cpp:53 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1209 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:159 +#: ../src/gui/general/PresetHandlerDialog.cpp:92 +#: ../src/gui/studio/MidiMixerWindow.cpp:204 +#: ../src/gui/studio/RemapInstrumentDialog.cpp:67 +msgid "Instrument" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:118 +msgid "Beats" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:184 +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:123 +msgid "Resolution" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:309 +#: ../src/gui/configuration/NotationConfigurationPage.cpp:139 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:205 +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:125 +#: ../src/gui/editors/matrix/MatrixView.cpp:2132 +#: ../src/gui/editors/notation/NotationView.cpp:1582 +#: ../src/gui/widgets/QuantizeParameters.cpp:128 +#: ../src/gui/widgets/QuantizeParameters.cpp:301 +msgid "None" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:126 +msgid "Bars only" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:127 +msgid "Bars and beats" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:128 +msgid "Bars, beats, and divisions" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:132 +msgid "Bar velocity" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:139 +msgid "Beat velocity" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:146 +msgid "Sub-beat velocity" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:155 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:324 +msgid "Pitch" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:160 +msgid "for Bar" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:161 +msgid "for Beat" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:162 +msgid "for Sub-beat" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:166 +msgid "Metronome Activated" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:167 +msgid "Playing" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:168 +msgid "Recording" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:46 +msgid "Choose Text Encoding" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:50 +msgid "" +"\n" +"This file contains text in an unknown language encoding.\n" +"\n" +"Please select one of the following estimated text encodings\n" +"for use with the text in this file:\n" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:61 +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:77 +msgid "Japanese Shift-JIS" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:62 +msgid "Unicode variable-width" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:63 +msgid "Western Europe" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:64 +msgid "Western Europe + Euro" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:65 +msgid "Eastern Europe" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:66 +msgid "Southern Europe" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:67 +msgid "Northern Europe" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:68 +msgid "Cyrillic" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:69 +msgid "Arabic" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:70 +msgid "Greek" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:71 +msgid "Hebrew" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:72 +msgid "Turkish" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:73 +msgid "Nordic" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:74 +msgid "Thai" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:75 +msgid "Baltic" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:76 +msgid "Celtic" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:78 +msgid "Traditional Chinese" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:79 +msgid "Simplified Chinese" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:80 +msgid "Russian" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:81 +msgid "Ukrainian" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:82 +msgid "Tamil" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:117 +#, c-format +msgid "Microsoft Code Page %1" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:123 +#: ../src/gui/editors/matrix/MatrixView.cpp:1490 +msgid "%1 (%2)" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:142 +msgid "" +"\n" +"Example text from file:" +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:59 +#: ../src/gui/editors/tempo/TempoView.cpp:92 +msgid "Time Signature" +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:82 +msgid "Time signature" +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:116 +msgid "Time where signature takes effect" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:83 +#: ../src/gui/dialogs/TempoDialog.cpp:128 +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:129 +#: ../src/gui/general/PresetHandlerDialog.cpp:101 +msgid "Scope" +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:141 +#, c-format +msgid "Insertion point is at start of measure %1." +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:145 +#, c-format +msgid "Insertion point is in the middle of measure %1." +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:150 +msgid "Insertion point is at start of composition." +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:155 +msgid "Start measure %1 here" +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:159 +#, c-format +msgid "Change time from start of measure %1" +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:166 +#, c-format +msgid "Time change will take effect at the start of measure %1." +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:176 +msgid "Hide the time signature" +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:181 +msgid "Hide the affected bar lines" +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:186 +msgid "Show as common time" +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:191 +msgid "Correct the durations of following measures" +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:280 +msgid "Display as common time" +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:284 +msgid "Display as cut common time" +msgstr "" + +#: ../src/gui/dialogs/ConfigureDialog.cpp:66 +msgid "Configure Rosegarden" +msgstr "" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:53 +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:61 +msgid "Edit Marker" +msgstr "" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:78 +msgid "Marker Time" +msgstr "" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:94 +msgid "Marker Properties" +msgstr "" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:100 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:554 +msgid "Text:" +msgstr "" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:104 +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:85 +msgid "Description:" +msgstr "" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:46 +msgid "Merge File" +msgstr "" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:53 +msgid "Merge new file " +msgstr "" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:56 +msgid "At start of existing composition" +msgstr "" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:57 +msgid "From end of existing composition" +msgstr "" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:61 +msgid "The file has different time signatures or tempos." +msgstr "" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:62 +msgid "Import these as well" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:171 +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:44 +msgid "Sequencer status" +msgstr "" + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:48 +msgid "Sequencer status:" +msgstr "" + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:50 +msgid "Status not available." +msgstr "" + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:57 +msgid "Sequencer is not running or is not responding." +msgstr "" + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:64 +msgid "Sequencer is not returning a valid status report." +msgstr "" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:46 +msgid "Add Tracks" +msgstr "" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:54 +msgid "How many tracks do you want to add?" +msgstr "" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:62 +msgid "Add tracks" +msgstr "" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:64 +msgid "At the top" +msgstr "" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:65 +msgid "Above the current selected track" +msgstr "" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:66 +msgid "Below the current selected track" +msgstr "" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:67 +msgid "At the bottom" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:75 +msgid "Event Properties" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:81 +msgid "Event type:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:117 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:251 +#: ../src/gui/editors/segment/MarkerEditor.cpp:97 +msgid "Absolute time:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:156 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:323 +msgid "Controller name:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:157 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:530 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:562 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:563 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:602 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:631 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:267 +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:269 +#: ../src/gui/editors/segment/MarkerEditor.cpp:279 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:272 +#: ../src/gui/studio/AudioMixerWindow.cpp:388 +#: ../src/gui/studio/AudioMixerWindow.cpp:519 +#: ../src/gui/studio/AudioMixerWindow.cpp:683 +#: ../src/gui/studio/AudioMixerWindow.cpp:722 +#: ../src/gui/studio/AudioMixerWindow.cpp:904 +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:121 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:174 +msgid "Meta string:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:179 +msgid "Load data" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:181 +msgid "Save data" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:192 +msgid "Notation Properties" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:198 +msgid "Lock to changes in performed values" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:205 +msgid "Notation time:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:217 +msgid "Notation duration:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:283 +msgid "Note pitch:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:291 +msgid "Note velocity:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:317 +msgid "Controller number:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:326 +msgid "Controller value:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:354 +msgid "Key pitch:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:362 +msgid "Key pressure:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:390 +msgid "Channel pressure:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:418 +msgid "Program change:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:461 +msgid "Data length:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:462 +msgid "Data:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:480 +msgid "Pitchbend MSB:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:488 +msgid "Pitchbend LSB:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:523 +msgid "Indication:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:553 +msgid "Text type:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:596 +msgid "Clef type:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:625 +msgid "Key name:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:674 +msgid "Unsupported event type:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:931 +msgid "Edit Event Time" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:943 +msgid "Edit Event Notation Time" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:955 +msgid "Edit Duration" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:968 +msgid "Edit Notation Duration" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:981 +msgid "Edit Pitch" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:991 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:1016 +msgid "*.syx|System exclusive files (*.syx)" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:992 +msgid "Load System Exclusive data in File" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:1017 +msgid "Save System Exclusive data to..." +msgstr "" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:46 +msgid "Locate audio file" +msgstr "" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:50 +msgid "&Skip" +msgstr "" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:51 +msgid "Skip &All" +msgstr "" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:52 +msgid "&Locate" +msgstr "" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:57 +msgid "" +"Can't find file \"%1\".\n" +"Would you like to try and locate this file or skip it?" +msgstr "" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:71 +msgid "" +"%1|Requested file (%2)\n" +"*.wav|WAV files (*.wav)" +msgstr "" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:74 +msgid "Select an Audio File" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:53 ../src/gui/dialogs/ClefDialog.cpp:62 +#: ../src/gui/dialogs/ClefDialog.cpp:79 ../src/gui/dialogs/ClefDialog.cpp:90 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:278 +msgid "Clef" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:65 +msgid "Existing notes following clef change" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:71 +msgid "Lower clef" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:77 +msgid "Up an Octave" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:84 +msgid "Down an Octave" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:88 +msgid "Higher clef" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:96 +#: ../src/gui/dialogs/KeySignatureDialog.cpp:152 +msgid "Maintain current pitches" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:99 +msgid "Transpose into appropriate octave" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:231 +msgid "%1 down an octave" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:234 +msgid "%1 down two octaves" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:237 +msgid "%1 up an octave" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:240 +msgid "%1 up two octaves" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:249 +msgid "Treble" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:251 +msgid "French violin" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:253 +msgid "Soprano" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:255 +msgid "Mezzo-soprano" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:257 +msgid "Alto" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:259 +msgid "Tenor" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:261 +msgid "C-baritone" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:263 +msgid "F-baritone" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:265 +msgid "Bass" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:267 +msgid "Sub-bass" +msgstr "" + +#: ../src/gui/dialogs/CountdownDialog.cpp:52 +msgid "Recording..." +msgstr "" + +#: ../src/gui/dialogs/CountdownDialog.cpp:60 +msgid "Recording time remaining: " +msgstr "" + +#: ../src/gui/dialogs/CountdownDialog.cpp:120 +msgid "Just how big is your hard disk?" +msgstr "" + +#: ../src/gui/dialogs/CountdownDialog.cpp:154 +msgid "Recording beyond end of composition: " +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:52 +msgid "Specify Interval" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:58 +msgid "Reference note:" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:59 +msgid "Target note:" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:68 +#: ../src/gui/dialogs/IntervalDialog.cpp:315 +msgid "a perfect unison" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:76 +msgid "Effect on Key" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:77 +msgid "Transpose within key" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:79 +msgid "Change key for selection" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:89 +msgid "" +"Adjust segment transposition in opposite direction (maintain audible pitch)" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:190 +#: ../src/gui/dialogs/IntervalDialog.cpp:220 +msgid "a diminished" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:192 +#: ../src/gui/dialogs/IntervalDialog.cpp:222 +msgid "an augmented" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:194 +#: ../src/gui/dialogs/IntervalDialog.cpp:224 +msgid "a doubly diminished" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:196 +#: ../src/gui/dialogs/IntervalDialog.cpp:226 +msgid "a doubly augmented" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:198 +#: ../src/gui/dialogs/IntervalDialog.cpp:228 +msgid "a triply diminished" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:200 +#: ../src/gui/dialogs/IntervalDialog.cpp:230 +msgid "a triply augmented" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:202 +msgid "a quadruply diminished" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:204 +#: ../src/gui/dialogs/IntervalDialog.cpp:232 +msgid "a quadruply augmented" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:206 +#: ../src/gui/dialogs/IntervalDialog.cpp:234 +msgid "a perfect" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:208 +#: ../src/gui/dialogs/IntervalDialog.cpp:236 +msgid "an (unknown, %1)" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:216 +msgid "a minor" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:218 +msgid "a major" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:239 +msgid "an (unknown)" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:248 +#: ../src/gui/dialogs/IntervalDialog.cpp:251 +msgid "%1 octave" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:254 +msgid "%1 unison" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:258 +msgid "%1 second" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:261 +msgid "%1 third" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:264 +msgid "%1 fourth" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:267 +msgid "%1 fifth" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:270 +msgid "%1 sixth" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:273 +msgid "%1 seventh" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:276 +#: ../src/gui/studio/DeviceManagerDialog.cpp:329 +#: ../src/gui/studio/DeviceManagerDialog.cpp:363 +#, c-format +msgid "%1" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:287 +msgid "" +"_n: up 1 octave and %1\n" +"up %n octaves and %1" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:291 +#, c-format +msgid "" +"_n: up 1 octave\n" +"up %n octaves" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:295 +#, c-format +msgid "up %1" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:303 +msgid "" +"_n: down 1 octave and %1\n" +"down %n octaves and %1" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:307 +#, c-format +msgid "" +"_n: down 1 octave\n" +"down %n octaves" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:311 +#, c-format +msgid "down %1" +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:81 +msgid "Intrinsics" +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:85 +msgid "Event type: " +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:91 +msgid "Absolute time: " +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:101 +msgid "Duration: " +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:114 +msgid "Sub-ordering: " +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:125 +msgid "Persistent properties" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:169 +#: ../src/gui/dialogs/EventEditDialog.cpp:133 +#: ../src/gui/studio/BankEditorDialog.cpp:129 +#: ../src/gui/studio/DeviceEditorDialog.cpp:75 +msgid "Type" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:184 +#: ../src/gui/dialogs/EventEditDialog.cpp:135 +#: ../src/gui/dialogs/EventParameterDialog.cpp:89 +#: ../src/gui/dialogs/EventParameterDialog.cpp:93 +#: ../src/gui/dialogs/EventParameterDialog.cpp:115 +msgid "Value" +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:155 +msgid "Non-persistent properties" +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:156 +msgid "These are cached values, lost if the event is modified." +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:170 +msgid "Name " +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:172 +msgid "Type " +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:174 +msgid "Value " +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:188 +msgid "Make persistent" +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:292 +msgid "Delete this property" +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:433 +msgid "" +"Are you sure you want to delete the \"%1\" property?\n" +"\n" +"Removing necessary properties may cause unexpected behavior." +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:436 +#: ../src/gui/dialogs/EventEditDialog.cpp:469 +msgid "Edit Event" +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:465 +msgid "" +"Are you sure you want to make the \"%1\" property persistent?\n" +"\n" +"This could cause problems if it overrides a different computed value later " +"on." +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:470 +msgid "Make &Persistent" +msgstr "" + +#: ../src/gui/dialogs/PasteNotationDialog.cpp:52 +msgid "Paste type" +msgstr "" + +#: ../src/gui/dialogs/PasteNotationDialog.cpp:72 +msgid "Make this the default paste type" +msgstr "" + +#: ../src/gui/dialogs/LyricEditDialog.cpp:53 +msgid "Edit Lyrics" +msgstr "" + +#: ../src/gui/dialogs/LyricEditDialog.cpp:62 +msgid "Lyrics for this segment" +msgstr "" + +#: ../src/gui/dialogs/LyricEditDialog.cpp:70 +msgid "Add Verse" +msgstr "" + +#: ../src/gui/dialogs/LyricEditDialog.cpp:84 +#: ../src/gui/dialogs/LyricEditDialog.cpp:106 +#, c-format +msgid "Verse %1" +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:59 +msgid "Import from Device..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2163 +#: ../src/gui/application/RosegardenGUIApp.cpp:2229 +#: ../src/gui/application/RosegardenGUIApp.cpp:7780 +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:87 +#: ../src/sound/AudioFileManager.cpp:664 +#, c-format +msgid "Cannot download file %1" +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:99 +#, c-format +msgid "Cannot open file %1" +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:106 +#, c-format +msgid "No devices found in file %1" +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:113 +msgid "Source device" +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:118 +msgid "Import from: " +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:140 +#: ../src/gui/studio/DeviceEditorDialog.cpp:148 +#, c-format +msgid "Device %1" +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:155 +msgid "Import banks" +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:156 +msgid "Import key mappings" +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:157 +msgid "Import controllers" +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:160 +msgid "Import device name" +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:166 +msgid "Bank import behavior" +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:168 +msgid "Merge banks" +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:169 +msgid "Overwrite banks" +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:367 +msgid "Bank %1:%2" +msgstr "" + +#: ../src/commands/segment/SegmentSplitByRecordingSrcCommand.cpp:42 +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:48 +msgid "Split by Recording Source" +msgstr "" + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:53 +msgid "Recording Source" +msgstr "" + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:57 +msgid "Channel:" +msgstr "" + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:64 +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:75 +msgid "any" +msgstr "" + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:69 +msgid "Device:" +msgstr "" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:46 +msgid "Select Unused Audio Files" +msgstr "" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:53 +#: ../src/gui/editors/segment/PlayListView.cpp:36 +msgid "File name" +msgstr "" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:54 +msgid "File size" +msgstr "" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:55 +msgid "Last modified date" +msgstr "" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:60 +msgid " (not found) " +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:105 +msgid "Audio File Manager" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:126 +msgid "" +"* Some audio files are encoded at a sample rate different from that of the " +"JACK audio server.\n" +"Rosegarden will play them at the correct speed, but they will sound " +"terrible.\n" +"Please consider resampling such files externally, or adjusting the sample " +"rate of the JACK server." +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:132 +msgid "&Add Audio File..." +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:135 +msgid "&Unload Audio File" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:140 +msgid "&Play Preview" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:151 +msgid "&Insert into Selected Audio Track" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:155 +msgid "Unload &all Audio Files" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:159 +msgid "Unload all &Unused Audio Files" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:163 +msgid "&Delete Unused Audio Files..." +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:167 +msgid "&Export Audio File..." +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:173 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:180 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:91 +msgid "Duration" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:181 +msgid "Envelope" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:182 +msgid "Sample rate" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:183 +msgid "Channels" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:282 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:488 +msgid "*.wav|WAV files (*.wav)" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:489 +msgid "Choose a name to save this file as" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:499 +msgid "Exporting audio file..." +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:609 +msgid "" +"This will unload audio file \"%1\" and remove all associated segments. Are " +"you sure?" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:692 +msgid "" +"*.wav|WAV files (*.wav)\n" +"*.*|All files" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:697 +msgid "" +"*.wav *.flac *.ogg *.mp3|Audio files (*.wav *.flac *.ogg *.mp3)\n" +"*.wav|WAV files (*.wav)\n" +"*.flac|FLAC files (*.flac)\n" +"*.ogg|Ogg files (*.ogg)\n" +"*.mp3|MP3 files (*.mp3)\n" +"*.*|All files" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:704 +msgid "Select one or more audio files" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:763 +msgid "" +"This will unload all audio files and remove their associated segments.\n" +"This action cannot be undone, and associations with these files will be " +"lost.\n" +"Files will not be removed from your disk.\n" +"Are you sure?" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:800 +msgid "" +"This will unload all audio files that are not associated with any segments " +"in this composition.\n" +"This action cannot be undone, and associations with these files will be " +"lost.\n" +"Files will not be removed from your disk.\n" +"Are you sure?" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:865 +msgid "" +"The following audio files are not used in the current composition.\n" +"\n" +"Please select the ones you wish to delete permanently from the hard disk.\n" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:875 +#, c-format +msgid "" +"_n: About to delete 1 audio file permanently from the hard disk.
              This " +"action cannot be undone, and there will be no way to recover this file." +"
              Are you sure?
              \n" +"\n" +"About to delete %n audio files permanently from the hard disk.
              This " +"action cannot be undone, and there will be no way to recover these files." +"
              Are you sure?
              " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:525 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:888 +msgid "File %1 could not be deleted." +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:921 +msgid "Change Audio File label" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6466 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:922 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1099 +msgid "Enter new label" +msgstr "" + +#: ../src/gui/application/RosegardenGUIView.cpp:1538 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1086 +msgid "Adding audio file..." +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1107 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1112 +msgid "Failed to add audio file. " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:2789 +#: ../src/gui/application/RosegardenGUIApp.cpp:2736 +#: ../src/gui/application/RosegardenGUIView.cpp:1574 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1122 +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:180 +msgid "Generating audio preview..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIView.cpp:1581 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1130 +msgid "" +"Try copying this file to a directory where you have write permission and re-" +"add it" +msgstr "" + +#: ../src/gui/dialogs/TransportDialog.cpp:90 rc.cpp:357 +#, no-c-format +msgid "Rosegarden Transport" +msgstr "" + +#: ../src/gui/dialogs/TransportDialog.cpp:925 +#: ../src/gui/dialogs/TransportDialog.cpp:985 +msgid "PITCH WHEEL" +msgstr "" + +#: ../src/gui/dialogs/TransportDialog.cpp:929 +#: ../src/gui/dialogs/TransportDialog.cpp:989 +msgid "CONTROLLER" +msgstr "" + +#: ../src/gui/dialogs/TransportDialog.cpp:933 +#: ../src/gui/dialogs/TransportDialog.cpp:993 +msgid "PROG CHNGE" +msgstr "" + +#: ../src/gui/dialogs/TransportDialog.cpp:938 +#: ../src/gui/dialogs/TransportDialog.cpp:998 +msgid "PRESSURE" +msgstr "" + +#: ../src/gui/dialogs/TransportDialog.cpp:942 +#: ../src/gui/dialogs/TransportDialog.cpp:1002 +msgid "SYS MESSAGE" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:177 +#: ../src/gui/dialogs/QuantizeDialog.cpp:40 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:127 +msgid "Quantize" +msgstr "" + +#: ../src/gui/dialogs/QuantizeDialog.cpp:52 +msgid "Advanced" +msgstr "" + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:42 +msgid "Export Devices..." +msgstr "" + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:47 +msgid "Export devices" +msgstr "" + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:49 +msgid "Export all devices" +msgstr "" + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:50 +msgid "Export selected device only" +msgstr "" + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:51 +msgid " (\"%1\")" +msgstr "" + +#: ../src/gui/dialogs/CompositionLengthDialog.cpp:44 +msgid "Change Composition Length" +msgstr "" + +#: ../src/gui/dialogs/CompositionLengthDialog.cpp:50 +msgid "Set the Start and End bar markers for this Composition" +msgstr "" + +#: ../src/gui/dialogs/CompositionLengthDialog.cpp:54 +msgid "Start Bar" +msgstr "" + +#: ../src/gui/dialogs/CompositionLengthDialog.cpp:62 +msgid "End Bar" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:62 +msgid "LilyPond Export/Preview" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:85 +msgid "General options" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:90 +msgid "Advanced options" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:112 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:95 +msgid "Headers" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:106 +msgid "Basic options" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:113 +msgid "Compatibility level" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:117 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:118 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:119 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:120 +#, c-format +msgid "LilyPond %1" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:125 +msgid "Paper size" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:129 +msgid "A3" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:130 +msgid "A4" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:131 +msgid "A5" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:132 +msgid "A6" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:133 +msgid "Legal" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:134 +msgid "US Letter" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:135 +msgid "Tabloid" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:136 +msgid "do not specify" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:152 +msgid "Font size" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:157 +msgid "%1 pt" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:169 +msgid "Staff level options" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:176 +msgid "Export content" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:179 +msgid "All tracks" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:180 +msgid "Non-muted tracks" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:181 +msgid "Selected track" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:182 +msgid "Selected segments" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:188 +msgid "Merge tracks that have the same name" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:198 +msgid "Notation options" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:206 +msgid "First" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:207 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:538 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:557 +msgid "All" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:211 +msgid "Export tempo marks " +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:215 +msgid "Export lyrics" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:225 +msgid "Export beamings" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:232 +msgid "Export track staff brackets" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:244 +msgid "Layout options" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:257 +msgid "Lyrics alignment" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:261 +msgid "Ragged bottom (systems will not be spread vertically across the page)" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:267 +msgid "Miscellaneous options" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:274 +msgid "Enable \"point and click\" debugging" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:279 +msgid "Export \\midi block" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:284 +msgid "No markers" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:285 +msgid "Rehearsal marks" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:286 +msgid "Marker text" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:290 +msgid "Export markers" +msgstr "" + +#: ../src/gui/dialogs/AudioSplitDialog.cpp:57 +msgid "Autosplit Audio Segment" +msgstr "" + +#: ../src/gui/dialogs/AudioSplitDialog.cpp:70 +msgid "AutoSplit Segment \"" +msgstr "" + +#: ../src/gui/dialogs/AudioSplitDialog.cpp:84 +msgid "Threshold" +msgstr "" + +#: ../src/gui/dialogs/AudioSplitDialog.cpp:142 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:70 +msgid "Audio Plugin" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:94 +#: ../src/gui/widgets/AudioFaderBox.cpp:136 +msgid "Editor" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:100 +msgid "Plugin" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:105 +msgid "Category:" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:110 +msgid "Plugin:" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:114 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:398 +msgid "Select a plugin from this list." +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:119 +msgid "Bypass" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:121 +msgid "Bypass this plugin." +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:127 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:390 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:130 +msgid "Input and output port counts." +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:132 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:391 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:135 +msgid "Unique ID of plugin." +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:149 +msgid "Copy plugin parameters" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:155 +msgid "Paste plugin parameters" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:161 +msgid "Set to defaults" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:225 +msgid "(any)" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:226 +msgid "(unclassified)" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:247 +msgid "(none)" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:389 +#: ../src/gui/editors/parameters/AudioInstrumentParameterPanel.cpp:132 +#: ../src/gui/editors/parameters/AudioInstrumentParameterPanel.cpp:361 +#: ../src/gui/studio/AudioMixerWindow.cpp:685 +#: ../src/gui/studio/AudioMixerWindow.cpp:724 +#: ../src/gui/studio/AudioMixerWindow.cpp:906 +#: ../src/gui/widgets/AudioFaderBox.cpp:79 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:427 +msgid "This plugin has too many controls to edit here." +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:438 +#, c-format +msgid "Id: %1" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:490 +msgid "mono" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:492 +msgid "stereo" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:494 +msgid "%1 in, %2 out" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:518 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:704 +msgid "Program: " +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:522 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:532 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:708 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:716 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:745 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:56 +msgid "Set the %1 property of the event selection:" +msgstr "" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:61 +msgid "Pattern" +msgstr "" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:66 +msgid "Flat - set %1 to value" +msgstr "" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:70 +msgid "Alternating - set %1 to max and min on alternate events" +msgstr "" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:74 +msgid "Crescendo - set %1 rising from min to max" +msgstr "" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:78 +msgid "Diminuendo - set %1 falling from max to min" +msgstr "" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:82 +msgid "Ringing - set %1 alternating from max to min with both dying to zero" +msgstr "" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:123 +#: ../src/gui/dialogs/EventParameterDialog.cpp:150 +msgid "First Value" +msgstr "" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:124 +#: ../src/gui/dialogs/EventParameterDialog.cpp:151 +msgid "Second Value" +msgstr "" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:132 +#: ../src/gui/dialogs/EventParameterDialog.cpp:142 +msgid "Low Value" +msgstr "" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:133 +#: ../src/gui/dialogs/EventParameterDialog.cpp:141 +msgid "High Value" +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:56 ../src/gui/rulers/TempoRuler.cpp:127 +msgid "Insert Tempo Change" +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:69 +msgid "New tempo:" +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:76 +msgid "Tap" +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:81 +msgid "Tempo is fixed until the following tempo change" +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:82 +msgid "Tempo ramps to the following tempo" +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:83 +msgid "Tempo ramps to:" +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:120 +msgid "Time of tempo change" +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:138 +msgid "The pointer is currently at " +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:154 +msgid "Apply this tempo from here onwards" +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:158 +msgid "Replace the last tempo change" +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:164 +msgid "Apply this tempo from the start of this bar" +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:167 +msgid "Apply this tempo to the whole composition" +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:172 +msgid "Also make this the default tempo" +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:256 +msgid "%1.%2 s," +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:262 +#, c-format +msgid "at the start of measure %1." +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:266 +#, c-format +msgid "in the middle of measure %1." +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:285 +msgid " (at %1.%2 s, in measure %3)" +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:302 +msgid "There are no preceding tempo changes." +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:310 +msgid "There are no other tempo changes." +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:328 +msgid " bpm" +msgstr "" + +#: ../src/gui/dialogs/AudioPlayingDialog.cpp:42 +msgid "Playing audio file" +msgstr "" + +#: ../src/gui/dialogs/AudioPlayingDialog.cpp:47 +msgid "Playing audio file \"%1\"" +msgstr "" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:52 +#: ../src/gui/editors/matrix/MatrixView.cpp:2655 +msgid "Trigger Segment" +msgstr "" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:61 +msgid "Trigger segment: " +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:59 +msgid "Key Change" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:77 +msgid "Key signature" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:80 +msgid "Key transposition" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:86 +msgid "Existing notes following key change" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:98 +msgid "Flatten" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:100 +msgid "Key" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:105 +msgid "Sharpen" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:109 +msgid "Major" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:110 +#: ../src/gui/dialogs/KeySignatureDialog.cpp:369 +msgid "Minor" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:123 +msgid "Transpose key according to segment transposition" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:126 +msgid "Use specified key. Do not transpose" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:134 +msgid "Apply to current segment only" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:137 +msgid "Apply to all segments at this time" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:141 +msgid "Exclude percussion segments" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:155 +msgid "Maintain current accidentals" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:158 +msgid "Transpose into this key" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:331 +msgid "No such key" +msgstr "" + +#: ../src/gui/dialogs/InterpretDialog.cpp:44 +#: ../src/gui/editors/notation/NotationSelector.cpp:118 +msgid "Interpret" +msgstr "" + +#: ../src/gui/dialogs/InterpretDialog.cpp:50 +msgid "Interpretations to apply" +msgstr "" + +#: ../src/gui/dialogs/InterpretDialog.cpp:53 +msgid "Apply text dynamics (p, mf, ff etc)" +msgstr "" + +#: ../src/gui/dialogs/InterpretDialog.cpp:55 +msgid "Apply hairpin dynamics" +msgstr "" + +#: ../src/gui/dialogs/InterpretDialog.cpp:57 +msgid "Stress beats" +msgstr "" + +#: ../src/gui/dialogs/InterpretDialog.cpp:59 +msgid "Articulate slurs, staccato, tenuto etc" +msgstr "" + +#: ../src/gui/dialogs/InterpretDialog.cpp:61 +msgid "All available interpretations" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:316 +msgid "" +"Attempted to launch JACK audio daemon failed. Audio will be disabled.\n" +"Please check configuration (Settings -> Configure Rosegarden -> Audio -> " +"Startup)\n" +" and restart." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:325 +msgid "Starting sequencer..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:333 +msgid "Initializing plugin manager..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:338 +msgid "Initializing view..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:354 +msgid "Special Parameters" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:430 +msgid "Starting sequence manager..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:456 +msgid "Clearing studio data..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:475 +#: ../src/gui/editors/notation/NotationView.cpp:558 +msgid "Starting..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:556 +msgid "Import Rosegarden &Project file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:560 +msgid "Import &MIDI file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:564 +msgid "Import &Rosegarden 2.1 file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:568 +msgid "Import &Hydrogen file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:572 +msgid "Merge &File..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:576 +msgid "Merge &MIDI file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:580 +msgid "Merge &Rosegarden 2.1 file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:584 +msgid "Merge &Hydrogen file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:588 +msgid "Export Rosegarden &Project file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:592 +msgid "Export &MIDI file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:596 +msgid "Export &LilyPond file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:600 +msgid "Export Music&XML file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:604 +msgid "Export &Csound score file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:608 +msgid "Export M&up file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:612 +#: ../src/gui/editors/notation/NotationView.cpp:1500 +msgid "Print &with LilyPond..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:616 +#: ../src/gui/editors/notation/NotationView.cpp:1504 +msgid "Preview with Lil&yPond..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:620 +msgid "Play&list" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:627 +msgid "Rosegarden &Tutorial" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:631 +msgid "&Bug Reporting Guidelines" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:645 +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:348 +#: ../src/gui/editors/segment/MarkerEditor.cpp:378 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:388 +#: ../src/gui/general/EditViewBase.cpp:190 +#: ../src/gui/studio/BankEditorDialog.cpp:318 +#: ../src/gui/studio/DeviceManagerDialog.cpp:227 +msgid "Und&o" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:651 +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:354 +#: ../src/gui/editors/segment/MarkerEditor.cpp:384 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:394 +#: ../src/gui/general/EditViewBase.cpp:196 +#: ../src/gui/studio/BankEditorDialog.cpp:324 +#: ../src/gui/studio/DeviceManagerDialog.cpp:233 +msgid "Re&do" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:665 +#: ../src/gui/editors/notation/NotationView.cpp:2297 +msgid "Show T&ools Toolbar" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:669 +msgid "Show Trac&ks Toolbar" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:673 +msgid "Show &Editors Toolbar" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:677 +#: ../src/gui/editors/notation/NotationView.cpp:2309 +msgid "Show Trans&port Toolbar" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:681 +msgid "Show &Zoom Toolbar" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:688 +msgid "Show Tra&nsport" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:693 +msgid "Show Track &Labels" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:698 +msgid "Show Playback Position R&uler" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:703 +msgid "Show Te&mpo Ruler" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:708 +msgid "Show Cho&rd Name Ruler" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:714 +msgid "Show Segment Pre&views" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:719 +msgid "Show Special &Parameters" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:753 +#: ../src/gui/editors/matrix/MatrixView.cpp:641 +#: ../src/gui/editors/notation/NotationView.cpp:1772 +msgid "&Select and Edit" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:758 +#: ../src/gui/editors/matrix/MatrixView.cpp:646 +msgid "&Draw" +msgstr "" + +#: ../src/commands/edit/EraseCommand.h:50 +#: ../src/gui/application/RosegardenGUIApp.cpp:763 +#: ../src/gui/editors/matrix/MatrixView.cpp:651 +#: ../src/gui/editors/notation/NotationView.cpp:1766 +msgid "&Erase" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:768 +#: ../src/gui/editors/matrix/MatrixView.cpp:656 +msgid "&Move" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:775 +msgid "&Resize" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:782 rc.cpp:87 +#, no-c-format +msgid "&Split" +msgstr "" + +#: ../src/commands/segment/SegmentJoinCommand.h:53 +#: ../src/gui/application/RosegardenGUIApp.cpp:789 +msgid "&Join" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:795 +msgid "&Harmonize" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:806 +#: ../src/gui/rulers/TempoRuler.cpp:157 +msgid "Open Tempo and Time Signature Editor" +msgstr "" + +#: ../src/commands/segment/CutRangeCommand.cpp:41 +#: ../src/gui/application/RosegardenGUIApp.cpp:812 +msgid "Cut Range" +msgstr "" + +#: ../src/commands/edit/CopyCommand.cpp:73 +#: ../src/gui/application/RosegardenGUIApp.cpp:816 +msgid "Copy Range" +msgstr "" + +#: ../src/commands/segment/PasteRangeCommand.cpp:45 +#: ../src/gui/application/RosegardenGUIApp.cpp:820 +msgid "Paste Range" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:828 +msgid "Insert Range..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:832 +#: ../src/gui/editors/notation/NotationView.cpp:1804 +msgid "De&lete" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:836 +msgid "Select &All Segments" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:852 +msgid "Edit Mar&kers..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:856 +msgid "Edit Document P&roperties..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:864 +msgid "Open in &Default Editor" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:870 +#: ../src/gui/general/EditViewBase.cpp:206 +msgid "Open in Matri&x Editor" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:876 +#: ../src/gui/general/EditViewBase.cpp:212 +msgid "Open in &Percussion Matrix Editor" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:882 +#: ../src/gui/general/EditViewBase.cpp:218 +msgid "Open in &Notation Editor" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:888 +#: ../src/gui/general/EditViewBase.cpp:224 +msgid "Open in &Event List Editor" +msgstr "" + +#: ../src/commands/edit/EventQuantizeCommand.cpp:120 +#: ../src/commands/edit/EventUnquantizeCommand.cpp:87 +#: ../src/gui/application/RosegardenGUIApp.cpp:894 +msgid "&Quantize..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:908 +#: ../src/gui/editors/matrix/MatrixView.cpp:686 +msgid "Repeat Last Quantize" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:928 +msgid "Split at Time..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:932 +#: ../src/gui/general/EditView.cpp:796 +msgid "Jog &Left" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:936 +#: ../src/gui/general/EditView.cpp:800 +msgid "Jog &Right" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:940 +msgid "Set Start Time..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:944 +msgid "Set Duration..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:953 +msgid "Turn Re&peats into Copies" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:958 +msgid "Manage Tri&ggered Segments" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:962 +msgid "Set Tempos from &Beat Segment" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:966 +msgid "Set &Tempo to Audio Segment Duration" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:972 +msgid "Manage A&udio Files" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:977 +msgid "Show Segment Labels" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:986 +msgid "Add &Track" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:990 +msgid "&Add Tracks..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:996 +msgid "D&elete Track" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1002 +msgid "Move Track &Down" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1008 +msgid "Move Track &Up" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1012 +msgid "Select &Next Track" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1017 +msgid "Select &Previous Track" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1022 +msgid "Mute or Unmute Track" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1027 +msgid "Arm or Un-arm Track for Record" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1034 +msgid "&Mute all Tracks" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1040 +msgid "&Unmute all Tracks" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1044 +msgid "&Remap Instruments..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1053 +msgid "&Audio Mixer" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1059 +msgid "Midi Mi&xer" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1065 +msgid "Manage MIDI &Devices" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1071 +msgid "Manage S&ynth Plugins" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1075 +msgid "Modify MIDI &Filters" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1079 +msgid "MIDI Thru Routing" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1085 +msgid "Manage &Metronome" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1089 +msgid "&Save Current Document as Default Studio" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1093 +msgid "&Import Default Studio" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1097 +msgid "Im&port Studio from File..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1101 +msgid "&Reset MIDI Network" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1105 +msgid "Set Quick Marker at Playback Position" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1109 +msgid "Jump to Quick Marker" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1142 +#: ../src/gui/editors/matrix/MatrixView.cpp:782 +#: ../src/gui/editors/notation/NotationView.cpp:2397 +#: ../src/gui/studio/AudioMixerWindow.cpp:105 +#: ../src/gui/studio/MidiMixerWindow.cpp:81 +msgid "&Play" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1153 +#: ../src/gui/editors/matrix/MatrixView.cpp:791 +#: ../src/gui/editors/notation/NotationView.cpp:2406 +#: ../src/gui/studio/AudioMixerWindow.cpp:114 +#: ../src/gui/studio/MidiMixerWindow.cpp:90 +msgid "&Stop" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1160 +#: ../src/gui/editors/matrix/MatrixView.cpp:802 +#: ../src/gui/editors/notation/NotationView.cpp:2417 +#: ../src/gui/studio/AudioMixerWindow.cpp:125 +#: ../src/gui/studio/MidiMixerWindow.cpp:101 +msgid "&Fast Forward" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1168 +#: ../src/gui/editors/matrix/MatrixView.cpp:796 +#: ../src/gui/editors/notation/NotationView.cpp:2411 +#: ../src/gui/studio/AudioMixerWindow.cpp:119 +#: ../src/gui/studio/MidiMixerWindow.cpp:95 +msgid "Re&wind" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1175 +msgid "P&unch in Record" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1182 +#: ../src/gui/studio/AudioMixerWindow.cpp:143 +#: ../src/gui/studio/MidiMixerWindow.cpp:119 +msgid "&Record" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1189 +#: ../src/gui/editors/matrix/MatrixView.cpp:808 +#: ../src/gui/editors/notation/NotationView.cpp:2423 +#: ../src/gui/studio/AudioMixerWindow.cpp:131 +#: ../src/gui/studio/MidiMixerWindow.cpp:107 +msgid "Rewind to &Beginning" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1196 +#: ../src/gui/editors/matrix/MatrixView.cpp:814 +#: ../src/gui/editors/notation/NotationView.cpp:2429 +#: ../src/gui/studio/AudioMixerWindow.cpp:137 +#: ../src/gui/studio/MidiMixerWindow.cpp:113 +msgid "Fast Forward to &End" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1203 +#: ../src/gui/editors/matrix/MatrixView.cpp:832 +#: ../src/gui/editors/notation/NotationView.cpp:2447 +msgid "Scro&ll to Follow Playback" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1209 +#: ../src/gui/editors/matrix/MatrixView.cpp:838 +#: ../src/gui/editors/notation/NotationView.cpp:2453 +#: ../src/gui/studio/AudioMixerWindow.cpp:149 +#: ../src/gui/studio/MidiMixerWindow.cpp:125 +msgid "Panic" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1213 +msgid "Segment Debug Dump " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1283 +msgid " Zoom: " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1719 +msgid "File \"%1\" does not exist" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1725 +msgid "File \"%1\" is actually a directory" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1734 +msgid "You do not have read permission for \"%1\"" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1802 +msgid "" +"An auto-save file for this document has been found\n" +"Do you want to open it instead ?" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1896 +msgid "Example Files" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2100 +msgid "Opening a new application window..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2110 +msgid "Creating new document..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2154 +#, c-format +msgid "" +"Malformed URL\n" +"%1" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2179 +#: ../src/gui/application/RosegardenGUIApp.cpp:2240 +msgid "Opening file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2201 +#: ../src/gui/application/RosegardenGUIApp.cpp:2220 +msgid "Open File" +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1225 +#: ../src/gui/application/RosegardenGUIApp.cpp:2258 +msgid "Saving file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2330 +msgid "This is not a valid filename.\n" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2335 +msgid "This is not a local file.\n" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2342 +#: ../src/gui/studio/BankEditorDialog.cpp:1640 +#: ../src/gui/studio/DeviceManagerDialog.cpp:787 +msgid "You have specified a directory" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2348 +#: ../src/gui/studio/BankEditorDialog.cpp:1646 +#: ../src/gui/studio/DeviceManagerDialog.cpp:793 +msgid "The specified file exists. Overwrite?" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2362 +msgid "Saving file with a new filename..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2364 +msgid "Rosegarden files" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2365 +#: ../src/gui/application/RosegardenGUIApp.cpp:4860 +#: ../src/gui/application/RosegardenGUIApp.cpp:4904 +#: ../src/gui/application/RosegardenGUIApp.cpp:4942 +#: ../src/gui/application/RosegardenGUIApp.cpp:4975 +#: ../src/gui/application/RosegardenGUIApp.cpp:5009 +#: ../src/gui/application/RosegardenGUIApp.cpp:5116 +msgid "All files" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2366 +msgid "Save as..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2404 +msgid "Closing file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2421 +#: ../src/gui/editors/notation/NotationView.cpp:4618 +msgid "Printing..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2433 +#: ../src/gui/editors/notation/NotationView.cpp:4635 +msgid "Previewing..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2440 +msgid "Exiting..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2463 +msgid "Cutting selection..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2474 +#: ../src/gui/editors/matrix/MatrixView.cpp:1614 +#: ../src/gui/editors/notation/NotationView.cpp:4763 +msgid "Copying selection to clipboard..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2484 +#: ../src/gui/editors/eventlist/EventView.cpp:878 +#: ../src/gui/editors/matrix/MatrixView.cpp:1625 +#: ../src/gui/editors/notation/NotationView.cpp:4796 +#: ../src/gui/editors/notation/NotationView.cpp:4841 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:352 +msgid "Clipboard is empty" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2487 +#: ../src/gui/editors/eventlist/EventView.cpp:882 +#: ../src/gui/editors/matrix/MatrixView.cpp:1629 +#: ../src/gui/editors/notation/NotationView.cpp:4804 +#: ../src/gui/editors/notation/NotationView.cpp:4845 +msgid "Inserting clipboard contents..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2556 +msgid "Duration of empty range to insert" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2631 +msgid "This function needs no more than one segment to be selected." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2654 +msgid "Can't join Audio segments" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2707 +msgid "rescaling an audio file" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2723 +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:172 +msgid "Rescaling audio file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2767 +msgid "" +"The audio file path does not exist or is not writable.\n" +"You must set the audio file path to a valid directory in Document Properties " +"before %1.\n" +"Would you like to set it now?" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2769 +#: ../src/gui/application/RosegardenGUIApp.cpp:5291 +#: ../src/gui/application/RosegardenGUIApp.cpp:5339 +#: ../src/gui/editors/segment/TrackButtons.cpp:419 +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:159 +msgid "Set audio file path" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2833 +msgid "Jog Selection" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2978 +#, c-format +msgid "" +"_n: Split Segment at Time\n" +"Split %n Segments at Time" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3013 +#: ../src/gui/general/EditViewBase.cpp:619 +msgid "Segment Start Time" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3023 +msgid "Set Segment Start Times" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3024 +#: ../src/gui/general/EditViewBase.cpp:626 +msgid "Set Segment Start Time" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3056 +#: ../src/gui/general/EditViewBase.cpp:644 +msgid "Segment Duration" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3068 +msgid "Set Segment Durations" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3069 +#: ../src/gui/general/EditViewBase.cpp:652 +msgid "Set Segment Duration" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3176 +#: ../src/gui/application/RosegardenGUIApp.cpp:5875 +msgid "Set Global Tempo" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3234 +#: ../src/gui/general/EditViewBase.cpp:477 +msgid "Toggle the toolbar..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3244 +msgid "Toggle the tools toolbar..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3254 +msgid "Toggle the tracks toolbar..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3264 +msgid "Toggle the editor toolbar..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3274 +msgid "Toggle the transport toolbar..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3284 +msgid "Toggle the zoom toolbar..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3294 +msgid "Toggle the Transport" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3377 +#: ../src/gui/general/EditViewBase.cpp:487 +msgid "Toggle the statusbar..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3434 +msgid "" +"The join tool isn't implemented yet. Instead please highlight the segments " +"you want to join and then use the menu option:\n" +"\n" +" Segments->Collapse Segments.\n" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3437 +msgid "Join tool not yet implemented" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3675 +msgid "Revert modified document to previous saved version?" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3691 +msgid "" +"*.rgp|Rosegarden Project files\n" +"*|All files" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3692 +msgid "Import Rosegarden Project File" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3717 +msgid "Failed to import project file \"%1\"" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3739 +msgid "Open MIDI File" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3756 +msgid "Merge MIDI File" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3866 +msgid "Importing MIDI file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3903 +msgid "Calculating notation..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3950 +msgid "Calculate Notation" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3991 +#: ../src/gui/application/RosegardenGUIApp.cpp:4008 +msgid "" +"*.rose|Rosegarden-2 files\n" +"*|All files" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3992 +#: ../src/gui/application/RosegardenGUIApp.cpp:4009 +msgid "Open Rosegarden 2.1 File" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4026 +msgid "Importing Rosegarden 2.1 file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4052 +msgid "Can't load Rosegarden 2.1 file. It appears to be corrupted." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4078 +#: ../src/gui/application/RosegardenGUIApp.cpp:4095 +msgid "" +"*.h2song|Hydrogen files\n" +"*|All files" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4079 +#: ../src/gui/application/RosegardenGUIApp.cpp:4096 +msgid "Open Hydrogen File" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4113 +msgid "Importing Hydrogen file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4139 +msgid "Can't load Hydrogen file. It appears to be corrupted." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4527 +msgid "Export and import of Rosegarden Project files" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4529 +msgid "The Rosegarden Project Packager helper script" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4533 +msgid "%1 - for project file support" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4550 +msgid "The Rosegarden LilyPondView helper script" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4554 +msgid "%1 - for LilyPond preview support" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4570 +msgid "The Rosegarden Audio File Importer helper script" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4574 +msgid "%1 - for audio file import" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4585 +msgid "" +"

              Helper programs not found

              Rosegarden could not find one or more " +"helper programs which it needs to provide some features. The following " +"features will not be available:

              " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4586 +#: ../src/gui/application/RosegardenGUIApp.cpp:4592 +msgid "
                " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4588 +#: ../src/gui/application/RosegardenGUIApp.cpp:4594 +msgid "
              • %1
              • " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4590 +#: ../src/gui/application/RosegardenGUIApp.cpp:4596 +msgid "
              " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4591 +msgid "" +"

              To fix this, you should install the following additional programs:

              " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4603 +msgid "Helper programs not found" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4686 +msgid "Starting the sequencer..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4712 +msgid "Couldn't start the sequencer" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4789 +msgid "Clearing down jackd..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4803 +msgid "Starting jackd..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4842 +msgid "" +"The Rosegarden sequencer process has exited unexpectedly. Sound and " +"recording will no longer be available for this session.\n" +"Please exit and restart Rosegarden to restore sound capability." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4846 +msgid "" +"The Rosegarden sequencer could not be started, so sound and recording will " +"be unavailable for this session.\n" +"For assistance with correct audio and MIDI configuration, go to http://" +"rosegardenmusic.com." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4856 +msgid "Exporting Rosegarden Project file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4859 +msgid "Rosegarden Project files\n" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4861 +#: ../src/gui/application/RosegardenGUIApp.cpp:4905 +#: ../src/gui/application/RosegardenGUIApp.cpp:4943 +#: ../src/gui/application/RosegardenGUIApp.cpp:4976 +#: ../src/gui/application/RosegardenGUIApp.cpp:5010 +#: ../src/gui/application/RosegardenGUIApp.cpp:5116 +msgid "Export as..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4875 +#, c-format +msgid "Saving Rosegarden file to package failed: %1" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4889 +msgid "Failed to export to project file \"%1\"" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4900 +#: ../src/gui/application/RosegardenGUIApp.cpp:4915 +msgid "Exporting MIDI file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4903 +msgid "Standard MIDI files\n" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4934 +#: ../src/gui/application/RosegardenGUIApp.cpp:4966 +#: ../src/gui/application/RosegardenGUIApp.cpp:4999 +#: ../src/gui/application/RosegardenGUIApp.cpp:5103 +#: ../src/gui/application/RosegardenGUIApp.cpp:5140 +#: ../src/gui/editors/notation/NotationView.cpp:4733 +msgid "Export failed. The file could not be opened for writing." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4940 +#: ../src/gui/application/RosegardenGUIApp.cpp:4952 +msgid "Exporting Csound score file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4972 +#: ../src/gui/application/RosegardenGUIApp.cpp:4985 +msgid "Exporting Mup file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4975 +msgid "Mup files\n" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5005 +#: ../src/gui/application/RosegardenGUIApp.cpp:5089 +#: ../src/gui/editors/notation/NotationView.cpp:4719 +msgid "Exporting LilyPond file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5008 +msgid "LilyPond files" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5023 +#: ../src/gui/editors/notation/NotationView.cpp:4653 +msgid "Printing LilyPond file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5028 +#: ../src/gui/application/RosegardenGUIApp.cpp:5052 +#: ../src/gui/editors/notation/NotationView.cpp:4658 +#: ../src/gui/editors/notation/NotationView.cpp:4682 +msgid "Failed to open a temporary file for LilyPond export." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5047 +#: ../src/gui/editors/notation/NotationView.cpp:4677 +msgid "Previewing LilyPond file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5080 +#: ../src/gui/editors/notation/NotationView.cpp:4710 +msgid "LilyPond Preview Options" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5081 +#: ../src/gui/editors/notation/NotationView.cpp:4711 +msgid "LilyPond preview options" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5112 +#: ../src/gui/application/RosegardenGUIApp.cpp:5126 +msgid "Exporting MusicXML file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5115 +msgid "XML files" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5289 +#: ../src/gui/editors/segment/TrackButtons.cpp:417 +msgid "" +"The audio file path does not exist or is not writable.\n" +"Please set the audio file path to a valid directory in Document Properties " +"before recording audio.\n" +"Would you like to set it now?" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5337 +msgid "" +"The audio file path does not exist or is not writable.\n" +"Please set the audio file path to a valid directory in Document Properties " +"before you start to record audio.\n" +"Would you like to set it now?" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5780 +msgid "Move playback pointer to time" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5793 +#: ../src/gui/editors/matrix/MatrixView.cpp:2240 +msgid "%1%" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5861 +#, c-format +msgid "Replace Tempo Change at %1" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5891 +msgid "Set Global and Default Tempo" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5914 +msgid "Move Tempo Change" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5949 +msgid "new marker" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5950 +msgid "no description" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6363 +#, c-format +msgid "Sequencer failed to add audio file %1" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6388 +#, c-format +msgid "Sequencer failed to remove audio file id %1" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6448 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1086 +msgid "Modify Segment label" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6450 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1088 +msgid "Modify Segments label" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6452 +msgid "Relabelling selection..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7539 +msgid "Play List" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7567 +msgid "http://rosegarden.sourceforge.net/tutorial/en/chapter-0.html" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7574 +msgid "http://rosegarden.sourceforge.net/tutorial/bug-guidelines.html" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7650 +msgid "Queueing MIDI panic events for tranmission..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7708 +msgid "Are you sure you want to save this as your default studio?" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7713 +msgid "Saving current document as default studio..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7738 +msgid "" +"Are you sure you want to import your default studio and lose the current one?" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7773 +msgid "Import Studio from File" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7807 +msgid "Import Studio" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:8015 +msgid "" +"

              Newer version available

              A newer version of Rosegarden may be " +"available.
              Please consult the Rosegarden website for more information.

              " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:8016 +msgid "Newer version available" +msgstr "" + +#: ../src/gui/application/RosegardenApplication.cpp:104 +#, c-format +msgid "Failed to load soundfont %1" +msgstr "" + +#: ../src/gui/application/main.cpp:311 +msgid "Rosegarden - A sequencer and musical notation editor" +msgstr "" + +#: ../src/gui/application/main.cpp:315 +msgid "Don't use the sequencer (support editing only)" +msgstr "" + +#: ../src/gui/application/main.cpp:316 +msgid "Don't show the splash screen" +msgstr "" + +#: ../src/gui/application/main.cpp:317 +msgid "Don't automatically run in the background" +msgstr "" + +#: ../src/gui/application/main.cpp:318 +msgid "Attach to a running sequencer process, if found" +msgstr "" + +#: ../src/gui/application/main.cpp:319 +msgid "Ignore installed version - for devs only" +msgstr "" + +#: ../src/gui/application/main.cpp:320 +msgid "file to open" +msgstr "" + +#: ../src/gui/application/main.cpp:370 +msgid "Installation contains the wrong version of Rosegarden." +msgstr "" + +#: ../src/gui/application/main.cpp:371 +msgid "" +" The wrong versions of Rosegarden's data files were\n" +" found in the standard KDE installation directories.\n" +" (I am %1, but the installed files are for version %2.)\n" +"\n" +" This may mean one of the following:\n" +"\n" +" 1. This is a new upgrade of Rosegarden, and it has not yet been\n" +" installed. If you compiled it yourself, check that you have\n" +" run \"make install\" and that the procedure completed\n" +" successfully.\n" +"\n" +" 2. The upgrade was installed in a non-standard directory,\n" +" and an old version was found in a standard directory. If so,\n" +" you will need to add the correct directory to your KDEDIRS\n" +" environment variable before you can run it." +msgstr "" + +#: ../src/gui/application/main.cpp:383 ../src/gui/application/main.cpp:401 +msgid "Installation problem" +msgstr "" + +#: ../src/gui/application/main.cpp:389 +msgid "Rosegarden does not appear to have been installed." +msgstr "" + +#: ../src/gui/application/main.cpp:390 +msgid "" +" One or more of Rosegarden's data files could not be\n" +" found in the standard KDE installation directories.\n" +"\n" +" This may mean one of the following:\n" +"\n" +" 1. Rosegarden has not been correctly installed. If you compiled\n" +" it yourself, check that you have run \"make install\" and that\n" +" the procedure completed successfully.\n" +"\n" +" 2. Rosegarden has been installed in a non-standard directory,\n" +" and you need to add this directory to your KDEDIRS environment\n" +" variable before you can run it. This may be the case if you\n" +" installed into $HOME or a local third-party package directory\n" +" like /usr/local or /opt." +msgstr "" + +#: ../src/gui/application/main.cpp:414 +msgid "Rosegarden" +msgstr "" + +#: ../src/gui/application/main.cpp:416 +msgid "" +"Copyright 2000 - 2008 Guillaume Laurent, Chris Cannam, Richard Bown\n" +"Parts copyright 1994 - 2004 Chris Cannam, Andy Green, Richard Bown, " +"Guillaume Laurent\n" +"LilyPond fonts copyright 1997 - 2005 Han-Wen Nienhuys and Jan Nieuwenhuizen" +msgstr "" + +#: ../src/gui/application/main.cpp:428 +msgid "Chord labelling code" +msgstr "" + +#: ../src/gui/application/main.cpp:429 +msgid "" +"LilyPond output\n" +"assorted other patches\n" +"i18n-ization" +msgstr "" + +#: ../src/gui/application/main.cpp:430 +msgid "" +"UI improvements\n" +"bug fixes" +msgstr "" + +#: ../src/gui/application/main.cpp:431 +msgid "" +"Segment colours\n" +"Other UI and bug fixes" +msgstr "" + +#: ../src/gui/application/main.cpp:432 +msgid "" +"Russian translation\n" +"i18n-ization" +msgstr "" + +#: ../src/gui/application/main.cpp:433 ../src/gui/application/main.cpp:434 +msgid "German translation" +msgstr "" + +#: ../src/gui/application/main.cpp:435 +msgid "Welsh translation" +msgstr "" + +#: ../src/gui/application/main.cpp:436 +msgid "French translation" +msgstr "" + +#: ../src/gui/application/main.cpp:437 +msgid "" +"French translation\n" +"Bug fixes" +msgstr "" + +#: ../src/gui/application/main.cpp:438 ../src/gui/application/main.cpp:439 +msgid "Italian translation" +msgstr "" + +#: ../src/gui/application/main.cpp:440 ../src/gui/application/main.cpp:441 +msgid "Swedish translation" +msgstr "" + +#: ../src/gui/application/main.cpp:442 +msgid "Estonian translation" +msgstr "" + +#: ../src/gui/application/main.cpp:443 ../src/gui/application/main.cpp:444 +msgid "Dutch translation" +msgstr "" + +#: ../src/gui/application/main.cpp:445 +msgid "HSpinBox class" +msgstr "" + +#: ../src/gui/application/main.cpp:446 +msgid "Transposition by interval" +msgstr "" + +#: ../src/gui/application/main.cpp:447 +msgid "Original designs for rotary controllers" +msgstr "" + +#: ../src/gui/application/main.cpp:448 +msgid "Japanese translation" +msgstr "" + +#: ../src/gui/application/main.cpp:449 +msgid "" +"Auto-scroll deceleration\n" +"Rests outside staves and other bug fixes" +msgstr "" + +#: ../src/gui/application/main.cpp:450 +msgid "Simplified Chinese translation" +msgstr "" + +#: ../src/gui/application/main.cpp:451 +msgid "LIRC infrared remote-controller support" +msgstr "" + +#: ../src/gui/application/main.cpp:452 +msgid "MTC slave timing implementation" +msgstr "" + +#: ../src/gui/application/main.cpp:453 +msgid "Czech translation" +msgstr "" + +#: ../src/gui/application/main.cpp:454 +msgid "SCons/bksys building system" +msgstr "" + +#: ../src/gui/application/main.cpp:455 +msgid "icons, icons, icons" +msgstr "" + +#: ../src/gui/application/main.cpp:456 ../src/gui/application/main.cpp:457 +#: ../src/gui/application/main.cpp:458 ../src/gui/application/main.cpp:459 +msgid "Spanish translation" +msgstr "" + +#: ../src/gui/application/main.cpp:460 ../src/gui/application/main.cpp:461 +msgid "Catalan translation" +msgstr "" + +#: ../src/gui/application/main.cpp:462 +msgid "" +"1.2.3 splash screen photo\n" +"Gave birth to D. Michael McIntyre, bought him a good flute once\n" +"upon a time, and always humored him when he came over to play her\n" +"some new instrument, even though she really hated his playing.\n" +"Born October 19, 1951, died September 21, 2007, R. I. P." +msgstr "" + +#: ../src/gui/application/main.cpp:463 +msgid "Initial guitar chord editing code" +msgstr "" + +#: ../src/gui/application/main.cpp:464 +msgid "Polish translation" +msgstr "" + +#: ../src/gui/application/main.cpp:465 +msgid "Basque translation" +msgstr "" + +#: ../src/gui/application/main.cpp:466 +msgid "Klearlook theme" +msgstr "" + +#: ../src/_translatorinfo.cpp:1 ../src/gui/application/main.cpp:468 +msgid "" +"_: NAME OF TRANSLATORS\n" +"Your names" +msgstr "" + +#: ../src/_translatorinfo.cpp:3 ../src/gui/application/main.cpp:468 +msgid "" +"_: EMAIL OF TRANSLATORS\n" +"Your emails" +msgstr "" + +#: ../src/gui/application/main.cpp:719 +msgid "Welcome!" +msgstr "" + +#: ../src/gui/application/main.cpp:731 +msgid "" +"

              Welcome to Rosegarden!

              Welcome to the Rosegarden audio and MIDI " +"sequencer and musical notation editor.

              • If you have not already " +"done so, you may wish to install some DSSI synth plugins, or a separate " +"synth program such as QSynth. Rosegarden does not synthesize sounds from " +"MIDI on its own, so without these you will hear nothing.

              • Rosegarden uses the JACK audio server for recording and " +"playback of audio, and for playback from DSSI synth plugins. These features " +"will only be available if the JACK server is running.

              • Rosegarden has comprehensive documentation: see the Help menu " +"for the handbook, tutorials, and other information!

              Rosegarden " +"was brought to you by a team of volunteers across the world. To learn more, " +"go to http://www.rosegardenmusic." +"com/.

              " +msgstr "" + +#: ../src/gui/application/RosegardenGUIView.cpp:257 +msgid "No non-audio segments in composition" +msgstr "" + +#: ../src/gui/application/RosegardenGUIView.cpp:333 +msgid "Selection must contain only audio or non-audio segments" +msgstr "" + +#: ../src/gui/application/RosegardenGUIView.cpp:431 +#: ../src/gui/application/RosegardenGUIView.cpp:576 +#: ../src/gui/application/RosegardenGUIView.cpp:612 +#: ../src/gui/application/RosegardenGUIView.cpp:776 +msgid "No non-audio segments selected" +msgstr "" + +#: ../src/gui/application/RosegardenGUIView.cpp:851 +msgid "" +"You've not yet defined an audio editor for Rosegarden to use.\n" +"See Settings -> Configure Rosegarden -> Audio." +msgstr "" + +#: ../src/gui/application/RosegardenGUIView.cpp:1559 +#: ../src/gui/application/RosegardenGUIView.cpp:1564 +msgid "Can't add dropped file. " +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1014 +#: ../src/gui/seqmanager/SequenceManager.cpp:1150 +msgid "" +"The JACK Audio subsystem has failed or it has stopped Rosegarden from " +"processing audio.\n" +"Please restart Rosegarden to continue working with audio.\n" +"Quitting other running applications may improve Rosegarden's performance." +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1020 +#: ../src/gui/seqmanager/SequenceManager.cpp:1156 +msgid "" +"The JACK Audio subsystem has stopped Rosegarden from processing audio, " +"probably because of a processing overload.\n" +"An attempt to restart the audio service has been made, but some problems may " +"remain.\n" +"Quitting other running applications may improve Rosegarden's performance." +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1031 +msgid "" +"Run out of processor power for real-time audio processing. Cannot continue." +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1057 +msgid "" +"A serious error has occurred in the ALSA MIDI subsystem. It may not be " +"possible to continue sequencing. Please check console output for more " +"information." +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1078 +msgid "JACK Audio subsystem is losing sample frames." +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1096 +msgid "" +"Failed to read audio data from disc in time to service the audio subsystem." +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1100 +msgid "" +"Failed to write audio data to disc fast enough to service the audio " +"subsystem." +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1104 +msgid "The audio mixing subsystem is failing to keep up." +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1108 +msgid "The audio subsystem is failing to keep up." +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1112 +msgid "Unknown sequencer failure mode!" +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1170 +msgid "" +"

              System timer resolution is too low

              Rosegarden was unable to find " +"a high-resolution timing source for MIDI performance.

              This may mean " +"you are using a Linux system with the kernel timer resolution set too low. " +"Please contact your Linux distributor for more information.

              Some Linux " +"distributors already provide low latency kernels, see http://rosegarden.wiki." +"sourceforge.net/Low+latency+kernels for instructions.

              " +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1188 +msgid "" +"

              System timer resolution is too low

              Rosegarden was unable to find " +"a high-resolution timing source for MIDI performance.

              You may be able " +"to solve this problem by loading the RTC timer kernel module. To do this, " +"try running sudo modprobe snd-rtctimer in a terminal window and then " +"restarting Rosegarden.

              Alternatively, check whether your Linux " +"distributor provides a multimedia-optimized kernel. See http://rosegarden.wiki." +"sourceforge.net/Low+latency+kernels for notes about this.

              " +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1312 +msgid "" +"

              Both MIDI and Audio subsystems have failed to initialize.

              You may " +"continue without the sequencer, but we suggest closing Rosegarden, running " +"\"alsaconf\" as root, and starting Rosegarden again. If you wish to run " +"with no sequencer by design, then use \"rosegarden --nosequencer\" to avoid " +"seeing this error in the future.

              " +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1314 +msgid "" +"

              The MIDI subsystem has failed to initialize.

              You may continue " +"without the sequencer, but we suggest closing Rosegarden, running \"modprobe " +"snd-seq-midi\" as root, and starting Rosegarden again. If you wish to run " +"with no sequencer by design, then use \"rosegarden --nosequencer\" to avoid " +"seeing this error in the future.

              " +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1316 +msgid "" +"

              The Rosegarden sequencer module version does not match the GUI module " +"version.

              You have probably mixed up files from two different versions " +"of Rosegarden. Please check your installation.

              " +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1322 +#, c-format +msgid "

              Sequencer startup failed

              %1" +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1330 +msgid "" +"

              Failed to connect to JACK audio server.

              Rosegarden could not " +"connect to the JACK audio server. This probably means the JACK server is " +"not running.

              If you want to be able to play or record audio files or " +"use plugins, you should exit Rosegarden and start the JACK server before " +"running Rosegarden again.

              " +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1331 +msgid "Failed to connect to JACK" +msgstr "" + +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:46 +msgid "Modify MIDI filters..." +msgstr "" + +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:58 +msgid "THRU events to ignore" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:131 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:60 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:96 +msgid "Note" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:132 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:61 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:97 +msgid "Program Change" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:136 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:62 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:98 +msgid "Key Pressure" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:137 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:63 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:99 +msgid "Channel Pressure" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:134 +#: ../src/gui/general/EditView.cpp:899 +#: ../src/gui/rulers/ControllerEventsRuler.cpp:198 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:64 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:100 +msgid "Pitch Bend" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:133 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:65 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:101 +msgid "Controller" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:135 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:66 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:102 +msgid "System Exclusive" +msgstr "" + +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:94 +msgid "RECORD events to ignore" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:101 +msgid "Note:" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:108 ../src/gui/widgets/TimeWidget.cpp:145 +msgid "" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:151 +msgid "Units:" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:173 +msgid "Time:" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:184 +msgid "units" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:193 +msgid "Measures:" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:193 +msgid "Measure:" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:212 +msgid "beats:" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:212 +msgid "beat:" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:230 +msgid "%1:" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:254 +msgid "Seconds:" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:273 +msgid "msec:" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:407 ../src/gui/widgets/TimeWidget.cpp:531 +msgid "(%1/%2 time)" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:452 +msgid "(starting %1.%2 qpm, %2.%3 bpm)" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:458 +msgid "(starting %1.%2 bpm)" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:464 +msgid "(%1.%2 qpm, %2.%3 bpm)" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:470 +msgid "(%1.%2 bpm)" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:239 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:60 +msgid "C" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:241 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:61 +msgid "D" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:243 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:62 +msgid "E" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:244 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:63 +msgid "F" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:246 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:64 +msgid "G" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:248 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:65 +msgid "A" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:250 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:66 +msgid "B" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:70 +msgid "-2" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:71 +msgid "-1" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:72 +msgid "0" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:73 +msgid "1" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:74 +msgid "2" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:75 +msgid "3" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:76 +msgid "4" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:77 +msgid "5" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:78 +msgid "6" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:79 +msgid "7" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:83 +msgid "double flat" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:84 +msgid "flat" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:85 +msgid "natural" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:86 +msgid "sharp" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:87 +msgid "double sharp" +msgstr "" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:234 +#, c-format +msgid "In %1" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:587 +#: ../src/gui/widgets/AudioRouteMenu.cpp:236 +#: ../src/gui/widgets/AudioRouteMenu.cpp:259 +msgid "Master" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:528 +#: ../src/gui/widgets/AudioRouteMenu.cpp:238 +#: ../src/gui/widgets/AudioRouteMenu.cpp:261 +#, c-format +msgid "Sub %1" +msgstr "" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:244 +msgid "In %1 R" +msgstr "" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:245 +msgid "In %1 L" +msgstr "" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:247 +msgid "Master R" +msgstr "" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:248 +msgid "Master L" +msgstr "" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:250 +msgid "Sub %1 R" +msgstr "" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:251 +msgid "Sub %1 L" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:391 +#: ../src/gui/studio/AudioMixerWindow.cpp:522 +#: ../src/gui/widgets/AudioFaderBox.cpp:82 +msgid "Audio plugin button" +msgstr "" + +#: ../src/gui/editors/parameters/AudioInstrumentParameterPanel.cpp:129 +#: ../src/gui/editors/parameters/AudioInstrumentParameterPanel.cpp:357 +#: ../src/gui/widgets/AudioFaderBox.cpp:91 +msgid "" +msgstr "" + +#: ../src/gui/widgets/AudioFaderBox.cpp:93 +msgid "Synth plugin button" +msgstr "" + +#: ../src/gui/widgets/AudioFaderBox.cpp:153 +msgid "Set the audio pan position in the stereo field" +msgstr "" + +#: ../src/gui/widgets/AudioFaderBox.cpp:155 +msgid "Open synth plugin's native editor" +msgstr "" + +#: ../src/gui/widgets/AudioFaderBox.cpp:157 +msgid "Mono or Stereo Instrument" +msgstr "" + +#: ../src/gui/widgets/AudioFaderBox.cpp:159 +msgid "Record level" +msgstr "" + +#: ../src/gui/widgets/AudioFaderBox.cpp:161 +msgid "Playback level" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:345 +#: ../src/gui/studio/AudioMixerWindow.cpp:347 +#: ../src/gui/studio/AudioMixerWindow.cpp:503 +#: ../src/gui/studio/AudioMixerWindow.cpp:505 +#: ../src/gui/widgets/AudioFaderBox.cpp:163 +msgid "Audio level" +msgstr "" + +#: ../src/gui/widgets/AudioFaderBox.cpp:170 +msgid "In:" +msgstr "" + +#: ../src/gui/widgets/AudioFaderBox.cpp:173 +msgid "Out:" +msgstr "" + +#: ../src/gui/widgets/ProgressDialog.cpp:48 +#: ../src/gui/widgets/ProgressDialog.cpp:53 +#: ../src/gui/widgets/ProgressDialog.cpp:76 +msgid "Processing..." +msgstr "" + +#: ../src/gui/configuration/ColourConfigurationPage.h:60 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:130 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:346 +#: ../src/gui/widgets/ColourTable.cpp:52 +msgid "Color" +msgstr "" + +#: ../src/gui/widgets/ColourTable.cpp:68 +msgid "Modify Color Name" +msgstr "" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:129 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:983 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:882 +#: ../src/gui/widgets/ColourTable.cpp:68 +msgid "Enter new name" +msgstr "" + +#: ../src/gui/widgets/ColourTable.cpp:107 +msgid "Default Color" +msgstr "" + +#: ../src/gui/widgets/Rotary.cpp:108 +msgid "" +"Click and drag up and down or left and right to modify.\n" +"Double click to edit value directly." +msgstr "" + +#: ../src/gui/widgets/Rotary.cpp:433 +msgid "Select a new value" +msgstr "" + +#: ../src/gui/widgets/Rotary.cpp:434 +msgid "Enter a new value" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:80 +msgid "Quantizer" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:86 +msgid "Quantizer type:" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:88 +msgid "Grid quantizer" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:89 +msgid "Legato quantizer" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:90 +msgid "Heuristic notation quantizer" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:94 +msgid "Quantize for notation only (leave performance unchanged)" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:104 +msgid "Notation parameters" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:109 +#: ../src/gui/widgets/QuantizeParameters.cpp:150 +msgid "Base grid unit:" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:114 +msgid "Complexity:" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:118 +msgid "Very high" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:119 +msgid "High" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:224 +#: ../src/gui/widgets/QuantizeParameters.cpp:120 +msgid "Normal" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:121 +msgid "Low" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:122 +msgid "Very low" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:125 +msgid "Tuplet level:" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:129 +msgid "2-in-the-time-of-3" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4241 +#: ../src/gui/widgets/QuantizeParameters.cpp:130 +msgid "Triplet" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:138 +msgid "Any" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:141 +msgid "Permit counterpoint" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:145 +msgid "Grid parameters" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:154 +msgid "Swing:" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:159 +msgid "Iterative amount:" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:165 +msgid "Quantize durations as well as start times" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:169 +msgid "After quantization" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:183 +msgid "Show advanced options" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:192 +msgid "Re-beam" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:194 +msgid "Add articulations (staccato, tenuto, slurs)" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:195 +msgid "Tie notes at barlines etc" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:196 +msgid "Split-and-tie overlapping chords" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:307 +msgid "Full quantize" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:450 +msgid "Show Advanced Options" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:454 +msgid "Hide Advanced Options" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:257 +#: ../src/gui/configuration/MatrixConfigurationPage.h:56 +#: ../src/gui/configuration/MatrixConfigurationPage.h:57 +#: ../src/gui/editors/matrix/MatrixView.cpp:2709 +msgid "Matrix" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:64 +msgid "Printable headers" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:92 +msgid "Dedication" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:96 +#: ../src/gui/editors/segment/PlayListView.cpp:35 +msgid "Title" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:100 +msgid "Subtitle" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:104 +msgid "Subsubtitle" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:108 +msgid "Poet" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:116 +msgid "Composer" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:120 +msgid "Meter" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:124 +msgid "Arranger" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:128 +msgid "Piece" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:26 +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:132 +msgid "Opus" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:136 +msgid "Copyright" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:140 +msgid "Tagline" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:155 +msgid "The composition comes here." +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:172 +msgid "Non-printable headers" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:213 +msgid "Add New Property" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:217 +msgid "Delete Property" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:236 +msgid "{new property %1}" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:236 +msgid "{new property}" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:243 +msgid "{undefined}" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:87 +msgid "Double-click opens segment in" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:91 +msgid "Notation editor" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:92 +msgid "Matrix editor" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:93 +msgid "Event List editor" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:99 +msgid "Number of count-in measures when recording" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:109 +msgid "Auto-save interval" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:112 +msgid "Every 30 seconds" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:113 +msgid "Every minute" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:114 +msgid "Every five minutes" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:115 +msgid "Every half an hour" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:116 +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:277 +#: ../src/gui/configuration/NotationConfigurationPage.cpp:157 +msgid "Never" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:140 +msgid "Use JACK transport" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:173 +msgid "Unknown" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:179 +msgid "No MIDI, audio OK" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:182 +msgid "MIDI OK, no audio" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:185 +msgid "MIDI OK, audio OK" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:188 +msgid "No driver" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:195 +msgid "Details..." +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:204 +msgid "Behavior" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:219 +msgid "Side-bar parameter box layout" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:223 +msgid "Vertically stacked" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:225 +msgid "Tabbed" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:233 +msgid "Note name style" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:237 +msgid "Always use US names (e.g. quarter, 8th)" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:238 +msgid "Localized (where available)" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:252 +msgid "Show textured background on" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:254 +msgid "Main window" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:275 +msgid "Use bundled Klearlook theme" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:278 +msgid "When not running under KDE" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:279 +#: ../src/gui/configuration/NotationConfigurationPage.cpp:159 +msgid "Always" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:287 +msgid "Presentation" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:423 +msgid "" +"Changes to the textured background in the main window will not take effect " +"until you restart Rosegarden." +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:168 +#: ../src/gui/configuration/GeneralConfigurationPage.h:78 +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:207 +#: ../src/gui/configuration/MatrixConfigurationPage.cpp:59 +msgid "General" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.h:79 +msgid "General Configuration" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:92 +msgid "Base octave number for MIDI pitch display" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:107 +msgid "Always use default studio when loading files" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:119 +msgid "Send all MIDI Controllers at start of each playback" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:121 +msgid "" +"Rosegarden can send all MIDI Controllers (Pan, Reverb etc) to all MIDI " +"devices every\n" +"time you hit play if you so wish. Please note that this option will usually " +"incur a\n" +"delay at the start of playback due to the amount of data being transmitted." +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:138 +msgid "Sequencer timing source" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:163 +msgid "Load SoundFont to SoundBlaster card at startup" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:164 +msgid "" +"Check this box to enable soundfont loading on EMU10K-based cards when " +"Rosegarden is launched" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:173 +msgid "Path to 'asfxload' or 'sfxload' command" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:180 +msgid "SoundFont" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:223 +msgid "MIDI Clock and System messages" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:229 +msgid "Send MIDI Clock, Start and Stop" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:230 +msgid "Accept Start, Stop and Continue" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:241 +msgid "MIDI Machine Control mode" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:248 +msgid "MMC Master" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:249 +msgid "MMC Slave" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:260 +msgid "MIDI Time Code mode" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:267 +msgid "MTC Master" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:268 +msgid "MTC Slave" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:281 +msgid "Automatically connect sync output to all devices in use" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:292 +msgid "MIDI Sync" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:308 +msgid "sfxload path" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:315 +msgid "Soundfont path" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:67 +msgid "%1 minutes %2.%3%4 seconds (%5 units, %6 measures)" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:133 +msgid "Filename:" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:136 +msgid "Formal duration (to end marker):" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:141 +msgid "Playing duration:" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:146 +msgid "Tracks:" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:147 +msgid "%1 used, %2 total" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:152 +msgid "Segments:" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:153 +msgid "%1 MIDI, %2 audio, %3 total" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:161 +msgid "Statistics" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:170 +#: ../src/gui/editors/parameters/InstrumentParameterBox.cpp:155 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:92 +msgid "Track" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:171 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:125 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:90 +msgid "Label" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:172 +msgid "Time" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:174 +msgid "Events" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:175 +msgid "Polyphony" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:176 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:126 +msgid "Repeat" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:178 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:128 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:305 +#: ../src/gui/general/EditView.cpp:1488 +msgid "Transpose" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:179 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:129 +msgid "Delay" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.h:61 +#: ../src/gui/configuration/AudioPropertiesPage.h:58 +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:204 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:523 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:524 +msgid "Audio" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:204 +#: ../src/gui/configuration/MIDIConfigurationPage.h:62 +msgid "MIDI" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:317 +msgid "Segment Summary" +msgstr "" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:63 +msgid "Audio file path:" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:137 +#: ../src/gui/configuration/AudioPropertiesPage.cpp:68 +msgid "Choose..." +msgstr "" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:73 +msgid "Disk space remaining:" +msgstr "" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:78 +msgid "Equivalent minutes of 16-bit stereo:" +msgstr "" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:90 +msgid "Modify audio path" +msgstr "" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:113 +msgid "%1 out of %2 (%3% used)" +msgstr "" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:144 +msgid "minutes at" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.h:63 +msgid "MIDI Settings" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.h:62 +#: ../src/gui/configuration/AudioPropertiesPage.h:59 +msgid "Audio Settings" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:87 +msgid "Default layout mode" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:91 +msgid "Linear layout" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:92 +msgid "Continuous page layout" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:93 +msgid "Multiple page layout" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:101 +msgid "Default spacing" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:125 +msgid "Default duration factor" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:141 +msgid "Full" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:152 +msgid "Show track headers (linear layout only)" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:158 +msgid "When needed" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:166 +msgid "" +"\"Always\" and \"Never\" mean what they usually mean\n" +"\"When needed\" means \"when staves are too many to all fit in the current " +"window\"" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:178 +msgid "Show non-notation events as question marks" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:188 +msgid "Show notation-quantized notes in a different color" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:198 +msgid "Show \"invisible\" events in grey" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:208 +msgid "Show notes outside suggested playable range in red" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:218 +msgid "Highlight superimposed notes with a halo effect" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:231 +msgid "When recording MIDI, split-and-tie long notes at barlines" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:242 +msgid "Layout" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:255 +msgid "Default note style for new notes" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:287 +msgid "When inserting notes..." +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:294 +msgid "Split notes into ties to make durations match" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:295 +msgid "Ignore existing durations" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:305 +msgid "Auto-beam on insert when appropriate" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:317 +#: ../src/gui/editors/notation/NotationEraser.cpp:54 +msgid "Collapse rests after erase" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:328 +msgid "Default paste type" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:350 +msgid "Editing" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:362 +msgid "Accidentals in one octave..." +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:364 +msgid "Affect only that octave" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:365 +msgid "Require cautionaries in other octaves" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:366 +msgid "Affect all subsequent octaves" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:374 +msgid "Accidentals in one bar..." +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:376 +msgid "Affect only that bar" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:377 +msgid "Require cautionary resets in following bar" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:378 +msgid "Require explicit resets in following bar" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:386 +msgid "Key signature cancellation style" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:388 +msgid "Cancel only when entering C major or A minor" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:389 +msgid "Cancel whenever removing sharps or flats" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:390 +msgid "Cancel always" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:400 +msgid "Accidentals" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:441 +msgid "Notation font" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:467 +msgid "Origin:" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:471 +msgid "Copyright:" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:475 +msgid "Mapped by:" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:479 +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:81 +msgid "Type:" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:508 +msgid "Font size for single-staff views" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:516 +msgid "Font size for multi-staff views" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:524 +msgid "Font size for printing (pt)" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:541 +msgid "Text font" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:549 +msgid "Sans-serif font" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:664 +msgid "%1 (smooth)" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:667 +msgid "%1 (jaggy)" +msgstr "" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:58 +msgid "JACK latency" +msgstr "" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:61 +msgid "" +"Use the \"Fetch JACK latencies\" button to discover the latency values set " +"at\n" +"the sequencer. It's recommended that you use the returned values but it's " +"also\n" +"possible to override them manually using the sliders. Note that if you " +"change\n" +"your JACK server parameters you should always fetch the latency values " +"again.\n" +"The latency values will be stored by Rosegarden for use next time." +msgstr "" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:65 +msgid "JACK playback latency (in ms)" +msgstr "" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:66 +msgid "JACK record latency (in ms)" +msgstr "" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:68 +msgid "Fetch JACK latencies" +msgstr "" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:121 +msgid "JACK Latency" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:92 +msgid "Audio preview scale" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:96 +msgid "Linear - easier to see loud peaks" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:97 +msgid "Meter scaling - easier to see quiet activity" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:105 +msgid "Record audio files as" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:107 +msgid "16-bit PCM WAV format (smaller files)" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:108 +msgid "32-bit float WAV format (higher quality)" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:117 +msgid "External audio editor" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:145 +msgid "Create JACK outputs" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:150 +msgid "for individual audio instruments" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:157 +msgid "for submasters" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:184 +msgid "" +"Rosegarden can start the JACK audio daemon (jackd) for you automatically if " +"it isn't already running when Rosegarden starts.\n" +"\n" +"This is recommended for beginners and those who use Rosegarden as their main " +"audio application, but it might not be to the liking of advanced users.\n" +"\n" +"If you want to start JACK automatically, make sure the command includes a " +"full path where necessary as well as any command-line arguments you want to " +"use.\n" +"\n" +"For example: /usr/local/bin/jackd -d alsa -d hw -r44100 -p 2048 -n 2\n" +"\n" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:196 +msgid "Start JACK when Rosegarden starts" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:201 +msgid "JACK command" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:214 +msgid "JACK Startup" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:224 +msgid "External audio editor path" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:262 +msgid "External audio editor \"%1\" not found or not executable" +msgstr "" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:70 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:448 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:863 +msgid "Add New Color" +msgstr "" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:74 +msgid "Delete Color" +msgstr "" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:93 +msgid "Color Map" +msgstr "" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:128 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:983 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:882 +msgid "New Color Name" +msgstr "" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:130 +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:59 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:984 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:883 +#: ../src/gui/studio/DeviceManagerDialog.cpp:115 +#: ../src/gui/studio/DeviceManagerDialog.cpp:174 +msgid "New" +msgstr "" + +#: ../src/gui/configuration/LatencyConfigurationPage.h:62 +msgid "Latency" +msgstr "" + +#: ../src/gui/configuration/LatencyConfigurationPage.h:63 +msgid "Sequencer Latency" +msgstr "" + +#: ../src/gui/configuration/ColourConfigurationPage.h:61 +msgid "Color Settings" +msgstr "" + +#: ../src/gui/studio/MidiDeviceListViewItem.cpp:55 +#: ../src/gui/studio/MidiKeyMapListViewItem.cpp:44 +msgid "Key Mapping" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:97 +msgid "Manage MIDI Banks and Programs" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:128 +msgid "MIDI Device" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:130 +#: ../src/gui/studio/BankEditorDialog.cpp:219 +msgid "MSB" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:131 +#: ../src/gui/studio/BankEditorDialog.cpp:218 +msgid "LSB" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:140 +msgid "Add Bank" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:141 +msgid "Add Key Mapping" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:153 +msgid "Add a Bank to the current device" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:157 +msgid "Add a Percussion Key Mapping to the current device" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:161 +msgid "Delete the current Bank or Key Mapping" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:165 +msgid "Delete all Banks and Key Mappings from the current Device" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:167 +#: ../src/gui/studio/DeviceManagerDialog.cpp:117 +msgid "Import..." +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:168 +#: ../src/gui/studio/DeviceManagerDialog.cpp:118 +msgid "Export..." +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:176 +msgid "" +"Import Bank and Program data from a Rosegarden file to the current Device" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:179 +msgid "" +"Export all Device and Bank information to a Rosegarden format interchange " +"file" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:190 +msgid "Copy all Program names from current Bank to clipboard" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:194 +msgid "Paste Program names from clipboard to current Bank" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:216 +msgid "Show Variation list based on " +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1010 +msgid "" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1046 +msgid "" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1048 +msgid "" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1089 +msgid "Really delete this bank?" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1137 +msgid "Really delete this key mapping?" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1187 +msgid "Really delete all banks for " +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1476 +msgid "Import Banks from Device in File" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1623 +#: ../src/gui/studio/DeviceManagerDialog.cpp:770 +msgid "Export Device as..." +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1694 +msgid "" +"There are unsaved changes.\n" +"Do you want to apply the changes before exiting the Bank Editor or discard " +"the changes ?" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1697 +msgid "Unsaved Changes" +msgstr "" + +#: ../src/gui/studio/NameSetEditor.cpp:68 +msgid "Librarian" +msgstr "" + +#: ../src/gui/studio/NameSetEditor.cpp:75 +msgid "Email" +msgstr "" + +#: ../src/gui/studio/NameSetEditor.cpp:80 +msgid "" +"The librarian maintains the Rosegarden device data for this device.\n" +"If you've made modifications to suit your own device, it might be worth\n" +"liaising with the librarian in order to publish your information for the " +"benefit\n" +"of others." +msgstr "" + +#: ../src/gui/studio/MidiBankListViewItem.cpp:51 +#: ../src/gui/studio/MidiDeviceListViewItem.cpp:48 +msgid "Percussion Bank" +msgstr "" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:84 +#: ../src/gui/studio/MidiBankListViewItem.cpp:51 +#: ../src/gui/studio/MidiDeviceListViewItem.cpp:48 +msgid "Bank" +msgstr "" + +#: ../src/gui/studio/ChangeRecordDeviceCommand.h:39 +msgid "Change Record Device" +msgstr "" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:61 +#: ../src/gui/studio/DeviceManagerDialog.cpp:96 +msgid "Manage MIDI Devices" +msgstr "" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:98 +msgid "Play devices" +msgstr "" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:76 +#: ../src/gui/studio/DeviceManagerDialog.cpp:106 +#: ../src/gui/studio/DeviceManagerDialog.cpp:165 +msgid "Connection" +msgstr "" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:119 +msgid "Banks..." +msgstr "" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:120 +msgid "Control Events..." +msgstr "" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:126 +msgid "Create a new Play device" +msgstr "" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:129 +#: ../src/gui/studio/DeviceManagerDialog.cpp:184 +msgid "Delete the selected device" +msgstr "" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:132 +msgid "" +"Import Bank, Program and Controller data from a Rosegarden file to the " +"selected device" +msgstr "" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:135 +msgid "Export Bank and Controller data to a Rosegarden interchange file" +msgstr "" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:138 +msgid "View and edit Banks and Programs for the selected device" +msgstr "" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:141 +msgid "" +"View and edit Control Events for the selected device - these are special " +"Event types that you can define against your device and control through " +"Control Rulers or the Instrument Parameter Box " +msgstr "" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:156 +msgid "Record devices" +msgstr "" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:164 +msgid "Current" +msgstr "" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:181 +msgid "Create a new Record device" +msgstr "" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:360 +#: ../src/gui/studio/DeviceEditorDialog.cpp:378 +#: ../src/gui/studio/DeviceManagerDialog.cpp:486 +#: ../src/gui/studio/DeviceManagerDialog.cpp:501 +msgid "New Device" +msgstr "" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:703 +msgid "Import from Device in File" +msgstr "" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:55 +msgid "Remap Instrument assigments..." +msgstr "" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:62 +msgid "Device or Instrument" +msgstr "" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:65 +msgid "Remap Tracks by all Instruments on a Device or by single Instrument" +msgstr "" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:74 +msgid "Choose Source and Destination" +msgstr "" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:77 +msgid "From" +msgstr "" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:78 +msgid "To" +msgstr "" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:120 +#: ../src/gui/studio/RemapInstrumentDialog.cpp:121 +msgid "" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:155 +msgid "Show Audio &Faders" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:160 +msgid "Show Synth &Faders" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:165 +msgid "Show &Submasters" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:170 +msgid "Show &Plugin Buttons" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:175 +msgid "Show &Unassigned Faders" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:184 +#, c-format +msgid "" +"_n: 1 Input\n" +"%n Inputs" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:194 +msgid "No Submasters" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:203 +#, c-format +msgid "" +"_n: 1 Submaster\n" +"%n Submasters" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:279 +msgid "Audio Mixer" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:311 +msgid "Record input source" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:322 +msgid "Output destination" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:336 +#: ../src/gui/studio/AudioMixerWindow.cpp:495 +msgid "Pan" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:355 +msgid "Mono or stereo" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:364 +#: ../src/gui/studio/AudioMixerWindow.cpp:513 +msgid "Mute" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:373 rc.cpp:408 +#, no-c-format +msgid "Solo" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:382 +msgid "Arm recording" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:400 +#, c-format +msgid "Audio %1" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:404 +#, c-format +msgid "Synth %1" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:578 +#: ../src/gui/studio/AudioMixerWindow.cpp:580 +msgid "Audio master output level" +msgstr "" + +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:71 +msgid "Manage Synth Plugins" +msgstr "" + +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:78 +msgid "Synth plugins" +msgstr "" + +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:145 +msgid "Controls" +msgstr "" + +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:152 +msgid "Editor >>" +msgstr "" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:66 +#: ../src/gui/studio/MidiProgramsEditor.cpp:169 +msgid "Bank and Program details" +msgstr "" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:67 +msgid "Programs" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2711 +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:88 +#: ../src/gui/studio/MidiProgramsEditor.cpp:93 +msgid "Percussion" +msgstr "" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:99 +msgid "MSB Value" +msgstr "" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:107 +msgid "" +"Selects a MSB controller Bank number (MSB/LSB pairs are always unique for " +"any Device)" +msgstr "" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:111 +msgid "" +"Selects a LSB controller Bank number (MSB/LSB pairs are always unique for " +"any Device)" +msgstr "" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:116 +msgid "LSB Value" +msgstr "" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:254 +#: ../src/gui/studio/MidiProgramsEditor.cpp:541 +#, c-format +msgid "Key Mapping: %1" +msgstr "" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:476 +msgid "" +msgstr "" + +#: ../src/gui/studio/MidiKeyMappingEditor.cpp:57 +#: ../src/gui/studio/MidiKeyMappingEditor.cpp:81 +msgid "Key Mapping details" +msgstr "" + +#: ../src/gui/studio/MidiKeyMappingEditor.cpp:58 +msgid "Pitches" +msgstr "" + +#: ../src/gui/studio/MidiMixerWindow.cpp:152 +msgid "MIDI Mixer" +msgstr "" + +#: ../src/gui/studio/MidiMixerWindow.cpp:199 +msgid "Volume" +msgstr "" + +#: ../src/gui/studio/AudioPluginOSCGUIManager.cpp:444 +msgid "Rosegarden Plugin" +msgstr "" + +#: ../src/gui/studio/AudioPluginOSCGUIManager.cpp:447 +#, c-format +msgid "Rosegarden: %1" +msgstr "" + +#: ../src/gui/studio/AudioPluginOSCGUIManager.cpp:449 +msgid "Rosegarden: %1: %2" +msgstr "" + +#: ../src/gui/studio/AudioPluginOSCGUIManager.cpp:450 +#, c-format +msgid "Plugin slot %1" +msgstr "" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:92 +msgid "Add Play Device" +msgstr "" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:93 +msgid "Add Record Device" +msgstr "" + +#: ../src/commands/studio/CreateOrDeleteDeviceCommand.h:68 +#: ../src/gui/studio/DeviceEditorDialog.cpp:94 +msgid "Delete Device" +msgstr "" + +#: ../src/gui/editors/segment/PlayList.cpp:77 +#: ../src/gui/studio/DeviceEditorDialog.cpp:156 +#: ../src/gui/studio/DeviceEditorDialog.cpp:361 +msgid "Play" +msgstr "" + +#: ../src/commands/segment/SegmentRecordCommand.cpp:37 +#: ../src/gui/studio/DeviceEditorDialog.cpp:156 +#: ../src/gui/studio/DeviceEditorDialog.cpp:379 rc.cpp:394 +#, no-c-format +msgid "Record" +msgstr "" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:256 +msgid "Apply pending changes?" +msgstr "" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:359 +#: ../src/gui/studio/DeviceEditorDialog.cpp:377 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentEraser.cpp:82 +msgid "Click on a segment to delete it" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSplitter.cpp:166 +msgid "" +"Click on a segment to split it in two; hold Shift to avoid snapping to beat " +"grid" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSplitter.cpp:168 +msgid "Click on a segment to split it in two" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:81 +msgid "Click and drag to select segments" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentMover.cpp:154 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:238 +msgid "Move Segment" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentMover.cpp:154 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:239 +msgid "Move Segments" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:217 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:169 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:141 +#: ../src/gui/editors/segment/segmentcanvas/SegmentMover.cpp:210 +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:255 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:359 +msgid "Hold Shift to avoid snapping to beat grid" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:485 +msgid "" +"Click and drag to select segments; middle-click and drag to draw an empty " +"segment" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:384 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:502 +msgid "" +"Click and drag to resize a segment; hold Ctrl as well to rescale its contents" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:386 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:504 +msgid "Click and drag to rescale segment" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:509 +msgid "Click and drag to move segments; hold Ctrl as well to copy them" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:511 +msgid "Click and drag to copy segments" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:515 +msgid "" +"Click and drag to move segment; hold Ctrl as well to copy it; double-click " +"to edit" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:517 +msgid "Click and drag to copy segment" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:157 +msgid "" +"The audio file path does not exist or is not writable.\n" +"You must set the audio file path to a valid directory in Document Properties " +"before rescaling an audio file.\n" +"Would you like to set it now?" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:261 +msgid "" +"Hold Shift to avoid snapping to beat grid; hold Ctrl as well to rescale " +"contents" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentMover.cpp:325 +msgid "Click and drag to move a segment" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentPencil.cpp:225 +msgid "Hold Shift to avoid snapping to bar lines" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentPencil.cpp:283 +msgid "Record or drop audio here" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentPencil.cpp:289 +msgid "" +"Click and drag to draw an empty segment. Control+Alt click and drag to draw " +"in overlap mode." +msgstr "" + +#: ../src/gui/editors/segment/TrackLabel.cpp:77 +msgid "" +"Click and hold with left mouse button to assign this Track to an Instrument." +msgstr "" + +#: ../src/gui/editors/segment/TrackLabel.cpp:191 +msgid "Change track name" +msgstr "" + +#: ../src/gui/editors/segment/TrackLabel.cpp:192 +msgid "Enter new track name" +msgstr "" + +#: ../src/gui/editors/segment/TrackEditor.cpp:648 +msgid "Turn Repeating Segment into Real Copies" +msgstr "" + +#: ../src/gui/editors/segment/TrackEditor.cpp:650 +msgid "Turn Repeating Segments into Real Copies" +msgstr "" + +#: ../src/gui/editors/segment/TrackEditor.cpp:814 +msgid "" +"You can't drop files into Rosegarden from this client. Try using Konqueror " +"instead." +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:85 +msgid "Manage Triggered Segments" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:89 +msgid "ID" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:735 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:93 +msgid "Base velocity" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:94 +msgid "Triggers" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:115 +msgid "Add a Triggered Segment" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:119 +msgid "Delete a Triggered Segment" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:123 +msgid "Delete All Triggered Segments" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:127 +msgid "Close the Triggered Segment Manager" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:169 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:245 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:248 +msgid "" +"_n: %1 on 1 track\n" +"%1 on %n tracks" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:284 +msgid "" +"This will remove all triggered segments from the whole composition. Are you " +"sure?" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:288 +msgid "Remove all triggered segments" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:313 +msgid "Trigger Segment Duration" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:336 +#, c-format +msgid "" +"_n: This triggered segment is used 1 time in the current composition. Are " +"you sure you want to remove it?\n" +"This triggered segment is used %n times in the current composition. Are you " +"sure you want to remove it?" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:400 +msgid "Pa&ste as New Triggered Segment" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1169 +#: ../src/gui/editors/segment/MarkerEditor.cpp:399 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:412 +#: ../src/gui/editors/tempo/TempoView.cpp:622 +msgid "&Musical Times" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1179 +#: ../src/gui/editors/segment/MarkerEditor.cpp:409 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:422 +#: ../src/gui/editors/tempo/TempoView.cpp:632 +msgid "&Real Times" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1189 +#: ../src/gui/editors/segment/MarkerEditor.cpp:419 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:432 +#: ../src/gui/editors/tempo/TempoView.cpp:642 +msgid "Ra&w Times" +msgstr "" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:83 +msgid "Manage Markers" +msgstr "" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:86 +msgid "Marker time " +msgstr "" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:87 +msgid "Marker text " +msgstr "" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:88 +msgid "Marker description " +msgstr "" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:95 +msgid "Pointer position" +msgstr "" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:100 +msgid "Real time:" +msgstr "" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:103 +msgid "In measure:" +msgstr "" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:121 +msgid "Add a Marker" +msgstr "" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:125 +msgid "Delete a Marker" +msgstr "" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:129 +msgid "Delete All Markers" +msgstr "" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:133 +msgid "Close the Marker Editor" +msgstr "" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:296 +msgid "Remove all markers" +msgstr "" + +#: ../src/gui/editors/segment/PlayList.cpp:76 +msgid "Add..." +msgstr "" + +#: ../src/gui/editors/segment/PlayList.cpp:78 +msgid "Move Up" +msgstr "" + +#: ../src/gui/editors/segment/PlayList.cpp:79 +msgid "Move Down" +msgstr "" + +#: ../src/gui/editors/segment/PlayList.cpp:124 +msgid "Select one or more Rosegarden files" +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:73 +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:55 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:89 +msgid "Manage Control Events" +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:91 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:99 +msgid " Control Events for %1 (device %2)" +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:104 +msgid "Control Event name " +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:105 +msgid "Control Event type " +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:106 +msgid "Control Event value " +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:107 +msgid "Description " +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:108 +msgid "Min " +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:109 +msgid "Max " +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:110 +msgid "Default " +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:111 +msgid "Color " +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:112 +msgid "Position on instrument panel" +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:136 +msgid "Add a Control Parameter to the Studio" +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:140 +msgid "Delete a Control Parameter from the Studio" +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:144 +msgid "Close the Control Parameter editor" +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:221 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:62 +msgid "Edit Control Parameter" +msgstr "" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:71 +msgid "Control Event Properties" +msgstr "" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:77 +msgid "Name:" +msgstr "" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:93 +msgid "Control Event value:" +msgstr "" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:97 +msgid "Minimum value:" +msgstr "" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:101 +msgid "Maximum value:" +msgstr "" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:105 +msgid "Default value:" +msgstr "" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:109 +msgid "Color:" +msgstr "" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:113 +msgid "Instrument Parameter Box position:" +msgstr "" + +#: ../src/gui/editors/segment/TrackButtons.cpp:209 +#: ../src/gui/editors/segment/TrackButtons.cpp:585 +#: ../src/gui/editors/segment/TrackButtons.cpp:935 +#: ../src/gui/editors/segment/TrackButtons.cpp:1127 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/TrackButtons.cpp:352 +#: ../src/gui/editors/segment/TrackButtons.cpp:1094 +msgid "" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:130 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:662 +#: ../src/gui/editors/segment/TrackButtons.cpp:354 +#: ../src/gui/editors/segment/TrackButtons.cpp:1096 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/TrackButtons.cpp:1058 +msgid "Mute track" +msgstr "" + +#: ../src/gui/editors/segment/TrackButtons.cpp:1063 +msgid "Record on this track" +msgstr "" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:88 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:1015 +msgid "Segment" +msgstr "" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:89 +msgid "Segment Parameters" +msgstr "" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:366 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:697 +msgid "%1 ms" +msgstr "" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1031 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:910 +msgid "Highest playable note" +msgstr "" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1051 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:930 +msgid "Lowest playable note" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:93 +msgid "Track Parameters" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:137 +msgid "Playback parameters" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:172 +msgid "Recording filters" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:191 +msgid "Channel" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:203 +msgid "Staff export options" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:220 +msgid "Notation size:" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:225 +msgid "Small" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:226 +msgid "Tiny" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:233 +msgid "Bracket type:" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:237 +msgid "-----" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:238 +msgid "[----" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:239 +msgid "----]" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:240 +msgid "[---]" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:241 +msgid "{----" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:242 +msgid "----}" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:243 +msgid "{[---" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:244 +msgid "---]}" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:253 +msgid "Create segments with" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:264 +msgid "Preset" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:272 +msgid "Load" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:282 +msgid "treble" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:283 +msgid "bass" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:284 +msgid "crotales" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:285 +msgid "xylophone" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:286 +msgid "guitar" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:287 +msgid "contrabass" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:288 +msgid "celesta" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:289 +msgid "old celesta" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:290 +msgid "french" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:291 +msgid "soprano" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:292 +msgid "mezzosoprano" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:293 +msgid "alto" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:294 +msgid "tenor" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:295 +msgid "baritone" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:296 +msgid "varbaritone" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:297 +msgid "subbass" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:327 +msgid "Lowest" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:329 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:336 +msgid "---" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:331 +msgid "Choose the lowest suggested playable note, using a staff" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:334 +msgid "Highest" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:338 +msgid "Choose the highest suggested playable note, using a staff" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:666 +msgid "[ Track %1 - %2 ]" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:985 +msgid "The instrument preset database is corrupt. Check your installation." +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:173 +#: ../src/gui/editors/parameters/InstrumentParameterBox.cpp:54 +msgid "Instrument Parameters" +msgstr "" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:85 +msgid "Variation" +msgstr "" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:86 +msgid "Program" +msgstr "" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:87 +msgid "Channel out" +msgstr "" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:215 +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:221 +msgid "[ %1 ]" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:58 +#: ../src/gui/editors/matrix/MatrixMover.cpp:71 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:67 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:77 +msgid "Switch to Draw Tool" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:75 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:69 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:71 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:81 +#: ../src/gui/editors/notation/ClefInserter.cpp:57 +#: ../src/gui/editors/notation/GuitarChordInserter.cpp:63 +#: ../src/gui/editors/notation/NotationSelector.cpp:87 +#: ../src/gui/editors/notation/NoteInserter.cpp:113 +#: ../src/gui/editors/notation/RestInserter.cpp:72 +#: ../src/gui/editors/notation/TextInserter.cpp:61 +msgid "Switch to Erase Tool" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:62 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:73 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:75 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:85 +msgid "Switch to Move Tool" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:68 +#: ../src/gui/editors/matrix/MatrixMover.cpp:81 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:79 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:93 +msgid "Switch to Resize Tool" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixSelector.cpp:446 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:579 +msgid "Click and drag to select; middle-click and drag to draw new note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixResizer.cpp:324 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:597 +msgid "Click and drag to resize selected notes" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixSelector.cpp:599 +msgid "Click and drag to resize note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:471 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:604 +msgid "Click and drag to move selected notes; hold Ctrl as well to copy" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:473 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:606 +msgid "Click and drag to copy selected notes" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixSelector.cpp:610 +msgid "Click and drag to move note; hold Ctrl as well to copy" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixSelector.cpp:612 +msgid "Click and drag to copy note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:54 +#: ../src/gui/editors/matrix/MatrixMover.cpp:67 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:65 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:63 +#: ../src/gui/editors/notation/ClefInserter.cpp:53 +#: ../src/gui/editors/notation/GuitarChordInserter.cpp:59 +#: ../src/gui/editors/notation/NotationEraser.cpp:67 +#: ../src/gui/editors/notation/NoteInserter.cpp:109 +#: ../src/gui/editors/notation/RestInserter.cpp:68 +#: ../src/gui/editors/notation/TextInserter.cpp:57 +msgid "Switch to Select Tool" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixResizer.cpp:218 +msgid "Resize Event" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixResizer.cpp:221 +msgid "Resize Events" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixResizer.cpp:326 +msgid "Click and drag to resize a note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:328 +msgid "Copy and Move Event" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:330 +msgid "Copy and Move Events" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:334 +msgid "Move Event" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:336 +msgid "Move Events" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:465 +msgid "Click and drag to move a note; hold Ctrl as well to copy it" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:467 +msgid "Click and drag to copy a note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixPainter.cpp:361 +msgid "Click and drag to draw a note; Shift to avoid snapping to grid" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixPainter.cpp:363 +msgid "Click and drag to draw a note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:437 +#: ../src/gui/editors/matrix/MatrixView.cpp:3053 +msgid "Couldn't apply piano roll layout" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:663 +msgid "Resi&ze" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:669 +#: ../src/gui/editors/notation/NotationView.cpp:1919 +msgid "C&hord Insert Mode" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:676 +#: ../src/gui/editors/notation/NotationView.cpp:1778 +msgid "Ste&p Recording" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:694 +msgid "&Legato" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:708 +msgid "Set to Current Velocity" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:712 +msgid "Set Event &Velocities..." +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:716 +msgid "Trigger Se&gment..." +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:720 +msgid "Remove Triggers..." +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1153 +#: ../src/gui/editors/matrix/MatrixView.cpp:724 +#: ../src/gui/editors/tempo/TempoView.cpp:606 +msgid "Select &All" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:732 +#: ../src/gui/editors/notation/NotationView.cpp:2325 +msgid "Cursor &Back" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:736 +#: ../src/gui/editors/notation/NotationView.cpp:2329 +msgid "Cursor &Forward" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:740 +#: ../src/gui/editors/notation/NotationView.cpp:2333 +msgid "Cursor Ba&ck Bar" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:744 +#: ../src/gui/editors/notation/NotationView.cpp:2337 +msgid "Cursor For&ward Bar" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:748 +#: ../src/gui/editors/notation/NotationView.cpp:2341 +msgid "Cursor Back and Se&lect" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:752 +#: ../src/gui/editors/notation/NotationView.cpp:2345 +msgid "Cursor Forward and &Select" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:756 +#: ../src/gui/editors/notation/NotationView.cpp:2349 +msgid "Cursor Back Bar and Select" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:760 +#: ../src/gui/editors/notation/NotationView.cpp:2353 +msgid "Cursor Forward Bar and Select" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:764 +#: ../src/gui/editors/notation/NotationView.cpp:2363 +msgid "Cursor to St&art" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:770 +#: ../src/gui/editors/notation/NotationView.cpp:2369 +msgid "Cursor to &End" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:776 +#: ../src/gui/editors/notation/NotationView.cpp:2391 +msgid "Cursor to &Playback Pointer" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:820 +#: ../src/gui/editors/notation/NotationView.cpp:2435 +msgid "Playback Pointer to &Cursor" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:826 +#: ../src/gui/editors/notation/NotationView.cpp:2441 +msgid "&Solo" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:841 +#: ../src/gui/editors/notation/NotationView.cpp:2456 +msgid "Set Loop to Selection" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:845 +#: ../src/gui/editors/notation/NotationView.cpp:2460 +msgid "Clear L&oop" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1157 +#: ../src/gui/editors/matrix/MatrixView.cpp:849 +#: ../src/gui/editors/notation/NotationView.cpp:2464 +#: ../src/gui/editors/tempo/TempoView.cpp:610 +msgid "Clear Selection" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1149 +#: ../src/gui/editors/matrix/MatrixView.cpp:854 +#: ../src/gui/editors/notation/NotationView.cpp:2471 +msgid "&Filter Selection" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:879 +msgid "&No Snap" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:884 +msgid "Snap to Bea&t" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:888 +msgid "Snap to &Bar" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:908 +#, c-format +msgid "Snap to %1" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:917 +msgid "Show Instrument Parameters" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:922 +#: ../src/gui/editors/notation/NotationView.cpp:1850 +msgid "Show Ch&ord Name Ruler" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:926 +#: ../src/gui/editors/notation/NotationView.cpp:1858 +msgid "Show &Tempo Ruler" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1238 +#: ../src/gui/editors/notation/NotationView.cpp:3245 +#, c-format +msgid "" +"_n: 1 event selected \n" +" %n events selected " +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1241 +#: ../src/gui/editors/notation/NotationView.cpp:3247 +msgid " No selection " +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1348 +#: ../src/gui/editors/matrix/MatrixView.cpp:1360 +#: ../src/gui/editors/matrix/MatrixView.cpp:2079 +#: ../src/gui/editors/notation/NotationView.cpp:5869 +msgid "Quantizing..." +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1370 +#: ../src/gui/editors/notation/NotationView.cpp:5407 +msgid "Collapsing notes..." +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1381 +msgid "Making legato..." +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1476 +msgid "Note: %1 (%2.%3s)" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1531 +#: ../src/gui/editors/notation/NotationView.cpp:7206 +msgid "Time: %1 (%2.%3s)" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1604 +#: ../src/gui/editors/notation/NotationView.cpp:4744 +#: ../src/gui/editors/notation/NotationView.cpp:4773 +msgid "Cutting selection to clipboard..." +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:912 +#: ../src/gui/editors/matrix/MatrixView.cpp:1636 +#: ../src/gui/editors/notation/NotationSelectionPaster.cpp:82 +msgid "Couldn't paste at this point" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1647 +#: ../src/gui/editors/notation/NotationView.cpp:4754 +msgid "Deleting selection..." +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1833 +#: ../src/gui/editors/notation/NotationView.cpp:5617 +#, c-format +msgid "Unknown note insert action %1" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1837 +#: ../src/gui/editors/matrix/MatrixView.cpp:2857 +#: ../src/gui/editors/notation/NotationView.cpp:5621 +msgid "Inserting note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2091 +msgid "Unquantizing..." +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2120 +msgid " Grid: " +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2134 +msgid "Unit" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2136 +msgid "Beat" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2138 +msgid "Bar" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2159 +msgid " Velocity: " +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2170 +msgid " Quantize: " +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2584 +msgid "Raising velocities..." +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2596 +msgid "Lowering velocities..." +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2611 +msgid "Set Event Velocities" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2616 +msgid "Setting Velocities..." +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2665 +msgid "Remove Triggers" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2723 +msgid "%1 - Segment Track #%2 - %3" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2730 +msgid "%1 - All Segments - %2" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2737 +msgid "" +"_n: %1 - 1 Segment - %2\n" +"%1 - %n Segments - %2" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2885 +msgid "Can't insert note: No grid duration selected" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2935 +msgid " Chord " +msgstr "" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:105 +msgid "Click on a note to delete it" +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:89 +msgid "Filter" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:245 +#: ../src/gui/editors/tempo/TempoView.cpp:117 +msgid "Time " +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:118 +msgid "Type " +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:119 +msgid "Value " +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:120 +msgid "Properties " +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:208 +msgid "Common, hidden" +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:210 +msgid "Hidden" +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:213 +msgid "Common" +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:220 +msgid "Time Signature " +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:245 +msgid "%1.%2%3" +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:255 +msgid "%1.%2%3 qpm (%4.%5%6 bpm) " +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:264 +msgid "Tempo " +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:271 +msgid "" +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:463 +msgid "Delete Tempo or Time Signature" +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:602 +msgid "&Edit Item" +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:834 +msgid "%1 - Tempo and Time Signature Editor" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordEditorDialog.cpp:43 +msgid "Guitar Chord Editor" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordEditorDialog.cpp:51 +msgid "Start fret" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordEditorDialog.cpp:58 +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:51 +msgid "Root" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordEditorDialog.cpp:62 +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:55 +msgid "Extension" +msgstr "" + +#: ../src/gui/editors/guitar/Fingering.cpp:118 +msgid "couldn't parse fingering '%1' in '%2'" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:45 +msgid "Guitar Chord Selector" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:64 +msgid "beginner" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:65 +msgid "common" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:66 +msgid "all" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:86 +msgid "Fingerings" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:419 +msgid "couldn't open file '%1'" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:428 +#, c-format +msgid "couldn't parse chord dictionnary : %1" +msgstr "" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:87 +#, c-format +msgid "Note Font Viewer: %1" +msgstr "" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:93 +msgid " Component: " +msgstr "" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:101 +msgid " View: " +msgstr "" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:104 +msgid "Glyphs" +msgstr "" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:105 +msgid "Codes" +msgstr "" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:107 +msgid " Page: " +msgstr "" + +#: ../src/gui/editors/notation/ClefInserter.cpp:64 +#: ../src/gui/editors/notation/GuitarChordInserter.cpp:71 +#: ../src/gui/editors/notation/RestInserter.cpp:79 +#: ../src/gui/editors/notation/TextInserter.cpp:68 +msgid "Switch to Inserting Notes" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:522 +msgid "Close track headers" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:917 +msgid "Preparing to print..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1516 +msgid "Note &Font" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1539 +msgid "Si&ze" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1545 +msgid "Show Track Headers" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1550 +msgid "S&pacing" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1572 +msgid "Du&ration Factor" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1598 +msgid "Note &Style" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1624 +msgid "Insert Rest" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1628 +msgid "Switch from Note to Rest" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1633 +msgid "Switch from Rest to Note" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1690 +msgid "No accidental" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1691 +msgid "Follow previous accidental" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1692 +msgid "Sharp" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1693 +msgid "Flat" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1694 +msgid "Natural" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1695 +msgid "Double sharp" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1696 +msgid "Double flat" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1717 +msgid "&Treble Clef" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1724 +msgid "&Alto Clef" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1731 +msgid "Te&nor Clef" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1738 +msgid "&Bass Clef" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1745 +msgid "&Text" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1751 +msgid "&Guitar Chord" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1784 +msgid "Select from Sta&rt" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1788 +msgid "Select to &End" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1792 +msgid "Select Whole St&aff" +msgstr "" + +#: ../src/commands/edit/CutAndCloseCommand.h:53 +#: ../src/gui/editors/notation/NotationView.cpp:1796 +msgid "C&ut and Close" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1800 +msgid "Pa&ste..." +msgstr "" + +#: ../src/gui/editors/notation/NotationSelector.cpp:122 +#: ../src/gui/editors/notation/NotationView.cpp:1808 +msgid "Move to Staff Above" +msgstr "" + +#: ../src/gui/editors/notation/NotationSelector.cpp:126 +#: ../src/gui/editors/notation/NotationView.cpp:1812 +msgid "Move to Staff Below" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1826 +msgid "&Linear Layout" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1835 +msgid "&Continuous Page Layout" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1844 +msgid "&Multiple Page Layout" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1854 +msgid "Show Ra&w Note Ruler" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1862 +msgid "Show &Annotations" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1866 +msgid "Show Lily&Pond Directives" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1870 +msgid "Open L&yric Editor" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1912 +msgid "Trip&let Insert Mode" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1926 +msgid "Grace Insert Mode" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2180 +msgid "&Dump selected events to stderr" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2248 +msgid "Ma&ke Ornament..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2252 +msgid "Trigger &Ornament..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2256 +msgid "Remove Ornament..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2261 +msgid "&None" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2289 +msgid "Convert Notation For..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2298 +msgid "Show &Notes Toolbar" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2299 +msgid "Show &Rests Toolbar" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2300 +msgid "Show &Accidentals Toolbar" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2301 +msgid "Show Cle&fs Toolbar" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2303 +msgid "Show &Marks Toolbar" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2305 +msgid "Show &Group Toolbar" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2307 +msgid "Show &Layout Toolbar" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2311 +msgid "Show M&eta Toolbar" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2373 +msgid "Cursor &Up Staff" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2377 +msgid "Cursor &Down Staff" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2381 +msgid "Cursor Pre&vious Segment" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2385 +msgid "Cursor Ne&xt Segment" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2475 +msgid "Push &Left" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2479 +msgid "Push &Right" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2483 +msgid "Push &Up" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2487 +msgid "Push &Down" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2491 +msgid "&Restore Positions" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2495 +msgid "Make &Invisible" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2499 +msgid "Make &Visible" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2503 +msgid "Toggle Dot" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2507 +#: ../src/gui/editors/notation/NotationView.cpp:2511 +msgid "Add Dot" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2570 +#, c-format +msgid "" +"_n: 1 pixel\n" +"%n pixels" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2619 +msgid " Font: " +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2647 +msgid "Unknown font \"%1\", using default" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2655 +msgid " Size: " +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2677 +msgid " Spacing: " +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2993 +#: ../src/gui/editors/notation/NotationView.cpp:3818 +msgid " Ready." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2998 +msgid "Laying out score..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:3011 +msgid "Laying out staff %1..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:3020 +msgid "Reconciling staffs..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:3885 +msgid "Sizing and allocating canvas..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4050 +msgid "note" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4050 +msgid "rest" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4211 +msgid "%1 - Segment Track #%2 - Notation" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4217 +msgid "%1 - All Segments - Notation" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4222 +msgid "" +"_n: %1 - Segment - Notation\n" +"%1 - %n Segments - Notation" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4243 +msgid "Grace" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4247 +#: ../src/gui/editors/notation/NotationView.cpp:4251 +#: ../src/gui/editors/notation/NotationView.cpp:4255 +msgid "%1 %2" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4271 +msgid "Hidden annotations" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4293 +msgid "Hidden LilyPond directives" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4326 +#, c-format +msgid "Unknown spacing action %1" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4384 +#, c-format +msgid "Unknown proportion action %1" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4431 +#, c-format +msgid "Unknown font action %1" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4449 +#, c-format +msgid "Unknown font size %1" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4453 +#, c-format +msgid "Unknown font size action %1" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4780 +msgid "" +"The Restricted paste type requires enough empty space (containing only " +"rests) at the paste position to hold all of the events to be pasted.\n" +"Not enough space was found.\n" +"If you want to paste anyway, consider using one of the other paste types " +"from the \"Paste...\" option on the Edit menu. You can also change the " +"default paste type to something other than Restricted if you wish." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4800 +msgid "Can't paste multiple Segments into one" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4828 +#: ../src/gui/editors/notation/NotationView.cpp:4877 +msgid "Couldn't paste at this point." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4896 +msgid "Move Events to Staff Above" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4924 +msgid "Move Events to Staff Below" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5036 +msgid "Pushing selection left..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5047 +msgid "Pushing selection right..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5058 +msgid "Pushing selection up..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5069 +msgid "Pushing selection down..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5080 +msgid "Restoring computed positions..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5089 +msgid "Making visible..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5098 +msgid "Making invisible..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5185 +msgid "Beaming group..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5195 +msgid "Auto-beaming selection..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5205 +msgid "Breaking groups..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5293 +msgid "Untupleting..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5301 +msgid "Adding slur..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5302 +msgid "slur" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5307 +msgid "Adding phrasing slur..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5308 +msgid "phrasing slur" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5313 +msgid "Adding glissando..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5314 +msgid "glissando" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5319 +msgid "Adding crescendo..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5320 +#: ../src/gui/editors/notation/NotationView.cpp:5326 +msgid "dynamic" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5325 +msgid "Adding decrescendo..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5331 +#: ../src/gui/editors/notation/NotationView.cpp:5337 +#: ../src/gui/editors/notation/NotationView.cpp:5343 +#: ../src/gui/editors/notation/NotationView.cpp:5349 +msgid "Adding octave..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5332 +#: ../src/gui/editors/notation/NotationView.cpp:5338 +#: ../src/gui/editors/notation/NotationView.cpp:5344 +#: ../src/gui/editors/notation/NotationView.cpp:5350 +msgid "ottava" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5366 +msgid "Can't add overlapping %1 indications" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5375 +msgid "Making chord..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5387 +msgid "Normalizing rests..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5397 +msgid "Collapsing rests..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5417 +msgid "Tying notes..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5427 +msgid "Untying notes..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5437 +msgid "Making notes viable..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5447 +msgid "Removing counterpoint..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5457 +msgid "Pointing stems up..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5467 +msgid "Pointing stems down..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5478 +msgid "Restoring computed stem directions..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5488 +#: ../src/gui/editors/notation/NotationView.cpp:5498 +msgid "Positioning slurs..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5509 +msgid "Restoring slur positions..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5519 +#: ../src/gui/editors/notation/NotationView.cpp:5529 +msgid "Positioning ties..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5540 +msgid "Restoring tie positions..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5550 +msgid "Fixing notation quantization..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5560 +msgid "Removing notation quantization..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5577 +msgid "Changing to %1 style..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5585 +#, c-format +msgid "Unknown style action %1" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5598 +#: ../src/gui/editors/notation/NotationView.cpp:5639 +#: ../src/gui/editors/notation/NotationView.cpp:5695 +msgid "No note duration selected" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5660 +msgid "No rest duration selected" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5746 +msgid "No note or rest duration selected" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5757 +#: ../src/gui/editors/notation/NotationView.cpp:5768 +#: ../src/gui/editors/notation/NotationView.cpp:5779 +#: ../src/gui/editors/notation/NotationView.cpp:5790 +#: ../src/gui/editors/notation/NotationView.cpp:5801 +#: ../src/gui/editors/notation/NotationView.cpp:5812 +#: ../src/gui/editors/notation/NotationView.cpp:5823 +msgid "Forcing accidentals..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5834 +msgid "Restoring accidentals..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5845 +msgid "Showing cautionary accidentals..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5855 +msgid "Cancelling cautionary accidentals..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5884 +msgid "Interpreting selection..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5896 +msgid "Setting note durations..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5904 +#: ../src/gui/editors/notation/NotationView.cpp:5912 +msgid "Adding dot..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5934 +msgid "Text: " +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5948 +msgid "Fingering: " +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:6036 +msgid "Ornament track %1 bar %2" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:6038 +#, c-format +msgid "Ornament bar %1" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:6098 +msgid "Remove Ornaments" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:6145 +msgid "Estimated key signature shown" +msgstr "" + +#: ../src/gui/editors/notation/NotationStaff.cpp:1249 +#: ../src/gui/editors/notation/NotationView.cpp:6202 +msgid "Sustain" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:6218 +msgid "" +"There is no sustain controller defined for this device.\n" +"Please ensure the device is configured correctly in the Manage MIDI Devices " +"dialog in the main window." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:7250 +msgid "Can't insert note: No note duration selected" +msgstr "" + +#: ../src/gui/editors/notation/NotationEraser.cpp:61 +#: ../src/gui/editors/notation/NotationSelector.cpp:83 +msgid "Switch to Insert Tool" +msgstr "" + +#: ../src/gui/editors/notation/NotePixmapFactory.cpp:2303 +#: ../src/gui/editors/notation/NotePixmapFactory.cpp:2347 +msgid "..." +msgstr "" + +#: ../src/gui/editors/notation/NoteFontFactory.cpp:200 +msgid "Can't obtain a default font -- no fonts found" +msgstr "" + +#: ../src/gui/editors/notation/NoteFontMap.cpp:52 +#: ../src/gui/general/PresetGroup.cpp:49 +msgid "unknown error" +msgstr "" + +#: ../src/gui/editors/notation/NoteFontMap.cpp:78 +msgid "Can't open font mapping file %1 or %2" +msgstr "" + +#: ../src/gui/editors/notation/NoteFontMap.cpp:82 +#, c-format +msgid "Can't open font mapping file %1" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:52 +msgid "%1-dotted-%2" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:54 +msgid "%1-dotted %2" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:57 +#, c-format +msgid "dotted-%1" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:59 +#, c-format +msgid "dotted %1" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:83 +msgid "sixty-fourth note" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:83 +msgid "thirty-second note" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:84 +msgid "sixteenth note" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:84 +msgid "eighth note" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:85 +msgid "quarter note" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:85 +msgid "half note" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:86 +msgid "whole note" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:86 +msgid "double whole note" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:89 +msgid "sixty-fourth notes" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:89 +msgid "thirty-second notes" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:90 +msgid "sixteenth notes" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:90 +msgid "eighth notes" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:91 +msgid "quarter notes" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:91 +msgid "half notes" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:92 +msgid "whole notes" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:92 +msgid "double whole notes" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:96 +#: ../src/gui/editors/notation/NotationStrings.cpp:154 +msgid "%1 triplets" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:100 +#: ../src/gui/editors/notation/NotationStrings.cpp:158 +msgid "%1 triplet" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:143 +msgid "64th" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:143 +msgid "32nd" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:143 +msgid "16th" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:143 +msgid "8th" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:144 +msgid "quarter" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:144 +msgid "half" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:144 +msgid "whole" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:145 +msgid "double whole" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:148 +msgid "64ths" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:148 +msgid "32nds" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:148 +msgid "16ths" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:148 +msgid "8ths" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:149 +msgid "quarters" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:149 +msgid "halves" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:149 +msgid "wholes" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:150 +msgid "double wholes" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:278 +msgid "%1 ticks" +msgstr "" + +#: ../src/gui/editors/notation/FontViewFrame.cpp:100 +#, c-format +msgid "Error: Unable to match font name %1" +msgstr "" + +#: ../src/gui/editors/notation/FontViewFrame.cpp:108 +msgid "Warning: No good match for font name %1 (best is %2)" +msgstr "" + +#: ../src/gui/editors/notation/FontViewFrame.cpp:116 +#, c-format +msgid "Error: Unable to open best-match font %1" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:113 +msgid "Track %1 : \"%2\"" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:119 +#, c-format +msgid "" +"\n" +"Notate for: %1" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:121 +msgid "normal" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:124 +msgid "small" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:127 +msgid "tiny" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:131 +msgid "--" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:156 +msgid "" +"\n" +"Size: %1, Bracket: %2 " +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:183 +msgid "" +"\n" +"bars [%1-%2] in %3 (tr=%4) : \"%5\"" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:190 +msgid "" +"\n" +"bars [%1-%2] (tr=%3) : \"%4\"" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:240 +msgid "C#" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:242 +msgid "Eb" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:245 +msgid "F#" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:247 +msgid "G#" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:249 +msgid "Bb" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:352 +msgid "%1: %2" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:355 +#, c-format +msgid " in %1" +msgstr "" + +#: ../src/gui/editors/notation/NotationStaff.cpp:452 +msgid "Rendering staff %1..." +msgstr "" + +#: ../src/gui/editors/notation/NotationStaff.cpp:515 +msgid "Rendering notes on staff %1..." +msgstr "" + +#: ../src/gui/editors/notation/NotationStaff.cpp:583 +msgid "Positioning staff %1..." +msgstr "" + +#: ../src/gui/editors/notation/NotationSelectionPaster.cpp:85 +msgid "Ready." +msgstr "" + +#: ../src/gui/editors/notation/RestInserter.cpp:62 +msgid "Dotted rest" +msgstr "" + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:57 +#, c-format +msgid "Can't open style file %1" +msgstr "" + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:92 +msgid "type is a required attribute of note" +msgstr "" + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:101 +#, c-format +msgid "Unrecognised note name %1" +msgstr "" + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:108 +msgid "global element must precede note elements" +msgstr "" + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:137 +msgid "" +"global and note elements may have shape or charname attribute, but not both" +msgstr "" + +#: ../src/gui/editors/notation/NotationVLayout.cpp:493 +msgid "" +"Spanned note at %1 has no HEIGHT_ON_STAFF property!\n" +"This is a bug (the program would previously have crashed by now)" +msgstr "" + +#: ../src/gui/editors/notation/NoteInserter.cpp:82 +msgid "Auto-Beam when appropriate" +msgstr "" + +#: ../src/gui/editors/notation/NoteInserter.cpp:103 +msgid "Dotted note" +msgstr "" + +#: ../src/gui/editors/notation/NoteInserter.cpp:120 +msgid "Switch to Inserting Rests" +msgstr "" + +#: ../src/gui/editors/notation/NotationSelector.cpp:98 +msgid "Collapse Rests" +msgstr "" + +#: ../src/gui/editors/notation/NotationSelector.cpp:102 +msgid "Respell as Flat" +msgstr "" + +#: ../src/gui/editors/notation/NotationSelector.cpp:106 +msgid "Respell as Sharp" +msgstr "" + +#: ../src/gui/editors/notation/NotationSelector.cpp:110 +msgid "Respell as Natural" +msgstr "" + +#: ../src/gui/editors/notation/NotationSelector.cpp:114 +msgid "Collapse Notes" +msgstr "" + +#: ../src/gui/editors/notation/NotationSelector.cpp:130 +msgid "Make Invisible" +msgstr "" + +#: ../src/gui/editors/notation/NotationSelector.cpp:134 +msgid "Make Visible" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:129 +msgid "Event filters" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:138 +msgid "Rest" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:139 +msgid "Indication" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:141 +msgid "Other" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:161 +msgid "Triggered Segment Properties" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:166 +msgid "Label: " +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:176 +msgid "Base pitch: " +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:183 +msgid "Base velocity: " +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:246 +msgid "Duration " +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:247 +msgid "Event Type " +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:248 +msgid "Pitch " +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:249 +msgid "Velocity " +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:250 +msgid "Type (Data1) " +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:251 +msgid "Value (Data2) " +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:461 +msgid "(group %1) " +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:519 +msgid "" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:521 +msgid "" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:696 +msgid "Segment label" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:696 +msgid "Label:" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1123 +msgid "&Insert Event" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1130 +msgid "&Delete Event" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1137 +msgid "&Edit Event" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1144 +msgid "&Advanced Event Editor" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1518 +msgid "Open in Event Editor" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1519 +msgid "Open in Expert Event Editor" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1577 +msgid "%1 - Triggered Segment: %2" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1592 +msgid "%1 - Segment Track #%2 - Event List" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1598 +msgid "%1 - %2 Segments - Event List" +msgstr "" + +#: ../src/gui/rulers/TempoRuler.cpp:131 +msgid "Insert Tempo Change at Playback Position" +msgstr "" + +#: ../src/gui/rulers/TempoRuler.cpp:136 +msgid "Delete Tempo Change" +msgstr "" + +#: ../src/gui/rulers/TempoRuler.cpp:140 +msgid "Ramp Tempo to Next Tempo" +msgstr "" + +#: ../src/gui/rulers/TempoRuler.cpp:144 +msgid "Un-Ramp Tempo" +msgstr "" + +#: ../src/gui/rulers/TempoRuler.cpp:149 +msgid "Edit Tempo..." +msgstr "" + +#: ../src/gui/rulers/TempoRuler.cpp:153 +msgid "Edit Time Signature..." +msgstr "" + +#: ../src/gui/rulers/TempoRuler.cpp:588 +msgid "%1.%2%3 (%4.%5%6 bpm)" +msgstr "" + +#: ../src/gui/rulers/TempoRuler.cpp:596 +msgid "%1.%2%3 bpm" +msgstr "" + +#: ../src/gui/rulers/TempoRuler.cpp:604 +msgid "%1 - %2.%3%4" +msgstr "" + +#: ../src/gui/rulers/ControlRulerEventInsertCommand.cpp:36 +msgid "Insert Controller Event" +msgstr "" + +#: ../src/gui/rulers/ControlChangeCommand.cpp:35 +msgid "Control Change" +msgstr "" + +#: ../src/gui/rulers/PropertyViewRuler.cpp:72 +msgid "%1 controller" +msgstr "" + +#: ../src/gui/rulers/RawNoteRuler.cpp:453 +msgid "Track #%1, Segment \"%2\" (runtime id %3)" +msgstr "" + +#: ../src/gui/rulers/MarkerRuler.cpp:100 +msgid "Insert Marker" +msgstr "" + +#: ../src/gui/rulers/MarkerRuler.cpp:104 +msgid "Insert Marker at Playback Position" +msgstr "" + +#: ../src/gui/rulers/MarkerRuler.cpp:109 +msgid "Delete Marker" +msgstr "" + +#: ../src/gui/rulers/MarkerRuler.cpp:114 +msgid "Edit Marker..." +msgstr "" + +#: ../src/gui/rulers/MarkerRuler.cpp:119 +msgid "" +"Click on a marker to move the playback pointer.\n" +"Shift-click to set a range between markers.\n" +"Double-click to open the marker editor." +msgstr "" + +#: ../src/gui/rulers/ChordNameRuler.cpp:97 +msgid "" +"Chord name ruler.\n" +"Turn it on and off from the Settings->Rulers menu." +msgstr "" + +#: ../src/gui/rulers/ControlRulerEventEraseCommand.cpp:37 +msgid "Erase Controller Event(s)" +msgstr "" + +#: ../src/gui/general/EditView.cpp:901 +#: ../src/gui/rulers/ControllerEventsRuler.cpp:188 +msgid "Unsupported Event Type" +msgstr "" + +#: ../src/gui/rulers/ControllerEventsRuler.cpp:203 +msgid "Controller Events" +msgstr "" + +#: ../src/gui/rulers/ControllerEventsRuler.cpp:278 +msgid "Controller Event Number" +msgstr "" + +#: ../src/gui/rulers/ControllerEventsRuler.cpp:471 +msgid "Add line of controllers" +msgstr "" + +#: ../src/gui/rulers/LoopRuler.cpp:89 +msgid "" +"Click and drag to move the playback pointer.\n" +"Shift-click and drag to set a range for looping or editing.\n" +"Shift-click to clear the loop or range.\n" +"Double-click to start playback." +msgstr "" + +#: ../src/gui/general/EditViewBase.cpp:228 +msgid "Set Segment Start Time..." +msgstr "" + +#: ../src/gui/general/EditViewBase.cpp:232 +msgid "Set Segment Duration..." +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:56 +msgid "Load track parameters preset" +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:62 +msgid "Convert notation for..." +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:86 +msgid "Select preset track parameters for:" +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:87 +msgid "Create appropriate notation for:" +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:89 +msgid "Category" +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:95 +msgid "Player Ability" +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:97 +msgid "Amateur" +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:98 +msgid "Professional" +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:104 +msgid "Only selected segments" +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:106 +msgid "All segments in this track" +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:111 +msgid "Only for new segments" +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:113 +msgid "Convert existing segments" +msgstr "" + +#: ../src/gui/general/MidiPitchLabel.cpp:39 +#, c-format +msgid "C%1" +msgstr "" + +#: ../src/gui/general/MidiPitchLabel.cpp:39 +#, c-format +msgid "C#%1" +msgstr "" + +#: ../src/gui/general/MidiPitchLabel.cpp:39 +#, c-format +msgid "D%1" +msgstr "" + +#: ../src/gui/general/MidiPitchLabel.cpp:39 +#, c-format +msgid "D#%1" +msgstr "" + +#: ../src/gui/general/MidiPitchLabel.cpp:40 +#, c-format +msgid "E%1" +msgstr "" + +#: ../src/gui/general/MidiPitchLabel.cpp:40 +#, c-format +msgid "F%1" +msgstr "" + +#: ../src/gui/general/MidiPitchLabel.cpp:40 +#, c-format +msgid "F#%1" +msgstr "" + +#: ../src/gui/general/MidiPitchLabel.cpp:40 +#, c-format +msgid "G%1" +msgstr "" + +#: ../src/gui/general/MidiPitchLabel.cpp:41 +#, c-format +msgid "G#%1" +msgstr "" + +#: ../src/gui/general/MidiPitchLabel.cpp:41 +#, c-format +msgid "A%1" +msgstr "" + +#: ../src/gui/general/MidiPitchLabel.cpp:41 +#, c-format +msgid "A#%1" +msgstr "" + +#: ../src/gui/general/MidiPitchLabel.cpp:41 +#, c-format +msgid "B%1" +msgstr "" + +#: ../src/gui/general/PresetGroup.cpp:95 +#, c-format +msgid "Can't open preset file %1" +msgstr "" + +#: ../src/gui/general/EditView.cpp:744 +msgid "&Halve Durations" +msgstr "" + +#: ../src/gui/general/EditView.cpp:748 +msgid "&Double Durations" +msgstr "" + +#: ../src/gui/general/EditView.cpp:806 +msgid "Show Velocity Property Ruler" +msgstr "" + +#: ../src/gui/general/EditView.cpp:825 +msgid "Insert item" +msgstr "" + +#: ../src/gui/general/EditView.cpp:831 +msgid "Erase selected items" +msgstr "" + +#: ../src/gui/general/EditView.cpp:835 +msgid "Clear ruler" +msgstr "" + +#: ../src/gui/general/EditView.cpp:839 +msgid "Insert line of controllers" +msgstr "" + +#: ../src/gui/general/EditView.cpp:843 +msgid "Flip forward" +msgstr "" + +#: ../src/gui/general/EditView.cpp:847 +msgid "Flip backwards" +msgstr "" + +#: ../src/gui/general/EditView.cpp:851 +msgid "Draw property line" +msgstr "" + +#: ../src/gui/general/EditView.cpp:855 +msgid "Select all property values" +msgstr "" + +#: ../src/gui/general/EditView.cpp:894 +msgid "%1 Controller %2 %3" +msgstr "" + +#: ../src/gui/general/EditView.cpp:1066 +msgid "I" +msgstr "" + +#: ../src/gui/general/EditView.cpp:1066 +msgid "II" +msgstr "" + +#: ../src/gui/general/EditView.cpp:1066 +msgid "III" +msgstr "" + +#: ../src/gui/general/EditView.cpp:1066 +msgid "IV" +msgstr "" + +#: ../src/gui/general/EditView.cpp:1067 +msgid "V" +msgstr "" + +#: ../src/gui/general/EditView.cpp:1067 +msgid "VI" +msgstr "" + +#: ../src/gui/general/EditView.cpp:1067 +msgid "VII" +msgstr "" + +#: ../src/gui/general/EditView.cpp:1067 +msgid "VIII" +msgstr "" + +#: ../src/gui/general/EditView.cpp:1069 +msgid "%1 flat" +msgstr "" + +#: ../src/gui/general/EditView.cpp:1070 +msgid "%1 sharp" +msgstr "" + +#: ../src/gui/general/EditView.cpp:1085 +msgid "&Insert Note" +msgstr "" + +#: ../src/gui/general/EditView.cpp:1091 +msgid "&Upper Octave" +msgstr "" + +#: ../src/gui/general/EditView.cpp:1096 +msgid "&Lower Octave" +msgstr "" + +#: ../src/gui/general/EditView.cpp:1268 +msgid "Estimated time signature shown" +msgstr "" + +#: ../src/gui/general/EditView.cpp:1431 +msgid "Halving durations..." +msgstr "" + +#: ../src/gui/general/EditView.cpp:1445 +msgid "Doubling durations..." +msgstr "" + +#: ../src/gui/general/EditView.cpp:1469 +msgid "Rescaling..." +msgstr "" + +#: ../src/gui/general/EditView.cpp:1489 +msgid "By number of semitones: " +msgstr "" + +#: ../src/gui/general/EditView.cpp:1496 ../src/gui/general/EditView.cpp:1518 +msgid "Transposing..." +msgstr "" + +#: ../src/gui/general/EditView.cpp:1536 +msgid "Transposing up one semitone..." +msgstr "" + +#: ../src/gui/general/EditView.cpp:1545 +msgid "Transposing up one octave..." +msgstr "" + +#: ../src/gui/general/EditView.cpp:1554 +msgid "Transposing down one semitone..." +msgstr "" + +#: ../src/gui/general/EditView.cpp:1563 +msgid "Transposing down one octave..." +msgstr "" + +#: ../src/gui/general/EditView.cpp:1575 +msgid "Inverting..." +msgstr "" + +#: ../src/gui/general/EditView.cpp:1587 +msgid "Retrograding..." +msgstr "" + +#: ../src/gui/general/EditView.cpp:1599 +msgid "Retrograde inverting..." +msgstr "" + +#: ../src/gui/general/EditView.cpp:1608 +msgid "Jogging left..." +msgstr "" + +#: ../src/gui/general/EditView.cpp:1623 +msgid "Jogging right..." +msgstr "" + +#: ../src/sound/AudioFileManager.cpp:660 +#, c-format +msgid "Downloading file %1" +msgstr "" + +#: ../src/sound/AudioFileManager.cpp:735 +msgid "Converting audio file..." +msgstr "" + +#: ../src/sound/AudioFileManager.cpp:737 +msgid "Resampling audio file..." +msgstr "" + +#: ../src/sound/AudioFileManager.cpp:739 +msgid "Converting and resampling audio file..." +msgstr "" + +#: ../src/sound/AudioFileManager.cpp:741 +msgid "Importing audio file..." +msgstr "" + +#: ../src/sound/AudioFileManager.cpp:794 +msgid "Failed to convert or resample audio file on import" +msgstr "" + +#: ../src/sequencer/main.cpp:46 ../src/sequencer/main.cpp:86 +msgid "RosegardenSequencer" +msgstr "" + +#: ../src/sequencer/main.cpp:54 +msgid "JACK playback and capture ports" +msgstr "" + +#: ../src/commands/segment/SegmentSyncCommand.cpp:38 +#: ../src/commands/segment/SegmentSyncCommand.cpp:44 +#: ../src/commands/segment/SegmentSyncCommand.cpp:55 +#: ../src/commands/segment/SegmentSyncCommand.cpp:63 +msgid "Sync segment parameters" +msgstr "" + +#: ../src/commands/segment/RenameTrackCommand.h:52 +msgid "Rename Track" +msgstr "" + +#: ../src/commands/segment/SegmentRepeatToCopyCommand.cpp:39 +msgid "Turn Repeats into Copies" +msgstr "" + +#: ../src/commands/segment/SegmentTransposeCommand.cpp:36 +#: ../src/commands/segment/SegmentTransposeCommand.cpp:42 +msgid "Change segment transposition" +msgstr "" + +#: ../src/commands/edit/RescaleCommand.h:50 +#: ../src/commands/segment/AudioSegmentRescaleCommand.h:62 +#: ../src/commands/segment/SegmentRescaleCommand.h:58 +msgid "Stretch or S&quash..." +msgstr "" + +#: ../src/commands/segment/SegmentLabelCommand.h:52 +msgid "Re&label..." +msgstr "" + +#: ../src/commands/segment/AudioSegmentResizeFromStartCommand.cpp:39 +#: ../src/commands/segment/SegmentResizeFromStartCommand.cpp:39 +msgid "Resize Segment" +msgstr "" + +#: ../src/commands/segment/RemoveTempoChangeCommand.h:58 +msgid "Remove &Tempo Change..." +msgstr "" + +#: ../src/commands/segment/SegmentEraseCommand.cpp:40 +#: ../src/commands/segment/SegmentEraseCommand.cpp:52 +msgid "Erase Segment" +msgstr "" + +#: ../src/commands/segment/AudioSegmentRescaleCommand.cpp:126 +#: ../src/commands/segment/SegmentRescaleCommand.cpp:102 +msgid "(rescaled)" +msgstr "" + +#: ../src/commands/segment/AudioSegmentRescaleCommand.cpp:127 +#: ../src/commands/segment/SegmentRescaleCommand.cpp:105 +msgid "%1 (rescaled)" +msgstr "" + +#: ../src/commands/segment/PasteToTriggerSegmentCommand.cpp:47 +msgid "Paste as New Triggered Segment" +msgstr "" + +#: ../src/commands/segment/SegmentColourMapCommand.h:52 +msgid "Change Segment Color Map..." +msgstr "" + +#: ../src/commands/segment/SegmentQuickCopyCommand.h:55 +msgid "Quick-Copy Segment" +msgstr "" + +#: ../src/commands/segment/AudioSegmentSplitCommand.cpp:42 +msgid "Split Audio Segment" +msgstr "" + +#: ../src/commands/segment/AudioSegmentSplitCommand.cpp:103 +#: ../src/commands/segment/SegmentSplitCommand.cpp:135 +msgid " (split)" +msgstr "" + +#: ../src/commands/segment/AudioSegmentSplitCommand.cpp:104 +#: ../src/commands/segment/SegmentSplitByRecordingSrcCommand.cpp:120 +#: ../src/commands/segment/SegmentSplitByRecordingSrcCommand.cpp:122 +#: ../src/commands/segment/SegmentSplitCommand.cpp:136 +msgid "%1 (split)" +msgstr "" + +#: ../src/commands/segment/SegmentLabelCommand.cpp:40 +msgid "Label Segments" +msgstr "" + +#: ../src/commands/segment/OpenOrCloseRangeCommand.cpp:43 +msgid "Open or Close Range" +msgstr "" + +#: ../src/commands/edit/TransposeCommand.h:55 +#: ../src/commands/segment/SegmentTransposeCommand.h:54 +msgid "Transpose by &Interval..." +msgstr "" + +#: ../src/commands/segment/SegmentAutoSplitCommand.cpp:148 +msgid "%1 (part)" +msgstr "" + +#: ../src/commands/segment/AudioSegmentInsertCommand.cpp:51 +#: ../src/commands/segment/SegmentInsertCommand.cpp:43 +#: ../src/commands/segment/SegmentInsertCommand.cpp:56 +msgid "Create Segment" +msgstr "" + +#: ../src/commands/segment/AudioSegmentInsertCommand.cpp:114 +msgid "%1 (inserted)" +msgstr "" + +#: ../src/commands/segment/AudioSegmentInsertCommand.cpp:117 +msgid "unknown audio file" +msgstr "" + +#: ../src/commands/segment/CreateTempoMapFromSegmentCommand.cpp:40 +msgid "Set Tempos from Beat Segment" +msgstr "" + +#: ../src/commands/segment/SegmentSplitByRecordingSrcCommand.h:52 +msgid "Split by &Recording Source..." +msgstr "" + +#: ../src/commands/segment/SegmentColourMapCommand.cpp:40 +msgid "Change Segment Color Map" +msgstr "" + +#: ../src/commands/edit/CopyCommand.cpp:64 +#: ../src/commands/segment/SegmentQuickCopyCommand.cpp:57 +msgid "%1 (copied)" +msgstr "" + +#: ../src/commands/segment/SegmentColourCommand.h:52 +msgid "Change Segment Color..." +msgstr "" + +#: ../src/commands/segment/SegmentSplitByPitchCommand.cpp:170 +msgid "%1 (upper)" +msgstr "" + +#: ../src/commands/segment/SegmentSplitByPitchCommand.cpp:172 +msgid "%1 (lower)" +msgstr "" + +#: ../src/commands/segment/SegmentSingleRepeatToCopyCommand.cpp:39 +msgid "Turn Single Repeat into Copy" +msgstr "" + +#: ../src/commands/segment/AddTempoChangeCommand.h:58 +msgid "Add Te&mpo Change..." +msgstr "" + +#: ../src/commands/segment/AudioSegmentAutoSplitCommand.h:57 +#: ../src/commands/segment/SegmentAutoSplitCommand.h:53 +msgid "&Split on Silence" +msgstr "" + +#: ../src/commands/segment/SetTriggerSegmentBaseVelocityCommand.cpp:39 +msgid "Set Base Velocity" +msgstr "" + +#: ../src/commands/segment/DeleteRangeCommand.cpp:43 +#: ../src/commands/segment/EraseSegmentsStartingInRangeCommand.cpp:39 +msgid "Delete Range" +msgstr "" + +#: ../src/commands/segment/ChangeCompositionLengthCommand.h:53 +msgid "Change &Composition Start and End..." +msgstr "" + +#: ../src/commands/segment/MoveTracksCommand.h:51 +msgid "Move Tracks..." +msgstr "" + +#: ../src/commands/segment/SegmentColourCommand.cpp:39 +msgid "Change Segment Color" +msgstr "" + +#: ../src/commands/segment/AudioSegmentDistributeCommand.h:66 +msgid "Distribute Audio Segments over MIDI" +msgstr "" + +#: ../src/commands/segment/AudioSegmentAutoSplitCommand.cpp:147 +msgid "%1 (autosplit %2)" +msgstr "" + +#: ../src/commands/segment/SetTriggerSegmentDefaultRetuneCommand.cpp:39 +msgid "Set Default Retune" +msgstr "" + +#: ../src/commands/segment/AddTimeSignatureCommand.h:52 +msgid "Add Time Si&gnature Change..." +msgstr "" + +#: ../src/commands/segment/AddTriggerSegmentCommand.cpp:42 +msgid "Add Triggered Segment" +msgstr "" + +#: ../src/commands/segment/SetTriggerSegmentDefaultTimeAdjustCommand.cpp:39 +msgid "Set Default Time Adjust" +msgstr "" + +#: ../src/commands/segment/RemoveTimeSignatureCommand.h:58 +msgid "Remove &Time Signature Change..." +msgstr "" + +#: ../src/commands/segment/SegmentCommandRepeat.cpp:39 +msgid "Repeat Segments" +msgstr "" + +#: ../src/commands/segment/AddTracksCommand.h:55 +msgid "Add Tracks..." +msgstr "" + +#: ../src/commands/segment/ModifyDefaultTempoCommand.h:51 +msgid "Modify &Default Tempo..." +msgstr "" + +#: ../src/commands/segment/SegmentSplitByPitchCommand.h:61 +msgid "Split by &Pitch..." +msgstr "" + +#: ../src/commands/segment/DeleteTriggerSegmentCommand.cpp:40 +msgid "Delete Triggered Segment" +msgstr "" + +#: ../src/commands/segment/SegmentSplitCommand.cpp:42 +msgid "Split Segment" +msgstr "" + +#: ../src/commands/segment/DeleteTracksCommand.h:51 +msgid "Delete Tracks..." +msgstr "" + +#: ../src/commands/segment/InsertRangeCommand.cpp:42 +msgid "Insert Range" +msgstr "" + +#: ../src/commands/segment/DeleteRangeCommand.h:62 +msgid "Rejoin Command" +msgstr "" + +#: ../src/commands/segment/SetTriggerSegmentBasePitchCommand.cpp:39 +msgid "Set Base Pitch" +msgstr "" + +#: ../src/commands/segment/PasteConductorDataCommand.cpp:41 +msgid "Paste Tempos and Time Signatures" +msgstr "" + +#: ../src/commands/segment/SegmentSyncClefCommand.cpp:34 +msgid "Sync segment clef" +msgstr "" + +#: ../src/commands/matrix/MatrixInsertionCommand.cpp:46 +#: ../src/commands/notation/NoteInsertionCommand.cpp:54 +msgid "Insert Note" +msgstr "" + +#: ../src/commands/matrix/MatrixEraseCommand.cpp:41 +msgid "Erase Note" +msgstr "" + +#: ../src/commands/matrix/MatrixPercussionInsertionCommand.cpp:47 +msgid "Insert Percussion Note" +msgstr "" + +#: ../src/commands/matrix/MatrixModifyCommand.cpp:43 +msgid "Move Note" +msgstr "" + +#: ../src/commands/matrix/MatrixModifyCommand.cpp:43 +msgid "Modify Note" +msgstr "" + +#: ../src/commands/edit/PasteEventsCommand.cpp:98 +msgid "Paste into an existing gap [\"restricted\"]" +msgstr "" + +#: ../src/commands/edit/PasteEventsCommand.cpp:100 +msgid "Erase existing events to make room [\"simple\"]" +msgstr "" + +#: ../src/commands/edit/PasteEventsCommand.cpp:102 +msgid "Move existing events out of the way [\"open-n-paste\"]" +msgstr "" + +#: ../src/commands/edit/PasteEventsCommand.cpp:104 +msgid "Overlay notes, tying against present notes [\"note-overlay\"]" +msgstr "" + +#: ../src/commands/edit/PasteEventsCommand.cpp:106 +msgid "Overlay notes, ignoring present notes [\"matrix-overlay\"]" +msgstr "" + +#: ../src/commands/edit/AddDotCommand.h:52 +msgid "&Add Dot" +msgstr "" + +#: ../src/commands/edit/RemoveMarkerCommand.h:55 +msgid "&Remove Marker" +msgstr "" + +#: ../src/commands/edit/EventUnquantizeCommand.cpp:43 +#: ../src/commands/edit/EventUnquantizeCommand.cpp:54 +msgid "Unquantize Events" +msgstr "" + +#: ../src/commands/edit/ChangeVelocityCommand.h:53 +msgid "&Increase Velocity" +msgstr "" + +#: ../src/commands/edit/ChangeVelocityCommand.h:54 +msgid "&Reduce Velocity" +msgstr "" + +#: ../src/commands/edit/CopyCommand.cpp:46 +msgid "(excerpt)" +msgstr "" + +#: ../src/commands/edit/CopyCommand.cpp:60 +msgid "(copied)" +msgstr "" + +#: ../src/commands/edit/EventInsertionCommand.cpp:39 +msgid "Insert Event" +msgstr "" + +#: ../src/commands/edit/InsertTriggerNoteCommand.cpp:55 +msgid "Insert Trigger Note" +msgstr "" + +#: ../src/commands/edit/CollapseNotesCommand.h:50 +msgid "Collapse &Equal-Pitch Notes" +msgstr "" + +#: ../src/commands/edit/TransposeCommand.h:61 +msgid "&Up a Semitone" +msgstr "" + +#: ../src/commands/edit/TransposeCommand.h:62 +msgid "&Down a Semitone" +msgstr "" + +#: ../src/commands/edit/TransposeCommand.h:63 +msgid "Up an &Octave" +msgstr "" + +#: ../src/commands/edit/TransposeCommand.h:64 +msgid "Down an Octa&ve" +msgstr "" + +#: ../src/commands/edit/TransposeCommand.h:65 +msgid "&Transpose by Semitones..." +msgstr "" + +#: ../src/commands/edit/SetNoteTypeCommand.h:56 +msgid "&Set Note Type" +msgstr "" + +#: ../src/commands/edit/EventEditCommand.h:55 +msgid "Edit E&vent" +msgstr "" + +#: ../src/commands/edit/AddMarkerCommand.h:54 +msgid "&Add Marker" +msgstr "" + +#: ../src/commands/edit/SelectionPropertyCommand.h:66 +msgid "Set &Property" +msgstr "" + +#: ../src/commands/edit/CutCommand.h:55 +msgid "Cu&t" +msgstr "" + +#: ../src/commands/edit/EventQuantizeCommand.cpp:114 +msgid "Heuristic Notation &Quantize" +msgstr "" + +#: ../src/commands/edit/EventQuantizeCommand.cpp:116 +msgid "Grid &Quantize" +msgstr "" + +#: ../src/commands/edit/ClearTriggersCommand.h:52 +msgid "&Clear Triggers" +msgstr "" + +#: ../src/commands/edit/RetrogradeCommand.h:51 +msgid "&Retrograde" +msgstr "" + +#: ../src/commands/edit/InvertCommand.h:51 +msgid "&Invert" +msgstr "" + +#: ../src/commands/edit/SetTriggerCommand.h:64 +msgid "Tri&gger Segment" +msgstr "" + +#: ../src/commands/edit/SetLyricsCommand.h:50 +msgid "Edit L&yrics" +msgstr "" + +#: ../src/commands/edit/MoveAcrossSegmentsCommand.cpp:73 +msgid "&Move Events to Other Segment" +msgstr "" + +#: ../src/commands/edit/RetrogradeInvertCommand.h:51 +msgid "Re&trograde Invert" +msgstr "" + +#: ../src/commands/edit/ModifyMarkerCommand.h:55 +msgid "&Modify Marker" +msgstr "" + +#: ../src/commands/studio/AddControlParameterCommand.h:61 +msgid "&Add Control Parameter" +msgstr "" + +#: ../src/commands/studio/ModifyInstrumentMappingCommand.h:55 +msgid "Modify &Instrument Mapping" +msgstr "" + +#: ../src/commands/studio/RemoveControlParameterCommand.h:60 +msgid "&Remove Control Parameter" +msgstr "" + +#: ../src/commands/studio/ReconnectDeviceCommand.h:55 +msgid "Reconnect Device" +msgstr "" + +#: ../src/commands/studio/ModifyDeviceCommand.h:68 +msgid "Modify &MIDI Bank" +msgstr "" + +#: ../src/commands/studio/CreateOrDeleteDeviceCommand.h:68 +msgid "Create Device" +msgstr "" + +#: ../src/commands/studio/ModifyDeviceMappingCommand.h:55 +msgid "Modify &Device Mapping" +msgstr "" + +#: ../src/commands/studio/RenameDeviceCommand.h:55 +msgid "Rename Device" +msgstr "" + +#: ../src/commands/studio/ModifyControlParameterCommand.h:61 +msgid "&Modify Control Parameter" +msgstr "" + +#: ../src/commands/notation/TieNotesCommand.h:49 +msgid "&Tie" +msgstr "" + +#: ../src/commands/notation/ClefInsertionCommand.cpp:74 +msgid "Add Cle&f Change..." +msgstr "" + +#: ../src/commands/notation/GuitarChordInsertionCommand.cpp:40 +msgid "Insert Guitar Chord" +msgstr "" + +#: ../src/commands/notation/RespellCommand.cpp:47 +#, c-format +msgid "Respell with %1" +msgstr "" + +#: ../src/commands/notation/RespellCommand.cpp:50 +msgid "Do&uble Sharp" +msgstr "" + +#: ../src/commands/notation/RespellCommand.cpp:52 +msgid "&Sharp" +msgstr "" + +#: ../src/commands/notation/RespellCommand.cpp:54 +msgid "&Flat" +msgstr "" + +#: ../src/commands/notation/RespellCommand.cpp:56 +msgid "Dou&ble Flat" +msgstr "" + +#: ../src/commands/notation/RespellCommand.cpp:58 +msgid "&Natural" +msgstr "" + +#: ../src/commands/notation/RespellCommand.cpp:60 +msgid "N&one" +msgstr "" + +#: ../src/commands/notation/RespellCommand.cpp:66 +msgid "Respell Accidentals &Upward" +msgstr "" + +#: ../src/commands/notation/RespellCommand.cpp:69 +msgid "Respell Accidentals &Downward" +msgstr "" + +#: ../src/commands/notation/RespellCommand.cpp:72 +msgid "&Restore Accidentals" +msgstr "" + +#: ../src/commands/notation/RespellCommand.cpp:75 +msgid "Respell Accidentals" +msgstr "" + +#: ../src/commands/notation/DeCounterpointCommand.h:55 +msgid "Split-and-Tie Overlapping &Chords" +msgstr "" + +#: ../src/commands/notation/BeamCommand.h:49 +msgid "&Beam Group" +msgstr "" + +#: ../src/commands/notation/AddTextMarkCommand.h:51 +msgid "Add Te&xt Mark..." +msgstr "" + +#: ../src/commands/notation/RestoreSlursCommand.h:49 +msgid "&Restore Slur Positions" +msgstr "" + +#: ../src/commands/notation/SustainInsertionCommand.h:56 +msgid "Add Pedal &Press" +msgstr "" + +#: ../src/commands/notation/SustainInsertionCommand.h:58 +msgid "Add Pedal &Release" +msgstr "" + +#: ../src/commands/notation/FixNotationQuantizeCommand.h:49 +msgid "Fi&x Notation Quantization" +msgstr "" + +#: ../src/commands/notation/ChangeStemsCommand.h:51 +msgid "Stems &Up" +msgstr "" + +#: ../src/commands/notation/ChangeStemsCommand.h:51 +msgid "Stems &Down" +msgstr "" + +#: ../src/commands/notation/MakeAccidentalsCautionaryCommand.cpp:43 +msgid "Use &Cautionary Accidentals" +msgstr "" + +#: ../src/commands/notation/MakeAccidentalsCautionaryCommand.cpp:45 +msgid "Cancel C&autionary Accidentals" +msgstr "" + +#: ../src/commands/notation/SetVisibilityCommand.h:50 +msgid "Set Visibility" +msgstr "" + +#: ../src/commands/notation/ChangeStyleCommand.h:53 +msgid "Change &Note Style" +msgstr "" + +#: ../src/commands/notation/TextInsertionCommand.cpp:41 +msgid "Insert Text" +msgstr "" + +#: ../src/commands/notation/InterpretCommand.h:70 +msgid "&Interpret..." +msgstr "" + +#: ../src/commands/notation/TupletCommand.h:53 +msgid "&Triplet" +msgstr "" + +#: ../src/commands/notation/TupletCommand.h:54 +msgid "Tu&plet..." +msgstr "" + +#: ../src/commands/notation/UnTupletCommand.h:50 +msgid "&Untuplet" +msgstr "" + +#: ../src/commands/notation/CollapseRestsCommand.h:54 +msgid "&Collapse Rests" +msgstr "" + +#: ../src/commands/notation/AddIndicationCommand.cpp:145 +msgid "Add S&lur" +msgstr "" + +#: ../src/commands/notation/AddIndicationCommand.cpp:147 +msgid "Add &Phrasing Slur" +msgstr "" + +#: ../src/commands/notation/AddIndicationCommand.cpp:149 +msgid "Add Double-Octave Up" +msgstr "" + +#: ../src/commands/notation/AddIndicationCommand.cpp:151 +msgid "Add Octave &Up" +msgstr "" + +#: ../src/commands/notation/AddIndicationCommand.cpp:153 +msgid "Add Octave &Down" +msgstr "" + +#: ../src/commands/notation/AddIndicationCommand.cpp:155 +msgid "Add Double Octave Down" +msgstr "" + +#: ../src/commands/notation/AddIndicationCommand.cpp:160 +msgid "Add &Crescendo" +msgstr "" + +#: ../src/commands/notation/AddIndicationCommand.cpp:162 +msgid "Add &Decrescendo" +msgstr "" + +#: ../src/commands/notation/AddIndicationCommand.cpp:164 +msgid "Add &Glissando" +msgstr "" + +#: ../src/commands/notation/AddIndicationCommand.cpp:167 +msgid "Add &%1%2" +msgstr "" + +#: ../src/commands/notation/RemoveNotationQuantizeCommand.h:49 +msgid "Remo&ve Notation Quantization" +msgstr "" + +#: ../src/commands/notation/MakeChordCommand.h:50 +msgid "Make &Chord" +msgstr "" + +#: ../src/commands/notation/MultiKeyInsertionCommand.h:63 +msgid "Change all to &Key %1..." +msgstr "" + +#: ../src/commands/notation/KeyInsertionCommand.h:67 +#: ../src/commands/notation/MultiKeyInsertionCommand.h:65 +msgid "Add &Key Change..." +msgstr "" + +#: ../src/commands/notation/RestoreStemsCommand.h:49 +msgid "&Restore Stems" +msgstr "" + +#: ../src/commands/notation/MakeNotesViableCommand.h:55 +#: ../src/commands/notation/MakeRegionViableCommand.h:52 +msgid "Tie Notes at &Barlines" +msgstr "" + +#: ../src/commands/notation/AddSlashesCommand.h:46 +msgid "Slashes" +msgstr "" + +#: ../src/commands/notation/ChangeSlurPositionCommand.h:51 +msgid "Slur &Above" +msgstr "" + +#: ../src/commands/notation/ChangeSlurPositionCommand.h:51 +msgid "Slur &Below" +msgstr "" + +#: ../src/commands/notation/NormalizeRestsCommand.h:54 +msgid "&Normalize Rests" +msgstr "" + +#: ../src/commands/notation/TextChangeCommand.cpp:41 +msgid "Edit Text" +msgstr "" + +#: ../src/commands/notation/RemoveMarksCommand.h:49 +msgid "&Remove All Marks" +msgstr "" + +#: ../src/commands/notation/AutoBeamCommand.h:52 +msgid "&Auto-Beam" +msgstr "" + +#: ../src/commands/notation/UntieNotesCommand.h:49 +msgid "&Untie" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:48 +msgid "S&forzando" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:50 +msgid "Sta&ccato" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:52 +msgid "R&inforzando" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:54 +msgid "T&enuto" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:56 +msgid "Tri&ll" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:58 +msgid "Trill &with Line" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:60 +msgid "Trill Line" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:62 +msgid "&Turn" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:64 +msgid "&Accent" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:66 +msgid "&Staccatissimo" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:68 +msgid "&Marcato" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:70 +msgid "&Pause" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:72 +msgid "&Up-Bow" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:74 +msgid "&Down-Bow" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:76 +msgid "Mo&rdent" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:78 +msgid "Inverted Mordent" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:80 +msgid "Long Mordent" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:82 +msgid "Lon&g Inverted Mordent" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:84 +msgid "&%1%2" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:89 +#, c-format +msgid "Add %1" +msgstr "" + +#: ../src/commands/notation/ResetDisplacementsCommand.h:49 +msgid "Restore Positions" +msgstr "" + +#: ../src/commands/notation/IncrementDisplacementsCommand.h:52 +msgid "Fine Reposition" +msgstr "" + +#: ../src/commands/notation/RestoreTiesCommand.h:49 +msgid "&Restore Tie Positions" +msgstr "" + +#: ../src/commands/notation/ChangeTiePositionCommand.h:47 +msgid "Tie &Above" +msgstr "" + +#: ../src/commands/notation/ChangeTiePositionCommand.h:47 +msgid "Tie &Below" +msgstr "" + +#: ../src/commands/notation/KeyInsertionCommand.h:65 +msgid "Change to &Key %1..." +msgstr "" + +#: ../src/commands/notation/RemoveFingeringMarksCommand.h:49 +msgid "&Remove Fingerings" +msgstr "" + +#: ../src/commands/notation/BreakCommand.h:49 +msgid "&Unbeam" +msgstr "" + +#: ../src/commands/notation/UnGraceCommand.h:48 +msgid "Ung&race" +msgstr "" + +#: ../src/commands/notation/AddFingeringMarkCommand.cpp:45 +msgid "Add Other &Fingering..." +msgstr "" + +#: ../src/commands/notation/AddFingeringMarkCommand.cpp:47 +msgid "Add Fingering &0 (Thumb)" +msgstr "" + +#: ../src/commands/notation/AddFingeringMarkCommand.cpp:49 +#, c-format +msgid "Add Fingering &%1" +msgstr "" + +#: ../src/document/io/HydrogenXMLHandler.cpp:277 +msgid " imported from Hydrogen " +msgstr "" + +#: ../src/document/io/LilyPondExporter.cpp:404 +msgid "" +"LilyPond does not allow spaces or backslashes in filenames.\n" +"\n" +"Would you like to use\n" +"\n" +" %1\n" +"\n" +" instead?" +msgstr "" + +#: ../src/document/io/LilyPondExporter.cpp:2054 +msgid "warning: overlong bar truncated here" +msgstr "" + +#: ../src/document/io/LilyPondExporter.cpp:2060 +msgid "warning: bar too short, padding with rests" +msgstr "" + +#: ../src/document/MultiViewCommandHistory.cpp:318 +msgid "Nothing to undo" +msgstr "" + +#: ../src/document/MultiViewCommandHistory.cpp:320 +msgid "Nothing to redo" +msgstr "" + +#: ../src/document/MultiViewCommandHistory.cpp:328 +#: ../src/document/MultiViewCommandHistory.cpp:372 +#, c-format +msgid "Und&o %1" +msgstr "" + +#: ../src/document/MultiViewCommandHistory.cpp:330 +#: ../src/document/MultiViewCommandHistory.cpp:374 +#, c-format +msgid "Re&do %1" +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:328 +msgid "" +"The current file has been modified.\n" +"Do you want to save it?" +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:480 +#, c-format +msgid "" +"_n: Delete the 1 audio file recorded during the unsaved session?\n" +"Delete the %n audio files recorded during the unsaved session?" +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:501 +msgid "" +"The following audio files were recorded during this session but have been " +"unloaded\n" +"from the audio file manager, and so are no longer in use in the document you " +"are saving.\n" +"\n" +"You may want to clean up these files to save disk space.\n" +"\n" +"Please select any you wish to delete permanently from the hard disk.\n" +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:517 +#, c-format +msgid "" +"_n: About to delete 1 audio file permanently from the hard disk." +"
              There will be no way to recover this file.
              Are you sure?
              \n" +"\n" +"About to delete %n audio files permanently from the hard disk.
              There " +"will be no way to recover these files.
              Are you sure?
              " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:580 +msgid "Can't open file '%1'" +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:585 +msgid "Reading file..." +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:603 +msgid "Could not open Rosegarden file" +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:641 +msgid "Error when parsing file '%1': \"%2\"" +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:689 +msgid "Generating audio previews..." +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:721 +msgid "Merge" +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1605 +msgid "File load cancelled" +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1625 +msgid "" +"

              Audio and plugins not available

              This composition uses audio files " +"or plugins, but Rosegarden is currently running without audio because the " +"JACK audio server was not available on startup.

              Please exit " +"Rosegarden, start the JACK audio server and re-start Rosegarden if you wish " +"to load this complete composition.

              WARNING: If you re-save this " +"composition, all audio and plugin data and settings in it will be lost.

              " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1628 +msgid "" +"

              Audio and plugins not available

              This composition uses audio files " +"or plugins, but you are running a version of Rosegarden that was compiled " +"without audio support.

              WARNING: If you re-save this composition " +"from this version of Rosegarden, all audio and plugin data and settings in " +"it will be lost.

              " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1665 +msgid "" +"

              Incorrect audio sample rate

              This composition contains audio files " +"that were recorded or imported with the audio server running at a different " +"sample rate (%1 Hz) from the current JACK server sample rate (%2 Hz).

              Rosegarden will play this composition at the correct speed, but any " +"audio files in it will probably sound awful.

              Please consider re-" +"starting the JACK server at the correct rate (%3 Hz) and re-loading this " +"composition before you do any more work with it.

              " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1675 +msgid "" +"

              Inconsistent audio sample rates

              This composition contains audio " +"files at more than one sample rate.

              Rosegarden will play them at the " +"correct speed, but any audio files that were recorded or imported at rates " +"different from the current JACK server sample rate (%1 Hz) will probably " +"sound awful.

              Please see the audio file manager dialog for more " +"details, and consider resampling any files that are at the wrong rate.

              " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1676 +msgid "Inconsistent sample rates" +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1690 +msgid "" +"

              Plugins not found

              The following audio plugins could not be loaded:" +"

                " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1698 +msgid "
              • %1 (from %2)
              • " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1712 +msgid "" +"This file contains one or more old element types that are now deprecated.\n" +"Support for these elements may disappear in future versions of Rosegarden.\n" +"We recommend you re-save this file from this version of Rosegarden to ensure " +"that it can still be re-loaded in future versions." +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:2207 +msgid "Insert Recorded MIDI" +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:2560 +msgid "%1 (recorded)" +msgstr "" + +#: ../src/document/RoseXmlHandler.cpp:442 +msgid "" +"This file was written by Rosegarden %1, and it uses\n" +"a different file format that cannot be read by this version." +msgstr "" + +#: ../src/document/RoseXmlHandler.cpp:452 +msgid "" +"This file was written by Rosegarden %1, which is more recent than this " +"version.\n" +"There may be some incompatibilities with the file format." +msgstr "" + +#: ../src/document/RoseXmlHandler.cpp:1687 +msgid "Loading plugins..." +msgstr "" + +#: rc.cpp:6 rc.cpp:144 +#, no-c-format +msgid "Se&gment" +msgstr "" + +#: rc.cpp:9 rc.cpp:84 rc.cpp:147 rc.cpp:303 +#, no-c-format +msgid "Edit &With" +msgstr "" + +#: rc.cpp:12 rc.cpp:21 rc.cpp:30 rc.cpp:39 rc.cpp:345 +#, no-c-format +msgid "Actions Toolbar" +msgstr "" + +#: rc.cpp:15 rc.cpp:33 rc.cpp:129 rc.cpp:285 +#, no-c-format +msgid "Time Toolbar" +msgstr "" + +#: rc.cpp:18 rc.cpp:36 rc.cpp:57 rc.cpp:63 rc.cpp:120 rc.cpp:243 rc.cpp:342 +#, no-c-format +msgid "Transport Toolbar" +msgstr "" + +#: rc.cpp:24 rc.cpp:42 rc.cpp:123 rc.cpp:348 +#, no-c-format +msgid "Zoom Toolbar" +msgstr "" + +#: rc.cpp:45 rc.cpp:60 rc.cpp:99 rc.cpp:228 rc.cpp:327 +#, no-c-format +msgid "T&ransport" +msgstr "" + +#: rc.cpp:51 +#, no-c-format +msgid "Number of Stereo &Inputs" +msgstr "" + +#: rc.cpp:54 +#, no-c-format +msgid "&Number of Submasters" +msgstr "" + +#: rc.cpp:66 +#, no-c-format +msgid "&Import" +msgstr "" + +#: rc.cpp:69 +#, no-c-format +msgid "&Merge" +msgstr "" + +#: rc.cpp:72 +#, no-c-format +msgid "&Export" +msgstr "" + +#: rc.cpp:75 rc.cpp:141 rc.cpp:297 +#, no-c-format +msgid "&Composition" +msgstr "" + +#: rc.cpp:78 +#, no-c-format +msgid "&Studio" +msgstr "" + +#: rc.cpp:81 +#, no-c-format +msgid "Se&gments" +msgstr "" + +#: rc.cpp:90 +#, no-c-format +msgid "Trac&ks" +msgstr "" + +#: rc.cpp:93 +#, no-c-format +msgid "Set &Instrument" +msgstr "" + +#: rc.cpp:102 rc.cpp:234 rc.cpp:333 +#, no-c-format +msgid "&Toolbars" +msgstr "" + +#: rc.cpp:105 rc.cpp:237 rc.cpp:336 +#, no-c-format +msgid "&Rulers" +msgstr "" + +#: rc.cpp:111 rc.cpp:240 rc.cpp:339 +#, no-c-format +msgid "Tools Toolbar" +msgstr "" + +#: rc.cpp:114 +#, no-c-format +msgid "Tracks Toolbar" +msgstr "" + +#: rc.cpp:117 +#, no-c-format +msgid "Editors Toolbar" +msgstr "" + +#: rc.cpp:135 +#, no-c-format +msgid "&Layout Mode" +msgstr "" + +#: rc.cpp:138 rc.cpp:294 +#, no-c-format +msgid "Add Event Ruler" +msgstr "" + +#: rc.cpp:150 +#, no-c-format +msgid "N&ote" +msgstr "" + +#: rc.cpp:153 +#, no-c-format +msgid "Mar&ks" +msgstr "" + +#: rc.cpp:156 +#, no-c-format +msgid "&Ornaments" +msgstr "" + +#: rc.cpp:159 +#, no-c-format +msgid "&Fingerings" +msgstr "" + +#: rc.cpp:162 +#, no-c-format +msgid "S&lashes" +msgstr "" + +#: rc.cpp:165 rc.cpp:219 +#, no-c-format +msgid "&Accidentals" +msgstr "" + +#: rc.cpp:168 +#, no-c-format +msgid "&Phrase" +msgstr "" + +#: rc.cpp:171 +#, no-c-format +msgid "Slur &Position" +msgstr "" + +#: rc.cpp:174 +#, no-c-format +msgid "Tie &Position" +msgstr "" + +#: rc.cpp:177 +#, no-c-format +msgid "&Octaves" +msgstr "" + +#: rc.cpp:180 rc.cpp:306 +#, no-c-format +msgid "Ad&just" +msgstr "" + +#: rc.cpp:183 +#, no-c-format +msgid "R&ests" +msgstr "" + +#: rc.cpp:186 rc.cpp:213 +#, no-c-format +msgid "&Notes" +msgstr "" + +#: rc.cpp:189 rc.cpp:309 +#, no-c-format +msgid "&Quantize" +msgstr "" + +#: rc.cpp:195 rc.cpp:315 +#, no-c-format +msgid "Trans&pose" +msgstr "" + +#: rc.cpp:198 rc.cpp:318 +#, no-c-format +msgid "Convert" +msgstr "" + +#: rc.cpp:201 +#, no-c-format +msgid "&Fine Positioning" +msgstr "" + +#: rc.cpp:204 +#, no-c-format +msgid "Fine Ti&ming" +msgstr "" + +#: rc.cpp:207 +#, no-c-format +msgid "&Visibility" +msgstr "" + +#: rc.cpp:216 +#, no-c-format +msgid "&Rests" +msgstr "" + +#: rc.cpp:222 +#, no-c-format +msgid "&Clefs" +msgstr "" + +#: rc.cpp:225 rc.cpp:324 +#, no-c-format +msgid "Local &Cursor" +msgstr "" + +#: rc.cpp:246 +#, no-c-format +msgid "Notes Toolbar" +msgstr "" + +#: rc.cpp:249 +#, no-c-format +msgid "Rests Toolbar" +msgstr "" + +#: rc.cpp:252 +#, no-c-format +msgid "Clefs Toolbar" +msgstr "" + +#: rc.cpp:255 +#, no-c-format +msgid "Accidentals Toolbar" +msgstr "" + +#: rc.cpp:258 +#, no-c-format +msgid "Group Toolbar" +msgstr "" + +#: rc.cpp:261 +#, no-c-format +msgid "Marks Toolbar" +msgstr "" + +#: rc.cpp:264 +#, no-c-format +msgid "Meta Toolbar" +msgstr "" + +#: rc.cpp:267 +#, no-c-format +msgid "Layout Toolbar" +msgstr "" + +#: rc.cpp:270 rc.cpp:351 +#, no-c-format +msgid "Control Ruler actions" +msgstr "" + +#: rc.cpp:273 rc.cpp:354 +#, no-c-format +msgid "Property Ruler actions" +msgstr "" + +#: rc.cpp:276 +#, no-c-format +msgid "&Action" +msgstr "" + +#: rc.cpp:279 +#, no-c-format +msgid "General Toolbar" +msgstr "" + +#: rc.cpp:291 +#, no-c-format +msgid "&Grid" +msgstr "" + +#: rc.cpp:300 +#, no-c-format +msgid "&Segment" +msgstr "" + +#: rc.cpp:361 +#, no-c-format +msgid "Hide additional controls" +msgstr "" + +#: rc.cpp:365 +#, no-c-format +msgid "Panic Button" +msgstr "" + +#: rc.cpp:368 +#, no-c-format +msgid "Resets all MIDI devices if you've got stuck notes" +msgstr "" + +#: rc.cpp:375 +#, no-c-format +msgid "Provides a metronome click for you to play along with" +msgstr "" + +#: rc.cpp:378 +#, no-c-format +msgid "Shows MIDI activity in and out of Rosegarden" +msgstr "" + +#: rc.cpp:381 +#, no-c-format +msgid "IN" +msgstr "" + +#: rc.cpp:384 +#, no-c-format +msgid "OUT" +msgstr "" + +#: rc.cpp:387 rc.cpp:390 +#, no-c-format +msgid "NO EVENTS" +msgstr "" + +#: rc.cpp:397 +#, no-c-format +msgid "Record either MIDI or audio" +msgstr "" + +#: rc.cpp:401 +#, no-c-format +msgid "Loop" +msgstr "" + +#: rc.cpp:404 +#, no-c-format +msgid "Turn on and off the loop markers (if set)" +msgstr "" + +#: rc.cpp:411 +#, no-c-format +msgid "Mutes all but the currently selected track" +msgstr "" + +#: rc.cpp:415 +#, no-c-format +msgid "Start loop or range here" +msgstr "" + +#: rc.cpp:419 +#, no-c-format +msgid "End loop or range here" +msgstr "" + +#: rc.cpp:422 +#, no-c-format +msgid "SIG" +msgstr "" + +#: rc.cpp:425 +#, no-c-format +msgid "DIV" +msgstr "" + +#: rc.cpp:428 +#, no-c-format +msgid "/16" +msgstr "" + +#: rc.cpp:431 +#, no-c-format +msgid "TEMPO" +msgstr "" + +#: rc.cpp:434 +#, no-c-format +msgid "END" +msgstr "" + +#: rc.cpp:437 +#, no-c-format +msgid "BAR" +msgstr "" + +#: rc.cpp:441 +#, no-c-format +msgid "Switch between real time, musical time, and frame count" +msgstr "" + +#: rc.cpp:445 +#, no-c-format +msgid "Show additional controls" +msgstr "" + +#: rc.cpp:449 +#, no-c-format +msgid "Rewind" +msgstr "" + +#: rc.cpp:452 +#, no-c-format +msgid "Moves the current pointer position back one bar." +msgstr "" + +#: rc.cpp:456 +#, no-c-format +msgid "Rewind to beginning" +msgstr "" + +#: rc.cpp:459 +#, no-c-format +msgid "" +"Moves the pointer position to the start of the composition. (This may mean " +"going forwards if the pointer is currently before the start.)" +msgstr "" + +#: rc.cpp:463 +#, no-c-format +msgid "Play/Pause" +msgstr "" + +#: rc.cpp:466 +#, no-c-format +msgid "" +"Plays from the current pointer position, or pauses playback if already in " +"progress." +msgstr "" + +#: rc.cpp:473 +#, no-c-format +msgid "Stops playback or recording." +msgstr "" + +#: rc.cpp:477 +#, no-c-format +msgid "Fast forward" +msgstr "" + +#: rc.cpp:480 +#, no-c-format +msgid "Moves the current pointer position forwards one bar." +msgstr "" + +#: rc.cpp:484 +#, no-c-format +msgid "Fast forward to end" +msgstr "" + +#: rc.cpp:487 +#, no-c-format +msgid "" +"Moves the pointer position to the end of the composition. (This may mean " +"going backwards if the pointer is already beyond the end.)" +msgstr "" + +#: rc.cpp:491 +#, no-c-format +msgid "Display time to end" +msgstr "" + +#: ../docs/en/tips.cpp:3 +msgid "" +"

                To configure a track to play using a particular instrument:

                \n" +"  * click on the track label and hold a moment
                \n" +"  * select an output device
                \n" +"  * select one of that device's available instruments (#1 - #16)" +"
                \n" +"  * adjust that instrument's output channel, program, bank, and\n" +"controllers via the instrument parameters box\n" +msgstr "" + +#: ../docs/en/tips.cpp:13 +msgid "" +"

                ...that Rosegarden has an autosave feature?

                \n" +"You can select your autosave interval from Settings->Configure\n" +"Rosegarden.

                \n" +"When something goes awry, such as a power outage or a Rosegarden crash\n" +"(unfortunately, it happens...) simply load the file you were working on, and " +"you'll be given the\n" +"option to load the autosaved version, or the unmodified original.

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:23 +msgid "" +"

                \n" +"...that you can save the current document as your default studio by using\n" +"Composition -> Studio -> Save Current Document as Default Studio?\n" +msgstr "" + +#: ../docs/en/tips.cpp:30 +msgid "" +"

                ...that your default studio is a complete Rosegarden composition that " +"gets\n" +"loaded every time you create a new document or import a MIDI file?

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:36 +msgid "" +"

                ...that your default studio can contain instrument assignments, document " +"properties, LilyPond headers,\n" +"and many other things?

                The default studio is a complete Rosegarden " +"composition, so it can contain anything that you may wish to have available " +"in each\n" +"new document you create.

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:43 +msgid "" +"

                ...that Rosegarden will detect and create a default connection for ALSA " +"soft\n" +"synth applications that are started after Rosegarden is already running?\n" +msgstr "" + +#: ../docs/en/tips.cpp:49 +msgid "" +"

                ...that you can make your default studio override that in every " +"Rosegarden composition you load?

                If your studio setup does not change " +"very often, and you would prefer for\n" +"the settings in your default studio to take precedence over whatever\n" +"studio is saved with any files you happen to load, you can make your studio " +"the default for everything using Settings -> Configure Rosegarden ->\n" +"MIDI -> Always use default studio when loading files.

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:57 +msgid "" +"

                If you have accidentally recorded a segment so short that it does not\n" +"appear on the canvas, which you can only hear during subsequent recording\n" +"sessions, you can gain access to it by using Composition -> Change\n" +"Composition Start and End and then setting the composition to start at a " +"negative number.

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:65 +msgid "" +"

                ...that if you place a note at the wrong pitch using the notation or " +"matrix editor, you can move it one semitone at a time with the up and down " +"arrow keys on your keyboard?

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:70 +msgid "" +"

                ...that you can toggle stem directions in the notation editor by " +"selecting\n" +"one or more notes and using Ctrl-PageUp and Ctrl-PageDown?

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:76 +msgid "" +"

                ...that you can change the accidental used for a note in the notation " +"editor (without changing the pitch of the note) by selecting\n" +"it and using the up and down arrow keys with both Ctrl and Shift pressed?\n" +msgstr "" + +#: ../docs/en/tips.cpp:82 ../docs/en/tips.cpp:93 +msgid "" +"

                ...that you can hold down the Shift key while repositioning segments on " +"the\n" +"segment canvas in order to avoid the \"snap-to\" effect and exert finer " +"control?

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:88 +msgid "" +"

                ...that you can use the arrow tool to draw, move, and resize segments and " +"events as well as to select them?

                Drag a segment or event block to " +"move it, drag the right edge of a block to resize it, and drag with the " +"middle mouse button pressed to draw a new segment or event.

                (Of " +"course, the dedicated draw, move and resize tools are still quicker for " +"repeated operations.)

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:99 +msgid "" +"

                ...that you can hold down the Shift key while repositioning or resizing " +"events in the\n" +"matrix view in order to avoid the \"snap-to\" effect and exert finer control?" +"

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:105 +msgid "" +"

                ...that you can edit multiple segments on multiple tracks simultaneously " +"in\n" +"the notation editor? Simply select the segments, then use Edit -> Open " +"in Notation Editor.

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:111 +msgid "" +"

                ...that Rosegarden can export files for use by LilyPond, the high-quality " +"score typesetting system?

                \n" +"From the File menu, navigate to Export -> Export LilyPond File

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:117 +msgid "" +"

                ...that Rosegarden can print via LilyPond, the high-quality score " +"typesetting system?

                \n" +"From the File menu, navigate to Preview with LilyPond. The " +"file\n" +"will be exported, rendered, and a preview will appear in KPDF, or one of\n" +"several other PDF viewers, where it can then be printed as well.

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:125 +msgid "" +"

                ...that if you use the quantizer from within the notation view, you can " +"tell it to quantize only the timing used for notation -- making it possible " +"to have good looking notation and a human MIDI performance?

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:130 +msgid "" +"

                ...that you can change segment labels using the controls on the Segment " +"Parameters box\n" +"in the main window?

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:136 +msgid "" +"

                ...that the number of tracks in new documents is based on the contents " +"of\n" +"your autoload.rg file?\n" +"

                \n" +"Whether you prefer to start with three tracks or 43, create a document that\n" +"contains the desired number of tracks, plus any other studio or document " +"properties settings\n" +"you wish to configure, and use Composition -> Studio -> Save Current " +"Document as Default\n" +"Studio to make this your new default.

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:147 +msgid "" +"

                ...that you can change the name of a track by double clicking on the " +"label? (The\n" +"label must be visible for this to work.)

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:153 +msgid "" +"

                ...that you can configure what happens when you double-click on a segment?" +"

                Go to Settings -> Configure Rosegarden and choose your " +"preferred editing window under the Behaviour tab.

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:158 +msgid "" +"

                ...that Rosegarden is being developed as a community effort with\n" +"contributions from around the world?

                \n" +"The four most active developers live in London (England), Cannes, " +"Barcelona,\n" +"and... Christiansburg? (Christiansburg is a town of about 50,000 in\n" +"southwestern Virginia, USA.)

                \n" +"We have had contributors from elsewhere in the US, UK, Spain, Mexico, " +"Argentina, Germany,\n" +"Sweden, Russia, Japan, Finland, and Italy, just to name a few...

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:169 +msgid "" +"

                ...that Rosegarden is available in Spanish, French, German, Russian, " +"Welsh, Swedish, Italian and Estonian\n" +"translations? (Just to name a few.)

                \n" +"If you're interested in translating Rosegarden to another language, drop us " +"a\n" +"line at rosegarden-devel@lists.sourceforge.net.

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:177 +msgid "" +"

                ...that you can change the total number of bars in the composition via\n" +"Composition -> Change Composition Start and End?

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:183 +msgid "" +"

                ...that you can see the difference between performance and display " +"duration\n" +"of duration-quantized notes in the notation editor?

                \n" +"Use Settings -> Show Raw Note Ruler to turn on this handy\n" +"feature.

                \n" +"Note that this feature does not work in page layout view.

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:192 +msgid "" +"

                ...that you can add tempo and time-signature changes by double-clicking " +"on the values displayed in the transport window or tempo rulers?

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:197 +msgid "" +"

                ...that the transport window can display musical time, sample frame " +"count, and a visual metronome as well as real time?

                Just click on the " +"small button at the extreme top left of the window.

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:202 +msgid "" +"

                ...that you can select all notes of a particular pitch in the matrix " +"view, by shift-clicking on that pitch on the piano keyboard at the left?" +"

                If you shift-click-drag, you can select whole ranges too.

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:207 +msgid "" +"

                ...that you can set a loop in the main window by clicking-and-dragging on " +"the time ruler with Shift pressed?

                (If the ruler isn't visible, use " +"Settings -> Show Rulers.)

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:212 +msgid "" +"

                ...that if you're editing a section in the matrix or notation view, you " +"can\n" +"set that section to loop while you edit it?

                Select it and use " +"Tools ->\n" +"Local Cursor -> Set Loop to Selection, then hit Play.



                \n" +"This feature does not work quite as well for compositions that include " +"sampled\n" +"audio.\n" +msgstr "" + +#: ../docs/en/tips.cpp:221 +msgid "" +"

                ...if you have more than one note or controller event at the same time, " +"you\n" +"can use the [ and ] keys to flip the stack of events around on the " +"controller\n" +"and velocity rulers in order to bring the item you wish to adjust into\n" +"focus.

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:229 +msgid "" +"

                ...that the notation view shows you notes using their display duration, " +"while the\n" +"matrix allows you to edit their performance duration?

                \n" +"Be careful with tied notes in the matrix. It is not apparent that they " +"are\n" +"tied, and if you split up a pair of tied notes, subsequent notation views " +"will\n" +"be confused and unhappy. This is an old bug that has been on our TODO list\n" +"for years. Sorry about that, folks. Patches welcome.\n" +"

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:240 +msgid "" +"

                If you're working with a human performance and you need to insert some " +"new\n" +"notes, these new notes will sound for their entire written duration. To " +"blend\n" +"these new notes into a human performance, select them, then use Adjust -> " +"Interpret... \n" +"from the notation view to interpret any marks and massage their " +"performance\n" +"durations to something less mechanical.

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:249 +msgid "" +"

                ...that Rosegarden can export certain things to LilyPond that it cannot " +"yet\n" +"display within its own native interface?

                These new directives can be " +"inserted\n" +"via the T text insert tool in the notation view.

                \n" +"Load the example files\n" +"lilypond-alternative-endings.rg and lilypond-directives.rg for " +"a\n" +"demonstration of how to use the new exportable directives.

                \n" +"Use File -> Preview with\n" +"LilyPond to see what they look like on the exported page.

                \n" +"Be sure to turn on\n" +"Settings -> Show LilyPond Directives and Show Annotations " +"within\n" +"the notation view.

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:264 +msgid "" +"

                ...that Rosegarden has track parameters allowing you to Create " +"segments with: certain\n" +"properties by default?

                You can pre-select the clef, transposition, " +"colour, and specify\n" +"the highest and lowest playable notes (notes outside this range display in\n" +"red by default). Then draw a segment with the pencil, or record one, and " +"any\n" +"new segments created on this track will take these properties as segment\n" +"parameters.

                \n" +"These parameters do not apply to audio tracks.

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:275 +msgid "" +"

                ...that Rosegarden has a database of preset parameters describing more " +"than 300\n" +"musical instruments from the real world, grouped into several convenient\n" +"categories?

                Each preset contains a clef, transposition, and playable " +"range\n" +"suggestions for both amateur and professional players.

                Click the\n" +"Load button in the new track parameters box to get started! (If " +"you\n" +"do not see a Load button, be sure your parameter panel is set for\n" +"tabbed mode, rather than stacked mode.)

                (Special thanks to " +"Magnus\n" +"Johansson for assembling this extraordinary database.)

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:287 +msgid "" +"

                ...that when exporting to Lilypond, you can merge tracks that have the " +"same name onto a single staff?

                For example, if there are three voices " +"in a single part, write each\n" +"voice as an independent segment/staff, each on a separate track. Give all\n" +"three tracks the same name, and select [x] Merge tracks that have the " +"same\n" +"name from the options dialog that appears when you export to, or " +"preview\n" +"with LilyPond.

                \n" +"The tracks must have a non-default name for this to work.

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:297 +msgid "" +" \t \n" +"

                ...that you can use the mouse wheel to scroll up and down, scroll left " +"and right, and zoom in and out?

                Just roll the wheel to scroll up or " +"down. Hold Alt as well to scroll left or right, or hold Ctrl to zoom in and " +"out.

                \t \n" +msgstr "" + +#: ../docs/en/tips.cpp:303 +msgid "" +" \t \n" +"

                ...that you can time-stretch an audio segment -- stretching or squashing " +"a\n" +"sample to a different duration without changing its pitch -- just by\n" +"dragging its right edge with the Ctrl key pressed?

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:311 +msgid "" +" \t \n" +"

                ...that you can add audio to your Rosegarden composition just by dragging " +"an audio file from your file manager and dropping it on the Rosegarden " +"segment canvas? (Make sure you drop it on an audio track!)

                You can " +"also drop audio files from Rosegarden's audio file manager window onto the " +"segment canvas, and from other programs onto the audio file manager.

                \n" +msgstr "" + +#: ../docs/en/tips.cpp:317 +msgid "" +" \t \n" +"

                ...that you can set the tempo to match the duration of an audio segment " +"if you know it's an exact number of bars or beats long?

                Just select " +"the audio segment and use Composition -> Tempo and Time Signature -> Set " +"Tempo to Audio Segment Duration.

                \n" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:1 +msgid "Feta Pixmaps" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:2 ../data/fonts/mappings/fonts.cpp:7 +msgid "GNU Lilypond" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:3 ../data/fonts/mappings/fonts.cpp:8 +msgid "Copyright (c) 1997--2003 Han-Wen Nienhuys and Jan Nieuwenhuizen" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:4 ../data/fonts/mappings/fonts.cpp:9 +#: ../data/fonts/mappings/fonts.cpp:14 ../data/fonts/mappings/fonts.cpp:19 +#: ../data/fonts/mappings/fonts.cpp:24 ../data/fonts/mappings/fonts.cpp:29 +#: ../data/fonts/mappings/fonts.cpp:34 ../data/fonts/mappings/fonts.cpp:39 +#: ../data/fonts/mappings/fonts.cpp:44 ../data/fonts/mappings/fonts.cpp:49 +#: ../data/fonts/mappings/fonts.cpp:54 +msgid "Chris Cannam" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:5 ../data/fonts/mappings/fonts.cpp:40 +msgid "pixmap" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:6 +msgid "Feta" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:10 ../data/fonts/mappings/fonts.cpp:15 +#: ../data/fonts/mappings/fonts.cpp:20 ../data/fonts/mappings/fonts.cpp:25 +#: ../data/fonts/mappings/fonts.cpp:30 ../data/fonts/mappings/fonts.cpp:35 +#: ../data/fonts/mappings/fonts.cpp:45 ../data/fonts/mappings/fonts.cpp:50 +#: ../data/fonts/mappings/fonts.cpp:55 +msgid "scalable" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:11 +msgid "Fughetta" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:12 +msgid "" +"Created by Blake Hodgetts; freely redistributable. See http://www.efn.org/" +"~bch/aboutfonts.html" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:13 +msgid "Copyright 1995-1999 Blake Hodgetts" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:16 +msgid "Inkpen" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:17 +msgid "Inkpen is part of Sibelius, but other fonts may use the same mappings." +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:18 ../data/fonts/mappings/fonts.cpp:28 +msgid "Copyright Sibelius Software Ltd" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:21 +msgid "Maestro" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:22 +msgid "Maestro is part of Finale, but other fonts use the same mappings." +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:23 ../data/fonts/mappings/fonts.cpp:33 +msgid "Copyright Coda Inc" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:27 +msgid "Opus is part of Sibelius, but other fonts may use the same mappings." +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:31 +msgid "Petrucci" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:32 +msgid "Petrucci is part of Finale, but other fonts use the same mappings." +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:36 +msgid "RG21" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:37 +msgid "Rosegarden 2.1" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:38 +msgid "Copyright (c) 1994--2001 Chris Cannam" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:41 +msgid "Sonata" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:42 +msgid "Adobe" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:43 +msgid "Copyright Adobe Inc" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:46 +msgid "Steinberg" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:47 +msgid "The Steinberg Notation font is part of Cubase." +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:48 +msgid "Copyright Steinberg Inc" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:51 +msgid "Xinfonia" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:52 +msgid "xemo.org" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:53 +msgid "Copyright 2001-2003 Xemus Software LLC" +msgstr "" + +#: ../data/styles/styles.cpp:1 +msgid "Classical" +msgstr "" + +#: ../data/styles/styles.cpp:2 +msgid "Cross" +msgstr "" + +#: ../data/styles/styles.cpp:3 +msgid "Mensural" +msgstr "" + +#: ../data/styles/styles.cpp:4 +msgid "Triangle" +msgstr "" diff --git a/po/en_GB.po b/po/en_GB.po new file mode 100644 index 0000000..925a031 --- /dev/null +++ b/po/en_GB.po @@ -0,0 +1,10812 @@ +# translation of en_GB.po to +# This file is distributed under the same license as the PACKAGE package. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. +# Chris Cannam , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: en_GB\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-04-24 18:19-0400\n" +"PO-Revision-Date: 2006-01-13 20:22+0000\n" +"Last-Translator: Chris Cannam \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.9.1\n" + +#: ../src/gui/dialogs/RescaleDialog.cpp:51 rc.cpp:192 rc.cpp:312 +#, no-c-format +msgid "Rescale" +msgstr "" + +#: ../src/gui/dialogs/RescaleDialog.cpp:56 +msgid "Duration of selection" +msgstr "" + +#: ../src/gui/dialogs/RescaleDialog.cpp:62 +msgid "Adjust times of following events accordingly" +msgstr "" + +#: ../src/gui/dialogs/PitchDialog.cpp:45 +#: ../src/gui/dialogs/RescaleDialog.cpp:72 +#: ../src/gui/dialogs/TimeDialog.cpp:51 ../src/gui/dialogs/TimeDialog.cpp:68 +#: ../src/gui/studio/BankEditorDialog.cpp:109 +msgid "Reset" +msgstr "" + +#: ../src/commands/segment/SegmentSplitByPitchCommand.cpp:46 +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:46 +msgid "Split by Pitch" +msgstr "" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:54 +msgid "Starting split pitch" +msgstr "" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:57 +msgid "Range up and down to follow music" +msgstr "" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:63 +msgid "Duplicate non-note events" +msgstr "" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:66 +msgid "Clef handling:" +msgstr "" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:69 +msgid "Leave clefs alone" +msgstr "" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:70 +msgid "Guess new clefs" +msgstr "" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:71 +msgid "Use treble and bass clefs" +msgstr "" + +#: ../src/gui/dialogs/DocumentConfigureDialog.cpp:64 +msgid "Document Properties" +msgstr "" + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:45 +#: ../src/gui/editors/notation/NotationView.cpp:6048 +msgid "Make Ornament" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:183 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:179 +#: ../src/gui/dialogs/EventEditDialog.cpp:128 +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:49 +#: ../src/gui/studio/DeviceEditorDialog.cpp:74 +#: ../src/gui/studio/NameSetEditor.cpp:72 +#: ../src/gui/widgets/ColourTable.cpp:51 +msgid "Name" +msgstr "" + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:51 +msgid "" +"The name is used to identify both the ornament\n" +"and the triggered segment that stores\n" +"the ornament's notes." +msgstr "" + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:54 +msgid "Name: " +msgstr "" + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:57 +#: ../src/gui/editors/eventlist/EventView.cpp:717 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:92 +msgid "Base pitch" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:57 +#: ../src/gui/editors/eventlist/EventView.cpp:140 +msgid "Text" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:66 +msgid "Specification" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:68 +msgid "Preview" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:72 +msgid "Text: " +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:79 +msgid "Style: " +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:90 +msgid "Dynamic" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:93 +msgid "Direction" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:96 +msgid "Local Direction" +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:63 +#: ../src/gui/dialogs/TextEventDialog.cpp:99 +#: ../src/gui/editors/tempo/TempoView.cpp:91 +msgid "Tempo" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:102 +msgid "Local Tempo" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:105 +msgid "Lyric" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:108 +#: ../src/gui/editors/notation/NotationView.cpp:4242 +msgid "Chord" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:111 +msgid "Annotation" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:114 +msgid "LilyPond Directive" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:138 +msgid "Verse: " +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:148 +msgid "Dynamic: " +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:152 +msgid "ppp" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:153 +msgid "pp" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:154 +msgid "p" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:155 +msgid "mp" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:156 +msgid "mf" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:157 +msgid "f" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:158 +msgid "ff" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:159 +msgid "fff" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:160 +msgid "rfz" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:161 +msgid "sf" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:165 +msgid "Direction: " +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:174 +msgid " ," +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:175 +msgid "D.C. al Fine" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:176 +msgid "D.S. al Fine" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:177 +msgid "Fine" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:178 +msgid "D.S. al Coda" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:179 +msgid "to Coda" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:180 +msgid "Coda" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:184 +msgid "Local Direction: " +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:188 +msgid "accel." +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:189 +msgid "ritard." +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:190 +msgid "ralletando" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:191 +msgid "a tempo" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:192 +msgid "legato" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:193 +msgid "simile" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:194 +msgid "pizz." +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:195 +msgid "arco" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:196 +msgid "non vib." +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:197 +msgid "sul pont." +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:198 +#: ../src/gui/dialogs/TextEventDialog.cpp:200 +msgid "sul tasto" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:199 +msgid "con legno" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:201 +msgid "sul G" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:202 +msgid "ordinario" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:203 +msgid "Muta in " +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:204 +msgid "volti subito " +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:205 +msgid "soli" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:206 +msgid "div." +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:210 +msgid "Tempo: " +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:214 +#: ../src/gui/dialogs/TextEventDialog.cpp:238 +msgid "Grave" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:215 +#: ../src/gui/dialogs/TextEventDialog.cpp:239 +msgid "Adagio" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:216 +#: ../src/gui/dialogs/TextEventDialog.cpp:240 +msgid "Largo" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:217 +#: ../src/gui/dialogs/TextEventDialog.cpp:241 +msgid "Lento" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:218 +#: ../src/gui/dialogs/TextEventDialog.cpp:242 +msgid "Andante" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:219 +#: ../src/gui/dialogs/TextEventDialog.cpp:243 +msgid "Moderato" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:220 +#: ../src/gui/dialogs/TextEventDialog.cpp:244 +msgid "Allegretto" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:221 +#: ../src/gui/dialogs/TextEventDialog.cpp:245 +msgid "Allegro" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:222 +#: ../src/gui/dialogs/TextEventDialog.cpp:246 +msgid "Vivace" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:223 +#: ../src/gui/dialogs/TextEventDialog.cpp:247 +msgid "Presto" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:224 +#: ../src/gui/dialogs/TextEventDialog.cpp:248 +msgid "Prestissimo" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:225 +#: ../src/gui/dialogs/TextEventDialog.cpp:249 +msgid "Maestoso" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:226 +#: ../src/gui/dialogs/TextEventDialog.cpp:250 +msgid "Sostenuto" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:227 +#: ../src/gui/dialogs/TextEventDialog.cpp:251 +msgid "Tempo Primo" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:234 +msgid "Local Tempo: " +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:255 +msgid "Directive: " +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:312 +msgid "Example" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:65 +msgid "Event Filter" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:86 +msgid "Note Events" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:90 +msgid "lowest:" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:93 +msgid "highest:" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:96 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:141 +#: ../src/gui/widgets/PitchChooser.cpp:53 +msgid "Pitch:" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:99 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:163 +msgid "Velocity:" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:102 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:129 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:257 +msgid "Duration:" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:107 +#: ../src/gui/dialogs/EventFilterDialog.cpp:114 +#: ../src/gui/dialogs/EventFilterDialog.cpp:121 +msgid "include" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:108 +#: ../src/gui/dialogs/EventFilterDialog.cpp:115 +#: ../src/gui/dialogs/EventFilterDialog.cpp:122 +msgid "exclude" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:136 +#: ../src/gui/dialogs/EventFilterDialog.cpp:155 +#: ../src/gui/editors/eventlist/EventView.cpp:172 +#: ../src/gui/editors/eventlist/EventView.cpp:179 +#: ../src/gui/editors/eventlist/EventView.cpp:186 +msgid "edit" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:141 +#: ../src/gui/dialogs/EventFilterDialog.cpp:157 +msgid "choose a pitch using a staff" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:182 +#: ../src/gui/dialogs/EventFilterDialog.cpp:188 +msgid "longest" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:200 +msgid "Include all" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:203 +msgid "Include entire range of values" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:206 +msgid "Exclude all" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:209 +msgid "Exclude entire range of values" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:233 +#: ../src/gui/dialogs/EventFilterDialog.cpp:234 +msgid "shortest" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:333 +msgid "Lowest pitch" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:343 +msgid "Highest pitch" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:56 +#: ../src/gui/editors/notation/NotationView.cpp:1619 +#: ../src/gui/editors/notation/NotationView.cpp:6088 +msgid "Use Ornament" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:260 +#: ../src/gui/configuration/NotationConfigurationPage.h:64 +#: ../src/gui/configuration/NotationConfigurationPage.h:65 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:63 +msgid "Notation" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:68 +msgid "Display as: " +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:84 +msgid "Trill" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:84 +msgid "Trill with line" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:84 +msgid "Trill line only" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:85 +msgid "Turn" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:85 +msgid "Mordent" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:85 +msgid "Inverted mordent" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:86 +msgid "Long mordent" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:86 +msgid "Long inverted mordent" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:94 +msgid "Text mark" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:98 +msgid " Text: " +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:104 +msgid "Performance" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:109 +msgid "Perform using triggered segment: " +msgstr "" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:75 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:123 +msgid "Perform with timing: " +msgstr "" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:81 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:129 +msgid "As stored" +msgstr "" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:82 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:130 +msgid "Truncate if longer than note" +msgstr "" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:83 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:131 +msgid "End at same time as note" +msgstr "" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:84 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:132 +msgid "Stretch or squash segment to note duration" +msgstr "" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:86 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:134 +msgid "Adjust pitch to note" +msgstr "" + +#: ../src/gui/dialogs/PitchPickerDialog.cpp:40 +msgid "Pitch Selector" +msgstr "" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:44 +msgid "Audio Segment Duration" +msgstr "" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:50 +msgid "The selected audio segment contains:" +msgstr "" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:59 +msgid "beat(s)" +msgstr "" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:60 +msgid "bar(s)" +msgstr "" + +#: ../src/gui/dialogs/TupletDialog.cpp:51 +msgid "Tuplet" +msgstr "" + +#: ../src/gui/dialogs/TupletDialog.cpp:58 +msgid "New timing for tuplet group" +msgstr "" + +#: ../src/gui/dialogs/TupletDialog.cpp:76 +msgid "Play " +msgstr "" + +#: ../src/gui/dialogs/TupletDialog.cpp:98 +msgid "in the time of " +msgstr "" + +#: ../src/gui/dialogs/TupletDialog.cpp:104 +msgid "Timing is already correct: update display only" +msgstr "" + +#: ../src/gui/dialogs/TupletDialog.cpp:114 +msgid "Timing calculations" +msgstr "" + +#: ../src/gui/dialogs/TupletDialog.cpp:120 +msgid "Selected region:" +msgstr "" + +#: ../src/gui/dialogs/TupletDialog.cpp:129 +msgid "Group with current timing:" +msgstr "" + +#: ../src/gui/dialogs/TupletDialog.cpp:135 +msgid "Group with new timing:" +msgstr "" + +#: ../src/gui/dialogs/TupletDialog.cpp:141 +msgid "Gap created by timing change:" +msgstr "" + +#: ../src/gui/dialogs/TupletDialog.cpp:149 +msgid "Unchanged at end of selection:" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:63 rc.cpp:372 +#, no-c-format +msgid "Metronome" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:77 +msgid "Metronome Instrument" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:82 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:150 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:183 +#: ../src/gui/studio/DeviceEditorDialog.cpp:73 +#: ../src/gui/studio/DeviceManagerDialog.cpp:105 +#: ../src/gui/studio/DeviceManagerDialog.cpp:163 +#: ../src/gui/studio/RemapInstrumentDialog.cpp:66 +msgid "Device" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:101 +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:89 +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:215 +#: ../src/gui/studio/DeviceEditorDialog.cpp:195 +#: ../src/gui/studio/DeviceEditorDialog.cpp:218 +#: ../src/gui/studio/DeviceEditorDialog.cpp:230 +#: ../src/gui/studio/DeviceManagerDialog.cpp:196 +#: ../src/gui/studio/DeviceManagerDialog.cpp:440 +#: ../src/gui/studio/DeviceManagerDialog.cpp:452 +msgid "No connection" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:112 +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:111 +#: ../src/gui/editors/parameters/InstrumentParameterBox.cpp:53 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1209 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:159 +#: ../src/gui/general/PresetHandlerDialog.cpp:92 +#: ../src/gui/studio/MidiMixerWindow.cpp:204 +#: ../src/gui/studio/RemapInstrumentDialog.cpp:67 +msgid "Instrument" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:118 +msgid "Beats" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:184 +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:123 +msgid "Resolution" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:309 +#: ../src/gui/configuration/NotationConfigurationPage.cpp:139 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:205 +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:125 +#: ../src/gui/editors/matrix/MatrixView.cpp:2132 +#: ../src/gui/editors/notation/NotationView.cpp:1582 +#: ../src/gui/widgets/QuantizeParameters.cpp:128 +#: ../src/gui/widgets/QuantizeParameters.cpp:301 +msgid "None" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:126 +msgid "Bars only" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:127 +msgid "Bars and beats" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:128 +msgid "Bars, beats, and divisions" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:132 +msgid "Bar velocity" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:139 +msgid "Beat velocity" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:146 +msgid "Sub-beat velocity" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:155 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:324 +msgid "Pitch" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:160 +msgid "for Bar" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:161 +msgid "for Beat" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:162 +msgid "for Sub-beat" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:166 +msgid "Metronome Activated" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:167 +msgid "Playing" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:168 +msgid "Recording" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:46 +msgid "Choose Text Encoding" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:50 +msgid "" +"\n" +"This file contains text in an unknown language encoding.\n" +"\n" +"Please select one of the following estimated text encodings\n" +"for use with the text in this file:\n" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:61 +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:77 +msgid "Japanese Shift-JIS" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:62 +msgid "Unicode variable-width" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:63 +msgid "Western Europe" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:64 +msgid "Western Europe + Euro" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:65 +msgid "Eastern Europe" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:66 +msgid "Southern Europe" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:67 +msgid "Northern Europe" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:68 +msgid "Cyrillic" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:69 +msgid "Arabic" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:70 +msgid "Greek" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:71 +msgid "Hebrew" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:72 +msgid "Turkish" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:73 +msgid "Nordic" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:74 +msgid "Thai" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:75 +msgid "Baltic" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:76 +msgid "Celtic" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:78 +msgid "Traditional Chinese" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:79 +msgid "Simplified Chinese" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:80 +msgid "Russian" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:81 +msgid "Ukrainian" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:82 +msgid "Tamil" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:117 +#, c-format +msgid "Microsoft Code Page %1" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:123 +#: ../src/gui/editors/matrix/MatrixView.cpp:1490 +msgid "%1 (%2)" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:142 +msgid "" +"\n" +"Example text from file:" +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:59 +#: ../src/gui/editors/tempo/TempoView.cpp:92 +msgid "Time Signature" +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:82 +msgid "Time signature" +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:116 +msgid "Time where signature takes effect" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:83 +#: ../src/gui/dialogs/TempoDialog.cpp:128 +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:129 +#: ../src/gui/general/PresetHandlerDialog.cpp:101 +msgid "Scope" +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:141 +#, c-format +msgid "Insertion point is at start of measure %1." +msgstr "Insertion point is at start of bar %1." + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:145 +#, c-format +msgid "Insertion point is in the middle of measure %1." +msgstr "Insertion point is in the middle of bar %1." + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:150 +msgid "Insertion point is at start of composition." +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:155 +msgid "Start measure %1 here" +msgstr "Start bar %1 here" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:159 +#, c-format +msgid "Change time from start of measure %1" +msgstr "Change time from start of bar %1" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:166 +#, c-format +msgid "Time change will take effect at the start of measure %1." +msgstr "Time change will take effect at the start of bar %1." + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:176 +msgid "Hide the time signature" +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:181 +msgid "Hide the affected bar lines" +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:186 +msgid "Show as common time" +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:191 +msgid "Correct the durations of following measures" +msgstr "Correct the durations of following bars" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:280 +msgid "Display as common time" +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:284 +msgid "Display as cut common time" +msgstr "" + +#: ../src/gui/dialogs/ConfigureDialog.cpp:66 +msgid "Configure Rosegarden" +msgstr "" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:53 +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:61 +msgid "Edit Marker" +msgstr "" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:78 +msgid "Marker Time" +msgstr "" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:94 +msgid "Marker Properties" +msgstr "" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:100 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:554 +msgid "Text:" +msgstr "" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:104 +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:85 +msgid "Description:" +msgstr "" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:46 +msgid "Merge File" +msgstr "" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:53 +msgid "Merge new file " +msgstr "" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:56 +msgid "At start of existing composition" +msgstr "" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:57 +msgid "From end of existing composition" +msgstr "" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:61 +msgid "The file has different time signatures or tempos." +msgstr "" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:62 +msgid "Import these as well" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:171 +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:44 +msgid "Sequencer status" +msgstr "" + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:48 +msgid "Sequencer status:" +msgstr "" + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:50 +msgid "Status not available." +msgstr "" + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:57 +msgid "Sequencer is not running or is not responding." +msgstr "" + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:64 +msgid "Sequencer is not returning a valid status report." +msgstr "" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:46 +msgid "Add Tracks" +msgstr "" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:54 +msgid "How many tracks do you want to add?" +msgstr "" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:62 +msgid "Add tracks" +msgstr "" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:64 +msgid "At the top" +msgstr "" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:65 +msgid "Above the current selected track" +msgstr "" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:66 +msgid "Below the current selected track" +msgstr "" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:67 +msgid "At the bottom" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:75 +msgid "Event Properties" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:81 +msgid "Event type:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:117 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:251 +#: ../src/gui/editors/segment/MarkerEditor.cpp:97 +msgid "Absolute time:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:156 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:323 +msgid "Controller name:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:157 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:530 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:562 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:563 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:602 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:631 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:267 +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:269 +#: ../src/gui/editors/segment/MarkerEditor.cpp:279 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:272 +#: ../src/gui/studio/AudioMixerWindow.cpp:388 +#: ../src/gui/studio/AudioMixerWindow.cpp:519 +#: ../src/gui/studio/AudioMixerWindow.cpp:683 +#: ../src/gui/studio/AudioMixerWindow.cpp:722 +#: ../src/gui/studio/AudioMixerWindow.cpp:904 +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:121 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:174 +msgid "Meta string:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:179 +msgid "Load data" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:181 +msgid "Save data" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:192 +msgid "Notation Properties" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:198 +msgid "Lock to changes in performed values" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:205 +msgid "Notation time:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:217 +msgid "Notation duration:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:283 +msgid "Note pitch:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:291 +msgid "Note velocity:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:317 +msgid "Controller number:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:326 +msgid "Controller value:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:354 +msgid "Key pitch:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:362 +msgid "Key pressure:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:390 +msgid "Channel pressure:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:418 +msgid "Program change:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:461 +msgid "Data length:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:462 +msgid "Data:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:480 +msgid "Pitchbend MSB:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:488 +msgid "Pitchbend LSB:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:523 +msgid "Indication:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:553 +msgid "Text type:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:596 +msgid "Clef type:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:625 +msgid "Key name:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:674 +msgid "Unsupported event type:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:931 +msgid "Edit Event Time" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:943 +msgid "Edit Event Notation Time" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:955 +msgid "Edit Duration" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:968 +msgid "Edit Notation Duration" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:981 +msgid "Edit Pitch" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:991 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:1016 +msgid "*.syx|System exclusive files (*.syx)" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:992 +msgid "Load System Exclusive data in File" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:1017 +msgid "Save System Exclusive data to..." +msgstr "" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:46 +msgid "Locate audio file" +msgstr "" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:50 +msgid "&Skip" +msgstr "" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:51 +msgid "Skip &All" +msgstr "" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:52 +msgid "&Locate" +msgstr "" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:57 +msgid "" +"Can't find file \"%1\".\n" +"Would you like to try and locate this file or skip it?" +msgstr "" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:71 +msgid "" +"%1|Requested file (%2)\n" +"*.wav|WAV files (*.wav)" +msgstr "" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:74 +msgid "Select an Audio File" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:53 ../src/gui/dialogs/ClefDialog.cpp:62 +#: ../src/gui/dialogs/ClefDialog.cpp:79 ../src/gui/dialogs/ClefDialog.cpp:90 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:278 +msgid "Clef" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:65 +msgid "Existing notes following clef change" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:71 +msgid "Lower clef" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:77 +msgid "Up an Octave" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:84 +msgid "Down an Octave" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:88 +msgid "Higher clef" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:96 +#: ../src/gui/dialogs/KeySignatureDialog.cpp:152 +msgid "Maintain current pitches" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:99 +msgid "Transpose into appropriate octave" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:231 +msgid "%1 down an octave" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:234 +msgid "%1 down two octaves" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:237 +msgid "%1 up an octave" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:240 +msgid "%1 up two octaves" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:249 +msgid "Treble" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:251 +msgid "French violin" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:253 +msgid "Soprano" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:255 +msgid "Mezzo-soprano" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:257 +msgid "Alto" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:259 +msgid "Tenor" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:261 +msgid "C-baritone" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:263 +msgid "F-baritone" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:265 +msgid "Bass" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:267 +msgid "Sub-bass" +msgstr "" + +#: ../src/gui/dialogs/CountdownDialog.cpp:52 +msgid "Recording..." +msgstr "" + +#: ../src/gui/dialogs/CountdownDialog.cpp:60 +msgid "Recording time remaining: " +msgstr "" + +#: ../src/gui/dialogs/CountdownDialog.cpp:120 +msgid "Just how big is your hard disk?" +msgstr "" + +#: ../src/gui/dialogs/CountdownDialog.cpp:154 +msgid "Recording beyond end of composition: " +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:52 +msgid "Specify Interval" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:58 +msgid "Reference note:" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:59 +#, fuzzy +msgid "Target note:" +msgstr "crotchet" + +#: ../src/gui/dialogs/IntervalDialog.cpp:68 +#: ../src/gui/dialogs/IntervalDialog.cpp:315 +msgid "a perfect unison" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:76 +msgid "Effect on Key" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:77 +msgid "Transpose within key" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:79 +msgid "Change key for selection" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:89 +msgid "" +"Adjust segment transposition in opposite direction (maintain audible pitch)" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:190 +#: ../src/gui/dialogs/IntervalDialog.cpp:220 +msgid "a diminished" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:192 +#: ../src/gui/dialogs/IntervalDialog.cpp:222 +msgid "an augmented" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:194 +#: ../src/gui/dialogs/IntervalDialog.cpp:224 +msgid "a doubly diminished" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:196 +#: ../src/gui/dialogs/IntervalDialog.cpp:226 +msgid "a doubly augmented" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:198 +#: ../src/gui/dialogs/IntervalDialog.cpp:228 +msgid "a triply diminished" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:200 +#: ../src/gui/dialogs/IntervalDialog.cpp:230 +msgid "a triply augmented" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:202 +msgid "a quadruply diminished" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:204 +#: ../src/gui/dialogs/IntervalDialog.cpp:232 +msgid "a quadruply augmented" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:206 +#: ../src/gui/dialogs/IntervalDialog.cpp:234 +msgid "a perfect" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:208 +#: ../src/gui/dialogs/IntervalDialog.cpp:236 +msgid "an (unknown, %1)" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:216 +msgid "a minor" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:218 +msgid "a major" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:239 +msgid "an (unknown)" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:248 +#: ../src/gui/dialogs/IntervalDialog.cpp:251 +msgid "%1 octave" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:254 +msgid "%1 unison" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:258 +msgid "%1 second" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:261 +msgid "%1 third" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:264 +msgid "%1 fourth" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:267 +msgid "%1 fifth" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:270 +msgid "%1 sixth" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:273 +msgid "%1 seventh" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:276 +#: ../src/gui/studio/DeviceManagerDialog.cpp:329 +#: ../src/gui/studio/DeviceManagerDialog.cpp:363 +#, c-format +msgid "%1" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:287 +msgid "" +"_n: up 1 octave and %1\n" +"up %n octaves and %1" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:291 +#, c-format +msgid "" +"_n: up 1 octave\n" +"up %n octaves" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:295 +#, c-format +msgid "up %1" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:303 +msgid "" +"_n: down 1 octave and %1\n" +"down %n octaves and %1" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:307 +#, c-format +msgid "" +"_n: down 1 octave\n" +"down %n octaves" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:311 +#, c-format +msgid "down %1" +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:81 +msgid "Intrinsics" +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:85 +msgid "Event type: " +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:91 +msgid "Absolute time: " +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:101 +msgid "Duration: " +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:114 +msgid "Sub-ordering: " +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:125 +msgid "Persistent properties" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:169 +#: ../src/gui/dialogs/EventEditDialog.cpp:133 +#: ../src/gui/studio/BankEditorDialog.cpp:129 +#: ../src/gui/studio/DeviceEditorDialog.cpp:75 +msgid "Type" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:184 +#: ../src/gui/dialogs/EventEditDialog.cpp:135 +#: ../src/gui/dialogs/EventParameterDialog.cpp:89 +#: ../src/gui/dialogs/EventParameterDialog.cpp:93 +#: ../src/gui/dialogs/EventParameterDialog.cpp:115 +msgid "Value" +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:155 +msgid "Non-persistent properties" +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:156 +msgid "These are cached values, lost if the event is modified." +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:170 +msgid "Name " +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:172 +msgid "Type " +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:174 +msgid "Value " +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:188 +msgid "Make persistent" +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:292 +msgid "Delete this property" +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:433 +msgid "" +"Are you sure you want to delete the \"%1\" property?\n" +"\n" +"Removing necessary properties may cause unexpected behavior." +msgstr "" +"Are you sure you want to delete the \"%1\" property?\n" +"\n" +"Removing necessary properties may cause unexpected behaviour." + +#: ../src/gui/dialogs/EventEditDialog.cpp:436 +#: ../src/gui/dialogs/EventEditDialog.cpp:469 +msgid "Edit Event" +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:465 +msgid "" +"Are you sure you want to make the \"%1\" property persistent?\n" +"\n" +"This could cause problems if it overrides a different computed value later " +"on." +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:470 +msgid "Make &Persistent" +msgstr "" + +#: ../src/gui/dialogs/PasteNotationDialog.cpp:52 +msgid "Paste type" +msgstr "" + +#: ../src/gui/dialogs/PasteNotationDialog.cpp:72 +msgid "Make this the default paste type" +msgstr "" + +#: ../src/gui/dialogs/LyricEditDialog.cpp:53 +msgid "Edit Lyrics" +msgstr "" + +#: ../src/gui/dialogs/LyricEditDialog.cpp:62 +msgid "Lyrics for this segment" +msgstr "" + +#: ../src/gui/dialogs/LyricEditDialog.cpp:70 +msgid "Add Verse" +msgstr "" + +#: ../src/gui/dialogs/LyricEditDialog.cpp:84 +#: ../src/gui/dialogs/LyricEditDialog.cpp:106 +#, c-format +msgid "Verse %1" +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:59 +msgid "Import from Device..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2163 +#: ../src/gui/application/RosegardenGUIApp.cpp:2229 +#: ../src/gui/application/RosegardenGUIApp.cpp:7780 +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:87 +#: ../src/sound/AudioFileManager.cpp:664 +#, c-format +msgid "Cannot download file %1" +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:99 +#, c-format +msgid "Cannot open file %1" +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:106 +#, c-format +msgid "No devices found in file %1" +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:113 +msgid "Source device" +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:118 +msgid "Import from: " +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:140 +#: ../src/gui/studio/DeviceEditorDialog.cpp:148 +#, c-format +msgid "Device %1" +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:155 +msgid "Import banks" +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:156 +msgid "Import key mappings" +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:157 +msgid "Import controllers" +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:160 +msgid "Import device name" +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:166 +msgid "Bank import behavior" +msgstr "Bank import behaviour" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:168 +msgid "Merge banks" +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:169 +msgid "Overwrite banks" +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:367 +msgid "Bank %1:%2" +msgstr "" + +#: ../src/commands/segment/SegmentSplitByRecordingSrcCommand.cpp:42 +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:48 +msgid "Split by Recording Source" +msgstr "" + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:53 +msgid "Recording Source" +msgstr "" + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:57 +msgid "Channel:" +msgstr "" + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:64 +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:75 +msgid "any" +msgstr "" + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:69 +msgid "Device:" +msgstr "" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:46 +msgid "Select Unused Audio Files" +msgstr "" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:53 +#: ../src/gui/editors/segment/PlayListView.cpp:36 +msgid "File name" +msgstr "" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:54 +msgid "File size" +msgstr "" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:55 +msgid "Last modified date" +msgstr "" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:60 +msgid " (not found) " +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:105 +msgid "Audio File Manager" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:126 +msgid "" +"* Some audio files are encoded at a sample rate different from that of the " +"JACK audio server.\n" +"Rosegarden will play them at the correct speed, but they will sound " +"terrible.\n" +"Please consider resampling such files externally, or adjusting the sample " +"rate of the JACK server." +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:132 +msgid "&Add Audio File..." +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:135 +msgid "&Unload Audio File" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:140 +msgid "&Play Preview" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:151 +msgid "&Insert into Selected Audio Track" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:155 +msgid "Unload &all Audio Files" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:159 +msgid "Unload all &Unused Audio Files" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:163 +msgid "&Delete Unused Audio Files..." +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:167 +msgid "&Export Audio File..." +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:173 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:180 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:91 +msgid "Duration" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:181 +msgid "Envelope" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:182 +msgid "Sample rate" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:183 +msgid "Channels" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:282 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:488 +msgid "*.wav|WAV files (*.wav)" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:489 +msgid "Choose a name to save this file as" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:499 +msgid "Exporting audio file..." +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:609 +msgid "" +"This will unload audio file \"%1\" and remove all associated segments. Are " +"you sure?" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:692 +msgid "" +"*.wav|WAV files (*.wav)\n" +"*.*|All files" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:697 +msgid "" +"*.wav *.flac *.ogg *.mp3|Audio files (*.wav *.flac *.ogg *.mp3)\n" +"*.wav|WAV files (*.wav)\n" +"*.flac|FLAC files (*.flac)\n" +"*.ogg|Ogg files (*.ogg)\n" +"*.mp3|MP3 files (*.mp3)\n" +"*.*|All files" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:704 +msgid "Select one or more audio files" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:763 +msgid "" +"This will unload all audio files and remove their associated segments.\n" +"This action cannot be undone, and associations with these files will be " +"lost.\n" +"Files will not be removed from your disk.\n" +"Are you sure?" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:800 +msgid "" +"This will unload all audio files that are not associated with any segments " +"in this composition.\n" +"This action cannot be undone, and associations with these files will be " +"lost.\n" +"Files will not be removed from your disk.\n" +"Are you sure?" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:865 +msgid "" +"The following audio files are not used in the current composition.\n" +"\n" +"Please select the ones you wish to delete permanently from the hard disk.\n" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:875 +#, c-format +msgid "" +"_n: About to delete 1 audio file permanently from the hard disk.
                This " +"action cannot be undone, and there will be no way to recover this file." +"
                Are you sure?
                \n" +"\n" +"About to delete %n audio files permanently from the hard disk.
                This " +"action cannot be undone, and there will be no way to recover these files." +"
                Are you sure?
                " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:525 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:888 +msgid "File %1 could not be deleted." +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:921 +msgid "Change Audio File label" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6466 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:922 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1099 +msgid "Enter new label" +msgstr "" + +#: ../src/gui/application/RosegardenGUIView.cpp:1538 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1086 +msgid "Adding audio file..." +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1107 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1112 +msgid "Failed to add audio file. " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:2789 +#: ../src/gui/application/RosegardenGUIApp.cpp:2736 +#: ../src/gui/application/RosegardenGUIView.cpp:1574 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1122 +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:180 +msgid "Generating audio preview..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIView.cpp:1581 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1130 +msgid "" +"Try copying this file to a directory where you have write permission and re-" +"add it" +msgstr "" + +#: ../src/gui/dialogs/TransportDialog.cpp:90 rc.cpp:357 +#, no-c-format +msgid "Rosegarden Transport" +msgstr "" + +#: ../src/gui/dialogs/TransportDialog.cpp:925 +#: ../src/gui/dialogs/TransportDialog.cpp:985 +msgid "PITCH WHEEL" +msgstr "" + +#: ../src/gui/dialogs/TransportDialog.cpp:929 +#: ../src/gui/dialogs/TransportDialog.cpp:989 +msgid "CONTROLLER" +msgstr "" + +#: ../src/gui/dialogs/TransportDialog.cpp:933 +#: ../src/gui/dialogs/TransportDialog.cpp:993 +msgid "PROG CHNGE" +msgstr "" + +#: ../src/gui/dialogs/TransportDialog.cpp:938 +#: ../src/gui/dialogs/TransportDialog.cpp:998 +msgid "PRESSURE" +msgstr "" + +#: ../src/gui/dialogs/TransportDialog.cpp:942 +#: ../src/gui/dialogs/TransportDialog.cpp:1002 +msgid "SYS MESSAGE" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:177 +#: ../src/gui/dialogs/QuantizeDialog.cpp:40 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:127 +msgid "Quantize" +msgstr "" + +#: ../src/gui/dialogs/QuantizeDialog.cpp:52 +msgid "Advanced" +msgstr "" + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:42 +msgid "Export Devices..." +msgstr "" + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:47 +msgid "Export devices" +msgstr "" + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:49 +msgid "Export all devices" +msgstr "" + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:50 +msgid "Export selected device only" +msgstr "" + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:51 +msgid " (\"%1\")" +msgstr "" + +#: ../src/gui/dialogs/CompositionLengthDialog.cpp:44 +msgid "Change Composition Length" +msgstr "" + +#: ../src/gui/dialogs/CompositionLengthDialog.cpp:50 +msgid "Set the Start and End bar markers for this Composition" +msgstr "" + +#: ../src/gui/dialogs/CompositionLengthDialog.cpp:54 +msgid "Start Bar" +msgstr "" + +#: ../src/gui/dialogs/CompositionLengthDialog.cpp:62 +msgid "End Bar" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:62 +msgid "LilyPond Export/Preview" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:85 +msgid "General options" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:90 +msgid "Advanced options" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:112 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:95 +msgid "Headers" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:106 +msgid "Basic options" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:113 +msgid "Compatibility level" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:117 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:118 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:119 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:120 +#, c-format +msgid "LilyPond %1" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:125 +msgid "Paper size" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:129 +msgid "A3" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:130 +msgid "A4" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:131 +msgid "A5" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:132 +msgid "A6" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:133 +msgid "Legal" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:134 +msgid "US Letter" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:135 +msgid "Tabloid" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:136 +msgid "do not specify" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:152 +msgid "Font size" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:157 +msgid "%1 pt" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:169 +msgid "Staff level options" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:176 +msgid "Export content" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:179 +msgid "All tracks" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:180 +msgid "Non-muted tracks" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:181 +msgid "Selected track" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:182 +msgid "Selected segments" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:188 +msgid "Merge tracks that have the same name" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:198 +msgid "Notation options" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:206 +msgid "First" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:207 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:538 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:557 +msgid "All" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:211 +msgid "Export tempo marks " +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:215 +msgid "Export lyrics" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:225 +msgid "Export beamings" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:232 +msgid "Export track staff brackets" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:244 +msgid "Layout options" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:257 +msgid "Lyrics alignment" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:261 +msgid "Ragged bottom (systems will not be spread vertically across the page)" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:267 +msgid "Miscellaneous options" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:274 +msgid "Enable \"point and click\" debugging" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:279 +msgid "Export \\midi block" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:284 +msgid "No markers" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:285 +msgid "Rehearsal marks" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:286 +#, fuzzy +msgid "Marker text" +msgstr "crotchet" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:290 +msgid "Export markers" +msgstr "" + +#: ../src/gui/dialogs/AudioSplitDialog.cpp:57 +msgid "Autosplit Audio Segment" +msgstr "" + +#: ../src/gui/dialogs/AudioSplitDialog.cpp:70 +msgid "AutoSplit Segment \"" +msgstr "" + +#: ../src/gui/dialogs/AudioSplitDialog.cpp:84 +msgid "Threshold" +msgstr "" + +#: ../src/gui/dialogs/AudioSplitDialog.cpp:142 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:70 +msgid "Audio Plugin" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:94 +#: ../src/gui/widgets/AudioFaderBox.cpp:136 +msgid "Editor" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:100 +msgid "Plugin" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:105 +msgid "Category:" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:110 +msgid "Plugin:" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:114 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:398 +msgid "Select a plugin from this list." +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:119 +msgid "Bypass" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:121 +msgid "Bypass this plugin." +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:127 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:390 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:130 +msgid "Input and output port counts." +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:132 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:391 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:135 +msgid "Unique ID of plugin." +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:149 +msgid "Copy plugin parameters" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:155 +msgid "Paste plugin parameters" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:161 +msgid "Set to defaults" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:225 +msgid "(any)" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:226 +msgid "(unclassified)" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:247 +msgid "(none)" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:389 +#: ../src/gui/editors/parameters/AudioInstrumentParameterPanel.cpp:132 +#: ../src/gui/editors/parameters/AudioInstrumentParameterPanel.cpp:361 +#: ../src/gui/studio/AudioMixerWindow.cpp:685 +#: ../src/gui/studio/AudioMixerWindow.cpp:724 +#: ../src/gui/studio/AudioMixerWindow.cpp:906 +#: ../src/gui/widgets/AudioFaderBox.cpp:79 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:427 +msgid "This plugin has too many controls to edit here." +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:438 +#, c-format +msgid "Id: %1" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:490 +msgid "mono" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:492 +msgid "stereo" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:494 +msgid "%1 in, %2 out" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:518 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:704 +msgid "Program: " +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:522 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:532 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:708 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:716 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:745 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:56 +msgid "Set the %1 property of the event selection:" +msgstr "" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:61 +msgid "Pattern" +msgstr "" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:66 +msgid "Flat - set %1 to value" +msgstr "" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:70 +msgid "Alternating - set %1 to max and min on alternate events" +msgstr "" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:74 +msgid "Crescendo - set %1 rising from min to max" +msgstr "" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:78 +msgid "Diminuendo - set %1 falling from max to min" +msgstr "" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:82 +msgid "Ringing - set %1 alternating from max to min with both dying to zero" +msgstr "" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:123 +#: ../src/gui/dialogs/EventParameterDialog.cpp:150 +msgid "First Value" +msgstr "" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:124 +#: ../src/gui/dialogs/EventParameterDialog.cpp:151 +msgid "Second Value" +msgstr "" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:132 +#: ../src/gui/dialogs/EventParameterDialog.cpp:142 +msgid "Low Value" +msgstr "" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:133 +#: ../src/gui/dialogs/EventParameterDialog.cpp:141 +msgid "High Value" +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:56 ../src/gui/rulers/TempoRuler.cpp:127 +msgid "Insert Tempo Change" +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:69 +msgid "New tempo:" +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:76 +msgid "Tap" +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:81 +msgid "Tempo is fixed until the following tempo change" +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:82 +msgid "Tempo ramps to the following tempo" +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:83 +msgid "Tempo ramps to:" +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:120 +msgid "Time of tempo change" +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:138 +msgid "The pointer is currently at " +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:154 +msgid "Apply this tempo from here onwards" +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:158 +msgid "Replace the last tempo change" +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:164 +msgid "Apply this tempo from the start of this bar" +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:167 +msgid "Apply this tempo to the whole composition" +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:172 +msgid "Also make this the default tempo" +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:256 +msgid "%1.%2 s," +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:262 +#, c-format +msgid "at the start of measure %1." +msgstr "at the start of bar %1." + +#: ../src/gui/dialogs/TempoDialog.cpp:266 +#, c-format +msgid "in the middle of measure %1." +msgstr "in the middle of bar %1." + +#: ../src/gui/dialogs/TempoDialog.cpp:285 +msgid " (at %1.%2 s, in measure %3)" +msgstr " (at %1.%2 s, in bar %3)" + +#: ../src/gui/dialogs/TempoDialog.cpp:302 +msgid "There are no preceding tempo changes." +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:310 +msgid "There are no other tempo changes." +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:328 +msgid " bpm" +msgstr "" + +#: ../src/gui/dialogs/AudioPlayingDialog.cpp:42 +msgid "Playing audio file" +msgstr "" + +#: ../src/gui/dialogs/AudioPlayingDialog.cpp:47 +msgid "Playing audio file \"%1\"" +msgstr "" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:52 +#: ../src/gui/editors/matrix/MatrixView.cpp:2655 +msgid "Trigger Segment" +msgstr "" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:61 +msgid "Trigger segment: " +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:59 +msgid "Key Change" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:77 +msgid "Key signature" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:80 +msgid "Key transposition" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:86 +msgid "Existing notes following key change" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:98 +msgid "Flatten" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:100 +msgid "Key" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:105 +msgid "Sharpen" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:109 +msgid "Major" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:110 +#: ../src/gui/dialogs/KeySignatureDialog.cpp:369 +msgid "Minor" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:123 +msgid "Transpose key according to segment transposition" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:126 +msgid "Use specified key. Do not transpose" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:134 +msgid "Apply to current segment only" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:137 +msgid "Apply to all segments at this time" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:141 +msgid "Exclude percussion segments" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:155 +msgid "Maintain current accidentals" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:158 +msgid "Transpose into this key" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:331 +msgid "No such key" +msgstr "" + +#: ../src/gui/dialogs/InterpretDialog.cpp:44 +#: ../src/gui/editors/notation/NotationSelector.cpp:118 +msgid "Interpret" +msgstr "" + +#: ../src/gui/dialogs/InterpretDialog.cpp:50 +msgid "Interpretations to apply" +msgstr "" + +#: ../src/gui/dialogs/InterpretDialog.cpp:53 +msgid "Apply text dynamics (p, mf, ff etc)" +msgstr "" + +#: ../src/gui/dialogs/InterpretDialog.cpp:55 +msgid "Apply hairpin dynamics" +msgstr "" + +#: ../src/gui/dialogs/InterpretDialog.cpp:57 +msgid "Stress beats" +msgstr "" + +#: ../src/gui/dialogs/InterpretDialog.cpp:59 +msgid "Articulate slurs, staccato, tenuto etc" +msgstr "" + +#: ../src/gui/dialogs/InterpretDialog.cpp:61 +msgid "All available interpretations" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:316 +msgid "" +"Attempted to launch JACK audio daemon failed. Audio will be disabled.\n" +"Please check configuration (Settings -> Configure Rosegarden -> Audio -> " +"Startup)\n" +" and restart." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:325 +msgid "Starting sequencer..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:333 +msgid "Initializing plugin manager..." +msgstr "Initialising plugin manager..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:338 +msgid "Initializing view..." +msgstr "Initialising view..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:354 +msgid "Special Parameters" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:430 +msgid "Starting sequence manager..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:456 +msgid "Clearing studio data..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:475 +#: ../src/gui/editors/notation/NotationView.cpp:558 +msgid "Starting..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:556 +msgid "Import Rosegarden &Project file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:560 +msgid "Import &MIDI file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:564 +msgid "Import &Rosegarden 2.1 file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:568 +msgid "Import &Hydrogen file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:572 +msgid "Merge &File..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:576 +msgid "Merge &MIDI file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:580 +msgid "Merge &Rosegarden 2.1 file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:584 +msgid "Merge &Hydrogen file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:588 +msgid "Export Rosegarden &Project file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:592 +msgid "Export &MIDI file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:596 +msgid "Export &LilyPond file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:600 +msgid "Export Music&XML file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:604 +msgid "Export &Csound score file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:608 +msgid "Export M&up file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:612 +#: ../src/gui/editors/notation/NotationView.cpp:1500 +msgid "Print &with LilyPond..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:616 +#: ../src/gui/editors/notation/NotationView.cpp:1504 +msgid "Preview with Lil&yPond..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:620 +msgid "Play&list" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:627 +msgid "Rosegarden &Tutorial" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:631 +msgid "&Bug Reporting Guidelines" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:645 +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:348 +#: ../src/gui/editors/segment/MarkerEditor.cpp:378 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:388 +#: ../src/gui/general/EditViewBase.cpp:190 +#: ../src/gui/studio/BankEditorDialog.cpp:318 +#: ../src/gui/studio/DeviceManagerDialog.cpp:227 +msgid "Und&o" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:651 +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:354 +#: ../src/gui/editors/segment/MarkerEditor.cpp:384 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:394 +#: ../src/gui/general/EditViewBase.cpp:196 +#: ../src/gui/studio/BankEditorDialog.cpp:324 +#: ../src/gui/studio/DeviceManagerDialog.cpp:233 +msgid "Re&do" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:665 +#: ../src/gui/editors/notation/NotationView.cpp:2297 +msgid "Show T&ools Toolbar" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:669 +msgid "Show Trac&ks Toolbar" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:673 +msgid "Show &Editors Toolbar" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:677 +#: ../src/gui/editors/notation/NotationView.cpp:2309 +msgid "Show Trans&port Toolbar" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:681 +msgid "Show &Zoom Toolbar" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:688 +msgid "Show Tra&nsport" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:693 +msgid "Show Track &Labels" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:698 +msgid "Show Playback Position R&uler" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:703 +msgid "Show Te&mpo Ruler" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:708 +msgid "Show Cho&rd Name Ruler" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:714 +msgid "Show Segment Pre&views" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:719 +msgid "Show Special &Parameters" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:753 +#: ../src/gui/editors/matrix/MatrixView.cpp:641 +#: ../src/gui/editors/notation/NotationView.cpp:1772 +msgid "&Select and Edit" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:758 +#: ../src/gui/editors/matrix/MatrixView.cpp:646 +msgid "&Draw" +msgstr "" + +#: ../src/commands/edit/EraseCommand.h:50 +#: ../src/gui/application/RosegardenGUIApp.cpp:763 +#: ../src/gui/editors/matrix/MatrixView.cpp:651 +#: ../src/gui/editors/notation/NotationView.cpp:1766 +msgid "&Erase" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:768 +#: ../src/gui/editors/matrix/MatrixView.cpp:656 +msgid "&Move" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:775 +msgid "&Resize" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:782 rc.cpp:87 +#, no-c-format +msgid "&Split" +msgstr "" + +#: ../src/commands/segment/SegmentJoinCommand.h:53 +#: ../src/gui/application/RosegardenGUIApp.cpp:789 +msgid "&Join" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:795 +msgid "&Harmonize" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:806 +#: ../src/gui/rulers/TempoRuler.cpp:157 +msgid "Open Tempo and Time Signature Editor" +msgstr "" + +#: ../src/commands/segment/CutRangeCommand.cpp:41 +#: ../src/gui/application/RosegardenGUIApp.cpp:812 +msgid "Cut Range" +msgstr "" + +#: ../src/commands/edit/CopyCommand.cpp:73 +#: ../src/gui/application/RosegardenGUIApp.cpp:816 +msgid "Copy Range" +msgstr "" + +#: ../src/commands/segment/PasteRangeCommand.cpp:45 +#: ../src/gui/application/RosegardenGUIApp.cpp:820 +msgid "Paste Range" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:828 +msgid "Insert Range..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:832 +#: ../src/gui/editors/notation/NotationView.cpp:1804 +msgid "De&lete" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:836 +msgid "Select &All Segments" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:852 +msgid "Edit Mar&kers..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:856 +msgid "Edit Document P&roperties..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:864 +msgid "Open in &Default Editor" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:870 +#: ../src/gui/general/EditViewBase.cpp:206 +msgid "Open in Matri&x Editor" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:876 +#: ../src/gui/general/EditViewBase.cpp:212 +msgid "Open in &Percussion Matrix Editor" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:882 +#: ../src/gui/general/EditViewBase.cpp:218 +msgid "Open in &Notation Editor" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:888 +#: ../src/gui/general/EditViewBase.cpp:224 +msgid "Open in &Event List Editor" +msgstr "" + +#: ../src/commands/edit/EventQuantizeCommand.cpp:120 +#: ../src/commands/edit/EventUnquantizeCommand.cpp:87 +#: ../src/gui/application/RosegardenGUIApp.cpp:894 +msgid "&Quantize..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:908 +#: ../src/gui/editors/matrix/MatrixView.cpp:686 +msgid "Repeat Last Quantize" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:928 +msgid "Split at Time..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:932 +#: ../src/gui/general/EditView.cpp:796 +msgid "Jog &Left" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:936 +#: ../src/gui/general/EditView.cpp:800 +msgid "Jog &Right" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:940 +msgid "Set Start Time..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:944 +msgid "Set Duration..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:953 +msgid "Turn Re&peats into Copies" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:958 +msgid "Manage Tri&ggered Segments" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:962 +msgid "Set Tempos from &Beat Segment" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:966 +msgid "Set &Tempo to Audio Segment Duration" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:972 +msgid "Manage A&udio Files" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:977 +msgid "Show Segment Labels" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:986 +msgid "Add &Track" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:990 +msgid "&Add Tracks..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:996 +msgid "D&elete Track" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1002 +msgid "Move Track &Down" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1008 +msgid "Move Track &Up" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1012 +msgid "Select &Next Track" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1017 +msgid "Select &Previous Track" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1022 +msgid "Mute or Unmute Track" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1027 +msgid "Arm or Un-arm Track for Record" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1034 +msgid "&Mute all Tracks" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1040 +msgid "&Unmute all Tracks" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1044 +msgid "&Remap Instruments..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1053 +msgid "&Audio Mixer" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1059 +msgid "Midi Mi&xer" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1065 +msgid "Manage MIDI &Devices" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1071 +msgid "Manage S&ynth Plugins" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1075 +msgid "Modify MIDI &Filters" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1079 +msgid "MIDI Thru Routing" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1085 +msgid "Manage &Metronome" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1089 +msgid "&Save Current Document as Default Studio" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1093 +msgid "&Import Default Studio" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1097 +msgid "Im&port Studio from File..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1101 +msgid "&Reset MIDI Network" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1105 +#, fuzzy +msgid "Set Quick Marker at Playback Position" +msgstr "Delete Colour" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1109 +msgid "Jump to Quick Marker" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1142 +#: ../src/gui/editors/matrix/MatrixView.cpp:782 +#: ../src/gui/editors/notation/NotationView.cpp:2397 +#: ../src/gui/studio/AudioMixerWindow.cpp:105 +#: ../src/gui/studio/MidiMixerWindow.cpp:81 +msgid "&Play" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1153 +#: ../src/gui/editors/matrix/MatrixView.cpp:791 +#: ../src/gui/editors/notation/NotationView.cpp:2406 +#: ../src/gui/studio/AudioMixerWindow.cpp:114 +#: ../src/gui/studio/MidiMixerWindow.cpp:90 +msgid "&Stop" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1160 +#: ../src/gui/editors/matrix/MatrixView.cpp:802 +#: ../src/gui/editors/notation/NotationView.cpp:2417 +#: ../src/gui/studio/AudioMixerWindow.cpp:125 +#: ../src/gui/studio/MidiMixerWindow.cpp:101 +msgid "&Fast Forward" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1168 +#: ../src/gui/editors/matrix/MatrixView.cpp:796 +#: ../src/gui/editors/notation/NotationView.cpp:2411 +#: ../src/gui/studio/AudioMixerWindow.cpp:119 +#: ../src/gui/studio/MidiMixerWindow.cpp:95 +msgid "Re&wind" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1175 +msgid "P&unch in Record" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1182 +#: ../src/gui/studio/AudioMixerWindow.cpp:143 +#: ../src/gui/studio/MidiMixerWindow.cpp:119 +msgid "&Record" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1189 +#: ../src/gui/editors/matrix/MatrixView.cpp:808 +#: ../src/gui/editors/notation/NotationView.cpp:2423 +#: ../src/gui/studio/AudioMixerWindow.cpp:131 +#: ../src/gui/studio/MidiMixerWindow.cpp:107 +msgid "Rewind to &Beginning" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1196 +#: ../src/gui/editors/matrix/MatrixView.cpp:814 +#: ../src/gui/editors/notation/NotationView.cpp:2429 +#: ../src/gui/studio/AudioMixerWindow.cpp:137 +#: ../src/gui/studio/MidiMixerWindow.cpp:113 +msgid "Fast Forward to &End" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1203 +#: ../src/gui/editors/matrix/MatrixView.cpp:832 +#: ../src/gui/editors/notation/NotationView.cpp:2447 +msgid "Scro&ll to Follow Playback" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1209 +#: ../src/gui/editors/matrix/MatrixView.cpp:838 +#: ../src/gui/editors/notation/NotationView.cpp:2453 +#: ../src/gui/studio/AudioMixerWindow.cpp:149 +#: ../src/gui/studio/MidiMixerWindow.cpp:125 +msgid "Panic" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1213 +msgid "Segment Debug Dump " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1283 +msgid " Zoom: " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1719 +msgid "File \"%1\" does not exist" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1725 +msgid "File \"%1\" is actually a directory" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1734 +msgid "You do not have read permission for \"%1\"" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1802 +msgid "" +"An auto-save file for this document has been found\n" +"Do you want to open it instead ?" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1896 +msgid "Example Files" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2100 +msgid "Opening a new application window..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2110 +msgid "Creating new document..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2154 +#, c-format +msgid "" +"Malformed URL\n" +"%1" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2179 +#: ../src/gui/application/RosegardenGUIApp.cpp:2240 +msgid "Opening file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2201 +#: ../src/gui/application/RosegardenGUIApp.cpp:2220 +msgid "Open File" +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1225 +#: ../src/gui/application/RosegardenGUIApp.cpp:2258 +msgid "Saving file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2330 +msgid "This is not a valid filename.\n" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2335 +msgid "This is not a local file.\n" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2342 +#: ../src/gui/studio/BankEditorDialog.cpp:1640 +#: ../src/gui/studio/DeviceManagerDialog.cpp:787 +msgid "You have specified a directory" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2348 +#: ../src/gui/studio/BankEditorDialog.cpp:1646 +#: ../src/gui/studio/DeviceManagerDialog.cpp:793 +msgid "The specified file exists. Overwrite?" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2362 +msgid "Saving file with a new filename..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2364 +msgid "Rosegarden files" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2365 +#: ../src/gui/application/RosegardenGUIApp.cpp:4860 +#: ../src/gui/application/RosegardenGUIApp.cpp:4904 +#: ../src/gui/application/RosegardenGUIApp.cpp:4942 +#: ../src/gui/application/RosegardenGUIApp.cpp:4975 +#: ../src/gui/application/RosegardenGUIApp.cpp:5009 +#: ../src/gui/application/RosegardenGUIApp.cpp:5116 +msgid "All files" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2366 +msgid "Save as..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2404 +msgid "Closing file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2421 +#: ../src/gui/editors/notation/NotationView.cpp:4618 +msgid "Printing..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2433 +#: ../src/gui/editors/notation/NotationView.cpp:4635 +msgid "Previewing..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2440 +msgid "Exiting..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2463 +msgid "Cutting selection..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2474 +#: ../src/gui/editors/matrix/MatrixView.cpp:1614 +#: ../src/gui/editors/notation/NotationView.cpp:4763 +msgid "Copying selection to clipboard..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2484 +#: ../src/gui/editors/eventlist/EventView.cpp:878 +#: ../src/gui/editors/matrix/MatrixView.cpp:1625 +#: ../src/gui/editors/notation/NotationView.cpp:4796 +#: ../src/gui/editors/notation/NotationView.cpp:4841 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:352 +msgid "Clipboard is empty" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2487 +#: ../src/gui/editors/eventlist/EventView.cpp:882 +#: ../src/gui/editors/matrix/MatrixView.cpp:1629 +#: ../src/gui/editors/notation/NotationView.cpp:4804 +#: ../src/gui/editors/notation/NotationView.cpp:4845 +msgid "Inserting clipboard contents..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2556 +msgid "Duration of empty range to insert" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2631 +msgid "This function needs no more than one segment to be selected." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2654 +msgid "Can't join Audio segments" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2707 +msgid "rescaling an audio file" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2723 +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:172 +msgid "Rescaling audio file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2767 +msgid "" +"The audio file path does not exist or is not writable.\n" +"You must set the audio file path to a valid directory in Document Properties " +"before %1.\n" +"Would you like to set it now?" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2769 +#: ../src/gui/application/RosegardenGUIApp.cpp:5291 +#: ../src/gui/application/RosegardenGUIApp.cpp:5339 +#: ../src/gui/editors/segment/TrackButtons.cpp:419 +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:159 +msgid "Set audio file path" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2833 +msgid "Jog Selection" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2978 +#, c-format +msgid "" +"_n: Split Segment at Time\n" +"Split %n Segments at Time" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3013 +#: ../src/gui/general/EditViewBase.cpp:619 +msgid "Segment Start Time" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3023 +msgid "Set Segment Start Times" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3024 +#: ../src/gui/general/EditViewBase.cpp:626 +msgid "Set Segment Start Time" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3056 +#: ../src/gui/general/EditViewBase.cpp:644 +msgid "Segment Duration" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3068 +msgid "Set Segment Durations" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3069 +#: ../src/gui/general/EditViewBase.cpp:652 +msgid "Set Segment Duration" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3176 +#: ../src/gui/application/RosegardenGUIApp.cpp:5875 +msgid "Set Global Tempo" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3234 +#: ../src/gui/general/EditViewBase.cpp:477 +msgid "Toggle the toolbar..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3244 +msgid "Toggle the tools toolbar..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3254 +msgid "Toggle the tracks toolbar..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3264 +msgid "Toggle the editor toolbar..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3274 +msgid "Toggle the transport toolbar..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3284 +msgid "Toggle the zoom toolbar..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3294 +msgid "Toggle the Transport" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3377 +#: ../src/gui/general/EditViewBase.cpp:487 +msgid "Toggle the statusbar..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3434 +msgid "" +"The join tool isn't implemented yet. Instead please highlight the segments " +"you want to join and then use the menu option:\n" +"\n" +" Segments->Collapse Segments.\n" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3437 +msgid "Join tool not yet implemented" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3675 +msgid "Revert modified document to previous saved version?" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3691 +msgid "" +"*.rgp|Rosegarden Project files\n" +"*|All files" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3692 +msgid "Import Rosegarden Project File" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3717 +msgid "Failed to import project file \"%1\"" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3739 +msgid "Open MIDI File" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3756 +msgid "Merge MIDI File" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3866 +msgid "Importing MIDI file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3903 +msgid "Calculating notation..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3950 +msgid "Calculate Notation" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3991 +#: ../src/gui/application/RosegardenGUIApp.cpp:4008 +msgid "" +"*.rose|Rosegarden-2 files\n" +"*|All files" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3992 +#: ../src/gui/application/RosegardenGUIApp.cpp:4009 +msgid "Open Rosegarden 2.1 File" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4026 +msgid "Importing Rosegarden 2.1 file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4052 +msgid "Can't load Rosegarden 2.1 file. It appears to be corrupted." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4078 +#: ../src/gui/application/RosegardenGUIApp.cpp:4095 +msgid "" +"*.h2song|Hydrogen files\n" +"*|All files" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4079 +#: ../src/gui/application/RosegardenGUIApp.cpp:4096 +msgid "Open Hydrogen File" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4113 +msgid "Importing Hydrogen file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4139 +msgid "Can't load Hydrogen file. It appears to be corrupted." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4527 +msgid "Export and import of Rosegarden Project files" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4529 +msgid "The Rosegarden Project Packager helper script" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4533 +msgid "%1 - for project file support" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4550 +msgid "The Rosegarden LilyPondView helper script" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4554 +msgid "%1 - for LilyPond preview support" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4570 +msgid "The Rosegarden Audio File Importer helper script" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4574 +msgid "%1 - for audio file import" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4585 +msgid "" +"

                Helper programs not found

                Rosegarden could not find one or more " +"helper programs which it needs to provide some features. The following " +"features will not be available:

                " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4586 +#: ../src/gui/application/RosegardenGUIApp.cpp:4592 +msgid "
                  " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4588 +#: ../src/gui/application/RosegardenGUIApp.cpp:4594 +msgid "
                • %1
                • " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4590 +#: ../src/gui/application/RosegardenGUIApp.cpp:4596 +msgid "
                " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4591 +msgid "" +"

                To fix this, you should install the following additional programs:

                " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4603 +msgid "Helper programs not found" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4686 +msgid "Starting the sequencer..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4712 +msgid "Couldn't start the sequencer" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4789 +msgid "Clearing down jackd..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4803 +msgid "Starting jackd..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4842 +msgid "" +"The Rosegarden sequencer process has exited unexpectedly. Sound and " +"recording will no longer be available for this session.\n" +"Please exit and restart Rosegarden to restore sound capability." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4846 +msgid "" +"The Rosegarden sequencer could not be started, so sound and recording will " +"be unavailable for this session.\n" +"For assistance with correct audio and MIDI configuration, go to http://" +"rosegardenmusic.com." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4856 +msgid "Exporting Rosegarden Project file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4859 +msgid "Rosegarden Project files\n" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4861 +#: ../src/gui/application/RosegardenGUIApp.cpp:4905 +#: ../src/gui/application/RosegardenGUIApp.cpp:4943 +#: ../src/gui/application/RosegardenGUIApp.cpp:4976 +#: ../src/gui/application/RosegardenGUIApp.cpp:5010 +#: ../src/gui/application/RosegardenGUIApp.cpp:5116 +msgid "Export as..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4875 +#, c-format +msgid "Saving Rosegarden file to package failed: %1" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4889 +msgid "Failed to export to project file \"%1\"" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4900 +#: ../src/gui/application/RosegardenGUIApp.cpp:4915 +msgid "Exporting MIDI file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4903 +msgid "Standard MIDI files\n" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4934 +#: ../src/gui/application/RosegardenGUIApp.cpp:4966 +#: ../src/gui/application/RosegardenGUIApp.cpp:4999 +#: ../src/gui/application/RosegardenGUIApp.cpp:5103 +#: ../src/gui/application/RosegardenGUIApp.cpp:5140 +#: ../src/gui/editors/notation/NotationView.cpp:4733 +msgid "Export failed. The file could not be opened for writing." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4940 +#: ../src/gui/application/RosegardenGUIApp.cpp:4952 +msgid "Exporting Csound score file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4972 +#: ../src/gui/application/RosegardenGUIApp.cpp:4985 +msgid "Exporting Mup file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4975 +msgid "Mup files\n" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5005 +#: ../src/gui/application/RosegardenGUIApp.cpp:5089 +#: ../src/gui/editors/notation/NotationView.cpp:4719 +msgid "Exporting LilyPond file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5008 +msgid "LilyPond files" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5023 +#: ../src/gui/editors/notation/NotationView.cpp:4653 +msgid "Printing LilyPond file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5028 +#: ../src/gui/application/RosegardenGUIApp.cpp:5052 +#: ../src/gui/editors/notation/NotationView.cpp:4658 +#: ../src/gui/editors/notation/NotationView.cpp:4682 +msgid "Failed to open a temporary file for LilyPond export." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5047 +#: ../src/gui/editors/notation/NotationView.cpp:4677 +msgid "Previewing LilyPond file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5080 +#: ../src/gui/editors/notation/NotationView.cpp:4710 +msgid "LilyPond Preview Options" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5081 +#: ../src/gui/editors/notation/NotationView.cpp:4711 +msgid "LilyPond preview options" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5112 +#: ../src/gui/application/RosegardenGUIApp.cpp:5126 +msgid "Exporting MusicXML file..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5115 +msgid "XML files" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5289 +#: ../src/gui/editors/segment/TrackButtons.cpp:417 +msgid "" +"The audio file path does not exist or is not writable.\n" +"Please set the audio file path to a valid directory in Document Properties " +"before recording audio.\n" +"Would you like to set it now?" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5337 +msgid "" +"The audio file path does not exist or is not writable.\n" +"Please set the audio file path to a valid directory in Document Properties " +"before you start to record audio.\n" +"Would you like to set it now?" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5780 +msgid "Move playback pointer to time" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5793 +#: ../src/gui/editors/matrix/MatrixView.cpp:2240 +msgid "%1%" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5861 +#, c-format +msgid "Replace Tempo Change at %1" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5891 +msgid "Set Global and Default Tempo" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5914 +msgid "Move Tempo Change" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5949 +#, fuzzy +msgid "new marker" +msgstr "Delete Colour" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5950 +msgid "no description" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6363 +#, c-format +msgid "Sequencer failed to add audio file %1" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6388 +#, c-format +msgid "Sequencer failed to remove audio file id %1" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6448 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1086 +msgid "Modify Segment label" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6450 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1088 +msgid "Modify Segments label" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6452 +msgid "Relabelling selection..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7539 +msgid "Play List" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7567 +msgid "http://rosegarden.sourceforge.net/tutorial/en/chapter-0.html" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7574 +msgid "http://rosegarden.sourceforge.net/tutorial/bug-guidelines.html" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7650 +msgid "Queueing MIDI panic events for tranmission..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7708 +msgid "Are you sure you want to save this as your default studio?" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7713 +msgid "Saving current document as default studio..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7738 +msgid "" +"Are you sure you want to import your default studio and lose the current one?" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7773 +msgid "Import Studio from File" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7807 +msgid "Import Studio" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:8015 +msgid "" +"

                Newer version available

                A newer version of Rosegarden may be " +"available.
                Please consult the Rosegarden website for more information.

                " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:8016 +msgid "Newer version available" +msgstr "" + +#: ../src/gui/application/RosegardenApplication.cpp:104 +#, c-format +msgid "Failed to load soundfont %1" +msgstr "" + +#: ../src/gui/application/main.cpp:311 +msgid "Rosegarden - A sequencer and musical notation editor" +msgstr "" + +#: ../src/gui/application/main.cpp:315 +msgid "Don't use the sequencer (support editing only)" +msgstr "" + +#: ../src/gui/application/main.cpp:316 +msgid "Don't show the splash screen" +msgstr "" + +#: ../src/gui/application/main.cpp:317 +msgid "Don't automatically run in the background" +msgstr "" + +#: ../src/gui/application/main.cpp:318 +msgid "Attach to a running sequencer process, if found" +msgstr "" + +#: ../src/gui/application/main.cpp:319 +msgid "Ignore installed version - for devs only" +msgstr "" + +#: ../src/gui/application/main.cpp:320 +msgid "file to open" +msgstr "" + +#: ../src/gui/application/main.cpp:370 +msgid "Installation contains the wrong version of Rosegarden." +msgstr "" + +#: ../src/gui/application/main.cpp:371 +msgid "" +" The wrong versions of Rosegarden's data files were\n" +" found in the standard KDE installation directories.\n" +" (I am %1, but the installed files are for version %2.)\n" +"\n" +" This may mean one of the following:\n" +"\n" +" 1. This is a new upgrade of Rosegarden, and it has not yet been\n" +" installed. If you compiled it yourself, check that you have\n" +" run \"make install\" and that the procedure completed\n" +" successfully.\n" +"\n" +" 2. The upgrade was installed in a non-standard directory,\n" +" and an old version was found in a standard directory. If so,\n" +" you will need to add the correct directory to your KDEDIRS\n" +" environment variable before you can run it." +msgstr "" + +#: ../src/gui/application/main.cpp:383 ../src/gui/application/main.cpp:401 +msgid "Installation problem" +msgstr "" + +#: ../src/gui/application/main.cpp:389 +msgid "Rosegarden does not appear to have been installed." +msgstr "" + +#: ../src/gui/application/main.cpp:390 +msgid "" +" One or more of Rosegarden's data files could not be\n" +" found in the standard KDE installation directories.\n" +"\n" +" This may mean one of the following:\n" +"\n" +" 1. Rosegarden has not been correctly installed. If you compiled\n" +" it yourself, check that you have run \"make install\" and that\n" +" the procedure completed successfully.\n" +"\n" +" 2. Rosegarden has been installed in a non-standard directory,\n" +" and you need to add this directory to your KDEDIRS environment\n" +" variable before you can run it. This may be the case if you\n" +" installed into $HOME or a local third-party package directory\n" +" like /usr/local or /opt." +msgstr "" + +#: ../src/gui/application/main.cpp:414 +msgid "Rosegarden" +msgstr "" + +#: ../src/gui/application/main.cpp:416 +msgid "" +"Copyright 2000 - 2008 Guillaume Laurent, Chris Cannam, Richard Bown\n" +"Parts copyright 1994 - 2004 Chris Cannam, Andy Green, Richard Bown, " +"Guillaume Laurent\n" +"LilyPond fonts copyright 1997 - 2005 Han-Wen Nienhuys and Jan Nieuwenhuizen" +msgstr "" + +#: ../src/gui/application/main.cpp:428 +msgid "Chord labelling code" +msgstr "" + +#: ../src/gui/application/main.cpp:429 +msgid "" +"LilyPond output\n" +"assorted other patches\n" +"i18n-ization" +msgstr "" + +#: ../src/gui/application/main.cpp:430 +msgid "" +"UI improvements\n" +"bug fixes" +msgstr "" + +#: ../src/gui/application/main.cpp:431 +msgid "" +"Segment colours\n" +"Other UI and bug fixes" +msgstr "" + +#: ../src/gui/application/main.cpp:432 +msgid "" +"Russian translation\n" +"i18n-ization" +msgstr "" + +#: ../src/gui/application/main.cpp:433 ../src/gui/application/main.cpp:434 +msgid "German translation" +msgstr "" + +#: ../src/gui/application/main.cpp:435 +msgid "Welsh translation" +msgstr "" + +#: ../src/gui/application/main.cpp:436 +msgid "French translation" +msgstr "" + +#: ../src/gui/application/main.cpp:437 +msgid "" +"French translation\n" +"Bug fixes" +msgstr "" + +#: ../src/gui/application/main.cpp:438 ../src/gui/application/main.cpp:439 +msgid "Italian translation" +msgstr "" + +#: ../src/gui/application/main.cpp:440 ../src/gui/application/main.cpp:441 +msgid "Swedish translation" +msgstr "" + +#: ../src/gui/application/main.cpp:442 +msgid "Estonian translation" +msgstr "" + +#: ../src/gui/application/main.cpp:443 ../src/gui/application/main.cpp:444 +msgid "Dutch translation" +msgstr "" + +#: ../src/gui/application/main.cpp:445 +msgid "HSpinBox class" +msgstr "" + +#: ../src/gui/application/main.cpp:446 +msgid "Transposition by interval" +msgstr "" + +#: ../src/gui/application/main.cpp:447 +msgid "Original designs for rotary controllers" +msgstr "" + +#: ../src/gui/application/main.cpp:448 +msgid "Japanese translation" +msgstr "" + +#: ../src/gui/application/main.cpp:449 +msgid "" +"Auto-scroll deceleration\n" +"Rests outside staves and other bug fixes" +msgstr "" + +#: ../src/gui/application/main.cpp:450 +msgid "Simplified Chinese translation" +msgstr "" + +#: ../src/gui/application/main.cpp:451 +msgid "LIRC infrared remote-controller support" +msgstr "" + +#: ../src/gui/application/main.cpp:452 +msgid "MTC slave timing implementation" +msgstr "" + +#: ../src/gui/application/main.cpp:453 +msgid "Czech translation" +msgstr "" + +#: ../src/gui/application/main.cpp:454 +msgid "SCons/bksys building system" +msgstr "" + +#: ../src/gui/application/main.cpp:455 +msgid "icons, icons, icons" +msgstr "" + +#: ../src/gui/application/main.cpp:456 ../src/gui/application/main.cpp:457 +#: ../src/gui/application/main.cpp:458 ../src/gui/application/main.cpp:459 +msgid "Spanish translation" +msgstr "" + +#: ../src/gui/application/main.cpp:460 ../src/gui/application/main.cpp:461 +msgid "Catalan translation" +msgstr "" + +#: ../src/gui/application/main.cpp:462 +msgid "" +"1.2.3 splash screen photo\n" +"Gave birth to D. Michael McIntyre, bought him a good flute once\n" +"upon a time, and always humored him when he came over to play her\n" +"some new instrument, even though she really hated his playing.\n" +"Born October 19, 1951, died September 21, 2007, R. I. P." +msgstr "" + +#: ../src/gui/application/main.cpp:463 +msgid "Initial guitar chord editing code" +msgstr "" + +#: ../src/gui/application/main.cpp:464 +msgid "Polish translation" +msgstr "" + +#: ../src/gui/application/main.cpp:465 +msgid "Basque translation" +msgstr "" + +#: ../src/gui/application/main.cpp:466 +msgid "Klearlook theme" +msgstr "" + +#: ../src/_translatorinfo.cpp:1 ../src/gui/application/main.cpp:468 +msgid "" +"_: NAME OF TRANSLATORS\n" +"Your names" +msgstr "Chris Cannam" + +#: ../src/_translatorinfo.cpp:3 ../src/gui/application/main.cpp:468 +msgid "" +"_: EMAIL OF TRANSLATORS\n" +"Your emails" +msgstr "cannam@all-day-breakfast.com" + +#: ../src/gui/application/main.cpp:719 +msgid "Welcome!" +msgstr "" + +#: ../src/gui/application/main.cpp:731 +msgid "" +"

                Welcome to Rosegarden!

                Welcome to the Rosegarden audio and MIDI " +"sequencer and musical notation editor.

                • If you have not already " +"done so, you may wish to install some DSSI synth plugins, or a separate " +"synth program such as QSynth. Rosegarden does not synthesize sounds from " +"MIDI on its own, so without these you will hear nothing.

                • Rosegarden uses the JACK audio server for recording and " +"playback of audio, and for playback from DSSI synth plugins. These features " +"will only be available if the JACK server is running.

                • Rosegarden has comprehensive documentation: see the Help menu " +"for the handbook, tutorials, and other information!

                Rosegarden " +"was brought to you by a team of volunteers across the world. To learn more, " +"go to http://www.rosegardenmusic." +"com/.

                " +msgstr "" + +#: ../src/gui/application/RosegardenGUIView.cpp:257 +msgid "No non-audio segments in composition" +msgstr "" + +#: ../src/gui/application/RosegardenGUIView.cpp:333 +msgid "Selection must contain only audio or non-audio segments" +msgstr "" + +#: ../src/gui/application/RosegardenGUIView.cpp:431 +#: ../src/gui/application/RosegardenGUIView.cpp:576 +#: ../src/gui/application/RosegardenGUIView.cpp:612 +#: ../src/gui/application/RosegardenGUIView.cpp:776 +msgid "No non-audio segments selected" +msgstr "" + +#: ../src/gui/application/RosegardenGUIView.cpp:851 +msgid "" +"You've not yet defined an audio editor for Rosegarden to use.\n" +"See Settings -> Configure Rosegarden -> Audio." +msgstr "" + +#: ../src/gui/application/RosegardenGUIView.cpp:1559 +#: ../src/gui/application/RosegardenGUIView.cpp:1564 +msgid "Can't add dropped file. " +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1014 +#: ../src/gui/seqmanager/SequenceManager.cpp:1150 +msgid "" +"The JACK Audio subsystem has failed or it has stopped Rosegarden from " +"processing audio.\n" +"Please restart Rosegarden to continue working with audio.\n" +"Quitting other running applications may improve Rosegarden's performance." +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1020 +#: ../src/gui/seqmanager/SequenceManager.cpp:1156 +msgid "" +"The JACK Audio subsystem has stopped Rosegarden from processing audio, " +"probably because of a processing overload.\n" +"An attempt to restart the audio service has been made, but some problems may " +"remain.\n" +"Quitting other running applications may improve Rosegarden's performance." +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1031 +msgid "" +"Run out of processor power for real-time audio processing. Cannot continue." +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1057 +msgid "" +"A serious error has occurred in the ALSA MIDI subsystem. It may not be " +"possible to continue sequencing. Please check console output for more " +"information." +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1078 +msgid "JACK Audio subsystem is losing sample frames." +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1096 +msgid "" +"Failed to read audio data from disc in time to service the audio subsystem." +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1100 +msgid "" +"Failed to write audio data to disc fast enough to service the audio " +"subsystem." +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1104 +msgid "The audio mixing subsystem is failing to keep up." +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1108 +msgid "The audio subsystem is failing to keep up." +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1112 +msgid "Unknown sequencer failure mode!" +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1170 +msgid "" +"

                System timer resolution is too low

                Rosegarden was unable to find " +"a high-resolution timing source for MIDI performance.

                This may mean " +"you are using a Linux system with the kernel timer resolution set too low. " +"Please contact your Linux distributor for more information.

                Some Linux " +"distributors already provide low latency kernels, see http://rosegarden.wiki." +"sourceforge.net/Low+latency+kernels for instructions.

                " +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1188 +msgid "" +"

                System timer resolution is too low

                Rosegarden was unable to find " +"a high-resolution timing source for MIDI performance.

                You may be able " +"to solve this problem by loading the RTC timer kernel module. To do this, " +"try running sudo modprobe snd-rtctimer in a terminal window and then " +"restarting Rosegarden.

                Alternatively, check whether your Linux " +"distributor provides a multimedia-optimized kernel. See http://rosegarden.wiki." +"sourceforge.net/Low+latency+kernels for notes about this.

                " +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1312 +msgid "" +"

                Both MIDI and Audio subsystems have failed to initialize.

                You may " +"continue without the sequencer, but we suggest closing Rosegarden, running " +"\"alsaconf\" as root, and starting Rosegarden again. If you wish to run " +"with no sequencer by design, then use \"rosegarden --nosequencer\" to avoid " +"seeing this error in the future.

                " +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1314 +msgid "" +"

                The MIDI subsystem has failed to initialize.

                You may continue " +"without the sequencer, but we suggest closing Rosegarden, running \"modprobe " +"snd-seq-midi\" as root, and starting Rosegarden again. If you wish to run " +"with no sequencer by design, then use \"rosegarden --nosequencer\" to avoid " +"seeing this error in the future.

                " +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1316 +msgid "" +"

                The Rosegarden sequencer module version does not match the GUI module " +"version.

                You have probably mixed up files from two different versions " +"of Rosegarden. Please check your installation.

                " +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1322 +#, c-format +msgid "

                Sequencer startup failed

                %1" +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1330 +msgid "" +"

                Failed to connect to JACK audio server.

                Rosegarden could not " +"connect to the JACK audio server. This probably means the JACK server is " +"not running.

                If you want to be able to play or record audio files or " +"use plugins, you should exit Rosegarden and start the JACK server before " +"running Rosegarden again.

                " +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1331 +msgid "Failed to connect to JACK" +msgstr "" + +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:46 +msgid "Modify MIDI filters..." +msgstr "" + +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:58 +msgid "THRU events to ignore" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:131 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:60 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:96 +msgid "Note" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:132 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:61 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:97 +msgid "Program Change" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:136 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:62 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:98 +msgid "Key Pressure" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:137 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:63 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:99 +msgid "Channel Pressure" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:134 +#: ../src/gui/general/EditView.cpp:899 +#: ../src/gui/rulers/ControllerEventsRuler.cpp:198 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:64 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:100 +msgid "Pitch Bend" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:133 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:65 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:101 +msgid "Controller" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:135 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:66 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:102 +msgid "System Exclusive" +msgstr "" + +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:94 +msgid "RECORD events to ignore" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:101 +msgid "Note:" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:108 ../src/gui/widgets/TimeWidget.cpp:145 +msgid "" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:151 +msgid "Units:" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:173 +msgid "Time:" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:184 +msgid "units" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:193 +msgid "Measures:" +msgstr "Bars" + +#: ../src/gui/widgets/TimeWidget.cpp:193 +msgid "Measure:" +msgstr "Bar" + +#: ../src/gui/widgets/TimeWidget.cpp:212 +msgid "beats:" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:212 +msgid "beat:" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:230 +msgid "%1:" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:254 +msgid "Seconds:" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:273 +msgid "msec:" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:407 ../src/gui/widgets/TimeWidget.cpp:531 +msgid "(%1/%2 time)" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:452 +msgid "(starting %1.%2 qpm, %2.%3 bpm)" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:458 +msgid "(starting %1.%2 bpm)" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:464 +msgid "(%1.%2 qpm, %2.%3 bpm)" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:470 +msgid "(%1.%2 bpm)" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:239 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:60 +msgid "C" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:241 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:61 +msgid "D" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:243 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:62 +msgid "E" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:244 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:63 +msgid "F" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:246 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:64 +msgid "G" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:248 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:65 +msgid "A" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:250 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:66 +msgid "B" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:70 +msgid "-2" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:71 +msgid "-1" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:72 +msgid "0" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:73 +msgid "1" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:74 +msgid "2" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:75 +msgid "3" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:76 +msgid "4" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:77 +msgid "5" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:78 +msgid "6" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:79 +msgid "7" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:83 +#, fuzzy +msgid "double flat" +msgstr "breve" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:84 +msgid "flat" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:85 +msgid "natural" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:86 +msgid "sharp" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:87 +#, fuzzy +msgid "double sharp" +msgstr "breve" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:234 +#, c-format +msgid "In %1" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:587 +#: ../src/gui/widgets/AudioRouteMenu.cpp:236 +#: ../src/gui/widgets/AudioRouteMenu.cpp:259 +msgid "Master" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:528 +#: ../src/gui/widgets/AudioRouteMenu.cpp:238 +#: ../src/gui/widgets/AudioRouteMenu.cpp:261 +#, c-format +msgid "Sub %1" +msgstr "" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:244 +msgid "In %1 R" +msgstr "" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:245 +msgid "In %1 L" +msgstr "" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:247 +msgid "Master R" +msgstr "" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:248 +msgid "Master L" +msgstr "" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:250 +msgid "Sub %1 R" +msgstr "" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:251 +msgid "Sub %1 L" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:391 +#: ../src/gui/studio/AudioMixerWindow.cpp:522 +#: ../src/gui/widgets/AudioFaderBox.cpp:82 +msgid "Audio plugin button" +msgstr "" + +#: ../src/gui/editors/parameters/AudioInstrumentParameterPanel.cpp:129 +#: ../src/gui/editors/parameters/AudioInstrumentParameterPanel.cpp:357 +#: ../src/gui/widgets/AudioFaderBox.cpp:91 +msgid "" +msgstr "" + +#: ../src/gui/widgets/AudioFaderBox.cpp:93 +msgid "Synth plugin button" +msgstr "" + +#: ../src/gui/widgets/AudioFaderBox.cpp:153 +msgid "Set the audio pan position in the stereo field" +msgstr "" + +#: ../src/gui/widgets/AudioFaderBox.cpp:155 +msgid "Open synth plugin's native editor" +msgstr "" + +#: ../src/gui/widgets/AudioFaderBox.cpp:157 +msgid "Mono or Stereo Instrument" +msgstr "" + +#: ../src/gui/widgets/AudioFaderBox.cpp:159 +msgid "Record level" +msgstr "" + +#: ../src/gui/widgets/AudioFaderBox.cpp:161 +msgid "Playback level" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:345 +#: ../src/gui/studio/AudioMixerWindow.cpp:347 +#: ../src/gui/studio/AudioMixerWindow.cpp:503 +#: ../src/gui/studio/AudioMixerWindow.cpp:505 +#: ../src/gui/widgets/AudioFaderBox.cpp:163 +msgid "Audio level" +msgstr "" + +#: ../src/gui/widgets/AudioFaderBox.cpp:170 +msgid "In:" +msgstr "" + +#: ../src/gui/widgets/AudioFaderBox.cpp:173 +msgid "Out:" +msgstr "" + +#: ../src/gui/widgets/ProgressDialog.cpp:48 +#: ../src/gui/widgets/ProgressDialog.cpp:53 +#: ../src/gui/widgets/ProgressDialog.cpp:76 +msgid "Processing..." +msgstr "" + +#: ../src/gui/configuration/ColourConfigurationPage.h:60 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:130 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:346 +#: ../src/gui/widgets/ColourTable.cpp:52 +msgid "Color" +msgstr "Colour" + +#: ../src/gui/widgets/ColourTable.cpp:68 +msgid "Modify Color Name" +msgstr "Modify Colour Name" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:129 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:983 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:882 +#: ../src/gui/widgets/ColourTable.cpp:68 +msgid "Enter new name" +msgstr "" + +#: ../src/gui/widgets/ColourTable.cpp:107 +msgid "Default Color" +msgstr "Default Colour" + +#: ../src/gui/widgets/Rotary.cpp:108 +msgid "" +"Click and drag up and down or left and right to modify.\n" +"Double click to edit value directly." +msgstr "" + +#: ../src/gui/widgets/Rotary.cpp:433 +msgid "Select a new value" +msgstr "" + +#: ../src/gui/widgets/Rotary.cpp:434 +msgid "Enter a new value" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:80 +msgid "Quantizer" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:86 +msgid "Quantizer type:" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:88 +msgid "Grid quantizer" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:89 +msgid "Legato quantizer" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:90 +msgid "Heuristic notation quantizer" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:94 +msgid "Quantize for notation only (leave performance unchanged)" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:104 +msgid "Notation parameters" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:109 +#: ../src/gui/widgets/QuantizeParameters.cpp:150 +msgid "Base grid unit:" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:114 +msgid "Complexity:" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:118 +msgid "Very high" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:119 +msgid "High" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:224 +#: ../src/gui/widgets/QuantizeParameters.cpp:120 +msgid "Normal" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:121 +msgid "Low" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:122 +msgid "Very low" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:125 +msgid "Tuplet level:" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:129 +msgid "2-in-the-time-of-3" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4241 +#: ../src/gui/widgets/QuantizeParameters.cpp:130 +msgid "Triplet" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:138 +msgid "Any" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:141 +msgid "Permit counterpoint" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:145 +msgid "Grid parameters" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:154 +msgid "Swing:" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:159 +msgid "Iterative amount:" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:165 +msgid "Quantize durations as well as start times" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:169 +msgid "After quantization" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:183 +msgid "Show advanced options" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:192 +msgid "Re-beam" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:194 +msgid "Add articulations (staccato, tenuto, slurs)" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:195 +msgid "Tie notes at barlines etc" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:196 +msgid "Split-and-tie overlapping chords" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:307 +msgid "Full quantize" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:450 +msgid "Show Advanced Options" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:454 +msgid "Hide Advanced Options" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:257 +#: ../src/gui/configuration/MatrixConfigurationPage.h:56 +#: ../src/gui/configuration/MatrixConfigurationPage.h:57 +#: ../src/gui/editors/matrix/MatrixView.cpp:2709 +msgid "Matrix" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:64 +msgid "Printable headers" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:92 +msgid "Dedication" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:96 +#: ../src/gui/editors/segment/PlayListView.cpp:35 +msgid "Title" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:100 +msgid "Subtitle" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:104 +msgid "Subsubtitle" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:108 +msgid "Poet" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:116 +msgid "Composer" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:120 +msgid "Meter" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:124 +msgid "Arranger" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:128 +msgid "Piece" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:26 +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:132 +msgid "Opus" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:136 +msgid "Copyright" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:140 +msgid "Tagline" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:155 +msgid "The composition comes here." +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:172 +msgid "Non-printable headers" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:213 +msgid "Add New Property" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:217 +msgid "Delete Property" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:236 +msgid "{new property %1}" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:236 +msgid "{new property}" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:243 +msgid "{undefined}" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:87 +msgid "Double-click opens segment in" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:91 +msgid "Notation editor" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:92 +msgid "Matrix editor" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:93 +msgid "Event List editor" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:99 +msgid "Number of count-in measures when recording" +msgstr "Number of count-in bars when recording" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:109 +msgid "Auto-save interval" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:112 +msgid "Every 30 seconds" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:113 +msgid "Every minute" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:114 +msgid "Every five minutes" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:115 +msgid "Every half an hour" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:116 +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:277 +#: ../src/gui/configuration/NotationConfigurationPage.cpp:157 +msgid "Never" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:140 +msgid "Use JACK transport" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:173 +msgid "Unknown" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:179 +msgid "No MIDI, audio OK" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:182 +msgid "MIDI OK, no audio" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:185 +msgid "MIDI OK, audio OK" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:188 +msgid "No driver" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:195 +msgid "Details..." +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:204 +msgid "Behavior" +msgstr "Behaviour" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:219 +msgid "Side-bar parameter box layout" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:223 +msgid "Vertically stacked" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:225 +msgid "Tabbed" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:233 +msgid "Note name style" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:237 +msgid "Always use US names (e.g. quarter, 8th)" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:238 +msgid "Localized (where available)" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:252 +msgid "Show textured background on" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:254 +msgid "Main window" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:275 +msgid "Use bundled Klearlook theme" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:278 +msgid "When not running under KDE" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:279 +#: ../src/gui/configuration/NotationConfigurationPage.cpp:159 +msgid "Always" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:287 +msgid "Presentation" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:423 +msgid "" +"Changes to the textured background in the main window will not take effect " +"until you restart Rosegarden." +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:168 +#: ../src/gui/configuration/GeneralConfigurationPage.h:78 +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:207 +#: ../src/gui/configuration/MatrixConfigurationPage.cpp:59 +msgid "General" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.h:79 +msgid "General Configuration" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:92 +msgid "Base octave number for MIDI pitch display" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:107 +msgid "Always use default studio when loading files" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:119 +msgid "Send all MIDI Controllers at start of each playback" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:121 +msgid "" +"Rosegarden can send all MIDI Controllers (Pan, Reverb etc) to all MIDI " +"devices every\n" +"time you hit play if you so wish. Please note that this option will usually " +"incur a\n" +"delay at the start of playback due to the amount of data being transmitted." +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:138 +msgid "Sequencer timing source" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:163 +msgid "Load SoundFont to SoundBlaster card at startup" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:164 +msgid "" +"Check this box to enable soundfont loading on EMU10K-based cards when " +"Rosegarden is launched" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:173 +msgid "Path to 'asfxload' or 'sfxload' command" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:180 +msgid "SoundFont" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:223 +msgid "MIDI Clock and System messages" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:229 +msgid "Send MIDI Clock, Start and Stop" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:230 +msgid "Accept Start, Stop and Continue" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:241 +msgid "MIDI Machine Control mode" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:248 +msgid "MMC Master" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:249 +msgid "MMC Slave" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:260 +msgid "MIDI Time Code mode" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:267 +msgid "MTC Master" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:268 +msgid "MTC Slave" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:281 +msgid "Automatically connect sync output to all devices in use" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:292 +msgid "MIDI Sync" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:308 +msgid "sfxload path" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:315 +msgid "Soundfont path" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:67 +msgid "%1 minutes %2.%3%4 seconds (%5 units, %6 measures)" +msgstr "%1 minutes %2.%3%4 seconds (%5 units, %6 bars)" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:133 +msgid "Filename:" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:136 +msgid "Formal duration (to end marker):" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:141 +msgid "Playing duration:" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:146 +msgid "Tracks:" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:147 +msgid "%1 used, %2 total" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:152 +msgid "Segments:" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:153 +msgid "%1 MIDI, %2 audio, %3 total" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:161 +msgid "Statistics" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:170 +#: ../src/gui/editors/parameters/InstrumentParameterBox.cpp:155 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:92 +msgid "Track" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:171 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:125 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:90 +msgid "Label" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:172 +msgid "Time" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:174 +msgid "Events" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:175 +msgid "Polyphony" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:176 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:126 +msgid "Repeat" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:178 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:128 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:305 +#: ../src/gui/general/EditView.cpp:1488 +msgid "Transpose" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:179 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:129 +msgid "Delay" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.h:61 +#: ../src/gui/configuration/AudioPropertiesPage.h:58 +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:204 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:523 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:524 +msgid "Audio" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:204 +#: ../src/gui/configuration/MIDIConfigurationPage.h:62 +msgid "MIDI" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:317 +msgid "Segment Summary" +msgstr "" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:63 +msgid "Audio file path:" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:137 +#: ../src/gui/configuration/AudioPropertiesPage.cpp:68 +msgid "Choose..." +msgstr "" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:73 +msgid "Disk space remaining:" +msgstr "" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:78 +msgid "Equivalent minutes of 16-bit stereo:" +msgstr "" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:90 +msgid "Modify audio path" +msgstr "" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:113 +msgid "%1 out of %2 (%3% used)" +msgstr "" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:144 +msgid "minutes at" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.h:63 +#, fuzzy +msgid "MIDI Settings" +msgstr "Colour Settings" + +#: ../src/gui/configuration/AudioConfigurationPage.h:62 +#: ../src/gui/configuration/AudioPropertiesPage.h:59 +msgid "Audio Settings" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:87 +msgid "Default layout mode" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:91 +msgid "Linear layout" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:92 +msgid "Continuous page layout" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:93 +msgid "Multiple page layout" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:101 +msgid "Default spacing" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:125 +msgid "Default duration factor" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:141 +msgid "Full" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:152 +msgid "Show track headers (linear layout only)" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:158 +msgid "When needed" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:166 +msgid "" +"\"Always\" and \"Never\" mean what they usually mean\n" +"\"When needed\" means \"when staves are too many to all fit in the current " +"window\"" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:178 +msgid "Show non-notation events as question marks" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:188 +msgid "Show notation-quantized notes in a different color" +msgstr "Show notation-quantized notes in a different colour" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:198 +msgid "Show \"invisible\" events in grey" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:208 +msgid "Show notes outside suggested playable range in red" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:218 +msgid "Highlight superimposed notes with a halo effect" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:231 +msgid "When recording MIDI, split-and-tie long notes at barlines" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:242 +msgid "Layout" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:255 +msgid "Default note style for new notes" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:287 +msgid "When inserting notes..." +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:294 +msgid "Split notes into ties to make durations match" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:295 +msgid "Ignore existing durations" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:305 +msgid "Auto-beam on insert when appropriate" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:317 +#: ../src/gui/editors/notation/NotationEraser.cpp:54 +msgid "Collapse rests after erase" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:328 +msgid "Default paste type" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:350 +msgid "Editing" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:362 +msgid "Accidentals in one octave..." +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:364 +msgid "Affect only that octave" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:365 +msgid "Require cautionaries in other octaves" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:366 +msgid "Affect all subsequent octaves" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:374 +msgid "Accidentals in one bar..." +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:376 +msgid "Affect only that bar" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:377 +msgid "Require cautionary resets in following bar" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:378 +msgid "Require explicit resets in following bar" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:386 +msgid "Key signature cancellation style" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:388 +msgid "Cancel only when entering C major or A minor" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:389 +msgid "Cancel whenever removing sharps or flats" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:390 +msgid "Cancel always" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:400 +msgid "Accidentals" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:441 +msgid "Notation font" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:467 +msgid "Origin:" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:471 +msgid "Copyright:" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:475 +msgid "Mapped by:" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:479 +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:81 +msgid "Type:" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:508 +msgid "Font size for single-staff views" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:516 +msgid "Font size for multi-staff views" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:524 +msgid "Font size for printing (pt)" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:541 +msgid "Text font" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:549 +msgid "Sans-serif font" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:664 +msgid "%1 (smooth)" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:667 +msgid "%1 (jaggy)" +msgstr "" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:58 +msgid "JACK latency" +msgstr "" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:61 +msgid "" +"Use the \"Fetch JACK latencies\" button to discover the latency values set " +"at\n" +"the sequencer. It's recommended that you use the returned values but it's " +"also\n" +"possible to override them manually using the sliders. Note that if you " +"change\n" +"your JACK server parameters you should always fetch the latency values " +"again.\n" +"The latency values will be stored by Rosegarden for use next time." +msgstr "" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:65 +msgid "JACK playback latency (in ms)" +msgstr "" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:66 +msgid "JACK record latency (in ms)" +msgstr "" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:68 +msgid "Fetch JACK latencies" +msgstr "" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:121 +msgid "JACK Latency" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:92 +msgid "Audio preview scale" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:96 +msgid "Linear - easier to see loud peaks" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:97 +msgid "Meter scaling - easier to see quiet activity" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:105 +msgid "Record audio files as" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:107 +msgid "16-bit PCM WAV format (smaller files)" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:108 +msgid "32-bit float WAV format (higher quality)" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:117 +msgid "External audio editor" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:145 +msgid "Create JACK outputs" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:150 +msgid "for individual audio instruments" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:157 +msgid "for submasters" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:184 +msgid "" +"Rosegarden can start the JACK audio daemon (jackd) for you automatically if " +"it isn't already running when Rosegarden starts.\n" +"\n" +"This is recommended for beginners and those who use Rosegarden as their main " +"audio application, but it might not be to the liking of advanced users.\n" +"\n" +"If you want to start JACK automatically, make sure the command includes a " +"full path where necessary as well as any command-line arguments you want to " +"use.\n" +"\n" +"For example: /usr/local/bin/jackd -d alsa -d hw -r44100 -p 2048 -n 2\n" +"\n" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:196 +msgid "Start JACK when Rosegarden starts" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:201 +msgid "JACK command" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:214 +msgid "JACK Startup" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:224 +msgid "External audio editor path" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:262 +msgid "External audio editor \"%1\" not found or not executable" +msgstr "" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:70 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:448 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:863 +msgid "Add New Color" +msgstr "Add New Colour" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:74 +msgid "Delete Color" +msgstr "Delete Colour" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:93 +msgid "Color Map" +msgstr "Colour Map" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:128 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:983 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:882 +msgid "New Color Name" +msgstr "New Colour Name" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:130 +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:59 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:984 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:883 +#: ../src/gui/studio/DeviceManagerDialog.cpp:115 +#: ../src/gui/studio/DeviceManagerDialog.cpp:174 +msgid "New" +msgstr "" + +#: ../src/gui/configuration/LatencyConfigurationPage.h:62 +msgid "Latency" +msgstr "" + +#: ../src/gui/configuration/LatencyConfigurationPage.h:63 +msgid "Sequencer Latency" +msgstr "" + +#: ../src/gui/configuration/ColourConfigurationPage.h:61 +msgid "Color Settings" +msgstr "Colour Settings" + +#: ../src/gui/studio/MidiDeviceListViewItem.cpp:55 +#: ../src/gui/studio/MidiKeyMapListViewItem.cpp:44 +msgid "Key Mapping" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:97 +msgid "Manage MIDI Banks and Programs" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:128 +msgid "MIDI Device" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:130 +#: ../src/gui/studio/BankEditorDialog.cpp:219 +msgid "MSB" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:131 +#: ../src/gui/studio/BankEditorDialog.cpp:218 +msgid "LSB" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:140 +msgid "Add Bank" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:141 +msgid "Add Key Mapping" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:153 +msgid "Add a Bank to the current device" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:157 +msgid "Add a Percussion Key Mapping to the current device" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:161 +msgid "Delete the current Bank or Key Mapping" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:165 +msgid "Delete all Banks and Key Mappings from the current Device" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:167 +#: ../src/gui/studio/DeviceManagerDialog.cpp:117 +msgid "Import..." +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:168 +#: ../src/gui/studio/DeviceManagerDialog.cpp:118 +msgid "Export..." +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:176 +msgid "" +"Import Bank and Program data from a Rosegarden file to the current Device" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:179 +msgid "" +"Export all Device and Bank information to a Rosegarden format interchange " +"file" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:190 +msgid "Copy all Program names from current Bank to clipboard" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:194 +msgid "Paste Program names from clipboard to current Bank" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:216 +msgid "Show Variation list based on " +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1010 +msgid "" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1046 +msgid "" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1048 +msgid "" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1089 +msgid "Really delete this bank?" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1137 +msgid "Really delete this key mapping?" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1187 +msgid "Really delete all banks for " +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1476 +msgid "Import Banks from Device in File" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1623 +#: ../src/gui/studio/DeviceManagerDialog.cpp:770 +msgid "Export Device as..." +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1694 +msgid "" +"There are unsaved changes.\n" +"Do you want to apply the changes before exiting the Bank Editor or discard " +"the changes ?" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1697 +msgid "Unsaved Changes" +msgstr "" + +#: ../src/gui/studio/NameSetEditor.cpp:68 +msgid "Librarian" +msgstr "" + +#: ../src/gui/studio/NameSetEditor.cpp:75 +msgid "Email" +msgstr "" + +#: ../src/gui/studio/NameSetEditor.cpp:80 +msgid "" +"The librarian maintains the Rosegarden device data for this device.\n" +"If you've made modifications to suit your own device, it might be worth\n" +"liaising with the librarian in order to publish your information for the " +"benefit\n" +"of others." +msgstr "" + +#: ../src/gui/studio/MidiBankListViewItem.cpp:51 +#: ../src/gui/studio/MidiDeviceListViewItem.cpp:48 +msgid "Percussion Bank" +msgstr "" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:84 +#: ../src/gui/studio/MidiBankListViewItem.cpp:51 +#: ../src/gui/studio/MidiDeviceListViewItem.cpp:48 +msgid "Bank" +msgstr "" + +#: ../src/gui/studio/ChangeRecordDeviceCommand.h:39 +msgid "Change Record Device" +msgstr "" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:61 +#: ../src/gui/studio/DeviceManagerDialog.cpp:96 +msgid "Manage MIDI Devices" +msgstr "" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:98 +msgid "Play devices" +msgstr "" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:76 +#: ../src/gui/studio/DeviceManagerDialog.cpp:106 +#: ../src/gui/studio/DeviceManagerDialog.cpp:165 +msgid "Connection" +msgstr "" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:119 +msgid "Banks..." +msgstr "" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:120 +msgid "Control Events..." +msgstr "" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:126 +msgid "Create a new Play device" +msgstr "" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:129 +#: ../src/gui/studio/DeviceManagerDialog.cpp:184 +msgid "Delete the selected device" +msgstr "" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:132 +msgid "" +"Import Bank, Program and Controller data from a Rosegarden file to the " +"selected device" +msgstr "" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:135 +msgid "Export Bank and Controller data to a Rosegarden interchange file" +msgstr "" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:138 +msgid "View and edit Banks and Programs for the selected device" +msgstr "" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:141 +msgid "" +"View and edit Control Events for the selected device - these are special " +"Event types that you can define against your device and control through " +"Control Rulers or the Instrument Parameter Box " +msgstr "" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:156 +msgid "Record devices" +msgstr "" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:164 +msgid "Current" +msgstr "" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:181 +msgid "Create a new Record device" +msgstr "" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:360 +#: ../src/gui/studio/DeviceEditorDialog.cpp:378 +#: ../src/gui/studio/DeviceManagerDialog.cpp:486 +#: ../src/gui/studio/DeviceManagerDialog.cpp:501 +msgid "New Device" +msgstr "" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:703 +msgid "Import from Device in File" +msgstr "" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:55 +msgid "Remap Instrument assigments..." +msgstr "" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:62 +msgid "Device or Instrument" +msgstr "" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:65 +msgid "Remap Tracks by all Instruments on a Device or by single Instrument" +msgstr "" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:74 +msgid "Choose Source and Destination" +msgstr "" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:77 +msgid "From" +msgstr "" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:78 +msgid "To" +msgstr "" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:120 +#: ../src/gui/studio/RemapInstrumentDialog.cpp:121 +msgid "" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:155 +msgid "Show Audio &Faders" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:160 +msgid "Show Synth &Faders" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:165 +msgid "Show &Submasters" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:170 +msgid "Show &Plugin Buttons" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:175 +msgid "Show &Unassigned Faders" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:184 +#, c-format +msgid "" +"_n: 1 Input\n" +"%n Inputs" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:194 +msgid "No Submasters" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:203 +#, c-format +msgid "" +"_n: 1 Submaster\n" +"%n Submasters" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:279 +msgid "Audio Mixer" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:311 +msgid "Record input source" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:322 +msgid "Output destination" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:336 +#: ../src/gui/studio/AudioMixerWindow.cpp:495 +msgid "Pan" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:355 +msgid "Mono or stereo" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:364 +#: ../src/gui/studio/AudioMixerWindow.cpp:513 +msgid "Mute" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:373 rc.cpp:408 +#, no-c-format +msgid "Solo" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:382 +msgid "Arm recording" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:400 +#, c-format +msgid "Audio %1" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:404 +#, c-format +msgid "Synth %1" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:578 +#: ../src/gui/studio/AudioMixerWindow.cpp:580 +msgid "Audio master output level" +msgstr "" + +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:71 +msgid "Manage Synth Plugins" +msgstr "" + +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:78 +msgid "Synth plugins" +msgstr "" + +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:145 +msgid "Controls" +msgstr "" + +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:152 +msgid "Editor >>" +msgstr "" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:66 +#: ../src/gui/studio/MidiProgramsEditor.cpp:169 +msgid "Bank and Program details" +msgstr "" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:67 +msgid "Programs" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2711 +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:88 +#: ../src/gui/studio/MidiProgramsEditor.cpp:93 +msgid "Percussion" +msgstr "" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:99 +msgid "MSB Value" +msgstr "" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:107 +msgid "" +"Selects a MSB controller Bank number (MSB/LSB pairs are always unique for " +"any Device)" +msgstr "" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:111 +msgid "" +"Selects a LSB controller Bank number (MSB/LSB pairs are always unique for " +"any Device)" +msgstr "" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:116 +msgid "LSB Value" +msgstr "" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:254 +#: ../src/gui/studio/MidiProgramsEditor.cpp:541 +#, c-format +msgid "Key Mapping: %1" +msgstr "" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:476 +msgid "" +msgstr "" + +#: ../src/gui/studio/MidiKeyMappingEditor.cpp:57 +#: ../src/gui/studio/MidiKeyMappingEditor.cpp:81 +msgid "Key Mapping details" +msgstr "" + +#: ../src/gui/studio/MidiKeyMappingEditor.cpp:58 +msgid "Pitches" +msgstr "" + +#: ../src/gui/studio/MidiMixerWindow.cpp:152 +msgid "MIDI Mixer" +msgstr "" + +#: ../src/gui/studio/MidiMixerWindow.cpp:199 +msgid "Volume" +msgstr "" + +#: ../src/gui/studio/AudioPluginOSCGUIManager.cpp:444 +msgid "Rosegarden Plugin" +msgstr "" + +#: ../src/gui/studio/AudioPluginOSCGUIManager.cpp:447 +#, c-format +msgid "Rosegarden: %1" +msgstr "" + +#: ../src/gui/studio/AudioPluginOSCGUIManager.cpp:449 +msgid "Rosegarden: %1: %2" +msgstr "" + +#: ../src/gui/studio/AudioPluginOSCGUIManager.cpp:450 +#, c-format +msgid "Plugin slot %1" +msgstr "" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:92 +msgid "Add Play Device" +msgstr "" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:93 +msgid "Add Record Device" +msgstr "" + +#: ../src/commands/studio/CreateOrDeleteDeviceCommand.h:68 +#: ../src/gui/studio/DeviceEditorDialog.cpp:94 +msgid "Delete Device" +msgstr "" + +#: ../src/gui/editors/segment/PlayList.cpp:77 +#: ../src/gui/studio/DeviceEditorDialog.cpp:156 +#: ../src/gui/studio/DeviceEditorDialog.cpp:361 +msgid "Play" +msgstr "" + +#: ../src/commands/segment/SegmentRecordCommand.cpp:37 +#: ../src/gui/studio/DeviceEditorDialog.cpp:156 +#: ../src/gui/studio/DeviceEditorDialog.cpp:379 rc.cpp:394 +#, no-c-format +msgid "Record" +msgstr "" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:256 +msgid "Apply pending changes?" +msgstr "" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:359 +#: ../src/gui/studio/DeviceEditorDialog.cpp:377 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentEraser.cpp:82 +msgid "Click on a segment to delete it" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSplitter.cpp:166 +msgid "" +"Click on a segment to split it in two; hold Shift to avoid snapping to beat " +"grid" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSplitter.cpp:168 +msgid "Click on a segment to split it in two" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:81 +msgid "Click and drag to select segments" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentMover.cpp:154 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:238 +msgid "Move Segment" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentMover.cpp:154 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:239 +msgid "Move Segments" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:217 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:169 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:141 +#: ../src/gui/editors/segment/segmentcanvas/SegmentMover.cpp:210 +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:255 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:359 +msgid "Hold Shift to avoid snapping to beat grid" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:485 +msgid "" +"Click and drag to select segments; middle-click and drag to draw an empty " +"segment" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:384 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:502 +msgid "" +"Click and drag to resize a segment; hold Ctrl as well to rescale its contents" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:386 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:504 +msgid "Click and drag to rescale segment" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:509 +msgid "Click and drag to move segments; hold Ctrl as well to copy them" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:511 +msgid "Click and drag to copy segments" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:515 +msgid "" +"Click and drag to move segment; hold Ctrl as well to copy it; double-click " +"to edit" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:517 +msgid "Click and drag to copy segment" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:157 +msgid "" +"The audio file path does not exist or is not writable.\n" +"You must set the audio file path to a valid directory in Document Properties " +"before rescaling an audio file.\n" +"Would you like to set it now?" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:261 +msgid "" +"Hold Shift to avoid snapping to beat grid; hold Ctrl as well to rescale " +"contents" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentMover.cpp:325 +msgid "Click and drag to move a segment" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentPencil.cpp:225 +msgid "Hold Shift to avoid snapping to bar lines" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentPencil.cpp:283 +msgid "Record or drop audio here" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentPencil.cpp:289 +msgid "" +"Click and drag to draw an empty segment. Control+Alt click and drag to draw " +"in overlap mode." +msgstr "" + +#: ../src/gui/editors/segment/TrackLabel.cpp:77 +msgid "" +"Click and hold with left mouse button to assign this Track to an Instrument." +msgstr "" + +#: ../src/gui/editors/segment/TrackLabel.cpp:191 +msgid "Change track name" +msgstr "" + +#: ../src/gui/editors/segment/TrackLabel.cpp:192 +msgid "Enter new track name" +msgstr "" + +#: ../src/gui/editors/segment/TrackEditor.cpp:648 +msgid "Turn Repeating Segment into Real Copies" +msgstr "" + +#: ../src/gui/editors/segment/TrackEditor.cpp:650 +msgid "Turn Repeating Segments into Real Copies" +msgstr "" + +#: ../src/gui/editors/segment/TrackEditor.cpp:814 +msgid "" +"You can't drop files into Rosegarden from this client. Try using Konqueror " +"instead." +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:85 +msgid "Manage Triggered Segments" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:89 +msgid "ID" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:735 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:93 +msgid "Base velocity" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:94 +msgid "Triggers" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:115 +msgid "Add a Triggered Segment" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:119 +msgid "Delete a Triggered Segment" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:123 +msgid "Delete All Triggered Segments" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:127 +msgid "Close the Triggered Segment Manager" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:169 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:245 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:248 +msgid "" +"_n: %1 on 1 track\n" +"%1 on %n tracks" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:284 +msgid "" +"This will remove all triggered segments from the whole composition. Are you " +"sure?" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:288 +msgid "Remove all triggered segments" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:313 +msgid "Trigger Segment Duration" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:336 +#, c-format +msgid "" +"_n: This triggered segment is used 1 time in the current composition. Are " +"you sure you want to remove it?\n" +"This triggered segment is used %n times in the current composition. Are you " +"sure you want to remove it?" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:400 +msgid "Pa&ste as New Triggered Segment" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1169 +#: ../src/gui/editors/segment/MarkerEditor.cpp:399 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:412 +#: ../src/gui/editors/tempo/TempoView.cpp:622 +msgid "&Musical Times" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1179 +#: ../src/gui/editors/segment/MarkerEditor.cpp:409 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:422 +#: ../src/gui/editors/tempo/TempoView.cpp:632 +msgid "&Real Times" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1189 +#: ../src/gui/editors/segment/MarkerEditor.cpp:419 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:432 +#: ../src/gui/editors/tempo/TempoView.cpp:642 +msgid "Ra&w Times" +msgstr "" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:83 +msgid "Manage Markers" +msgstr "" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:86 +msgid "Marker time " +msgstr "" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:87 +msgid "Marker text " +msgstr "" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:88 +msgid "Marker description " +msgstr "" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:95 +msgid "Pointer position" +msgstr "" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:100 +msgid "Real time:" +msgstr "" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:103 +msgid "In measure:" +msgstr "In bar:" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:121 +msgid "Add a Marker" +msgstr "" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:125 +msgid "Delete a Marker" +msgstr "" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:129 +msgid "Delete All Markers" +msgstr "" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:133 +msgid "Close the Marker Editor" +msgstr "" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:296 +msgid "Remove all markers" +msgstr "" + +#: ../src/gui/editors/segment/PlayList.cpp:76 +msgid "Add..." +msgstr "" + +#: ../src/gui/editors/segment/PlayList.cpp:78 +msgid "Move Up" +msgstr "" + +#: ../src/gui/editors/segment/PlayList.cpp:79 +msgid "Move Down" +msgstr "" + +#: ../src/gui/editors/segment/PlayList.cpp:124 +msgid "Select one or more Rosegarden files" +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:73 +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:55 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:89 +msgid "Manage Control Events" +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:91 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:99 +msgid " Control Events for %1 (device %2)" +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:104 +msgid "Control Event name " +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:105 +msgid "Control Event type " +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:106 +msgid "Control Event value " +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:107 +msgid "Description " +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:108 +msgid "Min " +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:109 +msgid "Max " +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:110 +msgid "Default " +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:111 +msgid "Color " +msgstr "Colour " + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:112 +msgid "Position on instrument panel" +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:136 +msgid "Add a Control Parameter to the Studio" +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:140 +msgid "Delete a Control Parameter from the Studio" +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:144 +msgid "Close the Control Parameter editor" +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:221 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:62 +msgid "Edit Control Parameter" +msgstr "" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:71 +msgid "Control Event Properties" +msgstr "" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:77 +msgid "Name:" +msgstr "" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:93 +msgid "Control Event value:" +msgstr "" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:97 +msgid "Minimum value:" +msgstr "" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:101 +msgid "Maximum value:" +msgstr "" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:105 +msgid "Default value:" +msgstr "" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:109 +msgid "Color:" +msgstr "Colour:" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:113 +msgid "Instrument Parameter Box position:" +msgstr "" + +#: ../src/gui/editors/segment/TrackButtons.cpp:209 +#: ../src/gui/editors/segment/TrackButtons.cpp:585 +#: ../src/gui/editors/segment/TrackButtons.cpp:935 +#: ../src/gui/editors/segment/TrackButtons.cpp:1127 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/TrackButtons.cpp:352 +#: ../src/gui/editors/segment/TrackButtons.cpp:1094 +msgid "" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:130 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:662 +#: ../src/gui/editors/segment/TrackButtons.cpp:354 +#: ../src/gui/editors/segment/TrackButtons.cpp:1096 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/TrackButtons.cpp:1058 +msgid "Mute track" +msgstr "" + +#: ../src/gui/editors/segment/TrackButtons.cpp:1063 +msgid "Record on this track" +msgstr "" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:88 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:1015 +msgid "Segment" +msgstr "" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:89 +msgid "Segment Parameters" +msgstr "" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:366 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:697 +msgid "%1 ms" +msgstr "" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1031 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:910 +msgid "Highest playable note" +msgstr "" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1051 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:930 +msgid "Lowest playable note" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:93 +msgid "Track Parameters" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:137 +msgid "Playback parameters" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:172 +msgid "Recording filters" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:191 +msgid "Channel" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:203 +msgid "Staff export options" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:220 +msgid "Notation size:" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:225 +msgid "Small" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:226 +msgid "Tiny" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:233 +msgid "Bracket type:" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:237 +msgid "-----" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:238 +msgid "[----" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:239 +msgid "----]" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:240 +msgid "[---]" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:241 +msgid "{----" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:242 +msgid "----}" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:243 +msgid "{[---" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:244 +msgid "---]}" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:253 +msgid "Create segments with" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:264 +msgid "Preset" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:272 +msgid "Load" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:282 +msgid "treble" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:283 +msgid "bass" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:284 +msgid "crotales" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:285 +msgid "xylophone" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:286 +msgid "guitar" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:287 +msgid "contrabass" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:288 +msgid "celesta" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:289 +msgid "old celesta" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:290 +msgid "french" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:291 +msgid "soprano" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:292 +msgid "mezzosoprano" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:293 +msgid "alto" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:294 +msgid "tenor" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:295 +msgid "baritone" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:296 +msgid "varbaritone" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:297 +msgid "subbass" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:327 +msgid "Lowest" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:329 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:336 +msgid "---" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:331 +msgid "Choose the lowest suggested playable note, using a staff" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:334 +msgid "Highest" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:338 +msgid "Choose the highest suggested playable note, using a staff" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:666 +msgid "[ Track %1 - %2 ]" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:985 +msgid "The instrument preset database is corrupt. Check your installation." +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:173 +#: ../src/gui/editors/parameters/InstrumentParameterBox.cpp:54 +msgid "Instrument Parameters" +msgstr "" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:85 +msgid "Variation" +msgstr "" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:86 +msgid "Program" +msgstr "" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:87 +msgid "Channel out" +msgstr "" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:215 +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:221 +msgid "[ %1 ]" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:58 +#: ../src/gui/editors/matrix/MatrixMover.cpp:71 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:67 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:77 +msgid "Switch to Draw Tool" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:75 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:69 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:71 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:81 +#: ../src/gui/editors/notation/ClefInserter.cpp:57 +#: ../src/gui/editors/notation/GuitarChordInserter.cpp:63 +#: ../src/gui/editors/notation/NotationSelector.cpp:87 +#: ../src/gui/editors/notation/NoteInserter.cpp:113 +#: ../src/gui/editors/notation/RestInserter.cpp:72 +#: ../src/gui/editors/notation/TextInserter.cpp:61 +msgid "Switch to Erase Tool" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:62 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:73 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:75 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:85 +msgid "Switch to Move Tool" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:68 +#: ../src/gui/editors/matrix/MatrixMover.cpp:81 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:79 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:93 +msgid "Switch to Resize Tool" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixSelector.cpp:446 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:579 +msgid "Click and drag to select; middle-click and drag to draw new note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixResizer.cpp:324 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:597 +msgid "Click and drag to resize selected notes" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixSelector.cpp:599 +msgid "Click and drag to resize note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:471 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:604 +msgid "Click and drag to move selected notes; hold Ctrl as well to copy" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:473 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:606 +msgid "Click and drag to copy selected notes" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixSelector.cpp:610 +msgid "Click and drag to move note; hold Ctrl as well to copy" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixSelector.cpp:612 +msgid "Click and drag to copy note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:54 +#: ../src/gui/editors/matrix/MatrixMover.cpp:67 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:65 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:63 +#: ../src/gui/editors/notation/ClefInserter.cpp:53 +#: ../src/gui/editors/notation/GuitarChordInserter.cpp:59 +#: ../src/gui/editors/notation/NotationEraser.cpp:67 +#: ../src/gui/editors/notation/NoteInserter.cpp:109 +#: ../src/gui/editors/notation/RestInserter.cpp:68 +#: ../src/gui/editors/notation/TextInserter.cpp:57 +msgid "Switch to Select Tool" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixResizer.cpp:218 +msgid "Resize Event" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixResizer.cpp:221 +msgid "Resize Events" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixResizer.cpp:326 +msgid "Click and drag to resize a note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:328 +msgid "Copy and Move Event" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:330 +msgid "Copy and Move Events" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:334 +msgid "Move Event" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:336 +msgid "Move Events" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:465 +msgid "Click and drag to move a note; hold Ctrl as well to copy it" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:467 +msgid "Click and drag to copy a note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixPainter.cpp:361 +msgid "Click and drag to draw a note; Shift to avoid snapping to grid" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixPainter.cpp:363 +msgid "Click and drag to draw a note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:437 +#: ../src/gui/editors/matrix/MatrixView.cpp:3053 +msgid "Couldn't apply piano roll layout" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:663 +msgid "Resi&ze" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:669 +#: ../src/gui/editors/notation/NotationView.cpp:1919 +msgid "C&hord Insert Mode" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:676 +#: ../src/gui/editors/notation/NotationView.cpp:1778 +msgid "Ste&p Recording" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:694 +msgid "&Legato" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:708 +msgid "Set to Current Velocity" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:712 +msgid "Set Event &Velocities..." +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:716 +msgid "Trigger Se&gment..." +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:720 +msgid "Remove Triggers..." +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1153 +#: ../src/gui/editors/matrix/MatrixView.cpp:724 +#: ../src/gui/editors/tempo/TempoView.cpp:606 +msgid "Select &All" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:732 +#: ../src/gui/editors/notation/NotationView.cpp:2325 +msgid "Cursor &Back" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:736 +#: ../src/gui/editors/notation/NotationView.cpp:2329 +msgid "Cursor &Forward" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:740 +#: ../src/gui/editors/notation/NotationView.cpp:2333 +msgid "Cursor Ba&ck Bar" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:744 +#: ../src/gui/editors/notation/NotationView.cpp:2337 +msgid "Cursor For&ward Bar" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:748 +#: ../src/gui/editors/notation/NotationView.cpp:2341 +msgid "Cursor Back and Se&lect" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:752 +#: ../src/gui/editors/notation/NotationView.cpp:2345 +msgid "Cursor Forward and &Select" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:756 +#: ../src/gui/editors/notation/NotationView.cpp:2349 +msgid "Cursor Back Bar and Select" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:760 +#: ../src/gui/editors/notation/NotationView.cpp:2353 +msgid "Cursor Forward Bar and Select" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:764 +#: ../src/gui/editors/notation/NotationView.cpp:2363 +msgid "Cursor to St&art" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:770 +#: ../src/gui/editors/notation/NotationView.cpp:2369 +msgid "Cursor to &End" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:776 +#: ../src/gui/editors/notation/NotationView.cpp:2391 +msgid "Cursor to &Playback Pointer" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:820 +#: ../src/gui/editors/notation/NotationView.cpp:2435 +msgid "Playback Pointer to &Cursor" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:826 +#: ../src/gui/editors/notation/NotationView.cpp:2441 +msgid "&Solo" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:841 +#: ../src/gui/editors/notation/NotationView.cpp:2456 +msgid "Set Loop to Selection" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:845 +#: ../src/gui/editors/notation/NotationView.cpp:2460 +msgid "Clear L&oop" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1157 +#: ../src/gui/editors/matrix/MatrixView.cpp:849 +#: ../src/gui/editors/notation/NotationView.cpp:2464 +#: ../src/gui/editors/tempo/TempoView.cpp:610 +msgid "Clear Selection" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1149 +#: ../src/gui/editors/matrix/MatrixView.cpp:854 +#: ../src/gui/editors/notation/NotationView.cpp:2471 +msgid "&Filter Selection" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:879 +msgid "&No Snap" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:884 +msgid "Snap to Bea&t" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:888 +msgid "Snap to &Bar" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:908 +#, c-format +msgid "Snap to %1" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:917 +msgid "Show Instrument Parameters" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:922 +#: ../src/gui/editors/notation/NotationView.cpp:1850 +msgid "Show Ch&ord Name Ruler" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:926 +#: ../src/gui/editors/notation/NotationView.cpp:1858 +msgid "Show &Tempo Ruler" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1238 +#: ../src/gui/editors/notation/NotationView.cpp:3245 +#, c-format +msgid "" +"_n: 1 event selected \n" +" %n events selected " +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1241 +#: ../src/gui/editors/notation/NotationView.cpp:3247 +msgid " No selection " +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1348 +#: ../src/gui/editors/matrix/MatrixView.cpp:1360 +#: ../src/gui/editors/matrix/MatrixView.cpp:2079 +#: ../src/gui/editors/notation/NotationView.cpp:5869 +msgid "Quantizing..." +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1370 +#: ../src/gui/editors/notation/NotationView.cpp:5407 +msgid "Collapsing notes..." +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1381 +msgid "Making legato..." +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1476 +msgid "Note: %1 (%2.%3s)" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1531 +#: ../src/gui/editors/notation/NotationView.cpp:7206 +msgid "Time: %1 (%2.%3s)" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1604 +#: ../src/gui/editors/notation/NotationView.cpp:4744 +#: ../src/gui/editors/notation/NotationView.cpp:4773 +msgid "Cutting selection to clipboard..." +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:912 +#: ../src/gui/editors/matrix/MatrixView.cpp:1636 +#: ../src/gui/editors/notation/NotationSelectionPaster.cpp:82 +msgid "Couldn't paste at this point" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1647 +#: ../src/gui/editors/notation/NotationView.cpp:4754 +msgid "Deleting selection..." +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1833 +#: ../src/gui/editors/notation/NotationView.cpp:5617 +#, c-format +msgid "Unknown note insert action %1" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1837 +#: ../src/gui/editors/matrix/MatrixView.cpp:2857 +#: ../src/gui/editors/notation/NotationView.cpp:5621 +msgid "Inserting note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2091 +msgid "Unquantizing..." +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2120 +msgid " Grid: " +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2134 +msgid "Unit" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2136 +msgid "Beat" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2138 +msgid "Bar" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2159 +msgid " Velocity: " +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2170 +msgid " Quantize: " +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2584 +msgid "Raising velocities..." +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2596 +msgid "Lowering velocities..." +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2611 +msgid "Set Event Velocities" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2616 +msgid "Setting Velocities..." +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2665 +msgid "Remove Triggers" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2723 +msgid "%1 - Segment Track #%2 - %3" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2730 +msgid "%1 - All Segments - %2" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2737 +msgid "" +"_n: %1 - 1 Segment - %2\n" +"%1 - %n Segments - %2" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2885 +msgid "Can't insert note: No grid duration selected" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2935 +msgid " Chord " +msgstr "" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:105 +msgid "Click on a note to delete it" +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:89 +msgid "Filter" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:245 +#: ../src/gui/editors/tempo/TempoView.cpp:117 +msgid "Time " +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:118 +msgid "Type " +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:119 +msgid "Value " +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:120 +msgid "Properties " +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:208 +msgid "Common, hidden" +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:210 +msgid "Hidden" +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:213 +msgid "Common" +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:220 +msgid "Time Signature " +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:245 +msgid "%1.%2%3" +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:255 +msgid "%1.%2%3 qpm (%4.%5%6 bpm) " +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:264 +msgid "Tempo " +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:271 +msgid "" +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:463 +msgid "Delete Tempo or Time Signature" +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:602 +msgid "&Edit Item" +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:834 +msgid "%1 - Tempo and Time Signature Editor" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordEditorDialog.cpp:43 +msgid "Guitar Chord Editor" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordEditorDialog.cpp:51 +msgid "Start fret" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordEditorDialog.cpp:58 +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:51 +msgid "Root" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordEditorDialog.cpp:62 +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:55 +msgid "Extension" +msgstr "" + +#: ../src/gui/editors/guitar/Fingering.cpp:118 +msgid "couldn't parse fingering '%1' in '%2'" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:45 +msgid "Guitar Chord Selector" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:64 +msgid "beginner" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:65 +msgid "common" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:66 +msgid "all" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:86 +msgid "Fingerings" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:419 +msgid "couldn't open file '%1'" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:428 +#, c-format +msgid "couldn't parse chord dictionnary : %1" +msgstr "" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:87 +#, c-format +msgid "Note Font Viewer: %1" +msgstr "" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:93 +msgid " Component: " +msgstr "" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:101 +msgid " View: " +msgstr "" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:104 +msgid "Glyphs" +msgstr "" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:105 +msgid "Codes" +msgstr "" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:107 +msgid " Page: " +msgstr "" + +#: ../src/gui/editors/notation/ClefInserter.cpp:64 +#: ../src/gui/editors/notation/GuitarChordInserter.cpp:71 +#: ../src/gui/editors/notation/RestInserter.cpp:79 +#: ../src/gui/editors/notation/TextInserter.cpp:68 +msgid "Switch to Inserting Notes" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:522 +msgid "Close track headers" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:917 +msgid "Preparing to print..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1516 +msgid "Note &Font" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1539 +msgid "Si&ze" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1545 +msgid "Show Track Headers" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1550 +msgid "S&pacing" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1572 +msgid "Du&ration Factor" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1598 +msgid "Note &Style" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1624 +msgid "Insert Rest" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1628 +msgid "Switch from Note to Rest" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1633 +msgid "Switch from Rest to Note" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1690 +msgid "No accidental" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1691 +msgid "Follow previous accidental" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1692 +msgid "Sharp" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1693 +msgid "Flat" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1694 +msgid "Natural" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1695 +msgid "Double sharp" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1696 +msgid "Double flat" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1717 +msgid "&Treble Clef" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1724 +msgid "&Alto Clef" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1731 +msgid "Te&nor Clef" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1738 +msgid "&Bass Clef" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1745 +msgid "&Text" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1751 +msgid "&Guitar Chord" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1784 +msgid "Select from Sta&rt" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1788 +msgid "Select to &End" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1792 +msgid "Select Whole St&aff" +msgstr "" + +#: ../src/commands/edit/CutAndCloseCommand.h:53 +#: ../src/gui/editors/notation/NotationView.cpp:1796 +msgid "C&ut and Close" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1800 +msgid "Pa&ste..." +msgstr "" + +#: ../src/gui/editors/notation/NotationSelector.cpp:122 +#: ../src/gui/editors/notation/NotationView.cpp:1808 +msgid "Move to Staff Above" +msgstr "" + +#: ../src/gui/editors/notation/NotationSelector.cpp:126 +#: ../src/gui/editors/notation/NotationView.cpp:1812 +msgid "Move to Staff Below" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1826 +msgid "&Linear Layout" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1835 +msgid "&Continuous Page Layout" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1844 +msgid "&Multiple Page Layout" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1854 +msgid "Show Ra&w Note Ruler" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1862 +msgid "Show &Annotations" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1866 +msgid "Show Lily&Pond Directives" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1870 +msgid "Open L&yric Editor" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1912 +msgid "Trip&let Insert Mode" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1926 +msgid "Grace Insert Mode" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2180 +msgid "&Dump selected events to stderr" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2248 +msgid "Ma&ke Ornament..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2252 +msgid "Trigger &Ornament..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2256 +msgid "Remove Ornament..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2261 +msgid "&None" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2289 +msgid "Convert Notation For..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2298 +msgid "Show &Notes Toolbar" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2299 +msgid "Show &Rests Toolbar" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2300 +msgid "Show &Accidentals Toolbar" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2301 +msgid "Show Cle&fs Toolbar" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2303 +msgid "Show &Marks Toolbar" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2305 +msgid "Show &Group Toolbar" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2307 +msgid "Show &Layout Toolbar" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2311 +msgid "Show M&eta Toolbar" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2373 +msgid "Cursor &Up Staff" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2377 +msgid "Cursor &Down Staff" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2381 +msgid "Cursor Pre&vious Segment" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2385 +msgid "Cursor Ne&xt Segment" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2475 +msgid "Push &Left" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2479 +msgid "Push &Right" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2483 +msgid "Push &Up" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2487 +msgid "Push &Down" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2491 +msgid "&Restore Positions" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2495 +msgid "Make &Invisible" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2499 +msgid "Make &Visible" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2503 +msgid "Toggle Dot" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2507 +#: ../src/gui/editors/notation/NotationView.cpp:2511 +msgid "Add Dot" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2570 +#, c-format +msgid "" +"_n: 1 pixel\n" +"%n pixels" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2619 +msgid " Font: " +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2647 +msgid "Unknown font \"%1\", using default" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2655 +msgid " Size: " +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2677 +msgid " Spacing: " +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2993 +#: ../src/gui/editors/notation/NotationView.cpp:3818 +msgid " Ready." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2998 +msgid "Laying out score..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:3011 +msgid "Laying out staff %1..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:3020 +msgid "Reconciling staffs..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:3885 +msgid "Sizing and allocating canvas..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4050 +msgid "note" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4050 +msgid "rest" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4211 +msgid "%1 - Segment Track #%2 - Notation" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4217 +msgid "%1 - All Segments - Notation" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4222 +msgid "" +"_n: %1 - Segment - Notation\n" +"%1 - %n Segments - Notation" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4243 +msgid "Grace" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4247 +#: ../src/gui/editors/notation/NotationView.cpp:4251 +#: ../src/gui/editors/notation/NotationView.cpp:4255 +msgid "%1 %2" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4271 +msgid "Hidden annotations" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4293 +msgid "Hidden LilyPond directives" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4326 +#, c-format +msgid "Unknown spacing action %1" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4384 +#, c-format +msgid "Unknown proportion action %1" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4431 +#, c-format +msgid "Unknown font action %1" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4449 +#, c-format +msgid "Unknown font size %1" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4453 +#, c-format +msgid "Unknown font size action %1" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4780 +msgid "" +"The Restricted paste type requires enough empty space (containing only " +"rests) at the paste position to hold all of the events to be pasted.\n" +"Not enough space was found.\n" +"If you want to paste anyway, consider using one of the other paste types " +"from the \"Paste...\" option on the Edit menu. You can also change the " +"default paste type to something other than Restricted if you wish." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4800 +msgid "Can't paste multiple Segments into one" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4828 +#: ../src/gui/editors/notation/NotationView.cpp:4877 +msgid "Couldn't paste at this point." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4896 +msgid "Move Events to Staff Above" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4924 +msgid "Move Events to Staff Below" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5036 +msgid "Pushing selection left..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5047 +msgid "Pushing selection right..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5058 +msgid "Pushing selection up..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5069 +msgid "Pushing selection down..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5080 +msgid "Restoring computed positions..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5089 +msgid "Making visible..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5098 +msgid "Making invisible..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5185 +msgid "Beaming group..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5195 +msgid "Auto-beaming selection..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5205 +msgid "Breaking groups..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5293 +msgid "Untupleting..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5301 +msgid "Adding slur..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5302 +msgid "slur" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5307 +msgid "Adding phrasing slur..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5308 +msgid "phrasing slur" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5313 +msgid "Adding glissando..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5314 +msgid "glissando" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5319 +msgid "Adding crescendo..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5320 +#: ../src/gui/editors/notation/NotationView.cpp:5326 +msgid "dynamic" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5325 +msgid "Adding decrescendo..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5331 +#: ../src/gui/editors/notation/NotationView.cpp:5337 +#: ../src/gui/editors/notation/NotationView.cpp:5343 +#: ../src/gui/editors/notation/NotationView.cpp:5349 +msgid "Adding octave..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5332 +#: ../src/gui/editors/notation/NotationView.cpp:5338 +#: ../src/gui/editors/notation/NotationView.cpp:5344 +#: ../src/gui/editors/notation/NotationView.cpp:5350 +msgid "ottava" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5366 +msgid "Can't add overlapping %1 indications" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5375 +msgid "Making chord..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5387 +msgid "Normalizing rests..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5397 +msgid "Collapsing rests..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5417 +msgid "Tying notes..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5427 +msgid "Untying notes..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5437 +msgid "Making notes viable..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5447 +msgid "Removing counterpoint..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5457 +msgid "Pointing stems up..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5467 +msgid "Pointing stems down..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5478 +msgid "Restoring computed stem directions..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5488 +#: ../src/gui/editors/notation/NotationView.cpp:5498 +msgid "Positioning slurs..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5509 +msgid "Restoring slur positions..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5519 +#: ../src/gui/editors/notation/NotationView.cpp:5529 +#, fuzzy +msgid "Positioning ties..." +msgstr "Initialising view..." + +#: ../src/gui/editors/notation/NotationView.cpp:5540 +msgid "Restoring tie positions..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5550 +msgid "Fixing notation quantization..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5560 +msgid "Removing notation quantization..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5577 +msgid "Changing to %1 style..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5585 +#, c-format +msgid "Unknown style action %1" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5598 +#: ../src/gui/editors/notation/NotationView.cpp:5639 +#: ../src/gui/editors/notation/NotationView.cpp:5695 +msgid "No note duration selected" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5660 +msgid "No rest duration selected" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5746 +msgid "No note or rest duration selected" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5757 +#: ../src/gui/editors/notation/NotationView.cpp:5768 +#: ../src/gui/editors/notation/NotationView.cpp:5779 +#: ../src/gui/editors/notation/NotationView.cpp:5790 +#: ../src/gui/editors/notation/NotationView.cpp:5801 +#: ../src/gui/editors/notation/NotationView.cpp:5812 +#: ../src/gui/editors/notation/NotationView.cpp:5823 +msgid "Forcing accidentals..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5834 +msgid "Restoring accidentals..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5845 +msgid "Showing cautionary accidentals..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5855 +msgid "Cancelling cautionary accidentals..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5884 +msgid "Interpreting selection..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5896 +msgid "Setting note durations..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5904 +#: ../src/gui/editors/notation/NotationView.cpp:5912 +msgid "Adding dot..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5934 +msgid "Text: " +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5948 +msgid "Fingering: " +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:6036 +msgid "Ornament track %1 bar %2" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:6038 +#, c-format +msgid "Ornament bar %1" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:6098 +msgid "Remove Ornaments" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:6145 +msgid "Estimated key signature shown" +msgstr "" + +#: ../src/gui/editors/notation/NotationStaff.cpp:1249 +#: ../src/gui/editors/notation/NotationView.cpp:6202 +msgid "Sustain" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:6218 +msgid "" +"There is no sustain controller defined for this device.\n" +"Please ensure the device is configured correctly in the Manage MIDI Devices " +"dialog in the main window." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:7250 +msgid "Can't insert note: No note duration selected" +msgstr "" + +#: ../src/gui/editors/notation/NotationEraser.cpp:61 +#: ../src/gui/editors/notation/NotationSelector.cpp:83 +msgid "Switch to Insert Tool" +msgstr "" + +#: ../src/gui/editors/notation/NotePixmapFactory.cpp:2303 +#: ../src/gui/editors/notation/NotePixmapFactory.cpp:2347 +msgid "..." +msgstr "" + +#: ../src/gui/editors/notation/NoteFontFactory.cpp:200 +msgid "Can't obtain a default font -- no fonts found" +msgstr "" + +#: ../src/gui/editors/notation/NoteFontMap.cpp:52 +#: ../src/gui/general/PresetGroup.cpp:49 +msgid "unknown error" +msgstr "" + +#: ../src/gui/editors/notation/NoteFontMap.cpp:78 +msgid "Can't open font mapping file %1 or %2" +msgstr "" + +#: ../src/gui/editors/notation/NoteFontMap.cpp:82 +#, c-format +msgid "Can't open font mapping file %1" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:52 +msgid "%1-dotted-%2" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:54 +msgid "%1-dotted %2" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:57 +#, c-format +msgid "dotted-%1" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:59 +#, c-format +msgid "dotted %1" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:83 +msgid "sixty-fourth note" +msgstr "hemidemisemiquaver" + +#: ../src/gui/editors/notation/NotationStrings.cpp:83 +msgid "thirty-second note" +msgstr "demisemiquaver" + +#: ../src/gui/editors/notation/NotationStrings.cpp:84 +msgid "sixteenth note" +msgstr "semiquaver" + +#: ../src/gui/editors/notation/NotationStrings.cpp:84 +msgid "eighth note" +msgstr "quaver" + +#: ../src/gui/editors/notation/NotationStrings.cpp:85 +msgid "quarter note" +msgstr "crotchet" + +#: ../src/gui/editors/notation/NotationStrings.cpp:85 +msgid "half note" +msgstr "minim" + +#: ../src/gui/editors/notation/NotationStrings.cpp:86 +msgid "whole note" +msgstr "semibreve" + +#: ../src/gui/editors/notation/NotationStrings.cpp:86 +msgid "double whole note" +msgstr "breve" + +#: ../src/gui/editors/notation/NotationStrings.cpp:89 +msgid "sixty-fourth notes" +msgstr "hemidemisemiquavers" + +#: ../src/gui/editors/notation/NotationStrings.cpp:89 +msgid "thirty-second notes" +msgstr "demisemiquavers" + +#: ../src/gui/editors/notation/NotationStrings.cpp:90 +msgid "sixteenth notes" +msgstr "semiquavers" + +#: ../src/gui/editors/notation/NotationStrings.cpp:90 +msgid "eighth notes" +msgstr "quavers" + +#: ../src/gui/editors/notation/NotationStrings.cpp:91 +msgid "quarter notes" +msgstr "crotchets" + +#: ../src/gui/editors/notation/NotationStrings.cpp:91 +msgid "half notes" +msgstr "minims" + +#: ../src/gui/editors/notation/NotationStrings.cpp:92 +msgid "whole notes" +msgstr "semibreves" + +#: ../src/gui/editors/notation/NotationStrings.cpp:92 +msgid "double whole notes" +msgstr "breves" + +#: ../src/gui/editors/notation/NotationStrings.cpp:96 +#: ../src/gui/editors/notation/NotationStrings.cpp:154 +msgid "%1 triplets" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:100 +#: ../src/gui/editors/notation/NotationStrings.cpp:158 +msgid "%1 triplet" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:143 +msgid "64th" +msgstr "hemi" + +#: ../src/gui/editors/notation/NotationStrings.cpp:143 +msgid "32nd" +msgstr "demi" + +#: ../src/gui/editors/notation/NotationStrings.cpp:143 +msgid "16th" +msgstr "semi" + +#: ../src/gui/editors/notation/NotationStrings.cpp:143 +msgid "8th" +msgstr "quaver" + +#: ../src/gui/editors/notation/NotationStrings.cpp:144 +msgid "quarter" +msgstr "crotchet" + +#: ../src/gui/editors/notation/NotationStrings.cpp:144 +msgid "half" +msgstr "minim" + +#: ../src/gui/editors/notation/NotationStrings.cpp:144 +msgid "whole" +msgstr "semibreve" + +#: ../src/gui/editors/notation/NotationStrings.cpp:145 +msgid "double whole" +msgstr "breve" + +#: ../src/gui/editors/notation/NotationStrings.cpp:148 +msgid "64ths" +msgstr "hemis" + +#: ../src/gui/editors/notation/NotationStrings.cpp:148 +msgid "32nds" +msgstr "demis" + +#: ../src/gui/editors/notation/NotationStrings.cpp:148 +msgid "16ths" +msgstr "semis" + +#: ../src/gui/editors/notation/NotationStrings.cpp:148 +msgid "8ths" +msgstr "quavers" + +#: ../src/gui/editors/notation/NotationStrings.cpp:149 +msgid "quarters" +msgstr "crotchets" + +#: ../src/gui/editors/notation/NotationStrings.cpp:149 +msgid "halves" +msgstr "minims" + +#: ../src/gui/editors/notation/NotationStrings.cpp:149 +msgid "wholes" +msgstr "semibreves" + +#: ../src/gui/editors/notation/NotationStrings.cpp:150 +msgid "double wholes" +msgstr "breves" + +#: ../src/gui/editors/notation/NotationStrings.cpp:278 +msgid "%1 ticks" +msgstr "" + +#: ../src/gui/editors/notation/FontViewFrame.cpp:100 +#, c-format +msgid "Error: Unable to match font name %1" +msgstr "" + +#: ../src/gui/editors/notation/FontViewFrame.cpp:108 +msgid "Warning: No good match for font name %1 (best is %2)" +msgstr "" + +#: ../src/gui/editors/notation/FontViewFrame.cpp:116 +#, c-format +msgid "Error: Unable to open best-match font %1" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:113 +msgid "Track %1 : \"%2\"" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:119 +#, c-format +msgid "" +"\n" +"Notate for: %1" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:121 +msgid "normal" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:124 +msgid "small" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:127 +msgid "tiny" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:131 +msgid "--" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:156 +msgid "" +"\n" +"Size: %1, Bracket: %2 " +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:183 +msgid "" +"\n" +"bars [%1-%2] in %3 (tr=%4) : \"%5\"" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:190 +msgid "" +"\n" +"bars [%1-%2] (tr=%3) : \"%4\"" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:240 +msgid "C#" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:242 +msgid "Eb" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:245 +msgid "F#" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:247 +msgid "G#" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:249 +msgid "Bb" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:352 +msgid "%1: %2" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:355 +#, c-format +msgid " in %1" +msgstr "" + +#: ../src/gui/editors/notation/NotationStaff.cpp:452 +msgid "Rendering staff %1..." +msgstr "" + +#: ../src/gui/editors/notation/NotationStaff.cpp:515 +msgid "Rendering notes on staff %1..." +msgstr "" + +#: ../src/gui/editors/notation/NotationStaff.cpp:583 +msgid "Positioning staff %1..." +msgstr "" + +#: ../src/gui/editors/notation/NotationSelectionPaster.cpp:85 +msgid "Ready." +msgstr "" + +#: ../src/gui/editors/notation/RestInserter.cpp:62 +msgid "Dotted rest" +msgstr "" + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:57 +#, c-format +msgid "Can't open style file %1" +msgstr "" + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:92 +msgid "type is a required attribute of note" +msgstr "" + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:101 +#, c-format +msgid "Unrecognised note name %1" +msgstr "" + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:108 +msgid "global element must precede note elements" +msgstr "" + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:137 +msgid "" +"global and note elements may have shape or charname attribute, but not both" +msgstr "" + +#: ../src/gui/editors/notation/NotationVLayout.cpp:493 +msgid "" +"Spanned note at %1 has no HEIGHT_ON_STAFF property!\n" +"This is a bug (the program would previously have crashed by now)" +msgstr "" + +#: ../src/gui/editors/notation/NoteInserter.cpp:82 +msgid "Auto-Beam when appropriate" +msgstr "" + +#: ../src/gui/editors/notation/NoteInserter.cpp:103 +msgid "Dotted note" +msgstr "" + +#: ../src/gui/editors/notation/NoteInserter.cpp:120 +msgid "Switch to Inserting Rests" +msgstr "" + +#: ../src/gui/editors/notation/NotationSelector.cpp:98 +msgid "Collapse Rests" +msgstr "" + +#: ../src/gui/editors/notation/NotationSelector.cpp:102 +msgid "Respell as Flat" +msgstr "" + +#: ../src/gui/editors/notation/NotationSelector.cpp:106 +msgid "Respell as Sharp" +msgstr "" + +#: ../src/gui/editors/notation/NotationSelector.cpp:110 +msgid "Respell as Natural" +msgstr "" + +#: ../src/gui/editors/notation/NotationSelector.cpp:114 +msgid "Collapse Notes" +msgstr "" + +#: ../src/gui/editors/notation/NotationSelector.cpp:130 +msgid "Make Invisible" +msgstr "" + +#: ../src/gui/editors/notation/NotationSelector.cpp:134 +msgid "Make Visible" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:129 +msgid "Event filters" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:138 +msgid "Rest" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:139 +msgid "Indication" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:141 +msgid "Other" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:161 +msgid "Triggered Segment Properties" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:166 +msgid "Label: " +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:176 +msgid "Base pitch: " +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:183 +msgid "Base velocity: " +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:246 +msgid "Duration " +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:247 +msgid "Event Type " +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:248 +msgid "Pitch " +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:249 +msgid "Velocity " +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:250 +msgid "Type (Data1) " +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:251 +msgid "Value (Data2) " +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:461 +msgid "(group %1) " +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:519 +msgid "" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:521 +msgid "" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:696 +msgid "Segment label" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:696 +msgid "Label:" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1123 +msgid "&Insert Event" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1130 +msgid "&Delete Event" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1137 +msgid "&Edit Event" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1144 +msgid "&Advanced Event Editor" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1518 +msgid "Open in Event Editor" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1519 +msgid "Open in Expert Event Editor" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1577 +msgid "%1 - Triggered Segment: %2" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1592 +msgid "%1 - Segment Track #%2 - Event List" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1598 +msgid "%1 - %2 Segments - Event List" +msgstr "" + +#: ../src/gui/rulers/TempoRuler.cpp:131 +msgid "Insert Tempo Change at Playback Position" +msgstr "" + +#: ../src/gui/rulers/TempoRuler.cpp:136 +msgid "Delete Tempo Change" +msgstr "" + +#: ../src/gui/rulers/TempoRuler.cpp:140 +msgid "Ramp Tempo to Next Tempo" +msgstr "" + +#: ../src/gui/rulers/TempoRuler.cpp:144 +msgid "Un-Ramp Tempo" +msgstr "" + +#: ../src/gui/rulers/TempoRuler.cpp:149 +msgid "Edit Tempo..." +msgstr "" + +#: ../src/gui/rulers/TempoRuler.cpp:153 +msgid "Edit Time Signature..." +msgstr "" + +#: ../src/gui/rulers/TempoRuler.cpp:588 +msgid "%1.%2%3 (%4.%5%6 bpm)" +msgstr "" + +#: ../src/gui/rulers/TempoRuler.cpp:596 +msgid "%1.%2%3 bpm" +msgstr "" + +#: ../src/gui/rulers/TempoRuler.cpp:604 +msgid "%1 - %2.%3%4" +msgstr "" + +#: ../src/gui/rulers/ControlRulerEventInsertCommand.cpp:36 +msgid "Insert Controller Event" +msgstr "" + +#: ../src/gui/rulers/ControlChangeCommand.cpp:35 +msgid "Control Change" +msgstr "" + +#: ../src/gui/rulers/PropertyViewRuler.cpp:72 +msgid "%1 controller" +msgstr "" + +#: ../src/gui/rulers/RawNoteRuler.cpp:453 +msgid "Track #%1, Segment \"%2\" (runtime id %3)" +msgstr "" + +#: ../src/gui/rulers/MarkerRuler.cpp:100 +msgid "Insert Marker" +msgstr "" + +#: ../src/gui/rulers/MarkerRuler.cpp:104 +msgid "Insert Marker at Playback Position" +msgstr "" + +#: ../src/gui/rulers/MarkerRuler.cpp:109 +#, fuzzy +msgid "Delete Marker" +msgstr "Delete Colour" + +#: ../src/gui/rulers/MarkerRuler.cpp:114 +msgid "Edit Marker..." +msgstr "" + +#: ../src/gui/rulers/MarkerRuler.cpp:119 +msgid "" +"Click on a marker to move the playback pointer.\n" +"Shift-click to set a range between markers.\n" +"Double-click to open the marker editor." +msgstr "" + +#: ../src/gui/rulers/ChordNameRuler.cpp:97 +msgid "" +"Chord name ruler.\n" +"Turn it on and off from the Settings->Rulers menu." +msgstr "" + +#: ../src/gui/rulers/ControlRulerEventEraseCommand.cpp:37 +msgid "Erase Controller Event(s)" +msgstr "" + +#: ../src/gui/general/EditView.cpp:901 +#: ../src/gui/rulers/ControllerEventsRuler.cpp:188 +msgid "Unsupported Event Type" +msgstr "" + +#: ../src/gui/rulers/ControllerEventsRuler.cpp:203 +msgid "Controller Events" +msgstr "" + +#: ../src/gui/rulers/ControllerEventsRuler.cpp:278 +msgid "Controller Event Number" +msgstr "" + +#: ../src/gui/rulers/ControllerEventsRuler.cpp:471 +msgid "Add line of controllers" +msgstr "" + +#: ../src/gui/rulers/LoopRuler.cpp:89 +msgid "" +"Click and drag to move the playback pointer.\n" +"Shift-click and drag to set a range for looping or editing.\n" +"Shift-click to clear the loop or range.\n" +"Double-click to start playback." +msgstr "" + +#: ../src/gui/general/EditViewBase.cpp:228 +msgid "Set Segment Start Time..." +msgstr "" + +#: ../src/gui/general/EditViewBase.cpp:232 +msgid "Set Segment Duration..." +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:56 +msgid "Load track parameters preset" +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:62 +msgid "Convert notation for..." +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:86 +msgid "Select preset track parameters for:" +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:87 +msgid "Create appropriate notation for:" +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:89 +msgid "Category" +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:95 +msgid "Player Ability" +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:97 +msgid "Amateur" +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:98 +msgid "Professional" +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:104 +msgid "Only selected segments" +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:106 +msgid "All segments in this track" +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:111 +msgid "Only for new segments" +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:113 +msgid "Convert existing segments" +msgstr "" + +#: ../src/gui/general/MidiPitchLabel.cpp:39 +#, c-format +msgid "C%1" +msgstr "" + +#: ../src/gui/general/MidiPitchLabel.cpp:39 +#, c-format +msgid "C#%1" +msgstr "" + +#: ../src/gui/general/MidiPitchLabel.cpp:39 +#, c-format +msgid "D%1" +msgstr "" + +#: ../src/gui/general/MidiPitchLabel.cpp:39 +#, c-format +msgid "D#%1" +msgstr "" + +#: ../src/gui/general/MidiPitchLabel.cpp:40 +#, c-format +msgid "E%1" +msgstr "" + +#: ../src/gui/general/MidiPitchLabel.cpp:40 +#, c-format +msgid "F%1" +msgstr "" + +#: ../src/gui/general/MidiPitchLabel.cpp:40 +#, c-format +msgid "F#%1" +msgstr "" + +#: ../src/gui/general/MidiPitchLabel.cpp:40 +#, c-format +msgid "G%1" +msgstr "" + +#: ../src/gui/general/MidiPitchLabel.cpp:41 +#, c-format +msgid "G#%1" +msgstr "" + +#: ../src/gui/general/MidiPitchLabel.cpp:41 +#, c-format +msgid "A%1" +msgstr "" + +#: ../src/gui/general/MidiPitchLabel.cpp:41 +#, c-format +msgid "A#%1" +msgstr "" + +#: ../src/gui/general/MidiPitchLabel.cpp:41 +#, c-format +msgid "B%1" +msgstr "" + +#: ../src/gui/general/PresetGroup.cpp:95 +#, c-format +msgid "Can't open preset file %1" +msgstr "" + +#: ../src/gui/general/EditView.cpp:744 +msgid "&Halve Durations" +msgstr "" + +#: ../src/gui/general/EditView.cpp:748 +msgid "&Double Durations" +msgstr "" + +#: ../src/gui/general/EditView.cpp:806 +msgid "Show Velocity Property Ruler" +msgstr "" + +#: ../src/gui/general/EditView.cpp:825 +msgid "Insert item" +msgstr "" + +#: ../src/gui/general/EditView.cpp:831 +msgid "Erase selected items" +msgstr "" + +#: ../src/gui/general/EditView.cpp:835 +msgid "Clear ruler" +msgstr "" + +#: ../src/gui/general/EditView.cpp:839 +msgid "Insert line of controllers" +msgstr "" + +#: ../src/gui/general/EditView.cpp:843 +msgid "Flip forward" +msgstr "" + +#: ../src/gui/general/EditView.cpp:847 +msgid "Flip backwards" +msgstr "" + +#: ../src/gui/general/EditView.cpp:851 +msgid "Draw property line" +msgstr "" + +#: ../src/gui/general/EditView.cpp:855 +msgid "Select all property values" +msgstr "" + +#: ../src/gui/general/EditView.cpp:894 +msgid "%1 Controller %2 %3" +msgstr "" + +#: ../src/gui/general/EditView.cpp:1066 +msgid "I" +msgstr "" + +#: ../src/gui/general/EditView.cpp:1066 +msgid "II" +msgstr "" + +#: ../src/gui/general/EditView.cpp:1066 +msgid "III" +msgstr "" + +#: ../src/gui/general/EditView.cpp:1066 +msgid "IV" +msgstr "" + +#: ../src/gui/general/EditView.cpp:1067 +msgid "V" +msgstr "" + +#: ../src/gui/general/EditView.cpp:1067 +msgid "VI" +msgstr "" + +#: ../src/gui/general/EditView.cpp:1067 +msgid "VII" +msgstr "" + +#: ../src/gui/general/EditView.cpp:1067 +msgid "VIII" +msgstr "" + +#: ../src/gui/general/EditView.cpp:1069 +msgid "%1 flat" +msgstr "" + +#: ../src/gui/general/EditView.cpp:1070 +msgid "%1 sharp" +msgstr "" + +#: ../src/gui/general/EditView.cpp:1085 +msgid "&Insert Note" +msgstr "" + +#: ../src/gui/general/EditView.cpp:1091 +msgid "&Upper Octave" +msgstr "" + +#: ../src/gui/general/EditView.cpp:1096 +msgid "&Lower Octave" +msgstr "" + +#: ../src/gui/general/EditView.cpp:1268 +msgid "Estimated time signature shown" +msgstr "" + +#: ../src/gui/general/EditView.cpp:1431 +msgid "Halving durations..." +msgstr "" + +#: ../src/gui/general/EditView.cpp:1445 +msgid "Doubling durations..." +msgstr "" + +#: ../src/gui/general/EditView.cpp:1469 +msgid "Rescaling..." +msgstr "" + +#: ../src/gui/general/EditView.cpp:1489 +msgid "By number of semitones: " +msgstr "" + +#: ../src/gui/general/EditView.cpp:1496 ../src/gui/general/EditView.cpp:1518 +msgid "Transposing..." +msgstr "" + +#: ../src/gui/general/EditView.cpp:1536 +msgid "Transposing up one semitone..." +msgstr "" + +#: ../src/gui/general/EditView.cpp:1545 +msgid "Transposing up one octave..." +msgstr "" + +#: ../src/gui/general/EditView.cpp:1554 +msgid "Transposing down one semitone..." +msgstr "" + +#: ../src/gui/general/EditView.cpp:1563 +msgid "Transposing down one octave..." +msgstr "" + +#: ../src/gui/general/EditView.cpp:1575 +msgid "Inverting..." +msgstr "" + +#: ../src/gui/general/EditView.cpp:1587 +msgid "Retrograding..." +msgstr "" + +#: ../src/gui/general/EditView.cpp:1599 +msgid "Retrograde inverting..." +msgstr "" + +#: ../src/gui/general/EditView.cpp:1608 +msgid "Jogging left..." +msgstr "" + +#: ../src/gui/general/EditView.cpp:1623 +msgid "Jogging right..." +msgstr "" + +#: ../src/sound/AudioFileManager.cpp:660 +#, c-format +msgid "Downloading file %1" +msgstr "" + +#: ../src/sound/AudioFileManager.cpp:735 +msgid "Converting audio file..." +msgstr "" + +#: ../src/sound/AudioFileManager.cpp:737 +msgid "Resampling audio file..." +msgstr "" + +#: ../src/sound/AudioFileManager.cpp:739 +msgid "Converting and resampling audio file..." +msgstr "" + +#: ../src/sound/AudioFileManager.cpp:741 +msgid "Importing audio file..." +msgstr "" + +#: ../src/sound/AudioFileManager.cpp:794 +msgid "Failed to convert or resample audio file on import" +msgstr "" + +#: ../src/sequencer/main.cpp:46 ../src/sequencer/main.cpp:86 +msgid "RosegardenSequencer" +msgstr "" + +#: ../src/sequencer/main.cpp:54 +msgid "JACK playback and capture ports" +msgstr "" + +#: ../src/commands/segment/SegmentSyncCommand.cpp:38 +#: ../src/commands/segment/SegmentSyncCommand.cpp:44 +#: ../src/commands/segment/SegmentSyncCommand.cpp:55 +#: ../src/commands/segment/SegmentSyncCommand.cpp:63 +msgid "Sync segment parameters" +msgstr "" + +#: ../src/commands/segment/RenameTrackCommand.h:52 +msgid "Rename Track" +msgstr "" + +#: ../src/commands/segment/SegmentRepeatToCopyCommand.cpp:39 +msgid "Turn Repeats into Copies" +msgstr "" + +#: ../src/commands/segment/SegmentTransposeCommand.cpp:36 +#: ../src/commands/segment/SegmentTransposeCommand.cpp:42 +#, fuzzy +msgid "Change segment transposition" +msgstr "Change Segment Colour" + +#: ../src/commands/edit/RescaleCommand.h:50 +#: ../src/commands/segment/AudioSegmentRescaleCommand.h:62 +#: ../src/commands/segment/SegmentRescaleCommand.h:58 +msgid "Stretch or S&quash..." +msgstr "" + +#: ../src/commands/segment/SegmentLabelCommand.h:52 +msgid "Re&label..." +msgstr "" + +#: ../src/commands/segment/AudioSegmentResizeFromStartCommand.cpp:39 +#: ../src/commands/segment/SegmentResizeFromStartCommand.cpp:39 +msgid "Resize Segment" +msgstr "" + +#: ../src/commands/segment/RemoveTempoChangeCommand.h:58 +msgid "Remove &Tempo Change..." +msgstr "" + +#: ../src/commands/segment/SegmentEraseCommand.cpp:40 +#: ../src/commands/segment/SegmentEraseCommand.cpp:52 +msgid "Erase Segment" +msgstr "" + +#: ../src/commands/segment/AudioSegmentRescaleCommand.cpp:126 +#: ../src/commands/segment/SegmentRescaleCommand.cpp:102 +msgid "(rescaled)" +msgstr "" + +#: ../src/commands/segment/AudioSegmentRescaleCommand.cpp:127 +#: ../src/commands/segment/SegmentRescaleCommand.cpp:105 +msgid "%1 (rescaled)" +msgstr "" + +#: ../src/commands/segment/PasteToTriggerSegmentCommand.cpp:47 +msgid "Paste as New Triggered Segment" +msgstr "" + +#: ../src/commands/segment/SegmentColourMapCommand.h:52 +msgid "Change Segment Color Map..." +msgstr "Change Segment Colour Map..." + +#: ../src/commands/segment/SegmentQuickCopyCommand.h:55 +msgid "Quick-Copy Segment" +msgstr "" + +#: ../src/commands/segment/AudioSegmentSplitCommand.cpp:42 +msgid "Split Audio Segment" +msgstr "" + +#: ../src/commands/segment/AudioSegmentSplitCommand.cpp:103 +#: ../src/commands/segment/SegmentSplitCommand.cpp:135 +msgid " (split)" +msgstr "" + +#: ../src/commands/segment/AudioSegmentSplitCommand.cpp:104 +#: ../src/commands/segment/SegmentSplitByRecordingSrcCommand.cpp:120 +#: ../src/commands/segment/SegmentSplitByRecordingSrcCommand.cpp:122 +#: ../src/commands/segment/SegmentSplitCommand.cpp:136 +msgid "%1 (split)" +msgstr "" + +#: ../src/commands/segment/SegmentLabelCommand.cpp:40 +msgid "Label Segments" +msgstr "" + +#: ../src/commands/segment/OpenOrCloseRangeCommand.cpp:43 +msgid "Open or Close Range" +msgstr "" + +#: ../src/commands/edit/TransposeCommand.h:55 +#: ../src/commands/segment/SegmentTransposeCommand.h:54 +msgid "Transpose by &Interval..." +msgstr "" + +#: ../src/commands/segment/SegmentAutoSplitCommand.cpp:148 +msgid "%1 (part)" +msgstr "" + +#: ../src/commands/segment/AudioSegmentInsertCommand.cpp:51 +#: ../src/commands/segment/SegmentInsertCommand.cpp:43 +#: ../src/commands/segment/SegmentInsertCommand.cpp:56 +msgid "Create Segment" +msgstr "" + +#: ../src/commands/segment/AudioSegmentInsertCommand.cpp:114 +msgid "%1 (inserted)" +msgstr "" + +#: ../src/commands/segment/AudioSegmentInsertCommand.cpp:117 +msgid "unknown audio file" +msgstr "" + +#: ../src/commands/segment/CreateTempoMapFromSegmentCommand.cpp:40 +msgid "Set Tempos from Beat Segment" +msgstr "" + +#: ../src/commands/segment/SegmentSplitByRecordingSrcCommand.h:52 +msgid "Split by &Recording Source..." +msgstr "" + +#: ../src/commands/segment/SegmentColourMapCommand.cpp:40 +msgid "Change Segment Color Map" +msgstr "Change Segment Colour Map" + +#: ../src/commands/edit/CopyCommand.cpp:64 +#: ../src/commands/segment/SegmentQuickCopyCommand.cpp:57 +msgid "%1 (copied)" +msgstr "" + +#: ../src/commands/segment/SegmentColourCommand.h:52 +msgid "Change Segment Color..." +msgstr "Change Segment Colour..." + +#: ../src/commands/segment/SegmentSplitByPitchCommand.cpp:170 +msgid "%1 (upper)" +msgstr "" + +#: ../src/commands/segment/SegmentSplitByPitchCommand.cpp:172 +msgid "%1 (lower)" +msgstr "" + +#: ../src/commands/segment/SegmentSingleRepeatToCopyCommand.cpp:39 +msgid "Turn Single Repeat into Copy" +msgstr "" + +#: ../src/commands/segment/AddTempoChangeCommand.h:58 +msgid "Add Te&mpo Change..." +msgstr "" + +#: ../src/commands/segment/AudioSegmentAutoSplitCommand.h:57 +#: ../src/commands/segment/SegmentAutoSplitCommand.h:53 +msgid "&Split on Silence" +msgstr "" + +#: ../src/commands/segment/SetTriggerSegmentBaseVelocityCommand.cpp:39 +msgid "Set Base Velocity" +msgstr "" + +#: ../src/commands/segment/DeleteRangeCommand.cpp:43 +#: ../src/commands/segment/EraseSegmentsStartingInRangeCommand.cpp:39 +msgid "Delete Range" +msgstr "" + +#: ../src/commands/segment/ChangeCompositionLengthCommand.h:53 +msgid "Change &Composition Start and End..." +msgstr "" + +#: ../src/commands/segment/MoveTracksCommand.h:51 +msgid "Move Tracks..." +msgstr "" + +#: ../src/commands/segment/SegmentColourCommand.cpp:39 +msgid "Change Segment Color" +msgstr "Change Segment Colour" + +#: ../src/commands/segment/AudioSegmentDistributeCommand.h:66 +msgid "Distribute Audio Segments over MIDI" +msgstr "" + +#: ../src/commands/segment/AudioSegmentAutoSplitCommand.cpp:147 +msgid "%1 (autosplit %2)" +msgstr "" + +#: ../src/commands/segment/SetTriggerSegmentDefaultRetuneCommand.cpp:39 +msgid "Set Default Retune" +msgstr "" + +#: ../src/commands/segment/AddTimeSignatureCommand.h:52 +msgid "Add Time Si&gnature Change..." +msgstr "" + +#: ../src/commands/segment/AddTriggerSegmentCommand.cpp:42 +msgid "Add Triggered Segment" +msgstr "" + +#: ../src/commands/segment/SetTriggerSegmentDefaultTimeAdjustCommand.cpp:39 +msgid "Set Default Time Adjust" +msgstr "" + +#: ../src/commands/segment/RemoveTimeSignatureCommand.h:58 +msgid "Remove &Time Signature Change..." +msgstr "" + +#: ../src/commands/segment/SegmentCommandRepeat.cpp:39 +msgid "Repeat Segments" +msgstr "" + +#: ../src/commands/segment/AddTracksCommand.h:55 +msgid "Add Tracks..." +msgstr "" + +#: ../src/commands/segment/ModifyDefaultTempoCommand.h:51 +msgid "Modify &Default Tempo..." +msgstr "" + +#: ../src/commands/segment/SegmentSplitByPitchCommand.h:61 +msgid "Split by &Pitch..." +msgstr "" + +#: ../src/commands/segment/DeleteTriggerSegmentCommand.cpp:40 +msgid "Delete Triggered Segment" +msgstr "" + +#: ../src/commands/segment/SegmentSplitCommand.cpp:42 +msgid "Split Segment" +msgstr "" + +#: ../src/commands/segment/DeleteTracksCommand.h:51 +msgid "Delete Tracks..." +msgstr "" + +#: ../src/commands/segment/InsertRangeCommand.cpp:42 +msgid "Insert Range" +msgstr "" + +#: ../src/commands/segment/DeleteRangeCommand.h:62 +msgid "Rejoin Command" +msgstr "" + +#: ../src/commands/segment/SetTriggerSegmentBasePitchCommand.cpp:39 +msgid "Set Base Pitch" +msgstr "" + +#: ../src/commands/segment/PasteConductorDataCommand.cpp:41 +msgid "Paste Tempos and Time Signatures" +msgstr "" + +#: ../src/commands/segment/SegmentSyncClefCommand.cpp:34 +msgid "Sync segment clef" +msgstr "" + +#: ../src/commands/matrix/MatrixInsertionCommand.cpp:46 +#: ../src/commands/notation/NoteInsertionCommand.cpp:54 +msgid "Insert Note" +msgstr "" + +#: ../src/commands/matrix/MatrixEraseCommand.cpp:41 +msgid "Erase Note" +msgstr "" + +#: ../src/commands/matrix/MatrixPercussionInsertionCommand.cpp:47 +msgid "Insert Percussion Note" +msgstr "" + +#: ../src/commands/matrix/MatrixModifyCommand.cpp:43 +msgid "Move Note" +msgstr "" + +#: ../src/commands/matrix/MatrixModifyCommand.cpp:43 +msgid "Modify Note" +msgstr "" + +#: ../src/commands/edit/PasteEventsCommand.cpp:98 +msgid "Paste into an existing gap [\"restricted\"]" +msgstr "" + +#: ../src/commands/edit/PasteEventsCommand.cpp:100 +msgid "Erase existing events to make room [\"simple\"]" +msgstr "" + +#: ../src/commands/edit/PasteEventsCommand.cpp:102 +msgid "Move existing events out of the way [\"open-n-paste\"]" +msgstr "" + +#: ../src/commands/edit/PasteEventsCommand.cpp:104 +msgid "Overlay notes, tying against present notes [\"note-overlay\"]" +msgstr "" + +#: ../src/commands/edit/PasteEventsCommand.cpp:106 +msgid "Overlay notes, ignoring present notes [\"matrix-overlay\"]" +msgstr "" + +#: ../src/commands/edit/AddDotCommand.h:52 +msgid "&Add Dot" +msgstr "" + +#: ../src/commands/edit/RemoveMarkerCommand.h:55 +msgid "&Remove Marker" +msgstr "" + +#: ../src/commands/edit/EventUnquantizeCommand.cpp:43 +#: ../src/commands/edit/EventUnquantizeCommand.cpp:54 +msgid "Unquantize Events" +msgstr "" + +#: ../src/commands/edit/ChangeVelocityCommand.h:53 +msgid "&Increase Velocity" +msgstr "" + +#: ../src/commands/edit/ChangeVelocityCommand.h:54 +msgid "&Reduce Velocity" +msgstr "" + +#: ../src/commands/edit/CopyCommand.cpp:46 +msgid "(excerpt)" +msgstr "" + +#: ../src/commands/edit/CopyCommand.cpp:60 +msgid "(copied)" +msgstr "" + +#: ../src/commands/edit/EventInsertionCommand.cpp:39 +msgid "Insert Event" +msgstr "" + +#: ../src/commands/edit/InsertTriggerNoteCommand.cpp:55 +msgid "Insert Trigger Note" +msgstr "" + +#: ../src/commands/edit/CollapseNotesCommand.h:50 +msgid "Collapse &Equal-Pitch Notes" +msgstr "" + +#: ../src/commands/edit/TransposeCommand.h:61 +msgid "&Up a Semitone" +msgstr "" + +#: ../src/commands/edit/TransposeCommand.h:62 +msgid "&Down a Semitone" +msgstr "" + +#: ../src/commands/edit/TransposeCommand.h:63 +msgid "Up an &Octave" +msgstr "" + +#: ../src/commands/edit/TransposeCommand.h:64 +msgid "Down an Octa&ve" +msgstr "" + +#: ../src/commands/edit/TransposeCommand.h:65 +msgid "&Transpose by Semitones..." +msgstr "" + +#: ../src/commands/edit/SetNoteTypeCommand.h:56 +msgid "&Set Note Type" +msgstr "" + +#: ../src/commands/edit/EventEditCommand.h:55 +msgid "Edit E&vent" +msgstr "" + +#: ../src/commands/edit/AddMarkerCommand.h:54 +msgid "&Add Marker" +msgstr "" + +#: ../src/commands/edit/SelectionPropertyCommand.h:66 +msgid "Set &Property" +msgstr "" + +#: ../src/commands/edit/CutCommand.h:55 +msgid "Cu&t" +msgstr "" + +#: ../src/commands/edit/EventQuantizeCommand.cpp:114 +msgid "Heuristic Notation &Quantize" +msgstr "" + +#: ../src/commands/edit/EventQuantizeCommand.cpp:116 +msgid "Grid &Quantize" +msgstr "" + +#: ../src/commands/edit/ClearTriggersCommand.h:52 +msgid "&Clear Triggers" +msgstr "" + +#: ../src/commands/edit/RetrogradeCommand.h:51 +msgid "&Retrograde" +msgstr "" + +#: ../src/commands/edit/InvertCommand.h:51 +msgid "&Invert" +msgstr "" + +#: ../src/commands/edit/SetTriggerCommand.h:64 +msgid "Tri&gger Segment" +msgstr "" + +#: ../src/commands/edit/SetLyricsCommand.h:50 +msgid "Edit L&yrics" +msgstr "" + +#: ../src/commands/edit/MoveAcrossSegmentsCommand.cpp:73 +msgid "&Move Events to Other Segment" +msgstr "" + +#: ../src/commands/edit/RetrogradeInvertCommand.h:51 +msgid "Re&trograde Invert" +msgstr "" + +#: ../src/commands/edit/ModifyMarkerCommand.h:55 +msgid "&Modify Marker" +msgstr "" + +#: ../src/commands/studio/AddControlParameterCommand.h:61 +msgid "&Add Control Parameter" +msgstr "" + +#: ../src/commands/studio/ModifyInstrumentMappingCommand.h:55 +msgid "Modify &Instrument Mapping" +msgstr "" + +#: ../src/commands/studio/RemoveControlParameterCommand.h:60 +msgid "&Remove Control Parameter" +msgstr "" + +#: ../src/commands/studio/ReconnectDeviceCommand.h:55 +msgid "Reconnect Device" +msgstr "" + +#: ../src/commands/studio/ModifyDeviceCommand.h:68 +msgid "Modify &MIDI Bank" +msgstr "" + +#: ../src/commands/studio/CreateOrDeleteDeviceCommand.h:68 +msgid "Create Device" +msgstr "" + +#: ../src/commands/studio/ModifyDeviceMappingCommand.h:55 +msgid "Modify &Device Mapping" +msgstr "" + +#: ../src/commands/studio/RenameDeviceCommand.h:55 +msgid "Rename Device" +msgstr "" + +#: ../src/commands/studio/ModifyControlParameterCommand.h:61 +msgid "&Modify Control Parameter" +msgstr "" + +#: ../src/commands/notation/TieNotesCommand.h:49 +msgid "&Tie" +msgstr "" + +#: ../src/commands/notation/ClefInsertionCommand.cpp:74 +msgid "Add Cle&f Change..." +msgstr "" + +#: ../src/commands/notation/GuitarChordInsertionCommand.cpp:40 +msgid "Insert Guitar Chord" +msgstr "" + +#: ../src/commands/notation/RespellCommand.cpp:47 +#, c-format +msgid "Respell with %1" +msgstr "" + +#: ../src/commands/notation/RespellCommand.cpp:50 +msgid "Do&uble Sharp" +msgstr "" + +#: ../src/commands/notation/RespellCommand.cpp:52 +msgid "&Sharp" +msgstr "" + +#: ../src/commands/notation/RespellCommand.cpp:54 +msgid "&Flat" +msgstr "" + +#: ../src/commands/notation/RespellCommand.cpp:56 +msgid "Dou&ble Flat" +msgstr "" + +#: ../src/commands/notation/RespellCommand.cpp:58 +msgid "&Natural" +msgstr "" + +#: ../src/commands/notation/RespellCommand.cpp:60 +msgid "N&one" +msgstr "" + +#: ../src/commands/notation/RespellCommand.cpp:66 +msgid "Respell Accidentals &Upward" +msgstr "" + +#: ../src/commands/notation/RespellCommand.cpp:69 +msgid "Respell Accidentals &Downward" +msgstr "" + +#: ../src/commands/notation/RespellCommand.cpp:72 +msgid "&Restore Accidentals" +msgstr "" + +#: ../src/commands/notation/RespellCommand.cpp:75 +msgid "Respell Accidentals" +msgstr "" + +#: ../src/commands/notation/DeCounterpointCommand.h:55 +msgid "Split-and-Tie Overlapping &Chords" +msgstr "" + +#: ../src/commands/notation/BeamCommand.h:49 +msgid "&Beam Group" +msgstr "" + +#: ../src/commands/notation/AddTextMarkCommand.h:51 +msgid "Add Te&xt Mark..." +msgstr "" + +#: ../src/commands/notation/RestoreSlursCommand.h:49 +msgid "&Restore Slur Positions" +msgstr "" + +#: ../src/commands/notation/SustainInsertionCommand.h:56 +msgid "Add Pedal &Press" +msgstr "" + +#: ../src/commands/notation/SustainInsertionCommand.h:58 +msgid "Add Pedal &Release" +msgstr "" + +#: ../src/commands/notation/FixNotationQuantizeCommand.h:49 +msgid "Fi&x Notation Quantization" +msgstr "" + +#: ../src/commands/notation/ChangeStemsCommand.h:51 +msgid "Stems &Up" +msgstr "" + +#: ../src/commands/notation/ChangeStemsCommand.h:51 +msgid "Stems &Down" +msgstr "" + +#: ../src/commands/notation/MakeAccidentalsCautionaryCommand.cpp:43 +msgid "Use &Cautionary Accidentals" +msgstr "" + +#: ../src/commands/notation/MakeAccidentalsCautionaryCommand.cpp:45 +msgid "Cancel C&autionary Accidentals" +msgstr "" + +#: ../src/commands/notation/SetVisibilityCommand.h:50 +msgid "Set Visibility" +msgstr "" + +#: ../src/commands/notation/ChangeStyleCommand.h:53 +msgid "Change &Note Style" +msgstr "" + +#: ../src/commands/notation/TextInsertionCommand.cpp:41 +msgid "Insert Text" +msgstr "" + +#: ../src/commands/notation/InterpretCommand.h:70 +msgid "&Interpret..." +msgstr "" + +#: ../src/commands/notation/TupletCommand.h:53 +msgid "&Triplet" +msgstr "" + +#: ../src/commands/notation/TupletCommand.h:54 +msgid "Tu&plet..." +msgstr "" + +#: ../src/commands/notation/UnTupletCommand.h:50 +msgid "&Untuplet" +msgstr "" + +#: ../src/commands/notation/CollapseRestsCommand.h:54 +msgid "&Collapse Rests" +msgstr "" + +#: ../src/commands/notation/AddIndicationCommand.cpp:145 +msgid "Add S&lur" +msgstr "" + +#: ../src/commands/notation/AddIndicationCommand.cpp:147 +msgid "Add &Phrasing Slur" +msgstr "" + +#: ../src/commands/notation/AddIndicationCommand.cpp:149 +msgid "Add Double-Octave Up" +msgstr "" + +#: ../src/commands/notation/AddIndicationCommand.cpp:151 +msgid "Add Octave &Up" +msgstr "" + +#: ../src/commands/notation/AddIndicationCommand.cpp:153 +msgid "Add Octave &Down" +msgstr "" + +#: ../src/commands/notation/AddIndicationCommand.cpp:155 +msgid "Add Double Octave Down" +msgstr "" + +#: ../src/commands/notation/AddIndicationCommand.cpp:160 +msgid "Add &Crescendo" +msgstr "" + +#: ../src/commands/notation/AddIndicationCommand.cpp:162 +msgid "Add &Decrescendo" +msgstr "" + +#: ../src/commands/notation/AddIndicationCommand.cpp:164 +msgid "Add &Glissando" +msgstr "" + +#: ../src/commands/notation/AddIndicationCommand.cpp:167 +msgid "Add &%1%2" +msgstr "" + +#: ../src/commands/notation/RemoveNotationQuantizeCommand.h:49 +msgid "Remo&ve Notation Quantization" +msgstr "" + +#: ../src/commands/notation/MakeChordCommand.h:50 +msgid "Make &Chord" +msgstr "" + +#: ../src/commands/notation/MultiKeyInsertionCommand.h:63 +msgid "Change all to &Key %1..." +msgstr "" + +#: ../src/commands/notation/KeyInsertionCommand.h:67 +#: ../src/commands/notation/MultiKeyInsertionCommand.h:65 +msgid "Add &Key Change..." +msgstr "" + +#: ../src/commands/notation/RestoreStemsCommand.h:49 +msgid "&Restore Stems" +msgstr "" + +#: ../src/commands/notation/MakeNotesViableCommand.h:55 +#: ../src/commands/notation/MakeRegionViableCommand.h:52 +msgid "Tie Notes at &Barlines" +msgstr "" + +#: ../src/commands/notation/AddSlashesCommand.h:46 +msgid "Slashes" +msgstr "" + +#: ../src/commands/notation/ChangeSlurPositionCommand.h:51 +msgid "Slur &Above" +msgstr "" + +#: ../src/commands/notation/ChangeSlurPositionCommand.h:51 +msgid "Slur &Below" +msgstr "" + +#: ../src/commands/notation/NormalizeRestsCommand.h:54 +msgid "&Normalize Rests" +msgstr "" + +#: ../src/commands/notation/TextChangeCommand.cpp:41 +msgid "Edit Text" +msgstr "" + +#: ../src/commands/notation/RemoveMarksCommand.h:49 +msgid "&Remove All Marks" +msgstr "" + +#: ../src/commands/notation/AutoBeamCommand.h:52 +msgid "&Auto-Beam" +msgstr "" + +#: ../src/commands/notation/UntieNotesCommand.h:49 +msgid "&Untie" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:48 +msgid "S&forzando" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:50 +msgid "Sta&ccato" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:52 +msgid "R&inforzando" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:54 +msgid "T&enuto" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:56 +msgid "Tri&ll" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:58 +msgid "Trill &with Line" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:60 +msgid "Trill Line" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:62 +msgid "&Turn" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:64 +msgid "&Accent" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:66 +msgid "&Staccatissimo" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:68 +msgid "&Marcato" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:70 +msgid "&Pause" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:72 +msgid "&Up-Bow" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:74 +msgid "&Down-Bow" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:76 +msgid "Mo&rdent" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:78 +msgid "Inverted Mordent" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:80 +msgid "Long Mordent" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:82 +msgid "Lon&g Inverted Mordent" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:84 +msgid "&%1%2" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:89 +#, c-format +msgid "Add %1" +msgstr "" + +#: ../src/commands/notation/ResetDisplacementsCommand.h:49 +msgid "Restore Positions" +msgstr "" + +#: ../src/commands/notation/IncrementDisplacementsCommand.h:52 +msgid "Fine Reposition" +msgstr "" + +#: ../src/commands/notation/RestoreTiesCommand.h:49 +msgid "&Restore Tie Positions" +msgstr "" + +#: ../src/commands/notation/ChangeTiePositionCommand.h:47 +msgid "Tie &Above" +msgstr "" + +#: ../src/commands/notation/ChangeTiePositionCommand.h:47 +msgid "Tie &Below" +msgstr "" + +#: ../src/commands/notation/KeyInsertionCommand.h:65 +msgid "Change to &Key %1..." +msgstr "" + +#: ../src/commands/notation/RemoveFingeringMarksCommand.h:49 +msgid "&Remove Fingerings" +msgstr "" + +#: ../src/commands/notation/BreakCommand.h:49 +msgid "&Unbeam" +msgstr "" + +#: ../src/commands/notation/UnGraceCommand.h:48 +msgid "Ung&race" +msgstr "" + +#: ../src/commands/notation/AddFingeringMarkCommand.cpp:45 +msgid "Add Other &Fingering..." +msgstr "" + +#: ../src/commands/notation/AddFingeringMarkCommand.cpp:47 +msgid "Add Fingering &0 (Thumb)" +msgstr "" + +#: ../src/commands/notation/AddFingeringMarkCommand.cpp:49 +#, c-format +msgid "Add Fingering &%1" +msgstr "" + +#: ../src/document/io/HydrogenXMLHandler.cpp:277 +msgid " imported from Hydrogen " +msgstr "" + +#: ../src/document/io/LilyPondExporter.cpp:404 +msgid "" +"LilyPond does not allow spaces or backslashes in filenames.\n" +"\n" +"Would you like to use\n" +"\n" +" %1\n" +"\n" +" instead?" +msgstr "" + +#: ../src/document/io/LilyPondExporter.cpp:2054 +msgid "warning: overlong bar truncated here" +msgstr "" + +#: ../src/document/io/LilyPondExporter.cpp:2060 +msgid "warning: bar too short, padding with rests" +msgstr "" + +#: ../src/document/MultiViewCommandHistory.cpp:318 +msgid "Nothing to undo" +msgstr "" + +#: ../src/document/MultiViewCommandHistory.cpp:320 +msgid "Nothing to redo" +msgstr "" + +#: ../src/document/MultiViewCommandHistory.cpp:328 +#: ../src/document/MultiViewCommandHistory.cpp:372 +#, c-format +msgid "Und&o %1" +msgstr "" + +#: ../src/document/MultiViewCommandHistory.cpp:330 +#: ../src/document/MultiViewCommandHistory.cpp:374 +#, c-format +msgid "Re&do %1" +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:328 +msgid "" +"The current file has been modified.\n" +"Do you want to save it?" +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:480 +#, c-format +msgid "" +"_n: Delete the 1 audio file recorded during the unsaved session?\n" +"Delete the %n audio files recorded during the unsaved session?" +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:501 +msgid "" +"The following audio files were recorded during this session but have been " +"unloaded\n" +"from the audio file manager, and so are no longer in use in the document you " +"are saving.\n" +"\n" +"You may want to clean up these files to save disk space.\n" +"\n" +"Please select any you wish to delete permanently from the hard disk.\n" +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:517 +#, c-format +msgid "" +"_n: About to delete 1 audio file permanently from the hard disk." +"
                There will be no way to recover this file.
                Are you sure?
                \n" +"\n" +"About to delete %n audio files permanently from the hard disk.
                There " +"will be no way to recover these files.
                Are you sure?
                " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:580 +msgid "Can't open file '%1'" +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:585 +msgid "Reading file..." +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:603 +msgid "Could not open Rosegarden file" +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:641 +msgid "Error when parsing file '%1': \"%2\"" +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:689 +msgid "Generating audio previews..." +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:721 +msgid "Merge" +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1605 +msgid "File load cancelled" +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1625 +msgid "" +"

                Audio and plugins not available

                This composition uses audio files " +"or plugins, but Rosegarden is currently running without audio because the " +"JACK audio server was not available on startup.

                Please exit " +"Rosegarden, start the JACK audio server and re-start Rosegarden if you wish " +"to load this complete composition.

                WARNING: If you re-save this " +"composition, all audio and plugin data and settings in it will be lost.

                " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1628 +msgid "" +"

                Audio and plugins not available

                This composition uses audio files " +"or plugins, but you are running a version of Rosegarden that was compiled " +"without audio support.

                WARNING: If you re-save this composition " +"from this version of Rosegarden, all audio and plugin data and settings in " +"it will be lost.

                " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1665 +msgid "" +"

                Incorrect audio sample rate

                This composition contains audio files " +"that were recorded or imported with the audio server running at a different " +"sample rate (%1 Hz) from the current JACK server sample rate (%2 Hz).

                Rosegarden will play this composition at the correct speed, but any " +"audio files in it will probably sound awful.

                Please consider re-" +"starting the JACK server at the correct rate (%3 Hz) and re-loading this " +"composition before you do any more work with it.

                " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1675 +msgid "" +"

                Inconsistent audio sample rates

                This composition contains audio " +"files at more than one sample rate.

                Rosegarden will play them at the " +"correct speed, but any audio files that were recorded or imported at rates " +"different from the current JACK server sample rate (%1 Hz) will probably " +"sound awful.

                Please see the audio file manager dialog for more " +"details, and consider resampling any files that are at the wrong rate.

                " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1676 +msgid "Inconsistent sample rates" +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1690 +msgid "" +"

                Plugins not found

                The following audio plugins could not be loaded:" +"

                  " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1698 +msgid "
                • %1 (from %2)
                • " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1712 +msgid "" +"This file contains one or more old element types that are now deprecated.\n" +"Support for these elements may disappear in future versions of Rosegarden.\n" +"We recommend you re-save this file from this version of Rosegarden to ensure " +"that it can still be re-loaded in future versions." +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:2207 +msgid "Insert Recorded MIDI" +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:2560 +msgid "%1 (recorded)" +msgstr "" + +#: ../src/document/RoseXmlHandler.cpp:442 +msgid "" +"This file was written by Rosegarden %1, and it uses\n" +"a different file format that cannot be read by this version." +msgstr "" + +#: ../src/document/RoseXmlHandler.cpp:452 +msgid "" +"This file was written by Rosegarden %1, which is more recent than this " +"version.\n" +"There may be some incompatibilities with the file format." +msgstr "" + +#: ../src/document/RoseXmlHandler.cpp:1687 +msgid "Loading plugins..." +msgstr "" + +#: rc.cpp:6 rc.cpp:144 +#, no-c-format +msgid "Se&gment" +msgstr "" + +#: rc.cpp:9 rc.cpp:84 rc.cpp:147 rc.cpp:303 +#, no-c-format +msgid "Edit &With" +msgstr "" + +#: rc.cpp:12 rc.cpp:21 rc.cpp:30 rc.cpp:39 rc.cpp:345 +#, no-c-format +msgid "Actions Toolbar" +msgstr "" + +#: rc.cpp:15 rc.cpp:33 rc.cpp:129 rc.cpp:285 +#, no-c-format +msgid "Time Toolbar" +msgstr "" + +#: rc.cpp:18 rc.cpp:36 rc.cpp:57 rc.cpp:63 rc.cpp:120 rc.cpp:243 rc.cpp:342 +#, no-c-format +msgid "Transport Toolbar" +msgstr "" + +#: rc.cpp:24 rc.cpp:42 rc.cpp:123 rc.cpp:348 +#, no-c-format +msgid "Zoom Toolbar" +msgstr "" + +#: rc.cpp:45 rc.cpp:60 rc.cpp:99 rc.cpp:228 rc.cpp:327 +#, no-c-format +msgid "T&ransport" +msgstr "" + +#: rc.cpp:51 +#, no-c-format +msgid "Number of Stereo &Inputs" +msgstr "" + +#: rc.cpp:54 +#, no-c-format +msgid "&Number of Submasters" +msgstr "" + +#: rc.cpp:66 +#, no-c-format +msgid "&Import" +msgstr "" + +#: rc.cpp:69 +#, no-c-format +msgid "&Merge" +msgstr "" + +#: rc.cpp:72 +#, no-c-format +msgid "&Export" +msgstr "" + +#: rc.cpp:75 rc.cpp:141 rc.cpp:297 +#, no-c-format +msgid "&Composition" +msgstr "" + +#: rc.cpp:78 +#, no-c-format +msgid "&Studio" +msgstr "" + +#: rc.cpp:81 +#, no-c-format +msgid "Se&gments" +msgstr "" + +#: rc.cpp:90 +#, no-c-format +msgid "Trac&ks" +msgstr "" + +#: rc.cpp:93 +#, no-c-format +msgid "Set &Instrument" +msgstr "" + +#: rc.cpp:102 rc.cpp:234 rc.cpp:333 +#, no-c-format +msgid "&Toolbars" +msgstr "" + +#: rc.cpp:105 rc.cpp:237 rc.cpp:336 +#, no-c-format +msgid "&Rulers" +msgstr "" + +#: rc.cpp:111 rc.cpp:240 rc.cpp:339 +#, no-c-format +msgid "Tools Toolbar" +msgstr "" + +#: rc.cpp:114 +#, no-c-format +msgid "Tracks Toolbar" +msgstr "" + +#: rc.cpp:117 +#, no-c-format +msgid "Editors Toolbar" +msgstr "" + +#: rc.cpp:135 +#, no-c-format +msgid "&Layout Mode" +msgstr "" + +#: rc.cpp:138 rc.cpp:294 +#, no-c-format +msgid "Add Event Ruler" +msgstr "" + +#: rc.cpp:150 +#, no-c-format +msgid "N&ote" +msgstr "" + +#: rc.cpp:153 +#, no-c-format +msgid "Mar&ks" +msgstr "" + +#: rc.cpp:156 +#, no-c-format +msgid "&Ornaments" +msgstr "" + +#: rc.cpp:159 +#, no-c-format +msgid "&Fingerings" +msgstr "" + +#: rc.cpp:162 +#, no-c-format +msgid "S&lashes" +msgstr "" + +#: rc.cpp:165 rc.cpp:219 +#, no-c-format +msgid "&Accidentals" +msgstr "" + +#: rc.cpp:168 +#, no-c-format +msgid "&Phrase" +msgstr "" + +#: rc.cpp:171 +#, no-c-format +msgid "Slur &Position" +msgstr "" + +#: rc.cpp:174 +#, no-c-format +msgid "Tie &Position" +msgstr "" + +#: rc.cpp:177 +#, no-c-format +msgid "&Octaves" +msgstr "" + +#: rc.cpp:180 rc.cpp:306 +#, no-c-format +msgid "Ad&just" +msgstr "" + +#: rc.cpp:183 +#, no-c-format +msgid "R&ests" +msgstr "" + +#: rc.cpp:186 rc.cpp:213 +#, no-c-format +msgid "&Notes" +msgstr "" + +#: rc.cpp:189 rc.cpp:309 +#, no-c-format +msgid "&Quantize" +msgstr "" + +#: rc.cpp:195 rc.cpp:315 +#, no-c-format +msgid "Trans&pose" +msgstr "" + +#: rc.cpp:198 rc.cpp:318 +#, no-c-format +msgid "Convert" +msgstr "" + +#: rc.cpp:201 +#, no-c-format +msgid "&Fine Positioning" +msgstr "" + +#: rc.cpp:204 +#, no-c-format +msgid "Fine Ti&ming" +msgstr "" + +#: rc.cpp:207 +#, no-c-format +msgid "&Visibility" +msgstr "" + +#: rc.cpp:216 +#, no-c-format +msgid "&Rests" +msgstr "" + +#: rc.cpp:222 +#, no-c-format +msgid "&Clefs" +msgstr "" + +#: rc.cpp:225 rc.cpp:324 +#, no-c-format +msgid "Local &Cursor" +msgstr "" + +#: rc.cpp:246 +#, no-c-format +msgid "Notes Toolbar" +msgstr "" + +#: rc.cpp:249 +#, no-c-format +msgid "Rests Toolbar" +msgstr "" + +#: rc.cpp:252 +#, no-c-format +msgid "Clefs Toolbar" +msgstr "" + +#: rc.cpp:255 +#, no-c-format +msgid "Accidentals Toolbar" +msgstr "" + +#: rc.cpp:258 +#, no-c-format +msgid "Group Toolbar" +msgstr "" + +#: rc.cpp:261 +#, no-c-format +msgid "Marks Toolbar" +msgstr "" + +#: rc.cpp:264 +#, no-c-format +msgid "Meta Toolbar" +msgstr "" + +#: rc.cpp:267 +#, no-c-format +msgid "Layout Toolbar" +msgstr "" + +#: rc.cpp:270 rc.cpp:351 +#, no-c-format +msgid "Control Ruler actions" +msgstr "" + +#: rc.cpp:273 rc.cpp:354 +#, no-c-format +msgid "Property Ruler actions" +msgstr "" + +#: rc.cpp:276 +#, no-c-format +msgid "&Action" +msgstr "" + +#: rc.cpp:279 +#, no-c-format +msgid "General Toolbar" +msgstr "" + +#: rc.cpp:291 +#, no-c-format +msgid "&Grid" +msgstr "" + +#: rc.cpp:300 +#, no-c-format +msgid "&Segment" +msgstr "" + +#: rc.cpp:361 +#, no-c-format +msgid "Hide additional controls" +msgstr "" + +#: rc.cpp:365 +#, no-c-format +msgid "Panic Button" +msgstr "" + +#: rc.cpp:368 +#, no-c-format +msgid "Resets all MIDI devices if you've got stuck notes" +msgstr "" + +#: rc.cpp:375 +#, no-c-format +msgid "Provides a metronome click for you to play along with" +msgstr "" + +#: rc.cpp:378 +#, no-c-format +msgid "Shows MIDI activity in and out of Rosegarden" +msgstr "" + +#: rc.cpp:381 +#, no-c-format +msgid "IN" +msgstr "" + +#: rc.cpp:384 +#, no-c-format +msgid "OUT" +msgstr "" + +#: rc.cpp:387 rc.cpp:390 +#, no-c-format +msgid "NO EVENTS" +msgstr "" + +#: rc.cpp:397 +#, no-c-format +msgid "Record either MIDI or audio" +msgstr "" + +#: rc.cpp:401 +#, no-c-format +msgid "Loop" +msgstr "" + +#: rc.cpp:404 +#, no-c-format +msgid "Turn on and off the loop markers (if set)" +msgstr "" + +#: rc.cpp:411 +#, no-c-format +msgid "Mutes all but the currently selected track" +msgstr "" + +#: rc.cpp:415 +#, no-c-format +msgid "Start loop or range here" +msgstr "" + +#: rc.cpp:419 +#, no-c-format +msgid "End loop or range here" +msgstr "" + +#: rc.cpp:422 +#, no-c-format +msgid "SIG" +msgstr "" + +#: rc.cpp:425 +#, no-c-format +msgid "DIV" +msgstr "" + +#: rc.cpp:428 +#, no-c-format +msgid "/16" +msgstr "" + +#: rc.cpp:431 +#, no-c-format +msgid "TEMPO" +msgstr "" + +#: rc.cpp:434 +#, no-c-format +msgid "END" +msgstr "" + +#: rc.cpp:437 +#, no-c-format +msgid "BAR" +msgstr "" + +#: rc.cpp:441 +#, no-c-format +msgid "Switch between real time, musical time, and frame count" +msgstr "" + +#: rc.cpp:445 +#, no-c-format +msgid "Show additional controls" +msgstr "" + +#: rc.cpp:449 +#, no-c-format +msgid "Rewind" +msgstr "" + +#: rc.cpp:452 +#, no-c-format +msgid "Moves the current pointer position back one bar." +msgstr "" + +#: rc.cpp:456 +#, no-c-format +msgid "Rewind to beginning" +msgstr "" + +#: rc.cpp:459 +#, no-c-format +msgid "" +"Moves the pointer position to the start of the composition. (This may mean " +"going forwards if the pointer is currently before the start.)" +msgstr "" + +#: rc.cpp:463 +#, no-c-format +msgid "Play/Pause" +msgstr "" + +#: rc.cpp:466 +#, no-c-format +msgid "" +"Plays from the current pointer position, or pauses playback if already in " +"progress." +msgstr "" + +#: rc.cpp:473 +#, no-c-format +msgid "Stops playback or recording." +msgstr "" + +#: rc.cpp:477 +#, no-c-format +msgid "Fast forward" +msgstr "" + +#: rc.cpp:480 +#, no-c-format +msgid "Moves the current pointer position forwards one bar." +msgstr "" + +#: rc.cpp:484 +#, no-c-format +msgid "Fast forward to end" +msgstr "" + +#: rc.cpp:487 +#, no-c-format +msgid "" +"Moves the pointer position to the end of the composition. (This may mean " +"going backwards if the pointer is already beyond the end.)" +msgstr "" + +#: rc.cpp:491 +#, no-c-format +msgid "Display time to end" +msgstr "" + +#: ../docs/en/tips.cpp:3 +msgid "" +"

                  To configure a track to play using a particular instrument:

                  \n" +"  * click on the track label and hold a moment
                  \n" +"  * select an output device
                  \n" +"  * select one of that device's available instruments (#1 - #16)" +"
                  \n" +"  * adjust that instrument's output channel, program, bank, and\n" +"controllers via the instrument parameters box\n" +msgstr "" + +#: ../docs/en/tips.cpp:13 +msgid "" +"

                  ...that Rosegarden has an autosave feature?

                  \n" +"You can select your autosave interval from Settings->Configure\n" +"Rosegarden.

                  \n" +"When something goes awry, such as a power outage or a Rosegarden crash\n" +"(unfortunately, it happens...) simply load the file you were working on, and " +"you'll be given the\n" +"option to load the autosaved version, or the unmodified original.

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:23 +msgid "" +"

                  \n" +"...that you can save the current document as your default studio by using\n" +"Composition -> Studio -> Save Current Document as Default Studio?\n" +msgstr "" + +#: ../docs/en/tips.cpp:30 +msgid "" +"

                  ...that your default studio is a complete Rosegarden composition that " +"gets\n" +"loaded every time you create a new document or import a MIDI file?

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:36 +msgid "" +"

                  ...that your default studio can contain instrument assignments, document " +"properties, LilyPond headers,\n" +"and many other things?

                  The default studio is a complete Rosegarden " +"composition, so it can contain anything that you may wish to have available " +"in each\n" +"new document you create.

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:43 +msgid "" +"

                  ...that Rosegarden will detect and create a default connection for ALSA " +"soft\n" +"synth applications that are started after Rosegarden is already running?\n" +msgstr "" + +#: ../docs/en/tips.cpp:49 +msgid "" +"

                  ...that you can make your default studio override that in every " +"Rosegarden composition you load?

                  If your studio setup does not change " +"very often, and you would prefer for\n" +"the settings in your default studio to take precedence over whatever\n" +"studio is saved with any files you happen to load, you can make your studio " +"the default for everything using Settings -> Configure Rosegarden ->\n" +"MIDI -> Always use default studio when loading files.

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:57 +msgid "" +"

                  If you have accidentally recorded a segment so short that it does not\n" +"appear on the canvas, which you can only hear during subsequent recording\n" +"sessions, you can gain access to it by using Composition -> Change\n" +"Composition Start and End and then setting the composition to start at a " +"negative number.

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:65 +msgid "" +"

                  ...that if you place a note at the wrong pitch using the notation or " +"matrix editor, you can move it one semitone at a time with the up and down " +"arrow keys on your keyboard?

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:70 +msgid "" +"

                  ...that you can toggle stem directions in the notation editor by " +"selecting\n" +"one or more notes and using Ctrl-PageUp and Ctrl-PageDown?

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:76 +msgid "" +"

                  ...that you can change the accidental used for a note in the notation " +"editor (without changing the pitch of the note) by selecting\n" +"it and using the up and down arrow keys with both Ctrl and Shift pressed?\n" +msgstr "" + +#: ../docs/en/tips.cpp:82 ../docs/en/tips.cpp:93 +msgid "" +"

                  ...that you can hold down the Shift key while repositioning segments on " +"the\n" +"segment canvas in order to avoid the \"snap-to\" effect and exert finer " +"control?

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:88 +msgid "" +"

                  ...that you can use the arrow tool to draw, move, and resize segments and " +"events as well as to select them?

                  Drag a segment or event block to " +"move it, drag the right edge of a block to resize it, and drag with the " +"middle mouse button pressed to draw a new segment or event.

                  (Of " +"course, the dedicated draw, move and resize tools are still quicker for " +"repeated operations.)

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:99 +msgid "" +"

                  ...that you can hold down the Shift key while repositioning or resizing " +"events in the\n" +"matrix view in order to avoid the \"snap-to\" effect and exert finer control?" +"

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:105 +msgid "" +"

                  ...that you can edit multiple segments on multiple tracks simultaneously " +"in\n" +"the notation editor? Simply select the segments, then use Edit -> Open " +"in Notation Editor.

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:111 +msgid "" +"

                  ...that Rosegarden can export files for use by LilyPond, the high-quality " +"score typesetting system?

                  \n" +"From the File menu, navigate to Export -> Export LilyPond File

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:117 +msgid "" +"

                  ...that Rosegarden can print via LilyPond, the high-quality score " +"typesetting system?

                  \n" +"From the File menu, navigate to Preview with LilyPond. The " +"file\n" +"will be exported, rendered, and a preview will appear in KPDF, or one of\n" +"several other PDF viewers, where it can then be printed as well.

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:125 +msgid "" +"

                  ...that if you use the quantizer from within the notation view, you can " +"tell it to quantize only the timing used for notation -- making it possible " +"to have good looking notation and a human MIDI performance?

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:130 +msgid "" +"

                  ...that you can change segment labels using the controls on the Segment " +"Parameters box\n" +"in the main window?

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:136 +msgid "" +"

                  ...that the number of tracks in new documents is based on the contents " +"of\n" +"your autoload.rg file?\n" +"

                  \n" +"Whether you prefer to start with three tracks or 43, create a document that\n" +"contains the desired number of tracks, plus any other studio or document " +"properties settings\n" +"you wish to configure, and use Composition -> Studio -> Save Current " +"Document as Default\n" +"Studio to make this your new default.

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:147 +msgid "" +"

                  ...that you can change the name of a track by double clicking on the " +"label? (The\n" +"label must be visible for this to work.)

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:153 +msgid "" +"

                  ...that you can configure what happens when you double-click on a segment?" +"

                  Go to Settings -> Configure Rosegarden and choose your " +"preferred editing window under the Behaviour tab.

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:158 +msgid "" +"

                  ...that Rosegarden is being developed as a community effort with\n" +"contributions from around the world?

                  \n" +"The four most active developers live in London (England), Cannes, " +"Barcelona,\n" +"and... Christiansburg? (Christiansburg is a town of about 50,000 in\n" +"southwestern Virginia, USA.)

                  \n" +"We have had contributors from elsewhere in the US, UK, Spain, Mexico, " +"Argentina, Germany,\n" +"Sweden, Russia, Japan, Finland, and Italy, just to name a few...

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:169 +msgid "" +"

                  ...that Rosegarden is available in Spanish, French, German, Russian, " +"Welsh, Swedish, Italian and Estonian\n" +"translations? (Just to name a few.)

                  \n" +"If you're interested in translating Rosegarden to another language, drop us " +"a\n" +"line at rosegarden-devel@lists.sourceforge.net.

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:177 +msgid "" +"

                  ...that you can change the total number of bars in the composition via\n" +"Composition -> Change Composition Start and End?

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:183 +msgid "" +"

                  ...that you can see the difference between performance and display " +"duration\n" +"of duration-quantized notes in the notation editor?

                  \n" +"Use Settings -> Show Raw Note Ruler to turn on this handy\n" +"feature.

                  \n" +"Note that this feature does not work in page layout view.

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:192 +msgid "" +"

                  ...that you can add tempo and time-signature changes by double-clicking " +"on the values displayed in the transport window or tempo rulers?

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:197 +msgid "" +"

                  ...that the transport window can display musical time, sample frame " +"count, and a visual metronome as well as real time?

                  Just click on the " +"small button at the extreme top left of the window.

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:202 +msgid "" +"

                  ...that you can select all notes of a particular pitch in the matrix " +"view, by shift-clicking on that pitch on the piano keyboard at the left?" +"

                  If you shift-click-drag, you can select whole ranges too.

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:207 +msgid "" +"

                  ...that you can set a loop in the main window by clicking-and-dragging on " +"the time ruler with Shift pressed?

                  (If the ruler isn't visible, use " +"Settings -> Show Rulers.)

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:212 +msgid "" +"

                  ...that if you're editing a section in the matrix or notation view, you " +"can\n" +"set that section to loop while you edit it?

                  Select it and use " +"Tools ->\n" +"Local Cursor -> Set Loop to Selection, then hit Play.



                  \n" +"This feature does not work quite as well for compositions that include " +"sampled\n" +"audio.\n" +msgstr "" + +#: ../docs/en/tips.cpp:221 +msgid "" +"

                  ...if you have more than one note or controller event at the same time, " +"you\n" +"can use the [ and ] keys to flip the stack of events around on the " +"controller\n" +"and velocity rulers in order to bring the item you wish to adjust into\n" +"focus.

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:229 +msgid "" +"

                  ...that the notation view shows you notes using their display duration, " +"while the\n" +"matrix allows you to edit their performance duration?

                  \n" +"Be careful with tied notes in the matrix. It is not apparent that they " +"are\n" +"tied, and if you split up a pair of tied notes, subsequent notation views " +"will\n" +"be confused and unhappy. This is an old bug that has been on our TODO list\n" +"for years. Sorry about that, folks. Patches welcome.\n" +"

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:240 +msgid "" +"

                  If you're working with a human performance and you need to insert some " +"new\n" +"notes, these new notes will sound for their entire written duration. To " +"blend\n" +"these new notes into a human performance, select them, then use Adjust -> " +"Interpret... \n" +"from the notation view to interpret any marks and massage their " +"performance\n" +"durations to something less mechanical.

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:249 +msgid "" +"

                  ...that Rosegarden can export certain things to LilyPond that it cannot " +"yet\n" +"display within its own native interface?

                  These new directives can be " +"inserted\n" +"via the T text insert tool in the notation view.

                  \n" +"Load the example files\n" +"lilypond-alternative-endings.rg and lilypond-directives.rg for " +"a\n" +"demonstration of how to use the new exportable directives.

                  \n" +"Use File -> Preview with\n" +"LilyPond to see what they look like on the exported page.

                  \n" +"Be sure to turn on\n" +"Settings -> Show LilyPond Directives and Show Annotations " +"within\n" +"the notation view.

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:264 +msgid "" +"

                  ...that Rosegarden has track parameters allowing you to Create " +"segments with: certain\n" +"properties by default?

                  You can pre-select the clef, transposition, " +"colour, and specify\n" +"the highest and lowest playable notes (notes outside this range display in\n" +"red by default). Then draw a segment with the pencil, or record one, and " +"any\n" +"new segments created on this track will take these properties as segment\n" +"parameters.

                  \n" +"These parameters do not apply to audio tracks.

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:275 +msgid "" +"

                  ...that Rosegarden has a database of preset parameters describing more " +"than 300\n" +"musical instruments from the real world, grouped into several convenient\n" +"categories?

                  Each preset contains a clef, transposition, and playable " +"range\n" +"suggestions for both amateur and professional players.

                  Click the\n" +"Load button in the new track parameters box to get started! (If " +"you\n" +"do not see a Load button, be sure your parameter panel is set for\n" +"tabbed mode, rather than stacked mode.)

                  (Special thanks to " +"Magnus\n" +"Johansson for assembling this extraordinary database.)

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:287 +msgid "" +"

                  ...that when exporting to Lilypond, you can merge tracks that have the " +"same name onto a single staff?

                  For example, if there are three voices " +"in a single part, write each\n" +"voice as an independent segment/staff, each on a separate track. Give all\n" +"three tracks the same name, and select [x] Merge tracks that have the " +"same\n" +"name from the options dialog that appears when you export to, or " +"preview\n" +"with LilyPond.

                  \n" +"The tracks must have a non-default name for this to work.

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:297 +msgid "" +" \t \n" +"

                  ...that you can use the mouse wheel to scroll up and down, scroll left " +"and right, and zoom in and out?

                  Just roll the wheel to scroll up or " +"down. Hold Alt as well to scroll left or right, or hold Ctrl to zoom in and " +"out.

                  \t \n" +msgstr "" + +#: ../docs/en/tips.cpp:303 +msgid "" +" \t \n" +"

                  ...that you can time-stretch an audio segment -- stretching or squashing " +"a\n" +"sample to a different duration without changing its pitch -- just by\n" +"dragging its right edge with the Ctrl key pressed?

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:311 +msgid "" +" \t \n" +"

                  ...that you can add audio to your Rosegarden composition just by dragging " +"an audio file from your file manager and dropping it on the Rosegarden " +"segment canvas? (Make sure you drop it on an audio track!)

                  You can " +"also drop audio files from Rosegarden's audio file manager window onto the " +"segment canvas, and from other programs onto the audio file manager.

                  \n" +msgstr "" + +#: ../docs/en/tips.cpp:317 +msgid "" +" \t \n" +"

                  ...that you can set the tempo to match the duration of an audio segment " +"if you know it's an exact number of bars or beats long?

                  Just select " +"the audio segment and use Composition -> Tempo and Time Signature -> Set " +"Tempo to Audio Segment Duration.

                  \n" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:1 +msgid "Feta Pixmaps" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:2 ../data/fonts/mappings/fonts.cpp:7 +msgid "GNU Lilypond" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:3 ../data/fonts/mappings/fonts.cpp:8 +msgid "Copyright (c) 1997--2003 Han-Wen Nienhuys and Jan Nieuwenhuizen" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:4 ../data/fonts/mappings/fonts.cpp:9 +#: ../data/fonts/mappings/fonts.cpp:14 ../data/fonts/mappings/fonts.cpp:19 +#: ../data/fonts/mappings/fonts.cpp:24 ../data/fonts/mappings/fonts.cpp:29 +#: ../data/fonts/mappings/fonts.cpp:34 ../data/fonts/mappings/fonts.cpp:39 +#: ../data/fonts/mappings/fonts.cpp:44 ../data/fonts/mappings/fonts.cpp:49 +#: ../data/fonts/mappings/fonts.cpp:54 +msgid "Chris Cannam" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:5 ../data/fonts/mappings/fonts.cpp:40 +msgid "pixmap" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:6 +msgid "Feta" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:10 ../data/fonts/mappings/fonts.cpp:15 +#: ../data/fonts/mappings/fonts.cpp:20 ../data/fonts/mappings/fonts.cpp:25 +#: ../data/fonts/mappings/fonts.cpp:30 ../data/fonts/mappings/fonts.cpp:35 +#: ../data/fonts/mappings/fonts.cpp:45 ../data/fonts/mappings/fonts.cpp:50 +#: ../data/fonts/mappings/fonts.cpp:55 +msgid "scalable" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:11 +msgid "Fughetta" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:12 +msgid "" +"Created by Blake Hodgetts; freely redistributable. See http://www.efn.org/" +"~bch/aboutfonts.html" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:13 +msgid "Copyright 1995-1999 Blake Hodgetts" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:16 +msgid "Inkpen" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:17 +msgid "Inkpen is part of Sibelius, but other fonts may use the same mappings." +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:18 ../data/fonts/mappings/fonts.cpp:28 +msgid "Copyright Sibelius Software Ltd" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:21 +msgid "Maestro" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:22 +msgid "Maestro is part of Finale, but other fonts use the same mappings." +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:23 ../data/fonts/mappings/fonts.cpp:33 +msgid "Copyright Coda Inc" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:27 +msgid "Opus is part of Sibelius, but other fonts may use the same mappings." +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:31 +msgid "Petrucci" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:32 +msgid "Petrucci is part of Finale, but other fonts use the same mappings." +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:36 +msgid "RG21" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:37 +msgid "Rosegarden 2.1" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:38 +msgid "Copyright (c) 1994--2001 Chris Cannam" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:41 +msgid "Sonata" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:42 +msgid "Adobe" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:43 +msgid "Copyright Adobe Inc" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:46 +msgid "Steinberg" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:47 +msgid "The Steinberg Notation font is part of Cubase." +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:48 +msgid "Copyright Steinberg Inc" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:51 +msgid "Xinfonia" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:52 +msgid "xemo.org" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:53 +msgid "Copyright 2001-2003 Xemus Software LLC" +msgstr "" + +#: ../data/styles/styles.cpp:1 +msgid "Classical" +msgstr "" + +#: ../data/styles/styles.cpp:2 +msgid "Cross" +msgstr "" + +#: ../data/styles/styles.cpp:3 +msgid "Mensural" +msgstr "" + +#: ../data/styles/styles.cpp:4 +msgid "Triangle" +msgstr "" + +#~ msgid "In a different color" +#~ msgstr "In a different colour" + +#~ msgid "Write bar checks at end of measures" +#~ msgstr "Write bar check at the end of each bar" diff --git a/po/es.po b/po/es.po new file mode 100644 index 0000000..810c8b0 --- /dev/null +++ b/po/es.po @@ -0,0 +1,11539 @@ +# translation of es.po to +# This file is distributed under the same license as the PACKAGE package. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. +# +# Pedro Lopez-Cabanillas , 2003, 2004, 2007. +# D. Michael McIntyre , 2003, 2004, 2006. +# Marcos Guglielmetti , 2005. +# D. Michael McIntyre , 2008. +msgid "" +msgstr "" +"Project-Id-Version: es\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-04-24 18:19-0400\n" +"PO-Revision-Date: 2008-04-21 11:59-0400\n" +"Last-Translator: D. Michael McIntyre \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#: ../src/gui/dialogs/RescaleDialog.cpp:51 rc.cpp:192 rc.cpp:312 +#, no-c-format +msgid "Rescale" +msgstr "Cambiar de escala" + +#: ../src/gui/dialogs/RescaleDialog.cpp:56 +msgid "Duration of selection" +msgstr "Duración de la selección" + +#: ../src/gui/dialogs/RescaleDialog.cpp:62 +msgid "Adjust times of following events accordingly" +msgstr "" +"Ajustar los tiempos de los siguientes eventos sin crear superposiciones ni " +"vacíos " + +#: ../src/gui/dialogs/PitchDialog.cpp:45 +#: ../src/gui/dialogs/RescaleDialog.cpp:72 +#: ../src/gui/dialogs/TimeDialog.cpp:51 ../src/gui/dialogs/TimeDialog.cpp:68 +#: ../src/gui/studio/BankEditorDialog.cpp:109 +msgid "Reset" +msgstr "Reiniciar" + +#: ../src/commands/segment/SegmentSplitByPitchCommand.cpp:46 +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:46 +msgid "Split by Pitch" +msgstr "Dividir por tono" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:54 +msgid "Starting split pitch" +msgstr "Tono de inicio de división" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:57 +msgid "Range up and down to follow music" +msgstr "Rango superior e inferior para seguir la música" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:63 +msgid "Duplicate non-note events" +msgstr "Duplicar eventos distintos a notas" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:66 +msgid "Clef handling:" +msgstr "Gestión de claves:" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:69 +msgid "Leave clefs alone" +msgstr "Dejar las claves como están" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:70 +msgid "Guess new clefs" +msgstr "Adivinar nuevas claves" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:71 +msgid "Use treble and bass clefs" +msgstr "Usar claves de Soprano y Bajo" + +#: ../src/gui/dialogs/DocumentConfigureDialog.cpp:64 +msgid "Document Properties" +msgstr "Propiedades del Documento" + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:45 +#: ../src/gui/editors/notation/NotationView.cpp:6048 +msgid "Make Ornament" +msgstr "Crear Ornamento" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:183 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:179 +#: ../src/gui/dialogs/EventEditDialog.cpp:128 +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:49 +#: ../src/gui/studio/DeviceEditorDialog.cpp:74 +#: ../src/gui/studio/NameSetEditor.cpp:72 +#: ../src/gui/widgets/ColourTable.cpp:51 +msgid "Name" +msgstr "Nombre" + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:51 +msgid "" +"The name is used to identify both the ornament\n" +"and the triggered segment that stores\n" +"the ornament's notes." +msgstr "" +"El nombre se utiliza para identificar tanto el ornamento\n" +"como el segmento activado que almacena\n" +"las notas del ornamento." + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:54 +msgid "Name: " +msgstr "Nombre: " + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:57 +#: ../src/gui/editors/eventlist/EventView.cpp:717 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:92 +msgid "Base pitch" +msgstr "Altura base" + +#: ../src/gui/dialogs/TextEventDialog.cpp:57 +#: ../src/gui/editors/eventlist/EventView.cpp:140 +msgid "Text" +msgstr "Texto" + +#: ../src/gui/dialogs/TextEventDialog.cpp:66 +msgid "Specification" +msgstr "Especificación" + +#: ../src/gui/dialogs/TextEventDialog.cpp:68 +msgid "Preview" +msgstr "Previsualización" + +#: ../src/gui/dialogs/TextEventDialog.cpp:72 +msgid "Text: " +msgstr "Texto " + +#: ../src/gui/dialogs/TextEventDialog.cpp:79 +msgid "Style: " +msgstr "Estilo: " + +#: ../src/gui/dialogs/TextEventDialog.cpp:90 +msgid "Dynamic" +msgstr "Dinámica" + +#: ../src/gui/dialogs/TextEventDialog.cpp:93 +msgid "Direction" +msgstr "Dirección" + +#: ../src/gui/dialogs/TextEventDialog.cpp:96 +msgid "Local Direction" +msgstr "Dirección Local" + +#: ../src/gui/dialogs/TempoDialog.cpp:63 +#: ../src/gui/dialogs/TextEventDialog.cpp:99 +#: ../src/gui/editors/tempo/TempoView.cpp:91 +msgid "Tempo" +msgstr "Tempo" + +#: ../src/gui/dialogs/TextEventDialog.cpp:102 +msgid "Local Tempo" +msgstr "Tempo Local" + +#: ../src/gui/dialogs/TextEventDialog.cpp:105 +msgid "Lyric" +msgstr "Letra" + +#: ../src/gui/dialogs/TextEventDialog.cpp:108 +#: ../src/gui/editors/notation/NotationView.cpp:4242 +msgid "Chord" +msgstr " Acorde" + +#: ../src/gui/dialogs/TextEventDialog.cpp:111 +msgid "Annotation" +msgstr "Anotación" + +#: ../src/gui/dialogs/TextEventDialog.cpp:114 +msgid "LilyPond Directive" +msgstr "Directriz para LilyPond" + +#: ../src/gui/dialogs/TextEventDialog.cpp:138 +msgid "Verse: " +msgstr "Estrofa: " + +#: ../src/gui/dialogs/TextEventDialog.cpp:148 +msgid "Dynamic: " +msgstr "Dinámica: " + +#: ../src/gui/dialogs/TextEventDialog.cpp:152 +msgid "ppp" +msgstr "ppp" + +#: ../src/gui/dialogs/TextEventDialog.cpp:153 +msgid "pp" +msgstr "pp" + +#: ../src/gui/dialogs/TextEventDialog.cpp:154 +msgid "p" +msgstr "p" + +#: ../src/gui/dialogs/TextEventDialog.cpp:155 +msgid "mp" +msgstr "mp" + +#: ../src/gui/dialogs/TextEventDialog.cpp:156 +msgid "mf" +msgstr "mf" + +#: ../src/gui/dialogs/TextEventDialog.cpp:157 +msgid "f" +msgstr "f" + +#: ../src/gui/dialogs/TextEventDialog.cpp:158 +msgid "ff" +msgstr "ff" + +#: ../src/gui/dialogs/TextEventDialog.cpp:159 +msgid "fff" +msgstr "fff" + +#: ../src/gui/dialogs/TextEventDialog.cpp:160 +msgid "rfz" +msgstr "rfz" + +#: ../src/gui/dialogs/TextEventDialog.cpp:161 +msgid "sf" +msgstr "sf" + +#: ../src/gui/dialogs/TextEventDialog.cpp:165 +msgid "Direction: " +msgstr "Dirección:" + +#: ../src/gui/dialogs/TextEventDialog.cpp:174 +msgid " ," +msgstr " ," + +#: ../src/gui/dialogs/TextEventDialog.cpp:175 +msgid "D.C. al Fine" +msgstr "D.C. al Fine" + +#: ../src/gui/dialogs/TextEventDialog.cpp:176 +msgid "D.S. al Fine" +msgstr "D.S. al Fine" + +#: ../src/gui/dialogs/TextEventDialog.cpp:177 +msgid "Fine" +msgstr "Fine" + +#: ../src/gui/dialogs/TextEventDialog.cpp:178 +msgid "D.S. al Coda" +msgstr "D.S. al Coda" + +#: ../src/gui/dialogs/TextEventDialog.cpp:179 +msgid "to Coda" +msgstr "al Coda" + +#: ../src/gui/dialogs/TextEventDialog.cpp:180 +msgid "Coda" +msgstr "Coda" + +#: ../src/gui/dialogs/TextEventDialog.cpp:184 +msgid "Local Direction: " +msgstr "Dirección Local: " + +#: ../src/gui/dialogs/TextEventDialog.cpp:188 +msgid "accel." +msgstr "accel." + +#: ../src/gui/dialogs/TextEventDialog.cpp:189 +msgid "ritard." +msgstr "ritard." + +#: ../src/gui/dialogs/TextEventDialog.cpp:190 +msgid "ralletando" +msgstr "ralletando" + +#: ../src/gui/dialogs/TextEventDialog.cpp:191 +msgid "a tempo" +msgstr "a tempo" + +#: ../src/gui/dialogs/TextEventDialog.cpp:192 +msgid "legato" +msgstr "legato" + +#: ../src/gui/dialogs/TextEventDialog.cpp:193 +msgid "simile" +msgstr "simile" + +#: ../src/gui/dialogs/TextEventDialog.cpp:194 +msgid "pizz." +msgstr "pizz." + +#: ../src/gui/dialogs/TextEventDialog.cpp:195 +msgid "arco" +msgstr "arco" + +#: ../src/gui/dialogs/TextEventDialog.cpp:196 +msgid "non vib." +msgstr "non vib." + +#: ../src/gui/dialogs/TextEventDialog.cpp:197 +msgid "sul pont." +msgstr "sul pont." + +#: ../src/gui/dialogs/TextEventDialog.cpp:198 +#: ../src/gui/dialogs/TextEventDialog.cpp:200 +msgid "sul tasto" +msgstr "sul tasto" + +#: ../src/gui/dialogs/TextEventDialog.cpp:199 +msgid "con legno" +msgstr "con legno" + +#: ../src/gui/dialogs/TextEventDialog.cpp:201 +msgid "sul G" +msgstr "sul G" + +#: ../src/gui/dialogs/TextEventDialog.cpp:202 +msgid "ordinario" +msgstr "ordinario" + +#: ../src/gui/dialogs/TextEventDialog.cpp:203 +msgid "Muta in " +msgstr "Muta in " + +#: ../src/gui/dialogs/TextEventDialog.cpp:204 +msgid "volti subito " +msgstr "volti subito " + +#: ../src/gui/dialogs/TextEventDialog.cpp:205 +msgid "soli" +msgstr "soli" + +#: ../src/gui/dialogs/TextEventDialog.cpp:206 +msgid "div." +msgstr "div." + +#: ../src/gui/dialogs/TextEventDialog.cpp:210 +msgid "Tempo: " +msgstr "Tempo: " + +#: ../src/gui/dialogs/TextEventDialog.cpp:214 +#: ../src/gui/dialogs/TextEventDialog.cpp:238 +msgid "Grave" +msgstr "Grave" + +#: ../src/gui/dialogs/TextEventDialog.cpp:215 +#: ../src/gui/dialogs/TextEventDialog.cpp:239 +msgid "Adagio" +msgstr "Adagio" + +#: ../src/gui/dialogs/TextEventDialog.cpp:216 +#: ../src/gui/dialogs/TextEventDialog.cpp:240 +msgid "Largo" +msgstr "Largo" + +#: ../src/gui/dialogs/TextEventDialog.cpp:217 +#: ../src/gui/dialogs/TextEventDialog.cpp:241 +msgid "Lento" +msgstr "Lento" + +#: ../src/gui/dialogs/TextEventDialog.cpp:218 +#: ../src/gui/dialogs/TextEventDialog.cpp:242 +msgid "Andante" +msgstr "Andante" + +#: ../src/gui/dialogs/TextEventDialog.cpp:219 +#: ../src/gui/dialogs/TextEventDialog.cpp:243 +msgid "Moderato" +msgstr "Moderato" + +#: ../src/gui/dialogs/TextEventDialog.cpp:220 +#: ../src/gui/dialogs/TextEventDialog.cpp:244 +msgid "Allegretto" +msgstr "Allegretto" + +#: ../src/gui/dialogs/TextEventDialog.cpp:221 +#: ../src/gui/dialogs/TextEventDialog.cpp:245 +msgid "Allegro" +msgstr "Allegro" + +#: ../src/gui/dialogs/TextEventDialog.cpp:222 +#: ../src/gui/dialogs/TextEventDialog.cpp:246 +msgid "Vivace" +msgstr "Vivace" + +#: ../src/gui/dialogs/TextEventDialog.cpp:223 +#: ../src/gui/dialogs/TextEventDialog.cpp:247 +msgid "Presto" +msgstr "Presto" + +#: ../src/gui/dialogs/TextEventDialog.cpp:224 +#: ../src/gui/dialogs/TextEventDialog.cpp:248 +msgid "Prestissimo" +msgstr "Prestissimo" + +#: ../src/gui/dialogs/TextEventDialog.cpp:225 +#: ../src/gui/dialogs/TextEventDialog.cpp:249 +msgid "Maestoso" +msgstr "Maestoso" + +#: ../src/gui/dialogs/TextEventDialog.cpp:226 +#: ../src/gui/dialogs/TextEventDialog.cpp:250 +msgid "Sostenuto" +msgstr "Sostenuto" + +#: ../src/gui/dialogs/TextEventDialog.cpp:227 +#: ../src/gui/dialogs/TextEventDialog.cpp:251 +msgid "Tempo Primo" +msgstr "Tempo Primo" + +#: ../src/gui/dialogs/TextEventDialog.cpp:234 +msgid "Local Tempo: " +msgstr "Tempo Local: " + +#: ../src/gui/dialogs/TextEventDialog.cpp:255 +msgid "Directive: " +msgstr "Directriz: " + +#: ../src/gui/dialogs/TextEventDialog.cpp:312 +msgid "Example" +msgstr "Ejemplo" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:65 +msgid "Event Filter" +msgstr "Filtro de Eventos" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:86 +msgid "Note Events" +msgstr "Eventos de Nota" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:90 +msgid "lowest:" +msgstr "inferior:" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:93 +msgid "highest:" +msgstr "superior:" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:96 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:141 +#: ../src/gui/widgets/PitchChooser.cpp:53 +msgid "Pitch:" +msgstr "Altura:" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:99 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:163 +msgid "Velocity:" +msgstr "Velocidad:" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:102 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:129 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:257 +msgid "Duration:" +msgstr "Duración:" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:107 +#: ../src/gui/dialogs/EventFilterDialog.cpp:114 +#: ../src/gui/dialogs/EventFilterDialog.cpp:121 +msgid "include" +msgstr "incluir" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:108 +#: ../src/gui/dialogs/EventFilterDialog.cpp:115 +#: ../src/gui/dialogs/EventFilterDialog.cpp:122 +msgid "exclude" +msgstr "excluir" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:136 +#: ../src/gui/dialogs/EventFilterDialog.cpp:155 +#: ../src/gui/editors/eventlist/EventView.cpp:172 +#: ../src/gui/editors/eventlist/EventView.cpp:179 +#: ../src/gui/editors/eventlist/EventView.cpp:186 +msgid "edit" +msgstr "editar" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:141 +#: ../src/gui/dialogs/EventFilterDialog.cpp:157 +msgid "choose a pitch using a staff" +msgstr "elegir una altura de nota usando un pentagrama" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:182 +#: ../src/gui/dialogs/EventFilterDialog.cpp:188 +msgid "longest" +msgstr "más larga" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:200 +msgid "Include all" +msgstr "Incluir todo" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:203 +msgid "Include entire range of values" +msgstr "Incluir el rango de valores completo" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:206 +msgid "Exclude all" +msgstr "Excluir todo" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:209 +msgid "Exclude entire range of values" +msgstr "Excluir el rango de valores completo" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:233 +#: ../src/gui/dialogs/EventFilterDialog.cpp:234 +msgid "shortest" +msgstr "más corta" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:333 +msgid "Lowest pitch" +msgstr "Nota más grave" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:343 +msgid "Highest pitch" +msgstr "Nota más aguda" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:56 +#: ../src/gui/editors/notation/NotationView.cpp:1619 +#: ../src/gui/editors/notation/NotationView.cpp:6088 +msgid "Use Ornament" +msgstr "Usar Ornamento" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:260 +#: ../src/gui/configuration/NotationConfigurationPage.h:64 +#: ../src/gui/configuration/NotationConfigurationPage.h:65 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:63 +msgid "Notation" +msgstr "Partitura" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:68 +msgid "Display as: " +msgstr "Mostrar como: " + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:84 +msgid "Trill" +msgstr "Trino" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:84 +msgid "Trill with line" +msgstr "Trino con línea" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:84 +msgid "Trill line only" +msgstr "Línea de trino sólamente" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:85 +msgid "Turn" +msgstr "Grupeto" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:85 +msgid "Mordent" +msgstr "Mordente" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:85 +msgid "Inverted mordent" +msgstr "Mordente Invertido" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:86 +msgid "Long mordent" +msgstr "Mordente largo" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:86 +msgid "Long inverted mordent" +msgstr "Mordente largo invertido" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:94 +msgid "Text mark" +msgstr "Marca de texto" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:98 +msgid " Text: " +msgstr " Texto: " + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:104 +msgid "Performance" +msgstr "Interpretación" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:109 +msgid "Perform using triggered segment: " +msgstr "Interpretar usando segmento activado: " + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:75 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:123 +msgid "Perform with timing: " +msgstr "Interpretar con tiempo: " + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:81 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:129 +msgid "As stored" +msgstr "Como se almacenó" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:82 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:130 +msgid "Truncate if longer than note" +msgstr "Truncar si es más largo que la nota" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:83 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:131 +msgid "End at same time as note" +msgstr "Finalizar al mismo tiempo que la nota" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:84 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:132 +msgid "Stretch or squash segment to note duration" +msgstr "Estirar o comprimir el segmento a la duración de la nota" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:86 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:134 +msgid "Adjust pitch to note" +msgstr "Ajustar altura de nota" + +#: ../src/gui/dialogs/PitchPickerDialog.cpp:40 +msgid "Pitch Selector" +msgstr "Selector de Altura de Nota" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:44 +msgid "Audio Segment Duration" +msgstr "Duración del Segmento de Audio" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:50 +msgid "The selected audio segment contains:" +msgstr "El segmento de audio seleccionado contiene:" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:59 +msgid "beat(s)" +msgstr "golpe(s)" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:60 +msgid "bar(s)" +msgstr "compas(es)" + +#: ../src/gui/dialogs/TupletDialog.cpp:51 +msgid "Tuplet" +msgstr "Grupo irregular" + +#: ../src/gui/dialogs/TupletDialog.cpp:58 +msgid "New timing for tuplet group" +msgstr "Nuevo tiempo para grupo irregular" + +#: ../src/gui/dialogs/TupletDialog.cpp:76 +msgid "Play " +msgstr "Ejecutar" + +#: ../src/gui/dialogs/TupletDialog.cpp:98 +msgid "in the time of " +msgstr "en el tiempo de " + +#: ../src/gui/dialogs/TupletDialog.cpp:104 +msgid "Timing is already correct: update display only" +msgstr "El tiempo ya es correcto: actualizar sólo representación" + +#: ../src/gui/dialogs/TupletDialog.cpp:114 +msgid "Timing calculations" +msgstr "Calculos de tiempo" + +#: ../src/gui/dialogs/TupletDialog.cpp:120 +msgid "Selected region:" +msgstr "Región seleccionada:" + +#: ../src/gui/dialogs/TupletDialog.cpp:129 +msgid "Group with current timing:" +msgstr "Agrupar con el tiempo actual:" + +#: ../src/gui/dialogs/TupletDialog.cpp:135 +msgid "Group with new timing:" +msgstr "Agrupar con nuevo tiempo:" + +#: ../src/gui/dialogs/TupletDialog.cpp:141 +msgid "Gap created by timing change:" +msgstr "Hueco creado por cambio de tiempo:" + +#: ../src/gui/dialogs/TupletDialog.cpp:149 +msgid "Unchanged at end of selection:" +msgstr "Sin cambio al final de la selección:" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:63 rc.cpp:372 +#, no-c-format +msgid "Metronome" +msgstr "Metrónomo" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:77 +msgid "Metronome Instrument" +msgstr "Instrumento del Metrónomo" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:82 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:150 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:183 +#: ../src/gui/studio/DeviceEditorDialog.cpp:73 +#: ../src/gui/studio/DeviceManagerDialog.cpp:105 +#: ../src/gui/studio/DeviceManagerDialog.cpp:163 +#: ../src/gui/studio/RemapInstrumentDialog.cpp:66 +msgid "Device" +msgstr "Dispositivo" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:101 +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:89 +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:215 +#: ../src/gui/studio/DeviceEditorDialog.cpp:195 +#: ../src/gui/studio/DeviceEditorDialog.cpp:218 +#: ../src/gui/studio/DeviceEditorDialog.cpp:230 +#: ../src/gui/studio/DeviceManagerDialog.cpp:196 +#: ../src/gui/studio/DeviceManagerDialog.cpp:440 +#: ../src/gui/studio/DeviceManagerDialog.cpp:452 +msgid "No connection" +msgstr "Sin conexión" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:112 +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:111 +#: ../src/gui/editors/parameters/InstrumentParameterBox.cpp:53 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1209 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:159 +#: ../src/gui/general/PresetHandlerDialog.cpp:92 +#: ../src/gui/studio/MidiMixerWindow.cpp:204 +#: ../src/gui/studio/RemapInstrumentDialog.cpp:67 +msgid "Instrument" +msgstr "Instrumento" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:118 +msgid "Beats" +msgstr "Golpes" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:184 +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:123 +msgid "Resolution" +msgstr "Resolución" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:309 +#: ../src/gui/configuration/NotationConfigurationPage.cpp:139 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:205 +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:125 +#: ../src/gui/editors/matrix/MatrixView.cpp:2132 +#: ../src/gui/editors/notation/NotationView.cpp:1582 +#: ../src/gui/widgets/QuantizeParameters.cpp:128 +#: ../src/gui/widgets/QuantizeParameters.cpp:301 +msgid "None" +msgstr "Nada" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:126 +msgid "Bars only" +msgstr "Compases sólamente" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:127 +msgid "Bars and beats" +msgstr "Compases y partes" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:128 +msgid "Bars, beats, and divisions" +msgstr "Compases, partes y divisiones" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:132 +msgid "Bar velocity" +msgstr "Velocidad de Compás" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:139 +msgid "Beat velocity" +msgstr "Velocidad de Parte" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:146 +msgid "Sub-beat velocity" +msgstr "Velocidad de sub-parte" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:155 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:324 +msgid "Pitch" +msgstr "Altura" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:160 +msgid "for Bar" +msgstr "por cada Compás " + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:161 +msgid "for Beat" +msgstr "por cada División" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:162 +msgid "for Sub-beat" +msgstr "por cada Subdivisión" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:166 +msgid "Metronome Activated" +msgstr "Metrónomo Activado" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:167 +msgid "Playing" +msgstr "Tocando" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:168 +msgid "Recording" +msgstr "Grabando" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:46 +msgid "Choose Text Encoding" +msgstr "Seleccione un tipo de Codificación de Texto" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:50 +msgid "" +"\n" +"This file contains text in an unknown language encoding.\n" +"\n" +"Please select one of the following estimated text encodings\n" +"for use with the text in this file:\n" +msgstr "" +"\n" +"Este archivo contiene texto en un lenguaje de condificación desconocido.\n" +"\n" +"Por favor, seleccione una de las siguientes codificaciones de texto " +"estimadas\n" +"para usar con el texto en este archivo\n" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:61 +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:77 +msgid "Japanese Shift-JIS" +msgstr "Japanese Shift-JIS" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:62 +msgid "Unicode variable-width" +msgstr "Unicode variable-width" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:63 +msgid "Western Europe" +msgstr "Western Europe" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:64 +msgid "Western Europe + Euro" +msgstr "Western Europe + Euro" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:65 +msgid "Eastern Europe" +msgstr "Eastern Europe" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:66 +msgid "Southern Europe" +msgstr "Southern Europe" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:67 +msgid "Northern Europe" +msgstr "Northern Europe" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:68 +msgid "Cyrillic" +msgstr "Cirílico" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:69 +msgid "Arabic" +msgstr "Arabic" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:70 +msgid "Greek" +msgstr "Greek" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:71 +msgid "Hebrew" +msgstr "Hebrew" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:72 +msgid "Turkish" +msgstr "Turkish" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:73 +msgid "Nordic" +msgstr "Nordic" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:74 +msgid "Thai" +msgstr "Thai" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:75 +msgid "Baltic" +msgstr "Báltico" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:76 +msgid "Celtic" +msgstr "Celtic" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:78 +msgid "Traditional Chinese" +msgstr "Traditional Chinese" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:79 +msgid "Simplified Chinese" +msgstr "Simplified Chinese" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:80 +msgid "Russian" +msgstr "Russian" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:81 +msgid "Ukrainian" +msgstr "Ukrainian" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:82 +msgid "Tamil" +msgstr "Tamil" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:117 +#, c-format +msgid "Microsoft Code Page %1" +msgstr "Microsoft Code Page %1" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:123 +#: ../src/gui/editors/matrix/MatrixView.cpp:1490 +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:142 +msgid "" +"\n" +"Example text from file:" +msgstr "" +"\n" +"Ejemplo de texto perteneciente del archivo:" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:59 +#: ../src/gui/editors/tempo/TempoView.cpp:92 +msgid "Time Signature" +msgstr "Medida del Compás" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:82 +msgid "Time signature" +msgstr "Medida del compás" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:116 +msgid "Time where signature takes effect" +msgstr "Tiempo donde hace efecto el cambio" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:83 +#: ../src/gui/dialogs/TempoDialog.cpp:128 +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:129 +#: ../src/gui/general/PresetHandlerDialog.cpp:101 +msgid "Scope" +msgstr "Ámbito" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:141 +#, c-format +msgid "Insertion point is at start of measure %1." +msgstr "El punto de inserción está al comienzo del compás %1" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:145 +#, c-format +msgid "Insertion point is in the middle of measure %1." +msgstr "El punto de inserción está en medio del compás %1." + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:150 +msgid "Insertion point is at start of composition." +msgstr "El punto de inserción está al comienzo de la composición" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:155 +msgid "Start measure %1 here" +msgstr "Iniciar compás %1 aquí" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:159 +#, c-format +msgid "Change time from start of measure %1" +msgstr "Cambiar tiempo desde el comienzo del compás %1" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:166 +#, c-format +msgid "Time change will take effect at the start of measure %1." +msgstr "El cambio de tiempo tendrá efecto al comienzo del compás %1." + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:176 +msgid "Hide the time signature" +msgstr "Ocultar la medida del compás" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:181 +msgid "Hide the affected bar lines" +msgstr "Ocultar las barras de compás afectadas" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:186 +msgid "Show as common time" +msgstr "Mostrar como tiempo común" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:191 +msgid "Correct the durations of following measures" +msgstr "Corregir la duración de los siguientes compases" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:280 +msgid "Display as common time" +msgstr "Mostrar como tiempo común" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:284 +msgid "Display as cut common time" +msgstr "Mostrar como tiempo común" + +#: ../src/gui/dialogs/ConfigureDialog.cpp:66 +msgid "Configure Rosegarden" +msgstr "Configurar Rosegarden" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:53 +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:61 +msgid "Edit Marker" +msgstr "Editar Marcador" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:78 +msgid "Marker Time" +msgstr "Tiempo del Marcador" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:94 +msgid "Marker Properties" +msgstr "Propiedades del Marcador" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:100 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:554 +msgid "Text:" +msgstr "Texto:" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:104 +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:85 +msgid "Description:" +msgstr "Descripción:" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:46 +msgid "Merge File" +msgstr "Mezclar archivo" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:53 +msgid "Merge new file " +msgstr "Mezclar nuevo Archivo " + +#: ../src/gui/dialogs/FileMergeDialog.cpp:56 +msgid "At start of existing composition" +msgstr "Al comienzo de una composición existente" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:57 +msgid "From end of existing composition" +msgstr "Desde el final de una composición existente" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:61 +msgid "The file has different time signatures or tempos." +msgstr "El archivo tiene diferentes medidas de compás o tempos." + +#: ../src/gui/dialogs/FileMergeDialog.cpp:62 +msgid "Import these as well" +msgstr "Importar estos también" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:171 +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:44 +msgid "Sequencer status" +msgstr "Estado del Secuenciador" + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:48 +msgid "Sequencer status:" +msgstr "Estado del Secuenciador:" + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:50 +msgid "Status not available." +msgstr "Estado no disponible." + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:57 +msgid "Sequencer is not running or is not responding." +msgstr "El Secuenciador no está corriendo o no responde." + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:64 +msgid "Sequencer is not returning a valid status report." +msgstr "El Secuenciador no devuelve un informe de estado válido." + +#: ../src/gui/dialogs/AddTracksDialog.cpp:46 +msgid "Add Tracks" +msgstr "Añadir &Pistas" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:54 +msgid "How many tracks do you want to add?" +msgstr "¿Cuántas pistas desea añadir?" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:62 +msgid "Add tracks" +msgstr "añadir pistas" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:64 +msgid "At the top" +msgstr "Hacia arriba" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:65 +msgid "Above the current selected track" +msgstr "Arriba de la pista actual" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:66 +msgid "Below the current selected track" +msgstr "Abajo de la pista actual" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:67 +msgid "At the bottom" +msgstr "Al fondo" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:75 +msgid "Event Properties" +msgstr "Propiedades del Evento" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:81 +msgid "Event type:" +msgstr "Tipo de Evento" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:117 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:251 +#: ../src/gui/editors/segment/MarkerEditor.cpp:97 +msgid "Absolute time:" +msgstr "Tiempo absoluto:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:156 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:323 +msgid "Controller name:" +msgstr "Nombre del Controlador:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:157 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:530 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:562 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:563 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:602 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:631 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:267 +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:269 +#: ../src/gui/editors/segment/MarkerEditor.cpp:279 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:272 +#: ../src/gui/studio/AudioMixerWindow.cpp:388 +#: ../src/gui/studio/AudioMixerWindow.cpp:519 +#: ../src/gui/studio/AudioMixerWindow.cpp:683 +#: ../src/gui/studio/AudioMixerWindow.cpp:722 +#: ../src/gui/studio/AudioMixerWindow.cpp:904 +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:121 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:174 +msgid "Meta string:" +msgstr "Cadena Meta:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:179 +msgid "Load data" +msgstr "Cargar datos" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:181 +msgid "Save data" +msgstr "Guardar datos" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:192 +msgid "Notation Properties" +msgstr "Propiedades de edición de partitura" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:198 +msgid "Lock to changes in performed values" +msgstr "Atenerse a cambios en los valores interpretados" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:205 +msgid "Notation time:" +msgstr "Tiempo de notación:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:217 +msgid "Notation duration:" +msgstr "Duración de notación:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:283 +msgid "Note pitch:" +msgstr "Altura de Nota:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:291 +msgid "Note velocity:" +msgstr "Velocidad de Nota:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:317 +msgid "Controller number:" +msgstr "Número de Controlador:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:326 +msgid "Controller value:" +msgstr "Valor de Controlador:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:354 +msgid "Key pitch:" +msgstr "Altura de Nota:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:362 +msgid "Key pressure:" +msgstr "Presión de Tecla:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:390 +msgid "Channel pressure:" +msgstr "Presión de Canal:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:418 +msgid "Program change:" +msgstr "Cambio de Programa:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:461 +msgid "Data length:" +msgstr "Tamaño de Datos:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:462 +msgid "Data:" +msgstr "Datos:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:480 +msgid "Pitchbend MSB:" +msgstr "Inflexión de Tono MSB:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:488 +msgid "Pitchbend LSB:" +msgstr "Inflexión de Tono LSB:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:523 +msgid "Indication:" +msgstr "Indicación:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:553 +msgid "Text type:" +msgstr "Tipo de Texto:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:596 +msgid "Clef type:" +msgstr "Tipo de Clave:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:625 +msgid "Key name:" +msgstr "Nombre de clave:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:674 +msgid "Unsupported event type:" +msgstr "Tipo de evento no soportado:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:931 +msgid "Edit Event Time" +msgstr "Editar Tiempo del Evento" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:943 +msgid "Edit Event Notation Time" +msgstr "Editar Tiempo de Notación del Evento" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:955 +msgid "Edit Duration" +msgstr "Editar Duración" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:968 +msgid "Edit Notation Duration" +msgstr "Editar Duración de Notación" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:981 +msgid "Edit Pitch" +msgstr "Editar Altura" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:991 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:1016 +msgid "*.syx|System exclusive files (*.syx)" +msgstr "*.syx|Archivos de Sistema Exclusivo (*.syx)" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:992 +msgid "Load System Exclusive data in File" +msgstr "Cargar datos de Sistema Exclusivo en el Archivo" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:1017 +msgid "Save System Exclusive data to..." +msgstr "Guardar datos de Sistema Exclusivo a..." + +#: ../src/gui/dialogs/FileLocateDialog.cpp:46 +msgid "Locate audio file" +msgstr "Buscar archivo de audio" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:50 +msgid "&Skip" +msgstr "&Saltar" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:51 +msgid "Skip &All" +msgstr "S&altar todo" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:52 +msgid "&Locate" +msgstr "&Localizar" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:57 +msgid "" +"Can't find file \"%1\".\n" +"Would you like to try and locate this file or skip it?" +msgstr "" +"No se puede encontrar el archivo \"%1\".\n" +"¿Quiere intentar buscar y localizar este archivo o saltarlo?" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:71 +msgid "" +"%1|Requested file (%2)\n" +"*.wav|WAV files (*.wav)" +msgstr "" +"%1|Archivo solicitado (%2)\n" +"*.wav|archivos WAV (*.wav) " + +#: ../src/gui/dialogs/FileLocateDialog.cpp:74 +msgid "Select an Audio File" +msgstr "Seleccionar un Archivo de Audio" + +#: ../src/gui/dialogs/ClefDialog.cpp:53 ../src/gui/dialogs/ClefDialog.cpp:62 +#: ../src/gui/dialogs/ClefDialog.cpp:79 ../src/gui/dialogs/ClefDialog.cpp:90 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:278 +msgid "Clef" +msgstr "Clave" + +#: ../src/gui/dialogs/ClefDialog.cpp:65 +msgid "Existing notes following clef change" +msgstr "Existen notas a continuación del cambio de clave" + +#: ../src/gui/dialogs/ClefDialog.cpp:71 +msgid "Lower clef" +msgstr "Clave más grave" + +#: ../src/gui/dialogs/ClefDialog.cpp:77 +msgid "Up an Octave" +msgstr "Subir una Octava" + +#: ../src/gui/dialogs/ClefDialog.cpp:84 +msgid "Down an Octave" +msgstr "Bajar una Octava" + +#: ../src/gui/dialogs/ClefDialog.cpp:88 +msgid "Higher clef" +msgstr "Clave más aguda" + +#: ../src/gui/dialogs/ClefDialog.cpp:96 +#: ../src/gui/dialogs/KeySignatureDialog.cpp:152 +msgid "Maintain current pitches" +msgstr "Mantener los tonos actuales" + +#: ../src/gui/dialogs/ClefDialog.cpp:99 +msgid "Transpose into appropriate octave" +msgstr "Transporte a la octava apropiada" + +#: ../src/gui/dialogs/ClefDialog.cpp:231 +msgid "%1 down an octave" +msgstr "%1 una octava inferior" + +#: ../src/gui/dialogs/ClefDialog.cpp:234 +msgid "%1 down two octaves" +msgstr "%1 dos octavas abajo" + +#: ../src/gui/dialogs/ClefDialog.cpp:237 +msgid "%1 up an octave" +msgstr "%1 una octava superior" + +#: ../src/gui/dialogs/ClefDialog.cpp:240 +msgid "%1 up two octaves" +msgstr "%1 dos octabas arriba" + +#: ../src/gui/dialogs/ClefDialog.cpp:249 +msgid "Treble" +msgstr "Soprano" + +#: ../src/gui/dialogs/ClefDialog.cpp:251 +msgid "French violin" +msgstr "Violín francés" + +#: ../src/gui/dialogs/ClefDialog.cpp:253 +msgid "Soprano" +msgstr "Soprano" + +#: ../src/gui/dialogs/ClefDialog.cpp:255 +msgid "Mezzo-soprano" +msgstr "Mezzo soprano" + +#: ../src/gui/dialogs/ClefDialog.cpp:257 +msgid "Alto" +msgstr "Alto" + +#: ../src/gui/dialogs/ClefDialog.cpp:259 +msgid "Tenor" +msgstr "Tenor" + +#: ../src/gui/dialogs/ClefDialog.cpp:261 +msgid "C-baritone" +msgstr "Do barítono" + +#: ../src/gui/dialogs/ClefDialog.cpp:263 +msgid "F-baritone" +msgstr "Fa barítono" + +#: ../src/gui/dialogs/ClefDialog.cpp:265 +msgid "Bass" +msgstr "Bajo" + +#: ../src/gui/dialogs/ClefDialog.cpp:267 +msgid "Sub-bass" +msgstr "Sub-bajo" + +#: ../src/gui/dialogs/CountdownDialog.cpp:52 +msgid "Recording..." +msgstr "Grabando..." + +#: ../src/gui/dialogs/CountdownDialog.cpp:60 +msgid "Recording time remaining: " +msgstr "Tiempo restante de grabación: " + +#: ../src/gui/dialogs/CountdownDialog.cpp:120 +msgid "Just how big is your hard disk?" +msgstr "¿Cómo es de grande su disco duro?" + +#: ../src/gui/dialogs/CountdownDialog.cpp:154 +msgid "Recording beyond end of composition: " +msgstr "Aumentando la composición:" + +#: ../src/gui/dialogs/IntervalDialog.cpp:52 +msgid "Specify Interval" +msgstr "Especificar intervalo" + +#: ../src/gui/dialogs/IntervalDialog.cpp:58 +msgid "Reference note:" +msgstr "Nota de referencia:" + +#: ../src/gui/dialogs/IntervalDialog.cpp:59 +msgid "Target note:" +msgstr "Nota objetivo:" + +#: ../src/gui/dialogs/IntervalDialog.cpp:68 +#: ../src/gui/dialogs/IntervalDialog.cpp:315 +msgid "a perfect unison" +msgstr "unísono perfecto" + +#: ../src/gui/dialogs/IntervalDialog.cpp:76 +msgid "Effect on Key" +msgstr "Efecto sobre la clave" + +#: ../src/gui/dialogs/IntervalDialog.cpp:77 +msgid "Transpose within key" +msgstr "Trasportar dentro de la clave" + +#: ../src/gui/dialogs/IntervalDialog.cpp:79 +msgid "Change key for selection" +msgstr "Cambio de clave para la selección" + +#: ../src/gui/dialogs/IntervalDialog.cpp:89 +msgid "" +"Adjust segment transposition in opposite direction (maintain audible pitch)" +msgstr "" +"Ajustar transposición del segmento en sentido opuesto (mantener tono audible)" + +#: ../src/gui/dialogs/IntervalDialog.cpp:190 +#: ../src/gui/dialogs/IntervalDialog.cpp:220 +msgid "a diminished" +msgstr "disminuida" + +#: ../src/gui/dialogs/IntervalDialog.cpp:192 +#: ../src/gui/dialogs/IntervalDialog.cpp:222 +msgid "an augmented" +msgstr "aumentada" + +#: ../src/gui/dialogs/IntervalDialog.cpp:194 +#: ../src/gui/dialogs/IntervalDialog.cpp:224 +msgid "a doubly diminished" +msgstr "doble disminuida" + +#: ../src/gui/dialogs/IntervalDialog.cpp:196 +#: ../src/gui/dialogs/IntervalDialog.cpp:226 +msgid "a doubly augmented" +msgstr "doble aumentada" + +#: ../src/gui/dialogs/IntervalDialog.cpp:198 +#: ../src/gui/dialogs/IntervalDialog.cpp:228 +msgid "a triply diminished" +msgstr "triple disminuida" + +#: ../src/gui/dialogs/IntervalDialog.cpp:200 +#: ../src/gui/dialogs/IntervalDialog.cpp:230 +msgid "a triply augmented" +msgstr "triple aumentada" + +#: ../src/gui/dialogs/IntervalDialog.cpp:202 +msgid "a quadruply diminished" +msgstr "cuádruple disminuida" + +#: ../src/gui/dialogs/IntervalDialog.cpp:204 +#: ../src/gui/dialogs/IntervalDialog.cpp:232 +msgid "a quadruply augmented" +msgstr "cuádruple aumentada" + +#: ../src/gui/dialogs/IntervalDialog.cpp:206 +#: ../src/gui/dialogs/IntervalDialog.cpp:234 +msgid "a perfect" +msgstr "perfecta" + +#: ../src/gui/dialogs/IntervalDialog.cpp:208 +#: ../src/gui/dialogs/IntervalDialog.cpp:236 +msgid "an (unknown, %1)" +msgstr "(desconocida, %1)" + +#: ../src/gui/dialogs/IntervalDialog.cpp:216 +msgid "a minor" +msgstr "menor" + +#: ../src/gui/dialogs/IntervalDialog.cpp:218 +msgid "a major" +msgstr "mayor" + +#: ../src/gui/dialogs/IntervalDialog.cpp:239 +msgid "an (unknown)" +msgstr "(desconocida)" + +#: ../src/gui/dialogs/IntervalDialog.cpp:248 +#: ../src/gui/dialogs/IntervalDialog.cpp:251 +msgid "%1 octave" +msgstr "una octava %1" + +#: ../src/gui/dialogs/IntervalDialog.cpp:254 +msgid "%1 unison" +msgstr "unísono %1" + +#: ../src/gui/dialogs/IntervalDialog.cpp:258 +msgid "%1 second" +msgstr "una segunda %1" + +#: ../src/gui/dialogs/IntervalDialog.cpp:261 +msgid "%1 third" +msgstr "una tercera %1" + +#: ../src/gui/dialogs/IntervalDialog.cpp:264 +msgid "%1 fourth" +msgstr "una cuarta %1" + +#: ../src/gui/dialogs/IntervalDialog.cpp:267 +msgid "%1 fifth" +msgstr "una quinta %1" + +#: ../src/gui/dialogs/IntervalDialog.cpp:270 +msgid "%1 sixth" +msgstr "una sexta %1" + +#: ../src/gui/dialogs/IntervalDialog.cpp:273 +msgid "%1 seventh" +msgstr "una séptima %1" + +#: ../src/gui/dialogs/IntervalDialog.cpp:276 +#: ../src/gui/studio/DeviceManagerDialog.cpp:329 +#: ../src/gui/studio/DeviceManagerDialog.cpp:363 +#, c-format +msgid "%1" +msgstr "%1" + +#: ../src/gui/dialogs/IntervalDialog.cpp:287 +msgid "" +"_n: up 1 octave and %1\n" +"up %n octaves and %1" +msgstr "" +"1 octava y %1 ascendente\n" +"%n octavas y %1 ascendente" + +#: ../src/gui/dialogs/IntervalDialog.cpp:291 +#, c-format +msgid "" +"_n: up 1 octave\n" +"up %n octaves" +msgstr "" +"1 octava ascendente\n" +"%n octavas ascendentes" + +#: ../src/gui/dialogs/IntervalDialog.cpp:295 +#, c-format +msgid "up %1" +msgstr "%1 ascendente" + +#: ../src/gui/dialogs/IntervalDialog.cpp:303 +msgid "" +"_n: down 1 octave and %1\n" +"down %n octaves and %1" +msgstr "" +" 1 octava y %1 descendente\n" +"%n octavas y %1 descendente" + +#: ../src/gui/dialogs/IntervalDialog.cpp:307 +#, c-format +msgid "" +"_n: down 1 octave\n" +"down %n octaves" +msgstr "" +"1 octava descendente\n" +"%n octavas descendentes" + +#: ../src/gui/dialogs/IntervalDialog.cpp:311 +#, c-format +msgid "down %1" +msgstr "%1 descendente" + +#: ../src/gui/dialogs/EventEditDialog.cpp:81 +msgid "Intrinsics" +msgstr "Intrínsecas" + +#: ../src/gui/dialogs/EventEditDialog.cpp:85 +msgid "Event type: " +msgstr "Tipo de Evento" + +#: ../src/gui/dialogs/EventEditDialog.cpp:91 +msgid "Absolute time: " +msgstr "Tiempo absoluto: " + +#: ../src/gui/dialogs/EventEditDialog.cpp:101 +msgid "Duration: " +msgstr "Duración: " + +#: ../src/gui/dialogs/EventEditDialog.cpp:114 +msgid "Sub-ordering: " +msgstr "Sub-ordenación: " + +#: ../src/gui/dialogs/EventEditDialog.cpp:125 +msgid "Persistent properties" +msgstr "Propiedades persistentes" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:169 +#: ../src/gui/dialogs/EventEditDialog.cpp:133 +#: ../src/gui/studio/BankEditorDialog.cpp:129 +#: ../src/gui/studio/DeviceEditorDialog.cpp:75 +msgid "Type" +msgstr "Tipo" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:184 +#: ../src/gui/dialogs/EventEditDialog.cpp:135 +#: ../src/gui/dialogs/EventParameterDialog.cpp:89 +#: ../src/gui/dialogs/EventParameterDialog.cpp:93 +#: ../src/gui/dialogs/EventParameterDialog.cpp:115 +msgid "Value" +msgstr "Valor" + +#: ../src/gui/dialogs/EventEditDialog.cpp:155 +msgid "Non-persistent properties" +msgstr "Propiedades no persistentes" + +#: ../src/gui/dialogs/EventEditDialog.cpp:156 +msgid "These are cached values, lost if the event is modified." +msgstr "Estos valores están en caché, y se perderán al modificar el evento" + +#: ../src/gui/dialogs/EventEditDialog.cpp:170 +msgid "Name " +msgstr "Nombre " + +#: ../src/gui/dialogs/EventEditDialog.cpp:172 +msgid "Type " +msgstr "Tipo " + +#: ../src/gui/dialogs/EventEditDialog.cpp:174 +msgid "Value " +msgstr "Valor " + +#: ../src/gui/dialogs/EventEditDialog.cpp:188 +msgid "Make persistent" +msgstr "Hacer persistente" + +#: ../src/gui/dialogs/EventEditDialog.cpp:292 +msgid "Delete this property" +msgstr "Borrar esta propiedad" + +#: ../src/gui/dialogs/EventEditDialog.cpp:433 +msgid "" +"Are you sure you want to delete the \"%1\" property?\n" +"\n" +"Removing necessary properties may cause unexpected behavior." +msgstr "" +"¿Está usted. seguro de querer borrar la propiedad \"%1\"?\n" +"\n" +"Eliminar propiedades necesarias puede causar un comportamiento inesperado." + +#: ../src/gui/dialogs/EventEditDialog.cpp:436 +#: ../src/gui/dialogs/EventEditDialog.cpp:469 +msgid "Edit Event" +msgstr "Editar Evento" + +#: ../src/gui/dialogs/EventEditDialog.cpp:465 +msgid "" +"Are you sure you want to make the \"%1\" property persistent?\n" +"\n" +"This could cause problems if it overrides a different computed value later " +"on." +msgstr "" +"Está usted seguro de querer hacer persistente la propiedad \"%1\"?\n" +"\n" +"Esto puede causar problemas si se sobreescribe más adelante con un valor " +"calculado diferente." + +#: ../src/gui/dialogs/EventEditDialog.cpp:470 +msgid "Make &Persistent" +msgstr "Hacer &Persistente" + +#: ../src/gui/dialogs/PasteNotationDialog.cpp:52 +msgid "Paste type" +msgstr "Pegar tipo" + +#: ../src/gui/dialogs/PasteNotationDialog.cpp:72 +msgid "Make this the default paste type" +msgstr "Hacer este el tipo predeterminado de pegada" + +#: ../src/gui/dialogs/LyricEditDialog.cpp:53 +msgid "Edit Lyrics" +msgstr "Editar letra" + +#: ../src/gui/dialogs/LyricEditDialog.cpp:62 +msgid "Lyrics for this segment" +msgstr "Letra para este segmento" + +#: ../src/gui/dialogs/LyricEditDialog.cpp:70 +msgid "Add Verse" +msgstr "Añadir Estrofa" + +#: ../src/gui/dialogs/LyricEditDialog.cpp:84 +#: ../src/gui/dialogs/LyricEditDialog.cpp:106 +#, c-format +msgid "Verse %1" +msgstr "Estrofa %1" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:59 +msgid "Import from Device..." +msgstr "Importar desde el Dispositivo..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2163 +#: ../src/gui/application/RosegardenGUIApp.cpp:2229 +#: ../src/gui/application/RosegardenGUIApp.cpp:7780 +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:87 +#: ../src/sound/AudioFileManager.cpp:664 +#, c-format +msgid "Cannot download file %1" +msgstr "No puedo descargar archivo %1" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:99 +#, c-format +msgid "Cannot open file %1" +msgstr "No se puede abrir el archivo %1" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:106 +#, c-format +msgid "No devices found in file %1" +msgstr "No hay dispositivos en el archivo %1" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:113 +msgid "Source device" +msgstr "Dispositivo origen" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:118 +msgid "Import from: " +msgstr "Importar desde: " + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:140 +#: ../src/gui/studio/DeviceEditorDialog.cpp:148 +#, c-format +msgid "Device %1" +msgstr "Dispositivo %1" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:155 +msgid "Import banks" +msgstr "Importar bancos" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:156 +msgid "Import key mappings" +msgstr "Importar mapas de teclado" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:157 +msgid "Import controllers" +msgstr "Importar controladores" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:160 +msgid "Import device name" +msgstr "Nombre de dispositivo importado" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:166 +msgid "Bank import behavior" +msgstr "Comportamiento de importación de bancos " + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:168 +msgid "Merge banks" +msgstr "Mezclar bancos" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:169 +msgid "Overwrite banks" +msgstr "Sobreescribir bancos" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:367 +msgid "Bank %1:%2" +msgstr "Banco %1 %2" + +#: ../src/commands/segment/SegmentSplitByRecordingSrcCommand.cpp:42 +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:48 +msgid "Split by Recording Source" +msgstr "Dividir según la fuente de grabación" + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:53 +msgid "Recording Source" +msgstr "Fuente de grabación" + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:57 +msgid "Channel:" +msgstr "Canal:" + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:64 +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:75 +msgid "any" +msgstr "(cualquiera) " + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:69 +msgid "Device:" +msgstr "Dispositivo " + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:46 +msgid "Select Unused Audio Files" +msgstr "Seleccionar Archivo de Audio no Usados" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:53 +#: ../src/gui/editors/segment/PlayListView.cpp:36 +msgid "File name" +msgstr "Nombre de archivo" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:54 +msgid "File size" +msgstr "Tamaño del archivo" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:55 +msgid "Last modified date" +msgstr "Fecha de última modificación" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:60 +msgid " (not found) " +msgstr "(no encontrado)" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:105 +msgid "Audio File Manager" +msgstr "Gestor de Archivos de Audio" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:126 +msgid "" +"* Some audio files are encoded at a sample rate different from that of the " +"JACK audio server.\n" +"Rosegarden will play them at the correct speed, but they will sound " +"terrible.\n" +"Please consider resampling such files externally, or adjusting the sample " +"rate of the JACK server." +msgstr "" +"* Algunos archivos de audio están codificados en un muestreo diferente al de " +"el servidor de audio JACK.\n" +"Rosegarden los reproducirá en la velocidad correcta, pero sonarán " +"terriblemente mal.\n" +"Por favor, considere resamplear estos archivos externamente, o ajustar el " +"muestreo del servidor de audio JACK." + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:132 +msgid "&Add Audio File..." +msgstr "&Añadir archivo de audio " + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:135 +msgid "&Unload Audio File" +msgstr "&Descargar Archivo de Audio" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:140 +msgid "&Play Preview" +msgstr "Reproducción &Preliminar" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:151 +msgid "&Insert into Selected Audio Track" +msgstr "&Insertar en la Pista de Audio Seleccionada" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:155 +msgid "Unload &all Audio Files" +msgstr "Descargar todos los &archivos de Audio" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:159 +msgid "Unload all &Unused Audio Files" +msgstr "Descargar todos los &archivos de Audio no usados" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:163 +msgid "&Delete Unused Audio Files..." +msgstr "Borrar todos los &archivos de Audio no usados" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:167 +msgid "&Export Audio File..." +msgstr "&Exportar Archivo de Audio " + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:173 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:180 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:91 +msgid "Duration" +msgstr "Duración" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:181 +msgid "Envelope" +msgstr "Envolvente" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:182 +msgid "Sample rate" +msgstr "Frecuencia de muestreo" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:183 +msgid "Channels" +msgstr "Canales" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:282 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:488 +msgid "*.wav|WAV files (*.wav)" +msgstr "*.wav|archivos WAV (*.wav)" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:489 +msgid "Choose a name to save this file as" +msgstr "Escoja un nombre para guardar este archivo" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:499 +msgid "Exporting audio file..." +msgstr "Exportando archivo de audio..." + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:609 +msgid "" +"This will unload audio file \"%1\" and remove all associated segments. Are " +"you sure?" +msgstr "" +"Se va a descargar el archivo de audio \"%1\" y se borrarán todos los " +"segmentos asociados. ¿Está seguro?" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:692 +msgid "" +"*.wav|WAV files (*.wav)\n" +"*.*|All files" +msgstr "" +"*.wav|archivos WAV (*.wav)\n" +"*.*|Todos los archivos" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:697 +msgid "" +"*.wav *.flac *.ogg *.mp3|Audio files (*.wav *.flac *.ogg *.mp3)\n" +"*.wav|WAV files (*.wav)\n" +"*.flac|FLAC files (*.flac)\n" +"*.ogg|Ogg files (*.ogg)\n" +"*.mp3|MP3 files (*.mp3)\n" +"*.*|All files" +msgstr "" +"*.wav *.flac *.ogg *.mp3|Archivos de audio (*.wav *.flac *.ogg *.mp3)\n" +"*.wav|Archivos WAV (*.wav)\n" +"*.flac|Archivos FLAC (*.flac)\n" +"*.ogg|Archivos Ogg (*.ogg)\n" +"*.mp3|Archivos MP3 (*.mp3)\n" +"*.*|Todos los archivos" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:704 +msgid "Select one or more audio files" +msgstr "Seleccionar uno o más archivos de audio" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:763 +msgid "" +"This will unload all audio files and remove their associated segments.\n" +"This action cannot be undone, and associations with these files will be " +"lost.\n" +"Files will not be removed from your disk.\n" +"Are you sure?" +msgstr "" +"Esto descargará todos los archivos de audio que no estén asociados con " +"segmento alguno dentro de esta composición. Esta acción no puede ser " +"deshecha, y las asociaciones con esos archivos serán perdidas. Los archivos " +"no serán removidos de su disco.\n" +"¿Está usted seguro?" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:800 +msgid "" +"This will unload all audio files that are not associated with any segments " +"in this composition.\n" +"This action cannot be undone, and associations with these files will be " +"lost.\n" +"Files will not be removed from your disk.\n" +"Are you sure?" +msgstr "" +"Esto descargará todos los archivos de audio que no estén asociados con " +"segmento alguno dentro de esta composición. Esta acción no puede ser " +"deshecha, y las asociaciones con esos archivos serán perdidas. Los archivos " +"no serán removidos de su disco.\n" +"¿Está usted seguro?" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:865 +msgid "" +"The following audio files are not used in the current composition.\n" +"\n" +"Please select the ones you wish to delete permanently from the hard disk.\n" +msgstr "" +"Los siguientes archivos de audio no son utilizados en la composición " +"actual.\n" +"\n" +"Por favor, seleccione cuáles de ellos quiere borrar permanentemente del " +"disco duro.\n" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:875 +#, c-format +msgid "" +"_n: About to delete 1 audio file permanently from the hard disk.
                  This " +"action cannot be undone, and there will be no way to recover this file." +"
                  Are you sure?
                  \n" +"\n" +"About to delete %n audio files permanently from the hard disk.
                  This " +"action cannot be undone, and there will be no way to recover these files." +"
                  Are you sure?
                  " +msgstr "" +"_n:Se borrará un archivo de audio del disco duro de modo permanente." +"
                  Esta acción no se puede deshacer y no habrá modo de recuperar este " +"archivo.
                  ¿Está seguro?
                  \n" +"\n" +"Se borrarán %n archivos de audio del disco duro de modo permanente." +"
                  Esta acción no se puede deshacer y no habrá modo de recuperar estos " +"archivos.
                  ¿Está seguro?
                  " + +#: ../src/document/RosegardenGUIDoc.cpp:525 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:888 +msgid "File %1 could not be deleted." +msgstr "El archivo %1 no pudo ser borrado" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:921 +msgid "Change Audio File label" +msgstr "Cambiar etiqueta del archivo de audio" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6466 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:922 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1099 +msgid "Enter new label" +msgstr "Introducir nueva etiqueta" + +#: ../src/gui/application/RosegardenGUIView.cpp:1538 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1086 +msgid "Adding audio file..." +msgstr "Añadiendo archivo de audio..." + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1107 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1112 +msgid "Failed to add audio file. " +msgstr "Fallo al añadir archivo de audio " + +#: ../src/document/RosegardenGUIDoc.cpp:2789 +#: ../src/gui/application/RosegardenGUIApp.cpp:2736 +#: ../src/gui/application/RosegardenGUIView.cpp:1574 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1122 +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:180 +msgid "Generating audio preview..." +msgstr "Generando vista preliminar.de audio" + +#: ../src/gui/application/RosegardenGUIView.cpp:1581 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1130 +msgid "" +"Try copying this file to a directory where you have write permission and re-" +"add it" +msgstr "" +"Intente copiar este archivo a un directorio en el que tenga permiso de " +"escritura y vuelva a añadirlo" + +#: ../src/gui/dialogs/TransportDialog.cpp:90 rc.cpp:357 +#, no-c-format +msgid "Rosegarden Transport" +msgstr "Transporte de Rosegarden" + +#: ../src/gui/dialogs/TransportDialog.cpp:925 +#: ../src/gui/dialogs/TransportDialog.cpp:985 +msgid "PITCH WHEEL" +msgstr "RUEDA TONAL" + +#: ../src/gui/dialogs/TransportDialog.cpp:929 +#: ../src/gui/dialogs/TransportDialog.cpp:989 +msgid "CONTROLLER" +msgstr "CONTROL" + +#: ../src/gui/dialogs/TransportDialog.cpp:933 +#: ../src/gui/dialogs/TransportDialog.cpp:993 +msgid "PROG CHNGE" +msgstr "CAMBIO DE PR." + +#: ../src/gui/dialogs/TransportDialog.cpp:938 +#: ../src/gui/dialogs/TransportDialog.cpp:998 +msgid "PRESSURE" +msgstr "PRESIÓN" + +#: ../src/gui/dialogs/TransportDialog.cpp:942 +#: ../src/gui/dialogs/TransportDialog.cpp:1002 +msgid "SYS MESSAGE" +msgstr "MENSAJE SIST." + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:177 +#: ../src/gui/dialogs/QuantizeDialog.cpp:40 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:127 +msgid "Quantize" +msgstr "Cuantificación" + +#: ../src/gui/dialogs/QuantizeDialog.cpp:52 +msgid "Advanced" +msgstr "Avanzado" + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:42 +msgid "Export Devices..." +msgstr "Exportar Dispositivos..." + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:47 +msgid "Export devices" +msgstr "Exportar dispositivos" + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:49 +msgid "Export all devices" +msgstr "Exportar todos los dispositivos" + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:50 +msgid "Export selected device only" +msgstr "Exportar solamente el dispositivo seleccionado" + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:51 +msgid " (\"%1\")" +msgstr " (\"%1\")" + +#: ../src/gui/dialogs/CompositionLengthDialog.cpp:44 +msgid "Change Composition Length" +msgstr "Cambiar Duración de la Composición" + +#: ../src/gui/dialogs/CompositionLengthDialog.cpp:50 +msgid "Set the Start and End bar markers for this Composition" +msgstr "" +"Establecer los marcadores de compás Inicial y Final para esta Composición" + +#: ../src/gui/dialogs/CompositionLengthDialog.cpp:54 +msgid "Start Bar" +msgstr "Compás Inicial" + +#: ../src/gui/dialogs/CompositionLengthDialog.cpp:62 +msgid "End Bar" +msgstr "Compás Final" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:62 +msgid "LilyPond Export/Preview" +msgstr "Exportación/Previsualización con LilyPond" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:85 +msgid "General options" +msgstr "Opciones generales" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:90 +msgid "Advanced options" +msgstr "Opciones avanzadas" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:112 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:95 +msgid "Headers" +msgstr "Cabeceras" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:106 +msgid "Basic options" +msgstr "Opciones básicas" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:113 +msgid "Compatibility level" +msgstr "Nivel de compatibilidad" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:117 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:118 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:119 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:120 +#, c-format +msgid "LilyPond %1" +msgstr "LilyPond %1" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:125 +msgid "Paper size" +msgstr "Tamaño de papel" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:129 +msgid "A3" +msgstr "A3" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:130 +msgid "A4" +msgstr "A4" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:131 +msgid "A5" +msgstr "A5" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:132 +msgid "A6" +msgstr "A6" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:133 +msgid "Legal" +msgstr "Legal" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:134 +msgid "US Letter" +msgstr "Carta de EEUU" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:135 +msgid "Tabloid" +msgstr "Tabloide" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:136 +msgid "do not specify" +msgstr "no especificar" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:152 +msgid "Font size" +msgstr "Tamaño de fuente" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:157 +msgid "%1 pt" +msgstr "%1 pt" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:169 +msgid "Staff level options" +msgstr "Opciones a nivel de pentagrama" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:176 +msgid "Export content" +msgstr "Exportar contenido" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:179 +msgid "All tracks" +msgstr "Todas las pistas" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:180 +msgid "Non-muted tracks" +msgstr "Pistas no silenciadas" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:181 +msgid "Selected track" +msgstr "Pista seleccionada" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:182 +msgid "Selected segments" +msgstr "Segmentos seleccionados" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:188 +msgid "Merge tracks that have the same name" +msgstr "Fusionar pistas con el mismo nombre" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:198 +msgid "Notation options" +msgstr "Opciones de transcripción" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:206 +msgid "First" +msgstr "Primera" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:207 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:538 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:557 +msgid "All" +msgstr "Todas" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:211 +msgid "Export tempo marks " +msgstr "Exportar indicaciones de tempo" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:215 +msgid "Export lyrics" +msgstr "Exportar letra" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:225 +msgid "Export beamings" +msgstr "Exportar agrupaciones" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:232 +msgid "Export track staff brackets" +msgstr "Exportar paréntesis " + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:244 +msgid "Layout options" +msgstr "Opciones de formato" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:257 +msgid "Lyrics alignment" +msgstr "Alineación de las letras" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:261 +msgid "Ragged bottom (systems will not be spread vertically across the page)" +msgstr "Pié irregular (sistemas no repartidos verticalmente en la página)" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:267 +msgid "Miscellaneous options" +msgstr "Opciones variadas" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:274 +msgid "Enable \"point and click\" debugging" +msgstr "Activar depuración \"apuntar y hacer clic\"" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:279 +msgid "Export \\midi block" +msgstr "Exportar bloque \\midi" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:284 +msgid "No markers" +msgstr "Sin marcadores" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:285 +msgid "Rehearsal marks" +msgstr "Marcos de ensayo" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:286 +msgid "Marker text" +msgstr "Texto del marcador" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:290 +msgid "Export markers" +msgstr "Exportar marcadores" + +#: ../src/gui/dialogs/AudioSplitDialog.cpp:57 +msgid "Autosplit Audio Segment" +msgstr "Dividir automáticamente segmento de audio" + +#: ../src/gui/dialogs/AudioSplitDialog.cpp:70 +msgid "AutoSplit Segment \"" +msgstr "Dividir automáticamente segmento \" " + +#: ../src/gui/dialogs/AudioSplitDialog.cpp:84 +msgid "Threshold" +msgstr "Umbral" + +#: ../src/gui/dialogs/AudioSplitDialog.cpp:142 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:70 +msgid "Audio Plugin" +msgstr "Plugin de audio" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:94 +#: ../src/gui/widgets/AudioFaderBox.cpp:136 +msgid "Editor" +msgstr "Editor" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:100 +msgid "Plugin" +msgstr "Plugin" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:105 +msgid "Category:" +msgstr "Categoría:" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:110 +msgid "Plugin:" +msgstr "Plugin:" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:114 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:398 +msgid "Select a plugin from this list." +msgstr "Seleccionar un \"plugin\" de esta lista." + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:119 +msgid "Bypass" +msgstr "Desviación" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:121 +msgid "Bypass this plugin." +msgstr "Evitar este plugin." + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:127 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:390 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:130 +msgid "Input and output port counts." +msgstr "Cuenta de puertos de entrada y salida." + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:132 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:391 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:135 +msgid "Unique ID of plugin." +msgstr "ID único del \"plugin\"." + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:149 +msgid "Copy plugin parameters" +msgstr "Copiar parámetros del \"plugin\"" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:155 +msgid "Paste plugin parameters" +msgstr "Pegar parámetros del \"plugin\"" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:161 +msgid "Set to defaults" +msgstr "Establecer valores predeterminados" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:225 +msgid "(any)" +msgstr "(cualquiera)" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:226 +msgid "(unclassified)" +msgstr "(sin clasificar)" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:247 +msgid "(none)" +msgstr "(nada)" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:389 +#: ../src/gui/editors/parameters/AudioInstrumentParameterPanel.cpp:132 +#: ../src/gui/editors/parameters/AudioInstrumentParameterPanel.cpp:361 +#: ../src/gui/studio/AudioMixerWindow.cpp:685 +#: ../src/gui/studio/AudioMixerWindow.cpp:724 +#: ../src/gui/studio/AudioMixerWindow.cpp:906 +#: ../src/gui/widgets/AudioFaderBox.cpp:79 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:427 +msgid "This plugin has too many controls to edit here." +msgstr "Este plugin tiene demasiados controles para editar aquí." + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:438 +#, c-format +msgid "Id: %1" +msgstr "Id: %1" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:490 +msgid "mono" +msgstr "mono" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:492 +msgid "stereo" +msgstr "estéreo" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:494 +msgid "%1 in, %2 out" +msgstr "%1 entradas, %2 salidas" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:518 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:704 +msgid "Program: " +msgstr "Programa: " + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:522 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:532 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:708 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:716 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:745 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:56 +msgid "Set the %1 property of the event selection:" +msgstr "Establecer la propiedad %1 de la selección del evento:" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:61 +msgid "Pattern" +msgstr "Patrón" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:66 +msgid "Flat - set %1 to value" +msgstr "Bemol - establecer %1 al valor" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:70 +msgid "Alternating - set %1 to max and min on alternate events" +msgstr "Alternar - establecer %1 al máximo y mínimo en eventos alternos" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:74 +msgid "Crescendo - set %1 rising from min to max" +msgstr "Crescendo - establecer %1 creciendo desde el mínimo al máximo" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:78 +msgid "Diminuendo - set %1 falling from max to min" +msgstr "" +"Diminuendo - establecer %1 descendiendo desde el máximo hasta el mínimo" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:82 +msgid "Ringing - set %1 alternating from max to min with both dying to zero" +msgstr "" +"Repique - establecer %1 alternando desde el máximo al mínimo con ambos " +"cayendo hacia cero" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:123 +#: ../src/gui/dialogs/EventParameterDialog.cpp:150 +msgid "First Value" +msgstr "Velocidad primera" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:124 +#: ../src/gui/dialogs/EventParameterDialog.cpp:151 +msgid "Second Value" +msgstr "Velocidad segunda" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:132 +#: ../src/gui/dialogs/EventParameterDialog.cpp:142 +msgid "Low Value" +msgstr "Velocidad baja" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:133 +#: ../src/gui/dialogs/EventParameterDialog.cpp:141 +msgid "High Value" +msgstr "Velocidad alta" + +#: ../src/gui/dialogs/TempoDialog.cpp:56 ../src/gui/rulers/TempoRuler.cpp:127 +msgid "Insert Tempo Change" +msgstr "Insertar Cambio de Tempo" + +#: ../src/gui/dialogs/TempoDialog.cpp:69 +msgid "New tempo:" +msgstr "Nuevo tempo " + +#: ../src/gui/dialogs/TempoDialog.cpp:76 +msgid "Tap" +msgstr "Pulso" + +#: ../src/gui/dialogs/TempoDialog.cpp:81 +msgid "Tempo is fixed until the following tempo change" +msgstr "Tempo se mantiene hasta el cambio de tempo que sigue" + +#: ../src/gui/dialogs/TempoDialog.cpp:82 +msgid "Tempo ramps to the following tempo" +msgstr "Tempo cambia de manera gradual por el tempo que sigue" + +#: ../src/gui/dialogs/TempoDialog.cpp:83 +msgid "Tempo ramps to:" +msgstr "Tempo cambia de manera gradual por" + +#: ../src/gui/dialogs/TempoDialog.cpp:120 +msgid "Time of tempo change" +msgstr "Tiempo del cambio de tempo" + +#: ../src/gui/dialogs/TempoDialog.cpp:138 +msgid "The pointer is currently at " +msgstr "El cursor está actualmente en el " + +#: ../src/gui/dialogs/TempoDialog.cpp:154 +msgid "Apply this tempo from here onwards" +msgstr "Aplicar este tempo desde aquí hacia adelante" + +#: ../src/gui/dialogs/TempoDialog.cpp:158 +msgid "Replace the last tempo change" +msgstr "Reemplazar el último cambio de tempo" + +#: ../src/gui/dialogs/TempoDialog.cpp:164 +msgid "Apply this tempo from the start of this bar" +msgstr "Aplicar este tempo desde el principio de este compás" + +#: ../src/gui/dialogs/TempoDialog.cpp:167 +msgid "Apply this tempo to the whole composition" +msgstr "Aplicar este tempo a toda la composición" + +#: ../src/gui/dialogs/TempoDialog.cpp:172 +msgid "Also make this the default tempo" +msgstr "Hacer también este tempo el predeterminado" + +#: ../src/gui/dialogs/TempoDialog.cpp:256 +msgid "%1.%2 s," +msgstr "%1.%2 s," + +#: ../src/gui/dialogs/TempoDialog.cpp:262 +#, c-format +msgid "at the start of measure %1." +msgstr "al principio del compás %1." + +#: ../src/gui/dialogs/TempoDialog.cpp:266 +#, c-format +msgid "in the middle of measure %1." +msgstr "en medio del compás %1." + +#: ../src/gui/dialogs/TempoDialog.cpp:285 +msgid " (at %1.%2 s, in measure %3)" +msgstr " (en %1.%2 s, compás %3) " + +#: ../src/gui/dialogs/TempoDialog.cpp:302 +msgid "There are no preceding tempo changes." +msgstr "No hay cambios de tempo precedentes" + +#: ../src/gui/dialogs/TempoDialog.cpp:310 +msgid "There are no other tempo changes." +msgstr "No hay otros cambios de tempo." + +#: ../src/gui/dialogs/TempoDialog.cpp:328 +msgid " bpm" +msgstr " tpm" + +#: ../src/gui/dialogs/AudioPlayingDialog.cpp:42 +msgid "Playing audio file" +msgstr "Reproduciendo archivo de audio" + +#: ../src/gui/dialogs/AudioPlayingDialog.cpp:47 +msgid "Playing audio file \"%1\"" +msgstr "Reproduciendo archivo de audio \"%1\"" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:52 +#: ../src/gui/editors/matrix/MatrixView.cpp:2655 +msgid "Trigger Segment" +msgstr "Activar Segmento" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:61 +msgid "Trigger segment: " +msgstr "Activar segmento: " + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:59 +msgid "Key Change" +msgstr "Cambio de Tono" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:77 +msgid "Key signature" +msgstr "Armadura" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:80 +msgid "Key transposition" +msgstr "Transporte de la tonalidad" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:86 +msgid "Existing notes following key change" +msgstr "Notas existentes a continuación de la armadura" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:98 +msgid "Flatten" +msgstr "Alterar con Bemol" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:100 +msgid "Key" +msgstr "Clave" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:105 +msgid "Sharpen" +msgstr "Alterar con Sostenido" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:109 +msgid "Major" +msgstr "Mayor" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:110 +#: ../src/gui/dialogs/KeySignatureDialog.cpp:369 +msgid "Minor" +msgstr "Menor" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:123 +msgid "Transpose key according to segment transposition" +msgstr "Transportar la tonalidad según la tonalidad del segmento" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:126 +msgid "Use specified key. Do not transpose" +msgstr "Usar tonalidad especificada. No transportar." + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:134 +msgid "Apply to current segment only" +msgstr "Aplicar al segmento actual solamente" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:137 +msgid "Apply to all segments at this time" +msgstr "Aplicar a todos los segmentos en este momento" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:141 +msgid "Exclude percussion segments" +msgstr "Excluir segmentos de percusión" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:155 +msgid "Maintain current accidentals" +msgstr "Mantener las alteraciones actuales" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:158 +msgid "Transpose into this key" +msgstr "Trasportar a este tono" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:331 +msgid "No such key" +msgstr "No hay tal tono" + +#: ../src/gui/dialogs/InterpretDialog.cpp:44 +#: ../src/gui/editors/notation/NotationSelector.cpp:118 +msgid "Interpret" +msgstr "Interpretación" + +#: ../src/gui/dialogs/InterpretDialog.cpp:50 +msgid "Interpretations to apply" +msgstr "Interpretaciones a aplicar" + +#: ../src/gui/dialogs/InterpretDialog.cpp:53 +msgid "Apply text dynamics (p, mf, ff etc)" +msgstr "Aplicar matices de texto (p, mf, ff, etc)" + +#: ../src/gui/dialogs/InterpretDialog.cpp:55 +msgid "Apply hairpin dynamics" +msgstr "Aplicar matizaciones graduales" + +#: ../src/gui/dialogs/InterpretDialog.cpp:57 +msgid "Stress beats" +msgstr "Reforzar las notas a tiempo" + +#: ../src/gui/dialogs/InterpretDialog.cpp:59 +msgid "Articulate slurs, staccato, tenuto etc" +msgstr "Articular ligaduras, staccato, tenuto, etc" + +#: ../src/gui/dialogs/InterpretDialog.cpp:61 +msgid "All available interpretations" +msgstr "Todas las interpretaciones disponibles" + +#: ../src/gui/application/RosegardenGUIApp.cpp:316 +msgid "" +"Attempted to launch JACK audio daemon failed. Audio will be disabled.\n" +"Please check configuration (Settings -> Configure Rosegarden -> Audio -> " +"Startup)\n" +" and restart." +msgstr "" +"El intento de lanzar el demonio JACK ha fallado. El audio será " +"deshabilitado.\n" +"Por favor, compruebe la configuración (Preferencias->Configurar Rosegarden-" +">Audio->Inicio)\n" +" y reinicie." + +#: ../src/gui/application/RosegardenGUIApp.cpp:325 +msgid "Starting sequencer..." +msgstr "Iniciando secuenciador..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:333 +msgid "Initializing plugin manager..." +msgstr "Inicializando gestor de plugins..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:338 +msgid "Initializing view..." +msgstr "Inicializando vista..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:354 +msgid "Special Parameters" +msgstr "Parámetros Especiales" + +#: ../src/gui/application/RosegardenGUIApp.cpp:430 +msgid "Starting sequence manager..." +msgstr "Iniciando gestor del secuenciador..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:456 +msgid "Clearing studio data..." +msgstr "Limpiando datos del estudio..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:475 +#: ../src/gui/editors/notation/NotationView.cpp:558 +msgid "Starting..." +msgstr "Iniciando..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:556 +msgid "Import Rosegarden &Project file..." +msgstr "Importar archivo de &Proyecto de Rosegarden..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:560 +msgid "Import &MIDI file..." +msgstr "Importar archivo &MIDI..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:564 +msgid "Import &Rosegarden 2.1 file..." +msgstr "Importar archivo de &Rosegarden 2.1..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:568 +msgid "Import &Hydrogen file..." +msgstr "Importar archivo de &Hydrogen..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:572 +msgid "Merge &File..." +msgstr "Me&zclar archivo..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:576 +msgid "Merge &MIDI file..." +msgstr "Mezclar archivo &MIDI..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:580 +msgid "Merge &Rosegarden 2.1 file..." +msgstr "Mezclar archivo de &Rosegarden 2.1..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:584 +msgid "Merge &Hydrogen file..." +msgstr "Mezclar archivo de &Hydrogen..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:588 +msgid "Export Rosegarden &Project file..." +msgstr "Exportar archivo de &Proyecto de Rosegarden 2.1..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:592 +msgid "Export &MIDI file..." +msgstr "Exportar archivo &MIDI..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:596 +msgid "Export &LilyPond file..." +msgstr "Exportar archivo &LilyPond..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:600 +msgid "Export Music&XML file..." +msgstr "Exportar archivo Music&XML..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:604 +msgid "Export &Csound score file..." +msgstr "Exportar archivo &Csound..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:608 +msgid "Export M&up file..." +msgstr "Exportar archivo M&up..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:612 +#: ../src/gui/editors/notation/NotationView.cpp:1500 +msgid "Print &with LilyPond..." +msgstr "Imprimir con LilyPond..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:616 +#: ../src/gui/editors/notation/NotationView.cpp:1504 +msgid "Preview with Lil&yPond..." +msgstr "Previsualización con LilyPond..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:620 +msgid "Play&list" +msgstr "&Lista de reproducción" + +#: ../src/gui/application/RosegardenGUIApp.cpp:627 +msgid "Rosegarden &Tutorial" +msgstr "&Tutorial de Rosegarden" + +#: ../src/gui/application/RosegardenGUIApp.cpp:631 +msgid "&Bug Reporting Guidelines" +msgstr "&Directivas de Reporte de Errores" + +#: ../src/gui/application/RosegardenGUIApp.cpp:645 +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:348 +#: ../src/gui/editors/segment/MarkerEditor.cpp:378 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:388 +#: ../src/gui/general/EditViewBase.cpp:190 +#: ../src/gui/studio/BankEditorDialog.cpp:318 +#: ../src/gui/studio/DeviceManagerDialog.cpp:227 +msgid "Und&o" +msgstr "&Deshacer" + +#: ../src/gui/application/RosegardenGUIApp.cpp:651 +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:354 +#: ../src/gui/editors/segment/MarkerEditor.cpp:384 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:394 +#: ../src/gui/general/EditViewBase.cpp:196 +#: ../src/gui/studio/BankEditorDialog.cpp:324 +#: ../src/gui/studio/DeviceManagerDialog.cpp:233 +msgid "Re&do" +msgstr "Re&hacer" + +#: ../src/gui/application/RosegardenGUIApp.cpp:665 +#: ../src/gui/editors/notation/NotationView.cpp:2297 +msgid "Show T&ools Toolbar" +msgstr "M&ostrar barra de herramientas de Herramientas" + +#: ../src/gui/application/RosegardenGUIApp.cpp:669 +msgid "Show Trac&ks Toolbar" +msgstr "Mostrar barra de herramientas de &Pistas" + +#: ../src/gui/application/RosegardenGUIApp.cpp:673 +msgid "Show &Editors Toolbar" +msgstr "Mostrar barra de herramientas de &Edición" + +#: ../src/gui/application/RosegardenGUIApp.cpp:677 +#: ../src/gui/editors/notation/NotationView.cpp:2309 +msgid "Show Trans&port Toolbar" +msgstr "Mostrar barra de herramientas de &Transporte" + +#: ../src/gui/application/RosegardenGUIApp.cpp:681 +msgid "Show &Zoom Toolbar" +msgstr "Mostrar barra de herramientas de &Ampliación" + +#: ../src/gui/application/RosegardenGUIApp.cpp:688 +msgid "Show Tra&nsport" +msgstr "Mostrar &Transporte" + +#: ../src/gui/application/RosegardenGUIApp.cpp:693 +msgid "Show Track &Labels" +msgstr "Mostrar &Etiquetas de Pista" + +#: ../src/gui/application/RosegardenGUIApp.cpp:698 +msgid "Show Playback Position R&uler" +msgstr "Mostrar regla de Posición de Ejec&ución" + +#: ../src/gui/application/RosegardenGUIApp.cpp:703 +msgid "Show Te&mpo Ruler" +msgstr "Mostrar regla de Te&mpo" + +#: ../src/gui/application/RosegardenGUIApp.cpp:708 +msgid "Show Cho&rd Name Ruler" +msgstr "Mostrar regla de Nombres de Aco&rde" + +#: ../src/gui/application/RosegardenGUIApp.cpp:714 +msgid "Show Segment Pre&views" +msgstr "Mostrar Pre&visualización de Segmentos" + +#: ../src/gui/application/RosegardenGUIApp.cpp:719 +msgid "Show Special &Parameters" +msgstr "Mostrar Parámetros especiales" + +#: ../src/gui/application/RosegardenGUIApp.cpp:753 +#: ../src/gui/editors/matrix/MatrixView.cpp:641 +#: ../src/gui/editors/notation/NotationView.cpp:1772 +msgid "&Select and Edit" +msgstr "S&eleccionar y Editar" + +#: ../src/gui/application/RosegardenGUIApp.cpp:758 +#: ../src/gui/editors/matrix/MatrixView.cpp:646 +msgid "&Draw" +msgstr "&Dibujar" + +#: ../src/commands/edit/EraseCommand.h:50 +#: ../src/gui/application/RosegardenGUIApp.cpp:763 +#: ../src/gui/editors/matrix/MatrixView.cpp:651 +#: ../src/gui/editors/notation/NotationView.cpp:1766 +msgid "&Erase" +msgstr "&Eliminar" + +#: ../src/gui/application/RosegardenGUIApp.cpp:768 +#: ../src/gui/editors/matrix/MatrixView.cpp:656 +msgid "&Move" +msgstr "&Mover" + +#: ../src/gui/application/RosegardenGUIApp.cpp:775 +msgid "&Resize" +msgstr "&Cambiar tamaño" + +#: ../src/gui/application/RosegardenGUIApp.cpp:782 rc.cpp:87 +#, no-c-format +msgid "&Split" +msgstr "Di&vidir" + +#: ../src/commands/segment/SegmentJoinCommand.h:53 +#: ../src/gui/application/RosegardenGUIApp.cpp:789 +msgid "&Join" +msgstr "&Unir" + +#: ../src/gui/application/RosegardenGUIApp.cpp:795 +msgid "&Harmonize" +msgstr "&Armonizar" + +#: ../src/gui/application/RosegardenGUIApp.cpp:806 +#: ../src/gui/rulers/TempoRuler.cpp:157 +msgid "Open Tempo and Time Signature Editor" +msgstr "Abrir Editor de Tempo y Medida" + +#: ../src/commands/segment/CutRangeCommand.cpp:41 +#: ../src/gui/application/RosegardenGUIApp.cpp:812 +msgid "Cut Range" +msgstr "C&ortar ámbito" + +#: ../src/commands/edit/CopyCommand.cpp:73 +#: ../src/gui/application/RosegardenGUIApp.cpp:816 +msgid "Copy Range" +msgstr "Copiar ámbito" + +#: ../src/commands/segment/PasteRangeCommand.cpp:45 +#: ../src/gui/application/RosegardenGUIApp.cpp:820 +msgid "Paste Range" +msgstr "Pegar ámbito" + +#: ../src/gui/application/RosegardenGUIApp.cpp:828 +msgid "Insert Range..." +msgstr "Insertar Rango..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:832 +#: ../src/gui/editors/notation/NotationView.cpp:1804 +msgid "De&lete" +msgstr "E&liminar " + +#: ../src/gui/application/RosegardenGUIApp.cpp:836 +msgid "Select &All Segments" +msgstr "Seleccion&ar Todos los Segmentos" + +#: ../src/gui/application/RosegardenGUIApp.cpp:852 +msgid "Edit Mar&kers..." +msgstr "Editar Mar&cadores..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:856 +msgid "Edit Document P&roperties..." +msgstr "Editar P&ropiedades del Documento..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:864 +msgid "Open in &Default Editor" +msgstr "Abrir en el Editor Pre&determinado" + +#: ../src/gui/application/RosegardenGUIApp.cpp:870 +#: ../src/gui/general/EditViewBase.cpp:206 +msgid "Open in Matri&x Editor" +msgstr "Abrir en el Editor de Matri&z" + +#: ../src/gui/application/RosegardenGUIApp.cpp:876 +#: ../src/gui/general/EditViewBase.cpp:212 +msgid "Open in &Percussion Matrix Editor" +msgstr "Abrir en el Editor de Matri&z de Percusión" + +#: ../src/gui/application/RosegardenGUIApp.cpp:882 +#: ../src/gui/general/EditViewBase.cpp:218 +msgid "Open in &Notation Editor" +msgstr "Abrir en el Editor de &Partitura" + +#: ../src/gui/application/RosegardenGUIApp.cpp:888 +#: ../src/gui/general/EditViewBase.cpp:224 +msgid "Open in &Event List Editor" +msgstr "Abrir en el Editor de Lista de &Eventos" + +#: ../src/commands/edit/EventQuantizeCommand.cpp:120 +#: ../src/commands/edit/EventUnquantizeCommand.cpp:87 +#: ../src/gui/application/RosegardenGUIApp.cpp:894 +msgid "&Quantize..." +msgstr "Cuanti&ficar..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:908 +#: ../src/gui/editors/matrix/MatrixView.cpp:686 +msgid "Repeat Last Quantize" +msgstr "Repetir la Última Cuantificación" + +#: ../src/gui/application/RosegardenGUIApp.cpp:928 +msgid "Split at Time..." +msgstr "Dividir por Tiempo..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:932 +#: ../src/gui/general/EditView.cpp:796 +msgid "Jog &Left" +msgstr "Correr a la &Izquierda" + +#: ../src/gui/application/RosegardenGUIApp.cpp:936 +#: ../src/gui/general/EditView.cpp:800 +msgid "Jog &Right" +msgstr "Correr a la De&recha" + +#: ../src/gui/application/RosegardenGUIApp.cpp:940 +msgid "Set Start Time..." +msgstr "Establecer Tiempo Inicial..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:944 +msgid "Set Duration..." +msgstr "Establecer Duración..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:953 +msgid "Turn Re&peats into Copies" +msgstr "Convertir Re&peticiones en Copias" + +#: ../src/gui/application/RosegardenGUIApp.cpp:958 +msgid "Manage Tri&ggered Segments" +msgstr "Gestionar Se&gmentos Activados" + +#: ../src/gui/application/RosegardenGUIApp.cpp:962 +msgid "Set Tempos from &Beat Segment" +msgstr "Esta&blecer Tempos desde segmento de pulsos" + +#: ../src/gui/application/RosegardenGUIApp.cpp:966 +msgid "Set &Tempo to Audio Segment Duration" +msgstr "Establecer &Tempo a la duración del Segmento de Audio" + +#: ../src/gui/application/RosegardenGUIApp.cpp:972 +msgid "Manage A&udio Files" +msgstr "Gestionar archivos a&udio" + +#: ../src/gui/application/RosegardenGUIApp.cpp:977 +msgid "Show Segment Labels" +msgstr "Mostrar Etiquetas de Segmento" + +#: ../src/gui/application/RosegardenGUIApp.cpp:986 +msgid "Add &Track" +msgstr "Añadir &Pista" + +#: ../src/gui/application/RosegardenGUIApp.cpp:990 +msgid "&Add Tracks..." +msgstr "Añadir Pistas..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:996 +msgid "D&elete Track" +msgstr "&Borrar Pista" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1002 +msgid "Move Track &Down" +msgstr "Mover Pista &Abajo" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1008 +msgid "Move Track &Up" +msgstr "Mover Pista &Arriba" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1012 +msgid "Select &Next Track" +msgstr "Seleccio&nar Siguiente Pista" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1017 +msgid "Select &Previous Track" +msgstr "Seleccionar &Pista Anterior" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1022 +msgid "Mute or Unmute Track" +msgstr "Silenciar o no silenciar pista" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1027 +msgid "Arm or Un-arm Track for Record" +msgstr "Armar o no armar pista para grabar" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1034 +msgid "&Mute all Tracks" +msgstr "&Silenciar todas las Pistas" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1040 +msgid "&Unmute all Tracks" +msgstr "&No silenciar ninguna Pista" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1044 +msgid "&Remap Instruments..." +msgstr "&Remapear Instrumentos..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:1053 +msgid "&Audio Mixer" +msgstr "Me&zclador de Audio" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1059 +msgid "Midi Mi&xer" +msgstr "Me&zclador MIDI" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1065 +msgid "Manage MIDI &Devices" +msgstr "Gestionar &Dispositivos MIDI" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1071 +msgid "Manage S&ynth Plugins" +msgstr "Gestionar Plugins de Sinteti&zador" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1075 +msgid "Modify MIDI &Filters" +msgstr "Modificar &Filtros MIDI" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1079 +msgid "MIDI Thru Routing" +msgstr "Encaminamiento MIDI Thru" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1085 +msgid "Manage &Metronome" +msgstr "Gestionar &Metrónomo" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1089 +msgid "&Save Current Document as Default Studio" +msgstr "Guardar documento actual como E&studio predeterminado" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1093 +msgid "&Import Default Studio" +msgstr "&Importar Estudio por Omisión" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1097 +msgid "Im&port Studio from File..." +msgstr "Im&portar Estudio desde Archivo..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:1101 +msgid "&Reset MIDI Network" +msgstr "&Reiniciar red MIDI" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1105 +msgid "Set Quick Marker at Playback Position" +msgstr "Insertar marcador rápido en la posición de reproducción" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1109 +msgid "Jump to Quick Marker" +msgstr "Saltar al marcador rápido" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1142 +#: ../src/gui/editors/matrix/MatrixView.cpp:782 +#: ../src/gui/editors/notation/NotationView.cpp:2397 +#: ../src/gui/studio/AudioMixerWindow.cpp:105 +#: ../src/gui/studio/MidiMixerWindow.cpp:81 +msgid "&Play" +msgstr "&Reproducir" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1153 +#: ../src/gui/editors/matrix/MatrixView.cpp:791 +#: ../src/gui/editors/notation/NotationView.cpp:2406 +#: ../src/gui/studio/AudioMixerWindow.cpp:114 +#: ../src/gui/studio/MidiMixerWindow.cpp:90 +msgid "&Stop" +msgstr "&Parar" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1160 +#: ../src/gui/editors/matrix/MatrixView.cpp:802 +#: ../src/gui/editors/notation/NotationView.cpp:2417 +#: ../src/gui/studio/AudioMixerWindow.cpp:125 +#: ../src/gui/studio/MidiMixerWindow.cpp:101 +msgid "&Fast Forward" +msgstr "Avance &Rápido" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1168 +#: ../src/gui/editors/matrix/MatrixView.cpp:796 +#: ../src/gui/editors/notation/NotationView.cpp:2411 +#: ../src/gui/studio/AudioMixerWindow.cpp:119 +#: ../src/gui/studio/MidiMixerWindow.cpp:95 +msgid "Re&wind" +msgstr "Re&bobinar" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1175 +msgid "P&unch in Record" +msgstr "&Grabar Durante Ejecución" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1182 +#: ../src/gui/studio/AudioMixerWindow.cpp:143 +#: ../src/gui/studio/MidiMixerWindow.cpp:119 +msgid "&Record" +msgstr "G&rabar" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1189 +#: ../src/gui/editors/matrix/MatrixView.cpp:808 +#: ../src/gui/editors/notation/NotationView.cpp:2423 +#: ../src/gui/studio/AudioMixerWindow.cpp:131 +#: ../src/gui/studio/MidiMixerWindow.cpp:107 +msgid "Rewind to &Beginning" +msgstr "Re&bobinar al principio" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1196 +#: ../src/gui/editors/matrix/MatrixView.cpp:814 +#: ../src/gui/editors/notation/NotationView.cpp:2429 +#: ../src/gui/studio/AudioMixerWindow.cpp:137 +#: ../src/gui/studio/MidiMixerWindow.cpp:113 +msgid "Fast Forward to &End" +msgstr "Avance Rá&pido al Final" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1203 +#: ../src/gui/editors/matrix/MatrixView.cpp:832 +#: ../src/gui/editors/notation/NotationView.cpp:2447 +msgid "Scro&ll to Follow Playback" +msgstr "Desp&lazamiento para Seguir la Reproducción" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1209 +#: ../src/gui/editors/matrix/MatrixView.cpp:838 +#: ../src/gui/editors/notation/NotationView.cpp:2453 +#: ../src/gui/studio/AudioMixerWindow.cpp:149 +#: ../src/gui/studio/MidiMixerWindow.cpp:125 +msgid "Panic" +msgstr "Pánico" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1213 +msgid "Segment Debug Dump " +msgstr "Vertedero de Depuración de Segmentos " + +#: ../src/gui/application/RosegardenGUIApp.cpp:1283 +msgid " Zoom: " +msgstr " Ampliar: " + +#: ../src/gui/application/RosegardenGUIApp.cpp:1719 +msgid "File \"%1\" does not exist" +msgstr "El archivo \"%1\" no existe" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1725 +msgid "File \"%1\" is actually a directory" +msgstr "El archivo \"%1\" es un directorio" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1734 +msgid "You do not have read permission for \"%1\"" +msgstr "No tiene permiso de lectura para \"%1\"" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1802 +msgid "" +"An auto-save file for this document has been found\n" +"Do you want to open it instead ?" +msgstr "" +"Se ha encontrado un archivo auto-guardado para este documento\n" +"¿Quiere abrirlo en lugar del original?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1896 +msgid "Example Files" +msgstr "Archivos de Ejemplo" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2100 +msgid "Opening a new application window..." +msgstr "Abriendo una nueva ventana de la aplicación..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2110 +msgid "Creating new document..." +msgstr "Creando nuevo documento..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2154 +#, c-format +msgid "" +"Malformed URL\n" +"%1" +msgstr "" +"Formato erróneo de URL\n" +"%1" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2179 +#: ../src/gui/application/RosegardenGUIApp.cpp:2240 +msgid "Opening file..." +msgstr "Abriendo archivo..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2201 +#: ../src/gui/application/RosegardenGUIApp.cpp:2220 +msgid "Open File" +msgstr "Abrir Archivo" + +#: ../src/document/RosegardenGUIDoc.cpp:1225 +#: ../src/gui/application/RosegardenGUIApp.cpp:2258 +msgid "Saving file..." +msgstr "Guardando archivo..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2330 +msgid "This is not a valid filename.\n" +msgstr "Este Nombre de Archivo no es válido.\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2335 +msgid "This is not a local file.\n" +msgstr "Este no es un archivo local.\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2342 +#: ../src/gui/studio/BankEditorDialog.cpp:1640 +#: ../src/gui/studio/DeviceManagerDialog.cpp:787 +msgid "You have specified a directory" +msgstr "Ha especificado un directorio" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2348 +#: ../src/gui/studio/BankEditorDialog.cpp:1646 +#: ../src/gui/studio/DeviceManagerDialog.cpp:793 +msgid "The specified file exists. Overwrite?" +msgstr "El archivo especificado ya existe. ¿Sobreescribir?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2362 +msgid "Saving file with a new filename..." +msgstr "Guardando archivo con un nuevo nombre..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2364 +msgid "Rosegarden files" +msgstr "Archivos de Rosegarden" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2365 +#: ../src/gui/application/RosegardenGUIApp.cpp:4860 +#: ../src/gui/application/RosegardenGUIApp.cpp:4904 +#: ../src/gui/application/RosegardenGUIApp.cpp:4942 +#: ../src/gui/application/RosegardenGUIApp.cpp:4975 +#: ../src/gui/application/RosegardenGUIApp.cpp:5009 +#: ../src/gui/application/RosegardenGUIApp.cpp:5116 +msgid "All files" +msgstr "Todos los archivos" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2366 +msgid "Save as..." +msgstr "Guardar como..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2404 +msgid "Closing file..." +msgstr "Cerrando archivo..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2421 +#: ../src/gui/editors/notation/NotationView.cpp:4618 +msgid "Printing..." +msgstr "Imprimiendo..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2433 +#: ../src/gui/editors/notation/NotationView.cpp:4635 +msgid "Previewing..." +msgstr "Pre-visualización..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2440 +msgid "Exiting..." +msgstr "Saliendo..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2463 +msgid "Cutting selection..." +msgstr "Cortando selección..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2474 +#: ../src/gui/editors/matrix/MatrixView.cpp:1614 +#: ../src/gui/editors/notation/NotationView.cpp:4763 +msgid "Copying selection to clipboard..." +msgstr "Copiando la selección al portapapeles..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2484 +#: ../src/gui/editors/eventlist/EventView.cpp:878 +#: ../src/gui/editors/matrix/MatrixView.cpp:1625 +#: ../src/gui/editors/notation/NotationView.cpp:4796 +#: ../src/gui/editors/notation/NotationView.cpp:4841 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:352 +msgid "Clipboard is empty" +msgstr "Portapapeles vacío" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2487 +#: ../src/gui/editors/eventlist/EventView.cpp:882 +#: ../src/gui/editors/matrix/MatrixView.cpp:1629 +#: ../src/gui/editors/notation/NotationView.cpp:4804 +#: ../src/gui/editors/notation/NotationView.cpp:4845 +msgid "Inserting clipboard contents..." +msgstr "Insertando el contenido del portapapeles..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2556 +msgid "Duration of empty range to insert" +msgstr "Duración del rango vacío para insertar" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2631 +msgid "This function needs no more than one segment to be selected." +msgstr "Esta función necesita no más de un segmento seleccionado" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2654 +msgid "Can't join Audio segments" +msgstr "No se pueden unir segmentos de Audio" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2707 +msgid "rescaling an audio file" +msgstr "Re-escalado de un archivo de audio" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2723 +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:172 +msgid "Rescaling audio file..." +msgstr "Re-escalando archivo de audio..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2767 +msgid "" +"The audio file path does not exist or is not writable.\n" +"You must set the audio file path to a valid directory in Document Properties " +"before %1.\n" +"Would you like to set it now?" +msgstr "" +"El directorio de archivos de audio no existe o no se puede escribir.\n" +"Usted debe establecer el directorio de archivos de audio en un directorio " +"válido desde Propiedades del Documento antes de %1.\n" +"¿Quiere usted configurarlo ahora?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2769 +#: ../src/gui/application/RosegardenGUIApp.cpp:5291 +#: ../src/gui/application/RosegardenGUIApp.cpp:5339 +#: ../src/gui/editors/segment/TrackButtons.cpp:419 +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:159 +msgid "Set audio file path" +msgstr "Directorio de los archivos de audio " + +#: ../src/gui/application/RosegardenGUIApp.cpp:2833 +msgid "Jog Selection" +msgstr "Correr Selección" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2978 +#, c-format +msgid "" +"_n: Split Segment at Time\n" +"Split %n Segments at Time" +msgstr "" +"Dividir Segmento por Tiempo\n" +"Dividir %n Segmentos por Tiempo" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3013 +#: ../src/gui/general/EditViewBase.cpp:619 +msgid "Segment Start Time" +msgstr "Tiempo de Comienzo de Segmento" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3023 +msgid "Set Segment Start Times" +msgstr "Establecer Tiempos de Comienzo de Segmento" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3024 +#: ../src/gui/general/EditViewBase.cpp:626 +msgid "Set Segment Start Time" +msgstr "Establecer Tiempo de Comienzo de Segmento" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3056 +#: ../src/gui/general/EditViewBase.cpp:644 +msgid "Segment Duration" +msgstr "Duración del Segmento" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3068 +msgid "Set Segment Durations" +msgstr "Establecer Duraciones de Segmento" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3069 +#: ../src/gui/general/EditViewBase.cpp:652 +msgid "Set Segment Duration" +msgstr "Establecer Duración de Segmento" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3176 +#: ../src/gui/application/RosegardenGUIApp.cpp:5875 +msgid "Set Global Tempo" +msgstr "Establecer Tempo global" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3234 +#: ../src/gui/general/EditViewBase.cpp:477 +msgid "Toggle the toolbar..." +msgstr "Conmuta la barra de herramientas..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3244 +msgid "Toggle the tools toolbar..." +msgstr "Conmutar la barra de herramientas de herramientas..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3254 +msgid "Toggle the tracks toolbar..." +msgstr "Conmutar la barra de herramientas de pistas" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3264 +msgid "Toggle the editor toolbar..." +msgstr "Conmutar la barra de herramientas del editor..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3274 +msgid "Toggle the transport toolbar..." +msgstr "Conmutar la barra de herramientas de transporte..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3284 +msgid "Toggle the zoom toolbar..." +msgstr "Conmutar la barra de herramientas de ampliación..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3294 +msgid "Toggle the Transport" +msgstr "Conmutar el transporte" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3377 +#: ../src/gui/general/EditViewBase.cpp:487 +msgid "Toggle the statusbar..." +msgstr "Conmutar la barra de estado..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3434 +msgid "" +"The join tool isn't implemented yet. Instead please highlight the segments " +"you want to join and then use the menu option:\n" +"\n" +" Segments->Collapse Segments.\n" +msgstr "" +"la herramienta de unión no está implementada todavía. En su lugar, por favor " +"seleccione los segmentos que desea unir y use la opción de menú:\n" +"\n" +" Segmentos->Fusionar Segmentos.\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3437 +msgid "Join tool not yet implemented" +msgstr "Herramienta de Unión no implementada todavía" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3675 +msgid "Revert modified document to previous saved version?" +msgstr "¿Volver a la versión anterior del documento modificado?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3691 +msgid "" +"*.rgp|Rosegarden Project files\n" +"*|All files" +msgstr "" +"*.rgp|Archivos de Proyecto de Rosegarden\n" +"*|Todos los archivos" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3692 +msgid "Import Rosegarden Project File" +msgstr "Importar archivo de Proyecto de Rosegarden" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3717 +msgid "Failed to import project file \"%1\"" +msgstr "Fallo al importar archivo de proyecto \"%1\"" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3739 +msgid "Open MIDI File" +msgstr "Abrir Archivo MIDI" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3756 +msgid "Merge MIDI File" +msgstr "Mezclar archivo MIDI" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3866 +msgid "Importing MIDI file..." +msgstr "Importando archivo MIDI..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3903 +msgid "Calculating notation..." +msgstr "Calculando partitura..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3950 +msgid "Calculate Notation" +msgstr "Calcular Partitura" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3991 +#: ../src/gui/application/RosegardenGUIApp.cpp:4008 +msgid "" +"*.rose|Rosegarden-2 files\n" +"*|All files" +msgstr "" +"*.rose|Archivos de Rosegarden-2\n" +"*|Todos los archivos" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3992 +#: ../src/gui/application/RosegardenGUIApp.cpp:4009 +msgid "Open Rosegarden 2.1 File" +msgstr "Abrir Archivo de Rosegarden 2.1" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4026 +msgid "Importing Rosegarden 2.1 file..." +msgstr "Importando archivo.de Rosegarden 2.1 ..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4052 +msgid "Can't load Rosegarden 2.1 file. It appears to be corrupted." +msgstr "No se puede cargar archivo de Rosegarden 2.1. Parece estar corrompido." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4078 +#: ../src/gui/application/RosegardenGUIApp.cpp:4095 +msgid "" +"*.h2song|Hydrogen files\n" +"*|All files" +msgstr "" +"*.h2song|Archivos de Hydrogen\n" +"*|Todos los archivos" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4079 +#: ../src/gui/application/RosegardenGUIApp.cpp:4096 +msgid "Open Hydrogen File" +msgstr "Abrir Archivo de Hydrogen" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4113 +msgid "Importing Hydrogen file..." +msgstr "Importando archivo.de Hydrogen..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4139 +msgid "Can't load Hydrogen file. It appears to be corrupted." +msgstr "No se puede cargar archivo de Hydrogen. Parece estar corrompido." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4527 +msgid "Export and import of Rosegarden Project files" +msgstr "Exportación e importación de archivos de Proyecto de Rosegarden..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4529 +msgid "The Rosegarden Project Packager helper script" +msgstr "El empaquetador de Proyectos de Rosegarden" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4533 +msgid "%1 - for project file support" +msgstr "%1 - para apoyo de archivos de Proyecto de Rosegarden" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4550 +msgid "The Rosegarden LilyPondView helper script" +msgstr "El guión ayudante Rosegarden LilyPondView" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4554 +msgid "%1 - for LilyPond preview support" +msgstr "%1 - para previsualización con LilyPond" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4570 +msgid "The Rosegarden Audio File Importer helper script" +msgstr "El guión ayudante Rosegarden Audio File Importer" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4574 +msgid "%1 - for audio file import" +msgstr " %1 - para importación de archivos de audio " + +#: ../src/gui/application/RosegardenGUIApp.cpp:4585 +msgid "" +"

                  Helper programs not found

                  Rosegarden could not find one or more " +"helper programs which it needs to provide some features. The following " +"features will not be available:

                  " +msgstr "" +"

                  Guiones ayudantes no se hallaron

                  Rosegarden buscó pero no halló " +"uno u más de los guiones ayudantes que se requieren para activar unas " +"características especiales. Las características siguientes no estarán " +"disponibles:

                  " + +#: ../src/gui/application/RosegardenGUIApp.cpp:4586 +#: ../src/gui/application/RosegardenGUIApp.cpp:4592 +msgid "
                    " +msgstr "
                      " + +#: ../src/gui/application/RosegardenGUIApp.cpp:4588 +#: ../src/gui/application/RosegardenGUIApp.cpp:4594 +msgid "
                    • %1
                    • " +msgstr "
                    • %1
                    • " + +#: ../src/gui/application/RosegardenGUIApp.cpp:4590 +#: ../src/gui/application/RosegardenGUIApp.cpp:4596 +msgid "
                    " +msgstr "
                  " + +#: ../src/gui/application/RosegardenGUIApp.cpp:4591 +msgid "" +"

                  To fix this, you should install the following additional programs:

                  " +msgstr "" +"

                  Para arreglar esto, debes instalar los siguientes programas adicionales:" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4603 +msgid "Helper programs not found" +msgstr "Guilones ayudandes no encontrados" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4686 +msgid "Starting the sequencer..." +msgstr "Iniciando el secuenciador..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4712 +msgid "Couldn't start the sequencer" +msgstr "No se ha podido iniciar el secuenciador" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4789 +msgid "Clearing down jackd..." +msgstr "Despejando jackd..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4803 +msgid "Starting jackd..." +msgstr "Iniciando jackd..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4842 +msgid "" +"The Rosegarden sequencer process has exited unexpectedly. Sound and " +"recording will no longer be available for this session.\n" +"Please exit and restart Rosegarden to restore sound capability." +msgstr "" +"El proceso del secuenciador de Rosegarden ha finalizado de forma inesperada. " +"Sonido y grabación ya no van a estar disponibles para esta sesión.\n" +"Por favor, finalice y reinicie Rosegarden para restaurar las funcionalidades " +"de sonido." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4846 +msgid "" +"The Rosegarden sequencer could not be started, so sound and recording will " +"be unavailable for this session.\n" +"For assistance with correct audio and MIDI configuration, go to http://" +"rosegardenmusic.com." +msgstr "" +"El secuenciador de Rosegarden no pudo ser iniciado, por lo tanto no " +"estarándisponibles en esta sesión ni sonido ni grabación.\n" +"Para asistencia acerca de una correcta configuración de audio y MIDI, vaya " +"ahttp://rosegardenmusic.com." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4856 +msgid "Exporting Rosegarden Project file..." +msgstr "Exportanto archivo de Proyecto de Rosegarden..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4859 +msgid "Rosegarden Project files\n" +msgstr "Archivos de Proyecto de Rosegarden\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4861 +#: ../src/gui/application/RosegardenGUIApp.cpp:4905 +#: ../src/gui/application/RosegardenGUIApp.cpp:4943 +#: ../src/gui/application/RosegardenGUIApp.cpp:4976 +#: ../src/gui/application/RosegardenGUIApp.cpp:5010 +#: ../src/gui/application/RosegardenGUIApp.cpp:5116 +msgid "Export as..." +msgstr "Exportar como..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4875 +#, c-format +msgid "Saving Rosegarden file to package failed: %1" +msgstr "Fallo al intentar grabar el archivo de Rosegarden en un paquete: %1" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4889 +msgid "Failed to export to project file \"%1\"" +msgstr "Fallo al exportar hacia el archivo de proyecto \"%1\"" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4900 +#: ../src/gui/application/RosegardenGUIApp.cpp:4915 +msgid "Exporting MIDI file..." +msgstr "Exportando archivo MIDI..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4903 +msgid "Standard MIDI files\n" +msgstr "Archivos MIDI Estándar\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4934 +#: ../src/gui/application/RosegardenGUIApp.cpp:4966 +#: ../src/gui/application/RosegardenGUIApp.cpp:4999 +#: ../src/gui/application/RosegardenGUIApp.cpp:5103 +#: ../src/gui/application/RosegardenGUIApp.cpp:5140 +#: ../src/gui/editors/notation/NotationView.cpp:4733 +msgid "Export failed. The file could not be opened for writing." +msgstr "" +"Ha fallado la exportación. El archivo no se ha podido abrir para escritura." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4940 +#: ../src/gui/application/RosegardenGUIApp.cpp:4952 +msgid "Exporting Csound score file..." +msgstr "Exportando archivo.Csound..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4972 +#: ../src/gui/application/RosegardenGUIApp.cpp:4985 +msgid "Exporting Mup file..." +msgstr "Exportando archivo Mup..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4975 +msgid "Mup files\n" +msgstr "Archivos Mup\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5005 +#: ../src/gui/application/RosegardenGUIApp.cpp:5089 +#: ../src/gui/editors/notation/NotationView.cpp:4719 +msgid "Exporting LilyPond file..." +msgstr "Exportando archivo.LilyPond... " + +#: ../src/gui/application/RosegardenGUIApp.cpp:5008 +msgid "LilyPond files" +msgstr "Archivos de LilyPond " + +#: ../src/gui/application/RosegardenGUIApp.cpp:5023 +#: ../src/gui/editors/notation/NotationView.cpp:4653 +msgid "Printing LilyPond file..." +msgstr "Imprimiendo archivo.LilyPond..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:5028 +#: ../src/gui/application/RosegardenGUIApp.cpp:5052 +#: ../src/gui/editors/notation/NotationView.cpp:4658 +#: ../src/gui/editors/notation/NotationView.cpp:4682 +msgid "Failed to open a temporary file for LilyPond export." +msgstr "Fallo al abrir un archivo temporario para exportar a LilyPond. " + +#: ../src/gui/application/RosegardenGUIApp.cpp:5047 +#: ../src/gui/editors/notation/NotationView.cpp:4677 +msgid "Previewing LilyPond file..." +msgstr "Previsualizando archivo.LilyPond..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:5080 +#: ../src/gui/editors/notation/NotationView.cpp:4710 +msgid "LilyPond Preview Options" +msgstr "Opciones de previsualización con LilyPond " + +#: ../src/gui/application/RosegardenGUIApp.cpp:5081 +#: ../src/gui/editors/notation/NotationView.cpp:4711 +msgid "LilyPond preview options" +msgstr "Opciones de previsualización con LilyPond " + +#: ../src/gui/application/RosegardenGUIApp.cpp:5112 +#: ../src/gui/application/RosegardenGUIApp.cpp:5126 +msgid "Exporting MusicXML file..." +msgstr "Exportando archivo.MusicXML..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:5115 +msgid "XML files" +msgstr "Archivos XML" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5289 +#: ../src/gui/editors/segment/TrackButtons.cpp:417 +msgid "" +"The audio file path does not exist or is not writable.\n" +"Please set the audio file path to a valid directory in Document Properties " +"before recording audio.\n" +"Would you like to set it now?" +msgstr "" +"El directorio de archivos de audio no existe o no es escribible.\n" +"Por favor, configura el directorio de archivos de audio hacia un directorio " +"válido desde Propiedades del Documento antes de grabar audio.\n" +"¿Quieres configurarlo ahora?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5337 +msgid "" +"The audio file path does not exist or is not writable.\n" +"Please set the audio file path to a valid directory in Document Properties " +"before you start to record audio.\n" +"Would you like to set it now?" +msgstr "" +"El directorio de archivos de audio no existe o no es escribible.\n" +"Por favor, configura el directorio de archivos de audio hacia un directorio " +"válido desde Propiedades del Documento antes de grabar audio.\n" +"¿Quieres configurarlo ahora? " + +#: ../src/gui/application/RosegardenGUIApp.cpp:5780 +msgid "Move playback pointer to time" +msgstr "Mover el apuntador de reproducción al tiempo" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5793 +#: ../src/gui/editors/matrix/MatrixView.cpp:2240 +msgid "%1%" +msgstr "%1%" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5861 +#, c-format +msgid "Replace Tempo Change at %1" +msgstr "Reemplazar Cambio de Tempo en %1" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5891 +msgid "Set Global and Default Tempo" +msgstr "Establecer Tempo Global y Predeterminado" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5914 +msgid "Move Tempo Change" +msgstr "Mover Cambio de Tempo" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5949 +msgid "new marker" +msgstr "marcador nuevo" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5950 +msgid "no description" +msgstr "no descripción" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6363 +#, c-format +msgid "Sequencer failed to add audio file %1" +msgstr "El secuenciador ha fallado al añadir el archivo de audio %1" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6388 +#, c-format +msgid "Sequencer failed to remove audio file id %1" +msgstr "" +"El secuenciador ha fallado al eliminar el identificador de archivo de audio %" +"1" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6448 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1086 +msgid "Modify Segment label" +msgstr "Modificar etiqueta del Segmento" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6450 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1088 +msgid "Modify Segments label" +msgstr "Modificar etiquetas de Segmentos" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6452 +msgid "Relabelling selection..." +msgstr "Reetiquetando selección..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:7539 +msgid "Play List" +msgstr "Lista de Ejecución" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7567 +msgid "http://rosegarden.sourceforge.net/tutorial/en/chapter-0.html" +msgstr "http://rosegarden.sourceforge.net/tutorial/en/chapter-0.html" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7574 +msgid "http://rosegarden.sourceforge.net/tutorial/bug-guidelines.html" +msgstr "http://rosegarden.sourceforge.net/tutorial/bug-guidelines.html" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7650 +msgid "Queueing MIDI panic events for tranmission..." +msgstr "Encolando eventos MIDI de pánico para transmisión..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:7708 +msgid "Are you sure you want to save this as your default studio?" +msgstr "¿Está seguro de querer guardar esto como el Estudio predeterminado?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7713 +msgid "Saving current document as default studio..." +msgstr "Guardando el documento actual como Estudio predeterminado..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:7738 +msgid "" +"Are you sure you want to import your default studio and lose the current one?" +msgstr "" +"¿Está seguro de querer importar el estudio por omisión y perder el actual?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7773 +msgid "Import Studio from File" +msgstr "Importar Estudio desde Archivo" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7807 +msgid "Import Studio" +msgstr "Importar Estudio" + +#: ../src/gui/application/RosegardenGUIApp.cpp:8015 +msgid "" +"

                  Newer version available

                  A newer version of Rosegarden may be " +"available.
                  Please consult the Rosegarden website for more information.

                  " +msgstr "" +"

                  Versión más actualizada disponible

                  Puede que una versión más " +"actualizada de Rosegarden esté disponible.
                  Favor de consultar el web de Rosegarden para ver " +"más información.

                  " + +#: ../src/gui/application/RosegardenGUIApp.cpp:8016 +msgid "Newer version available" +msgstr "Versión más actualizada disponible" + +#: ../src/gui/application/RosegardenApplication.cpp:104 +#, c-format +msgid "Failed to load soundfont %1" +msgstr "Fallo al cargar SoundFont %1" + +#: ../src/gui/application/main.cpp:311 +msgid "Rosegarden - A sequencer and musical notation editor" +msgstr "Rosegarden - Un secuenciador y editor de partituras" + +#: ../src/gui/application/main.cpp:315 +msgid "Don't use the sequencer (support editing only)" +msgstr "No utilizar el secuenciador (soportar edición sólamente)" + +#: ../src/gui/application/main.cpp:316 +msgid "Don't show the splash screen" +msgstr "No mostrar el panel de bienvenida" + +#: ../src/gui/application/main.cpp:317 +msgid "Don't automatically run in the background" +msgstr "No ejecutar automáticamente en segundo plano" + +#: ../src/gui/application/main.cpp:318 +msgid "Attach to a running sequencer process, if found" +msgstr "Adjuntar a un proceso activo del secuenciador, si se encuentra" + +#: ../src/gui/application/main.cpp:319 +msgid "Ignore installed version - for devs only" +msgstr "Ignorar versión instalada - solamente para desarrolladores" + +#: ../src/gui/application/main.cpp:320 +msgid "file to open" +msgstr "archivo a abrir" + +#: ../src/gui/application/main.cpp:370 +msgid "Installation contains the wrong version of Rosegarden." +msgstr "La instalación contiene una versión.incorrecta de Rosegarden" + +#: ../src/gui/application/main.cpp:371 +msgid "" +" The wrong versions of Rosegarden's data files were\n" +" found in the standard KDE installation directories.\n" +" (I am %1, but the installed files are for version %2.)\n" +"\n" +" This may mean one of the following:\n" +"\n" +" 1. This is a new upgrade of Rosegarden, and it has not yet been\n" +" installed. If you compiled it yourself, check that you have\n" +" run \"make install\" and that the procedure completed\n" +" successfully.\n" +"\n" +" 2. The upgrade was installed in a non-standard directory,\n" +" and an old version was found in a standard directory. If so,\n" +" you will need to add the correct directory to your KDEDIRS\n" +" environment variable before you can run it." +msgstr "" +" Las versiones incorrectas de los archivos de datos de\n" +" Rosegarden se han encontrado en los directorios\n" +" estándar de instalación de KDE.\n" +" (Este programa es %1, pero los archivos instalados son\n" +" para la versión %2.)\n" +"\n" +" Esto puede ser debido a una de las siguientes razones:\n" +"\n" +" 1. Esta es una nueva actualización de Rosegarden, que no ha sido\n" +" instalada todavía. Si la ha compilado usted mismo, compruebe\n" +" que ha ejecutado \"make install\" y que el procedimiento se\n" +" ha completado satisfactoriamente.\n" +"\n" +" 2. La actualización se ha instalado en un directorio no estándar,\n" +" y una versión anterior se ha encontrado en el directorio estándar.\n" +" Si es así, usted necesita añadir el directorio correcto a la variable\n" +" de entorno KDEDIRS antes de ejecutar el programa. " + +#: ../src/gui/application/main.cpp:383 ../src/gui/application/main.cpp:401 +msgid "Installation problem" +msgstr "Problema de instalación" + +#: ../src/gui/application/main.cpp:389 +msgid "Rosegarden does not appear to have been installed." +msgstr "Rosegarden no parece haber sido instalado" + +#: ../src/gui/application/main.cpp:390 +msgid "" +" One or more of Rosegarden's data files could not be\n" +" found in the standard KDE installation directories.\n" +"\n" +" This may mean one of the following:\n" +"\n" +" 1. Rosegarden has not been correctly installed. If you compiled\n" +" it yourself, check that you have run \"make install\" and that\n" +" the procedure completed successfully.\n" +"\n" +" 2. Rosegarden has been installed in a non-standard directory,\n" +" and you need to add this directory to your KDEDIRS environment\n" +" variable before you can run it. This may be the case if you\n" +" installed into $HOME or a local third-party package directory\n" +" like /usr/local or /opt." +msgstr "" +" Uno o más archivos de datos de Rosegarden no se han\n" +" encontrado en los directorios estándar de instalación de KDE.\n" +"\n" +" Esto puede ser debido a una de las siguientes razones:\n" +"\n" +" 1. Rosegarden no ha sido instalado correctamente. Si usted ha\n" +" compilado el programa, compruebe que ha ejecutado\n" +" \"make install\" y que el procedimiento ha concluido de\n" +" forma satisfactoria.\n" +"\n" +" 2. Rosegarden ha sido instalado en un directorio no estándar,\n" +" y se necesita añadir este directorio a la variable de entorno\n" +" KDEDIRS antes de ejecutar el programa. Esto puede ser debido\n" +" a la instalación en el directorio $HOME o en un directorio local\n" +" de paquetes de terceros, como /usr/local o /opt. " + +#: ../src/gui/application/main.cpp:414 +msgid "Rosegarden" +msgstr "Rosegarden" + +#: ../src/gui/application/main.cpp:416 +msgid "" +"Copyright 2000 - 2008 Guillaume Laurent, Chris Cannam, Richard Bown\n" +"Parts copyright 1994 - 2004 Chris Cannam, Andy Green, Richard Bown, " +"Guillaume Laurent\n" +"LilyPond fonts copyright 1997 - 2005 Han-Wen Nienhuys and Jan Nieuwenhuizen" +msgstr "" +"Copyright 2000 - 2008 Guillaume Laurent, Chris Cannam, Richard Bown\n" +"Porciones copyright 1994 - 2004 Chris Cannam, Andy Green, Richard Bown, " +"Guillaume Laurent\n" +"Tipografías de LilyPond copyright 1997 - 2005 Han-Wen Nienhuys y Jan " +"Nieuwenhuizen" + +#: ../src/gui/application/main.cpp:428 +msgid "Chord labelling code" +msgstr "código de representación textual de acordes " + +#: ../src/gui/application/main.cpp:429 +msgid "" +"LilyPond output\n" +"assorted other patches\n" +"i18n-ization" +msgstr "" +"exportación a LilyPond\n" +"otros parches surtidos\n" +"internacionalización " + +#: ../src/gui/application/main.cpp:430 +msgid "" +"UI improvements\n" +"bug fixes" +msgstr "" +"mejoras del Interfaz de Usuario\n" +"correcciones de errores" + +#: ../src/gui/application/main.cpp:431 +msgid "" +"Segment colours\n" +"Other UI and bug fixes" +msgstr "" +"colores de los segmentos\n" +"otros cambios en la Interfaz de Usuario y correcciones de errores" + +#: ../src/gui/application/main.cpp:432 +msgid "" +"Russian translation\n" +"i18n-ization" +msgstr "" +"traducción al ruso\n" +"internacionalización" + +#: ../src/gui/application/main.cpp:433 ../src/gui/application/main.cpp:434 +msgid "German translation" +msgstr "traducción al alemán" + +#: ../src/gui/application/main.cpp:435 +msgid "Welsh translation" +msgstr "traducción al galés" + +#: ../src/gui/application/main.cpp:436 +msgid "French translation" +msgstr "traducción al francés" + +#: ../src/gui/application/main.cpp:437 +msgid "" +"French translation\n" +"Bug fixes" +msgstr "" +"traducción al francés \n" +"arreglo de fallos" + +#: ../src/gui/application/main.cpp:438 ../src/gui/application/main.cpp:439 +msgid "Italian translation" +msgstr "traducción al italiano" + +#: ../src/gui/application/main.cpp:440 ../src/gui/application/main.cpp:441 +msgid "Swedish translation" +msgstr "traducción al sueco" + +#: ../src/gui/application/main.cpp:442 +msgid "Estonian translation" +msgstr "traducción al estonio" + +#: ../src/gui/application/main.cpp:443 ../src/gui/application/main.cpp:444 +msgid "Dutch translation" +msgstr "traducción al holandés" + +#: ../src/gui/application/main.cpp:445 +msgid "HSpinBox class" +msgstr "clase HSpinBox" + +#: ../src/gui/application/main.cpp:446 +msgid "Transposition by interval" +msgstr "transporte por intervalo" + +#: ../src/gui/application/main.cpp:447 +msgid "Original designs for rotary controllers" +msgstr "diseños originales para controles rotatorios" + +#: ../src/gui/application/main.cpp:448 +msgid "Japanese translation" +msgstr "traducción al japonés" + +#: ../src/gui/application/main.cpp:449 +msgid "" +"Auto-scroll deceleration\n" +"Rests outside staves and other bug fixes" +msgstr "" +"desaceleración del desplazamiento automático\n" +"silencios fuera del pentagrama y otras correcciones de errores" + +#: ../src/gui/application/main.cpp:450 +msgid "Simplified Chinese translation" +msgstr "traducción al chino simplificado " + +#: ../src/gui/application/main.cpp:451 +msgid "LIRC infrared remote-controller support" +msgstr "soporte para control remoto por infrarrojos LIRC" + +#: ../src/gui/application/main.cpp:452 +msgid "MTC slave timing implementation" +msgstr "Implementación de tiempo MTC esclavo" + +#: ../src/gui/application/main.cpp:453 +msgid "Czech translation" +msgstr "traducción al checo " + +#: ../src/gui/application/main.cpp:454 +msgid "SCons/bksys building system" +msgstr "Sistema de construcción SCons/bksys" + +#: ../src/gui/application/main.cpp:455 +msgid "icons, icons, icons" +msgstr "iconos, iconos, iconos" + +#: ../src/gui/application/main.cpp:456 ../src/gui/application/main.cpp:457 +#: ../src/gui/application/main.cpp:458 ../src/gui/application/main.cpp:459 +msgid "Spanish translation" +msgstr "traducción al español " + +#: ../src/gui/application/main.cpp:460 ../src/gui/application/main.cpp:461 +msgid "Catalan translation" +msgstr "traducción al catalán" + +#: ../src/gui/application/main.cpp:462 +msgid "" +"1.2.3 splash screen photo\n" +"Gave birth to D. Michael McIntyre, bought him a good flute once\n" +"upon a time, and always humored him when he came over to play her\n" +"some new instrument, even though she really hated his playing.\n" +"Born October 19, 1951, died September 21, 2007, R. I. P." +msgstr "" +"1.2.3 fotografía splash\n" +"Dió a luz a D. Michael McIntyre, lo compró una flauta eráse una vez\n" +"y se murio el 21 de septiembre 2007, requiescat in pace" + +#: ../src/gui/application/main.cpp:463 +msgid "Initial guitar chord editing code" +msgstr "Código fuente incial de acordes de guitarra" + +#: ../src/gui/application/main.cpp:464 +msgid "Polish translation" +msgstr "traducción al polaco" + +#: ../src/gui/application/main.cpp:465 +msgid "Basque translation" +msgstr "traducción al euskera" + +#: ../src/gui/application/main.cpp:466 +msgid "Klearlook theme" +msgstr "tema Klearlook" + +#: ../src/_translatorinfo.cpp:1 ../src/gui/application/main.cpp:468 +msgid "" +"_: NAME OF TRANSLATORS\n" +"Your names" +msgstr "Pedro López-Cabanillas,D. Michael McIntyre,Marcos Guglielmetti" + +#: ../src/_translatorinfo.cpp:3 ../src/gui/application/main.cpp:468 +msgid "" +"_: EMAIL OF TRANSLATORS\n" +"Your emails" +msgstr "" +"plcl@users.sourceforge.net,dmmcintyr@users.sourceforge.net," +"marcospcmusica@yahoo.com.ar" + +#: ../src/gui/application/main.cpp:719 +msgid "Welcome!" +msgstr "¡Bienvenido!" + +#: ../src/gui/application/main.cpp:731 +msgid "" +"

                  Welcome to Rosegarden!

                  Welcome to the Rosegarden audio and MIDI " +"sequencer and musical notation editor.

                  • If you have not already " +"done so, you may wish to install some DSSI synth plugins, or a separate " +"synth program such as QSynth. Rosegarden does not synthesize sounds from " +"MIDI on its own, so without these you will hear nothing.

                  • Rosegarden uses the JACK audio server for recording and " +"playback of audio, and for playback from DSSI synth plugins. These features " +"will only be available if the JACK server is running.

                  • Rosegarden has comprehensive documentation: see the Help menu " +"for the handbook, tutorials, and other information!

                  Rosegarden " +"was brought to you by a team of volunteers across the world. To learn more, " +"go to http://www.rosegardenmusic." +"com/.

                  " +msgstr "" +"

                  ¡Bienvenido a Rosegarden!

                  Rosegarden es un secuenciador de audio " +"y MIDI y un editor de partitura.

                  • Si usted ya no ha hecho esto, " +"puede que quiere instalar algunos plugins DSSI o un softsynth como QSynth. " +"Rosegarden no puede tocar MIDI sin ayudo de hardware (como un Sound Canvas " +"p. ej.) o software como QSynth, o un plugin DSSI como Fluidsynth-DSSI. Sin " +"alguno de estos (recomendamos QSynth), usted no va a oír nada de MIDI.

                  • Rosegarden requiere el servidor de audio JACK para grabar y " +"tocar audio, y para tocar un plugin DSSI. Estas características no estarán " +"disponibles si Rosegarden no puede encontrar un servidor JACK.

                  • Hay mucha documentación sobre Rosegarden, que se encuentra el " +"menú Ayuda. Desafortunadamente, la documentacón sólo se encuentra en inglés " +"actualmente.

                  Rosegarden es el producto de un equipo de " +"voluntarios en muchos paises. Para aprender más, veahttp://www.rosegardenmusic.com/

                  " + +#: ../src/gui/application/RosegardenGUIView.cpp:257 +msgid "No non-audio segments in composition" +msgstr "No hay segmentos no-audio en la composición" + +#: ../src/gui/application/RosegardenGUIView.cpp:333 +msgid "Selection must contain only audio or non-audio segments" +msgstr "La selección sólo puede contener segmentos de Audio o de No-audio" + +#: ../src/gui/application/RosegardenGUIView.cpp:431 +#: ../src/gui/application/RosegardenGUIView.cpp:576 +#: ../src/gui/application/RosegardenGUIView.cpp:612 +#: ../src/gui/application/RosegardenGUIView.cpp:776 +msgid "No non-audio segments selected" +msgstr "No hay segmentos no-audio seleccionados" + +#: ../src/gui/application/RosegardenGUIView.cpp:851 +msgid "" +"You've not yet defined an audio editor for Rosegarden to use.\n" +"See Settings -> Configure Rosegarden -> Audio." +msgstr "" +"No ha definido un editor de audio para que lo utilice Rosegarden.\n" +"Vea Preferencias -> Configurar Rosegarden -> Audio" + +#: ../src/gui/application/RosegardenGUIView.cpp:1559 +#: ../src/gui/application/RosegardenGUIView.cpp:1564 +msgid "Can't add dropped file. " +msgstr "No es posible añadir el archivo soltado. " + +#: ../src/gui/seqmanager/SequenceManager.cpp:1014 +#: ../src/gui/seqmanager/SequenceManager.cpp:1150 +msgid "" +"The JACK Audio subsystem has failed or it has stopped Rosegarden from " +"processing audio.\n" +"Please restart Rosegarden to continue working with audio.\n" +"Quitting other running applications may improve Rosegarden's performance." +msgstr "" +"El subsistema de Audio JACK ha muerto o ha dejado de procesar audio para " +"Rosegarden.\n" +"Por favor, reinicie Rosegarden para continuar trabajando con audio.\n" +"Cierre otras aplicaciones en ejecución para mejorar el rendimiento de " +"Rosegarden. " + +#: ../src/gui/seqmanager/SequenceManager.cpp:1020 +#: ../src/gui/seqmanager/SequenceManager.cpp:1156 +msgid "" +"The JACK Audio subsystem has stopped Rosegarden from processing audio, " +"probably because of a processing overload.\n" +"An attempt to restart the audio service has been made, but some problems may " +"remain.\n" +"Quitting other running applications may improve Rosegarden's performance." +msgstr "" +"El subsistema de Audio JACK ha dejado de procesar audio para Rosegarden, " +"probablemente debido a una sobrecarga de trabajo.\n" +"Se ha realizado un intento de reiniciar el servicio, pero pueden quedar " +"algunos problemas.\n" +"Cerrando otras aplicaciones en ejecución puede mejorar el rendimiento de " +"Rosegarden." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1031 +msgid "" +"Run out of processor power for real-time audio processing. Cannot continue." +msgstr "" +"Se ha sobrepasado la capacidad de proceso para audio en tiempo real. No es " +"posible continuar." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1057 +msgid "" +"A serious error has occurred in the ALSA MIDI subsystem. It may not be " +"possible to continue sequencing. Please check console output for more " +"information." +msgstr "" +"Un error serio ha ocurrido en el subsistema ALSA MIDI. Puede no serposible " +"continuar secuenciando. Por favor revisa la salida de consola para " +"másinformación." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1078 +msgid "JACK Audio subsystem is losing sample frames." +msgstr "Subsistema de audio JACK está perdiendo muestras." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1096 +msgid "" +"Failed to read audio data from disc in time to service the audio subsystem." +msgstr "" +"Fallo leyendo datos de audio desde disco a tiempo para servir el subsistema " +"de audio." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1100 +msgid "" +"Failed to write audio data to disc fast enough to service the audio " +"subsystem." +msgstr "" +"Fallo escribiendo datos de audio en disco suficientemente rápido para servir " +"el subsistema de audio." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1104 +msgid "The audio mixing subsystem is failing to keep up." +msgstr "El subsistema de mezclador de audio está fallando." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1108 +msgid "The audio subsystem is failing to keep up." +msgstr "El subsistema de audio está fallando" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1112 +msgid "Unknown sequencer failure mode!" +msgstr "Fallo desconocido del secuenciador!" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1170 +msgid "" +"

                  System timer resolution is too low

                  Rosegarden was unable to find " +"a high-resolution timing source for MIDI performance.

                  This may mean " +"you are using a Linux system with the kernel timer resolution set too low. " +"Please contact your Linux distributor for more information.

                  Some Linux " +"distributors already provide low latency kernels, see http://rosegarden.wiki." +"sourceforge.net/Low+latency+kernels for instructions.

                  " +msgstr "" +"

                  La resolución del temporizador del sistema es muy baja

                  Rosegarden " +"no ha sido capaz de encontrar una fuente de alta resolución para una " +"temporización de alto rendimiento.

                  Esto puede significar que usted " +"está usando un sistema Linux con la resolución del temporizador muy baja. " +"Por favor, contacte a su distribuidor para mayor información.

                  Algunas " +"distribuciones Linux proporcionan núcleos de baja latencia, vea http://" +"rosegarden.wiki.sourceforge.net/Low+latency+kernels para más instrucciones. " + +#: ../src/gui/seqmanager/SequenceManager.cpp:1188 +msgid "" +"

                  System timer resolution is too low

                  Rosegarden was unable to find " +"a high-resolution timing source for MIDI performance.

                  You may be able " +"to solve this problem by loading the RTC timer kernel module. To do this, " +"try running sudo modprobe snd-rtctimer in a terminal window and then " +"restarting Rosegarden.

                  Alternatively, check whether your Linux " +"distributor provides a multimedia-optimized kernel. See http://rosegarden.wiki." +"sourceforge.net/Low+latency+kernels for notes about this.

                  " +msgstr "" +"

                  La resolución del temporizador del sistema es muy baja

                  Rosegarden " +"no ha sido capaz de encontrar una fuente de alta resolución para una " +"temporización de alto rendimiento.

                  Esto puede significar que usted " +"está usando un sistema Linux con la resolución del temporizador muy baja. " +"Por favor, contacte a su distribuidor para mayor información.

                  Algunas " +"distribuciones Linux proporcionan núcleos de baja latencia, vea http://" +"rosegarden.wiki.sourceforge.net/Low+latency+kernels para más instrucciones." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1312 +msgid "" +"

                  Both MIDI and Audio subsystems have failed to initialize.

                  You may " +"continue without the sequencer, but we suggest closing Rosegarden, running " +"\"alsaconf\" as root, and starting Rosegarden again. If you wish to run " +"with no sequencer by design, then use \"rosegarden --nosequencer\" to avoid " +"seeing this error in the future.

                  " +msgstr "" +"

                  Los subsistemas MIDI y Audio han fallado en su inicialización.

                  " +"

                  Usted puede continuar sin el secuenciador, pero sugerimos que cierre " +"Rosegarden, y ejecute \"alsaconf\" como usuario administrador, reiniciando " +"Rosegarden de nuevo. Si desea utilizar Rosegarden sin secuenciador, entonces " +"puede ejecutar \"rosegarden --nosequencer\" para evitar la aparición de " +"este mensaje de error en el futuro.

                  " + +#: ../src/gui/seqmanager/SequenceManager.cpp:1314 +msgid "" +"

                  The MIDI subsystem has failed to initialize.

                  You may continue " +"without the sequencer, but we suggest closing Rosegarden, running \"modprobe " +"snd-seq-midi\" as root, and starting Rosegarden again. If you wish to run " +"with no sequencer by design, then use \"rosegarden --nosequencer\" to avoid " +"seeing this error in the future.

                  " +msgstr "" +"

                  El subsistema MIDI ha fallado en su inicialización.

                  Usted puede " +"continuar sin el secuenciador, pero sugerimos que cierre Rosegarden, ejecute " +"\"modprobe snd-seq-midi\" como usuario administrador, y reinicie Rosegarden " +"de nuevo. Si desea utilizar Rosegarden sin el secuenciador, entonces ejecute " +"\"rosegarden --nosequencer\" para evitar la aparición de este mensaje de " +"error en el futuro.

                  " + +#: ../src/gui/seqmanager/SequenceManager.cpp:1316 +msgid "" +"

                  The Rosegarden sequencer module version does not match the GUI module " +"version.

                  You have probably mixed up files from two different versions " +"of Rosegarden. Please check your installation.

                  " +msgstr "" +"

                  La versión del módulo secuenciador de Rosegarden no coincide con la " +"versión del módulo IGU.

                  Usted probablemente ha mezclado archivos " +"procedentes de dos versiones diferentes de Rosegarden. Por favor, compruebe " +"su instalación.

                  " + +#: ../src/gui/seqmanager/SequenceManager.cpp:1322 +#, c-format +msgid "

                  Sequencer startup failed

                  %1" +msgstr "

                  La inicialización del secuenciador ha fallado

                  %1" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1330 +msgid "" +"

                  Failed to connect to JACK audio server.

                  Rosegarden could not " +"connect to the JACK audio server. This probably means the JACK server is " +"not running.

                  If you want to be able to play or record audio files or " +"use plugins, you should exit Rosegarden and start the JACK server before " +"running Rosegarden again.

                  " +msgstr "" +"

                  Ha fallado la conexión al servidor de audio JACK

                  Rosegarden no " +"ha podido conectar con el servidor de audio JACK. Esto significa " +"probablemente que el servidor JACK no está funcionando.

                  Si usted " +"quiere ser capaz de reproducir o grabar archivos de audio o utilizar " +"\"plugins\", debería cerrar Rosegarden e iniciar el servidor JACK antes de " +"ejecutar Rosegarden de nuevo.

                  " + +#: ../src/gui/seqmanager/SequenceManager.cpp:1331 +msgid "Failed to connect to JACK" +msgstr "La conexión a JACK ha fallado" + +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:46 +msgid "Modify MIDI filters..." +msgstr "Modificar filtros MIDI..." + +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:58 +msgid "THRU events to ignore" +msgstr "Eventos THRU para ignorar" + +#: ../src/gui/editors/eventlist/EventView.cpp:131 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:60 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:96 +msgid "Note" +msgstr "Nota" + +#: ../src/gui/editors/eventlist/EventView.cpp:132 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:61 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:97 +msgid "Program Change" +msgstr "Cambio de Programa" + +#: ../src/gui/editors/eventlist/EventView.cpp:136 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:62 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:98 +msgid "Key Pressure" +msgstr "Presión de Tecla" + +#: ../src/gui/editors/eventlist/EventView.cpp:137 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:63 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:99 +msgid "Channel Pressure" +msgstr "Presión de Canal" + +#: ../src/gui/editors/eventlist/EventView.cpp:134 +#: ../src/gui/general/EditView.cpp:899 +#: ../src/gui/rulers/ControllerEventsRuler.cpp:198 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:64 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:100 +msgid "Pitch Bend" +msgstr "Inflexión de Tono" + +#: ../src/gui/editors/eventlist/EventView.cpp:133 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:65 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:101 +msgid "Controller" +msgstr "Controlador" + +#: ../src/gui/editors/eventlist/EventView.cpp:135 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:66 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:102 +msgid "System Exclusive" +msgstr "Sistema Exclusivo" + +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:94 +msgid "RECORD events to ignore" +msgstr "Eventos RECORD para ignorar" + +#: ../src/gui/widgets/TimeWidget.cpp:101 +msgid "Note:" +msgstr "Nota:" + +#: ../src/gui/widgets/TimeWidget.cpp:108 ../src/gui/widgets/TimeWidget.cpp:145 +msgid "" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:151 +msgid "Units:" +msgstr "Unidades:" + +#: ../src/gui/widgets/TimeWidget.cpp:173 +msgid "Time:" +msgstr "Tiempo:" + +#: ../src/gui/widgets/TimeWidget.cpp:184 +msgid "units" +msgstr "unidades" + +#: ../src/gui/widgets/TimeWidget.cpp:193 +msgid "Measures:" +msgstr "Compases:" + +#: ../src/gui/widgets/TimeWidget.cpp:193 +msgid "Measure:" +msgstr "Compás:" + +#: ../src/gui/widgets/TimeWidget.cpp:212 +msgid "beats:" +msgstr "partes" + +#: ../src/gui/widgets/TimeWidget.cpp:212 +msgid "beat:" +msgstr "parte:" + +#: ../src/gui/widgets/TimeWidget.cpp:230 +msgid "%1:" +msgstr "%1:" + +#: ../src/gui/widgets/TimeWidget.cpp:254 +msgid "Seconds:" +msgstr "Segundos:" + +#: ../src/gui/widgets/TimeWidget.cpp:273 +msgid "msec:" +msgstr "milisegundos:" + +#: ../src/gui/widgets/TimeWidget.cpp:407 ../src/gui/widgets/TimeWidget.cpp:531 +msgid "(%1/%2 time)" +msgstr "(ritmo %1/%2)" + +#: ../src/gui/widgets/TimeWidget.cpp:452 +msgid "(starting %1.%2 qpm, %2.%3 bpm)" +msgstr "(empezando %1.%2 npm, %2.%3 ppm)" + +#: ../src/gui/widgets/TimeWidget.cpp:458 +msgid "(starting %1.%2 bpm)" +msgstr "(empezando %1.%2 npm)" + +#: ../src/gui/widgets/TimeWidget.cpp:464 +msgid "(%1.%2 qpm, %2.%3 bpm)" +msgstr "(%1.%2 npm, %2.%3 ppm)" + +#: ../src/gui/widgets/TimeWidget.cpp:470 +msgid "(%1.%2 bpm)" +msgstr "(%1.%2 npm)" + +#: ../src/gui/editors/notation/TrackHeader.cpp:239 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:60 +msgid "C" +msgstr "Do" + +#: ../src/gui/editors/notation/TrackHeader.cpp:241 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:61 +msgid "D" +msgstr "Re" + +#: ../src/gui/editors/notation/TrackHeader.cpp:243 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:62 +msgid "E" +msgstr "Mi" + +#: ../src/gui/editors/notation/TrackHeader.cpp:244 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:63 +msgid "F" +msgstr "Fa" + +#: ../src/gui/editors/notation/TrackHeader.cpp:246 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:64 +msgid "G" +msgstr "Sol" + +#: ../src/gui/editors/notation/TrackHeader.cpp:248 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:65 +msgid "A" +msgstr "La" + +#: ../src/gui/editors/notation/TrackHeader.cpp:250 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:66 +msgid "B" +msgstr "Si" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:70 +msgid "-2" +msgstr "-2" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:71 +msgid "-1" +msgstr "-1" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:72 +msgid "0" +msgstr "0" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:73 +msgid "1" +msgstr "1" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:74 +msgid "2" +msgstr "2" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:75 +msgid "3" +msgstr "3" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:76 +msgid "4" +msgstr "4" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:77 +msgid "5" +msgstr "5" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:78 +msgid "6" +msgstr "6" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:79 +msgid "7" +msgstr "7" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:83 +msgid "double flat" +msgstr "doble bemol" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:84 +msgid "flat" +msgstr "bemol" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:85 +msgid "natural" +msgstr "natural" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:86 +msgid "sharp" +msgstr "sostenido" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:87 +msgid "double sharp" +msgstr "doble sostenido" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:234 +#, c-format +msgid "In %1" +msgstr "E.%1" + +#: ../src/gui/studio/AudioMixerWindow.cpp:587 +#: ../src/gui/widgets/AudioRouteMenu.cpp:236 +#: ../src/gui/widgets/AudioRouteMenu.cpp:259 +msgid "Master" +msgstr "Master" + +#: ../src/gui/studio/AudioMixerWindow.cpp:528 +#: ../src/gui/widgets/AudioRouteMenu.cpp:238 +#: ../src/gui/widgets/AudioRouteMenu.cpp:261 +#, c-format +msgid "Sub %1" +msgstr "Sub %1" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:244 +msgid "In %1 R" +msgstr "Entrada %1 R" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:245 +msgid "In %1 L" +msgstr "Entrada %1 L" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:247 +msgid "Master R" +msgstr "Maestro R" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:248 +msgid "Master L" +msgstr "Maestro L" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:250 +msgid "Sub %1 R" +msgstr "Sub %1 R" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:251 +msgid "Sub %1 L" +msgstr "Sub %1 L" + +#: ../src/gui/studio/AudioMixerWindow.cpp:391 +#: ../src/gui/studio/AudioMixerWindow.cpp:522 +#: ../src/gui/widgets/AudioFaderBox.cpp:82 +msgid "Audio plugin button" +msgstr "Botón de plugin de Audio" + +#: ../src/gui/editors/parameters/AudioInstrumentParameterPanel.cpp:129 +#: ../src/gui/editors/parameters/AudioInstrumentParameterPanel.cpp:357 +#: ../src/gui/widgets/AudioFaderBox.cpp:91 +msgid "" +msgstr "" + +#: ../src/gui/widgets/AudioFaderBox.cpp:93 +msgid "Synth plugin button" +msgstr "Botón de plugin de Sintetizador" + +#: ../src/gui/widgets/AudioFaderBox.cpp:153 +msgid "Set the audio pan position in the stereo field" +msgstr "Establecer la posición de panorama de audio en el campo estéreo" + +#: ../src/gui/widgets/AudioFaderBox.cpp:155 +msgid "Open synth plugin's native editor" +msgstr "Abrir el editor nativo del plugin de sintetizador" + +#: ../src/gui/widgets/AudioFaderBox.cpp:157 +msgid "Mono or Stereo Instrument" +msgstr "Instrumento Mono o Estéreo" + +#: ../src/gui/widgets/AudioFaderBox.cpp:159 +msgid "Record level" +msgstr "Nivel de grabación" + +#: ../src/gui/widgets/AudioFaderBox.cpp:161 +msgid "Playback level" +msgstr "Nivel de reproducción" + +#: ../src/gui/studio/AudioMixerWindow.cpp:345 +#: ../src/gui/studio/AudioMixerWindow.cpp:347 +#: ../src/gui/studio/AudioMixerWindow.cpp:503 +#: ../src/gui/studio/AudioMixerWindow.cpp:505 +#: ../src/gui/widgets/AudioFaderBox.cpp:163 +msgid "Audio level" +msgstr "Nivel de Audio" + +#: ../src/gui/widgets/AudioFaderBox.cpp:170 +msgid "In:" +msgstr "Entrada:" + +#: ../src/gui/widgets/AudioFaderBox.cpp:173 +msgid "Out:" +msgstr "Salida:" + +#: ../src/gui/widgets/ProgressDialog.cpp:48 +#: ../src/gui/widgets/ProgressDialog.cpp:53 +#: ../src/gui/widgets/ProgressDialog.cpp:76 +msgid "Processing..." +msgstr "Procesando..." + +#: ../src/gui/configuration/ColourConfigurationPage.h:60 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:130 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:346 +#: ../src/gui/widgets/ColourTable.cpp:52 +msgid "Color" +msgstr "Color" + +#: ../src/gui/widgets/ColourTable.cpp:68 +msgid "Modify Color Name" +msgstr "Modificar Nombre de Color" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:129 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:983 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:882 +#: ../src/gui/widgets/ColourTable.cpp:68 +msgid "Enter new name" +msgstr "Introducir nuevo nombre" + +#: ../src/gui/widgets/ColourTable.cpp:107 +msgid "Default Color" +msgstr "Color por Omisión" + +#: ../src/gui/widgets/Rotary.cpp:108 +msgid "" +"Click and drag up and down or left and right to modify.\n" +"Double click to edit value directly." +msgstr "" +"Hacer clic y arrastrar arriba y abajo o a izquierda y derecha para " +"modificar.\n" +"Doble clic para editar el valor directamente." + +#: ../src/gui/widgets/Rotary.cpp:433 +msgid "Select a new value" +msgstr "Seleccionar un nuevo valor" + +#: ../src/gui/widgets/Rotary.cpp:434 +msgid "Enter a new value" +msgstr "Introducir nuevo valor" + +#: ../src/gui/widgets/QuantizeParameters.cpp:80 +msgid "Quantizer" +msgstr "Cuantificación" + +#: ../src/gui/widgets/QuantizeParameters.cpp:86 +msgid "Quantizer type:" +msgstr "Tipo de cuantificación:" + +#: ../src/gui/widgets/QuantizeParameters.cpp:88 +msgid "Grid quantizer" +msgstr "Cuantificador de rejilla" + +#: ../src/gui/widgets/QuantizeParameters.cpp:89 +msgid "Legato quantizer" +msgstr "Cuantificador de ligadura" + +#: ../src/gui/widgets/QuantizeParameters.cpp:90 +msgid "Heuristic notation quantizer" +msgstr "Cuantificador heurístico de partitura" + +#: ../src/gui/widgets/QuantizeParameters.cpp:94 +msgid "Quantize for notation only (leave performance unchanged)" +msgstr "" +"Cuantificar para la partitura solamente (dejar la interpretación intacta)" + +#: ../src/gui/widgets/QuantizeParameters.cpp:104 +msgid "Notation parameters" +msgstr "Parámetros de edición de partitura" + +#: ../src/gui/widgets/QuantizeParameters.cpp:109 +#: ../src/gui/widgets/QuantizeParameters.cpp:150 +msgid "Base grid unit:" +msgstr "Unidad base de la rejilla:" + +#: ../src/gui/widgets/QuantizeParameters.cpp:114 +msgid "Complexity:" +msgstr "Complejidad:" + +#: ../src/gui/widgets/QuantizeParameters.cpp:118 +msgid "Very high" +msgstr "Muy alta" + +#: ../src/gui/widgets/QuantizeParameters.cpp:119 +msgid "High" +msgstr "Alta" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:224 +#: ../src/gui/widgets/QuantizeParameters.cpp:120 +msgid "Normal" +msgstr "Normal" + +#: ../src/gui/widgets/QuantizeParameters.cpp:121 +msgid "Low" +msgstr "Baja" + +#: ../src/gui/widgets/QuantizeParameters.cpp:122 +msgid "Very low" +msgstr "Muy baja" + +#: ../src/gui/widgets/QuantizeParameters.cpp:125 +msgid "Tuplet level:" +msgstr "Nivel de grupo irregular" + +#: ../src/gui/widgets/QuantizeParameters.cpp:129 +msgid "2-in-the-time-of-3" +msgstr "Dosillo" + +#: ../src/gui/editors/notation/NotationView.cpp:4241 +#: ../src/gui/widgets/QuantizeParameters.cpp:130 +msgid "Triplet" +msgstr "Tresillo" + +#: ../src/gui/widgets/QuantizeParameters.cpp:138 +msgid "Any" +msgstr "Cualquiera" + +#: ../src/gui/widgets/QuantizeParameters.cpp:141 +msgid "Permit counterpoint" +msgstr "Permitir contrapunto" + +#: ../src/gui/widgets/QuantizeParameters.cpp:145 +msgid "Grid parameters" +msgstr "Parámetros de rejilla" + +#: ../src/gui/widgets/QuantizeParameters.cpp:154 +msgid "Swing:" +msgstr "Swing:" + +#: ../src/gui/widgets/QuantizeParameters.cpp:159 +msgid "Iterative amount:" +msgstr "Cantidad de iteración:" + +#: ../src/gui/widgets/QuantizeParameters.cpp:165 +msgid "Quantize durations as well as start times" +msgstr "Cuantificar duraciones y momentos de inicio" + +#: ../src/gui/widgets/QuantizeParameters.cpp:169 +msgid "After quantization" +msgstr "Después de cuantificar" + +#: ../src/gui/widgets/QuantizeParameters.cpp:183 +msgid "Show advanced options" +msgstr "Mostrar opciones avanzadas" + +#: ../src/gui/widgets/QuantizeParameters.cpp:192 +msgid "Re-beam" +msgstr "volver a unir plicas" + +#: ../src/gui/widgets/QuantizeParameters.cpp:194 +msgid "Add articulations (staccato, tenuto, slurs)" +msgstr "Añadir articulaciones (staccato, tenuto, ligaduras)" + +#: ../src/gui/widgets/QuantizeParameters.cpp:195 +msgid "Tie notes at barlines etc" +msgstr "Ligar notas en las barras de compás, etc." + +#: ../src/gui/widgets/QuantizeParameters.cpp:196 +msgid "Split-and-tie overlapping chords" +msgstr "Dividir-y-ligar acordes solapados" + +#: ../src/gui/widgets/QuantizeParameters.cpp:307 +msgid "Full quantize" +msgstr "Cuantificador completo" + +#: ../src/gui/widgets/QuantizeParameters.cpp:450 +msgid "Show Advanced Options" +msgstr "Mostrar Opciones Avanzadas" + +#: ../src/gui/widgets/QuantizeParameters.cpp:454 +msgid "Hide Advanced Options" +msgstr "Ocultar Opciones Avanzadas" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:257 +#: ../src/gui/configuration/MatrixConfigurationPage.h:56 +#: ../src/gui/configuration/MatrixConfigurationPage.h:57 +#: ../src/gui/editors/matrix/MatrixView.cpp:2709 +msgid "Matrix" +msgstr "Matriz" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:64 +msgid "Printable headers" +msgstr "Cabeceras imprimibles" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:92 +msgid "Dedication" +msgstr "Dedicatoria" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:96 +#: ../src/gui/editors/segment/PlayListView.cpp:35 +msgid "Title" +msgstr "Título" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:100 +msgid "Subtitle" +msgstr "Subtítulo" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:104 +msgid "Subsubtitle" +msgstr "Sub-subtítulo" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:108 +msgid "Poet" +msgstr "Letrista" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:116 +msgid "Composer" +msgstr "Compositor" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:120 +msgid "Meter" +msgstr "Compás" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:124 +msgid "Arranger" +msgstr "Arreglista" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:128 +msgid "Piece" +msgstr "Pieza" + +#: ../data/fonts/mappings/fonts.cpp:26 +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:132 +msgid "Opus" +msgstr "Opus" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:136 +msgid "Copyright" +msgstr "Copyright" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:140 +msgid "Tagline" +msgstr "Lema" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:155 +msgid "The composition comes here." +msgstr "La composición comienza aquí" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:172 +msgid "Non-printable headers" +msgstr "Cabeceras imprimibles" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:213 +msgid "Add New Property" +msgstr "Añadir nueva propiedad" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:217 +msgid "Delete Property" +msgstr "Borrar Propiedad" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:236 +msgid "{new property %1}" +msgstr "{nueva propiedad %1}" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:236 +msgid "{new property}" +msgstr "{nueva propiedad}" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:243 +msgid "{undefined}" +msgstr "{indefinido}" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:87 +msgid "Double-click opens segment in" +msgstr "Doble-clic abre el segmento en el" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:91 +msgid "Notation editor" +msgstr "Editor de partitura" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:92 +msgid "Matrix editor" +msgstr "Editor de matriz" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:93 +msgid "Event List editor" +msgstr "Editor de lista de eventos" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:99 +msgid "Number of count-in measures when recording" +msgstr "Número de compases previos a la grabación" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:109 +msgid "Auto-save interval" +msgstr "Intervalo de archivado automático" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:112 +msgid "Every 30 seconds" +msgstr "Cada 30 segundos" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:113 +msgid "Every minute" +msgstr "Cada minuto" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:114 +msgid "Every five minutes" +msgstr "Cada cinco minutos" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:115 +msgid "Every half an hour" +msgstr "Cada media hora" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:116 +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:277 +#: ../src/gui/configuration/NotationConfigurationPage.cpp:157 +msgid "Never" +msgstr "Nunca" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:140 +msgid "Use JACK transport" +msgstr "Utilizar transporte de JACK" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:173 +msgid "Unknown" +msgstr "Desconocida" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:179 +msgid "No MIDI, audio OK" +msgstr "No MIDI, audio OK" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:182 +msgid "MIDI OK, no audio" +msgstr "MIDI OK, no audio" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:185 +msgid "MIDI OK, audio OK" +msgstr "MIDI OK, audio OK" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:188 +msgid "No driver" +msgstr "No interprete" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:195 +msgid "Details..." +msgstr "Detalles..." + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:204 +msgid "Behavior" +msgstr "Comportamiento " + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:219 +msgid "Side-bar parameter box layout" +msgstr "Estilo del área lateral de cajas de parámetros" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:223 +msgid "Vertically stacked" +msgstr "Apilado verticalmente" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:225 +msgid "Tabbed" +msgstr "Pestañas" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:233 +msgid "Note name style" +msgstr "Estilo de nombres de notas" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:237 +msgid "Always use US names (e.g. quarter, 8th)" +msgstr "Usar siempre nombres americanos (ej. quarter, 8th)" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:238 +msgid "Localized (where available)" +msgstr "Traducido (si está disponible) " + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:252 +msgid "Show textured background on" +msgstr "Mostrar fondo con textura en" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:254 +msgid "Main window" +msgstr "Ventana principal" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:275 +msgid "Use bundled Klearlook theme" +msgstr "Utilizar el tema Klearlook interno" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:278 +msgid "When not running under KDE" +msgstr "Cuando no se ejecute bajo KDE" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:279 +#: ../src/gui/configuration/NotationConfigurationPage.cpp:159 +msgid "Always" +msgstr "Siempre" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:287 +msgid "Presentation" +msgstr "Presentación " + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:423 +msgid "" +"Changes to the textured background in the main window will not take effect " +"until you restart Rosegarden." +msgstr "" +"Los cambios a la textura de fondo en la ventana principal no hacen efecto " +"hasta que usted reinicie Rosegarden" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:168 +#: ../src/gui/configuration/GeneralConfigurationPage.h:78 +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:207 +#: ../src/gui/configuration/MatrixConfigurationPage.cpp:59 +msgid "General" +msgstr "General" + +#: ../src/gui/configuration/GeneralConfigurationPage.h:79 +msgid "General Configuration" +msgstr "Configuración General" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:92 +msgid "Base octave number for MIDI pitch display" +msgstr "Número de octava base para mostrar tono MIDI" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:107 +msgid "Always use default studio when loading files" +msgstr "Usar siempre estudio por omisión al cargar archivos" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:119 +msgid "Send all MIDI Controllers at start of each playback" +msgstr "Enviar todos los controles MIDI al principio de la reproducción" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:121 +msgid "" +"Rosegarden can send all MIDI Controllers (Pan, Reverb etc) to all MIDI " +"devices every\n" +"time you hit play if you so wish. Please note that this option will usually " +"incur a\n" +"delay at the start of playback due to the amount of data being transmitted." +msgstr "" +"Rosegarden puede enviar todos los Controladores MIDI (Pan, Reverberación, " +"etc) a todos los dispositivos MIDI cada vez que usted pulse reproducción si " +"así lo desea. Por favor, tenga en cuenta que esta opción retrasará el " +"comienzode la reproducción debido a la cantidad de información transmitida." + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:138 +msgid "Sequencer timing source" +msgstr "Temporizador del secuenciador" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:163 +msgid "Load SoundFont to SoundBlaster card at startup" +msgstr "Cargar fuente de sonidos en la tarjeta SoundBlaster al inicio" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:164 +msgid "" +"Check this box to enable soundfont loading on EMU10K-based cards when " +"Rosegarden is launched" +msgstr "" +"Seleccionar esta opción para habilitar la carga de un SoundFont en tarjetas " +"basadas en EMU10K al iniciar Rosegarden" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:173 +msgid "Path to 'asfxload' or 'sfxload' command" +msgstr "Camino al mandato 'asfxload' o bien 'sfxload'" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:180 +msgid "SoundFont" +msgstr "SoundFont" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:223 +msgid "MIDI Clock and System messages" +msgstr "Mensajes de Reloj MIDI y Sistema" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:229 +msgid "Send MIDI Clock, Start and Stop" +msgstr "Enviar mensajes de Start y Stop" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:230 +msgid "Accept Start, Stop and Continue" +msgstr "Aceptar Start, Stop y Continue " + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:241 +msgid "MIDI Machine Control mode" +msgstr "Modo de MIDI Machine Control" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:248 +msgid "MMC Master" +msgstr "MMC Mestro" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:249 +msgid "MMC Slave" +msgstr "MMC Esclavo" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:260 +msgid "MIDI Time Code mode" +msgstr "Modo MIDI Time Code" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:267 +msgid "MTC Master" +msgstr "Maestro MTC" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:268 +msgid "MTC Slave" +msgstr "MTC Esclavo" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:281 +msgid "Automatically connect sync output to all devices in use" +msgstr "" +"Conectar automáticamente la salida de sincronización a todos los " +"dispositivos en uso" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:292 +msgid "MIDI Sync" +msgstr "Sincronización MIDI" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:308 +msgid "sfxload path" +msgstr "camino de sfxload" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:315 +msgid "Soundfont path" +msgstr "Camino de SoundFont" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:67 +msgid "%1 minutes %2.%3%4 seconds (%5 units, %6 measures)" +msgstr "%1 minutos %2.%3%4 segundos (%5 unidades, %6 compases)" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:133 +msgid "Filename:" +msgstr "Nombre de archivo:" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:136 +msgid "Formal duration (to end marker):" +msgstr "Duración formal (hasta el marcador final)" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:141 +msgid "Playing duration:" +msgstr "Duración de la reproducción:" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:146 +msgid "Tracks:" +msgstr "Pistas:" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:147 +msgid "%1 used, %2 total" +msgstr "%1 usado, %2 total" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:152 +msgid "Segments:" +msgstr "Segmentos:" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:153 +msgid "%1 MIDI, %2 audio, %3 total" +msgstr "%1 MIDI, %2 audio, %3 total" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:161 +msgid "Statistics" +msgstr "Estadísticas" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:170 +#: ../src/gui/editors/parameters/InstrumentParameterBox.cpp:155 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:92 +msgid "Track" +msgstr "Pista" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:171 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:125 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:90 +msgid "Label" +msgstr "Etiqueta" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:172 +msgid "Time" +msgstr "Tiempo" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:174 +msgid "Events" +msgstr "Eventos" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:175 +msgid "Polyphony" +msgstr "Polifonía" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:176 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:126 +msgid "Repeat" +msgstr "Repetir" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:178 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:128 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:305 +#: ../src/gui/general/EditView.cpp:1488 +msgid "Transpose" +msgstr "Transportar" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:179 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:129 +msgid "Delay" +msgstr "Retardo" + +#: ../src/gui/configuration/AudioConfigurationPage.h:61 +#: ../src/gui/configuration/AudioPropertiesPage.h:58 +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:204 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:523 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:524 +msgid "Audio" +msgstr "Audio " + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:204 +#: ../src/gui/configuration/MIDIConfigurationPage.h:62 +msgid "MIDI" +msgstr "MIDI" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:317 +msgid "Segment Summary" +msgstr "Resumen del Segmento" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:63 +msgid "Audio file path:" +msgstr "Camino de los archivos de audio" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:137 +#: ../src/gui/configuration/AudioPropertiesPage.cpp:68 +msgid "Choose..." +msgstr "Elegir... " + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:73 +msgid "Disk space remaining:" +msgstr "Espacio libre en disco disponible:" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:78 +msgid "Equivalent minutes of 16-bit stereo:" +msgstr "Equivalencia en minutos de sonido estéreo a 16 bits:" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:90 +msgid "Modify audio path" +msgstr "Modificar camino de archivos de audio" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:113 +msgid "%1 out of %2 (%3% used)" +msgstr "%1 de %2 (%3% usado)" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:144 +msgid "minutes at" +msgstr "minutos en" + +#: ../src/gui/configuration/MIDIConfigurationPage.h:63 +msgid "MIDI Settings" +msgstr "Preferencias de MIDI" + +#: ../src/gui/configuration/AudioConfigurationPage.h:62 +#: ../src/gui/configuration/AudioPropertiesPage.h:59 +msgid "Audio Settings" +msgstr "Opciones de Audio" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:87 +msgid "Default layout mode" +msgstr "Modo de formato predeterminado" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:91 +msgid "Linear layout" +msgstr "Formato lineal" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:92 +msgid "Continuous page layout" +msgstr "Distribución de página continuo" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:93 +msgid "Multiple page layout" +msgstr "Distribución de página múltiple" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:101 +msgid "Default spacing" +msgstr "Espaciado predeterminado" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:125 +msgid "Default duration factor" +msgstr "Factor de duración predeterminado" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:141 +msgid "Full" +msgstr "Lleno" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:152 +msgid "Show track headers (linear layout only)" +msgstr "Mostrar cabeceras de pista (formato linear únicamente)" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:158 +msgid "When needed" +msgstr "Si sea necesario" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:166 +msgid "" +"\"Always\" and \"Never\" mean what they usually mean\n" +"\"When needed\" means \"when staves are too many to all fit in the current " +"window\"" +msgstr "" +"«Siempre» y «Nunca» significan lo normal\n" +"«Si sea necesario» significa «cuando hayan demasiados pentagramas y no caban " +"en la ventana corriente»" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:178 +msgid "Show non-notation events as question marks" +msgstr "Mostrar eventos no representables como signos de interrogación" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:188 +msgid "Show notation-quantized notes in a different color" +msgstr "Mostrar notas cuantificadas en un color diferente" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:198 +msgid "Show \"invisible\" events in grey" +msgstr "Mostrar eventos \"invisibles\" en gris" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:208 +msgid "Show notes outside suggested playable range in red" +msgstr "Mostrar notas afuera del ámbito sugerido en rojo" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:218 +msgid "Highlight superimposed notes with a halo effect" +msgstr "Destacar notas superpuestas con un efecto de halo" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:231 +msgid "When recording MIDI, split-and-tie long notes at barlines" +msgstr "Al grabar MIDI, dividir y ligar notas largas en divisiones de compás" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:242 +msgid "Layout" +msgstr "Formato" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:255 +msgid "Default note style for new notes" +msgstr "Estilo de nota predeterminado para nuevas notas" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:287 +msgid "When inserting notes..." +msgstr "Al insertar notas..." + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:294 +msgid "Split notes into ties to make durations match" +msgstr "Dividir notas en ligaduras para hacer coincidir la duración" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:295 +msgid "Ignore existing durations" +msgstr "Ignorar duraciones existentes" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:305 +msgid "Auto-beam on insert when appropriate" +msgstr "Unión automática de plicas al insertar cuando sea apropiado" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:317 +#: ../src/gui/editors/notation/NotationEraser.cpp:54 +msgid "Collapse rests after erase" +msgstr "Fusionar silencios tras el borrado" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:328 +msgid "Default paste type" +msgstr "Tipo de pegado predeterminado" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:350 +msgid "Editing" +msgstr "Edición" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:362 +msgid "Accidentals in one octave..." +msgstr "Alteraciones en una octava..." + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:364 +msgid "Affect only that octave" +msgstr "Afectar únicamente esa octava" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:365 +msgid "Require cautionaries in other octaves" +msgstr "Requerir precautorias en otras octavas" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:366 +msgid "Affect all subsequent octaves" +msgstr "Afectar a todas las octavas siguientes" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:374 +msgid "Accidentals in one bar..." +msgstr "Alteraciones en un compás..." + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:376 +msgid "Affect only that bar" +msgstr "Afectar sólamente ese compás" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:377 +msgid "Require cautionary resets in following bar" +msgstr "Requerir anulaciones precautorias en el compás siguiente" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:378 +msgid "Require explicit resets in following bar" +msgstr "Requerir anulaciones explícitas en el compás siguiente" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:386 +msgid "Key signature cancellation style" +msgstr "Estilo de cancellación de la armadura" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:388 +msgid "Cancel only when entering C major or A minor" +msgstr "Cancelar sólamente al entrar en Do mayor o La menor" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:389 +msgid "Cancel whenever removing sharps or flats" +msgstr "Cancelar al reducir sostenidos o bemoles" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:390 +msgid "Cancel always" +msgstr "Cancelar siempre" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:400 +msgid "Accidentals" +msgstr "Alteraciones" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:441 +msgid "Notation font" +msgstr "Tipografía de partitura" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:467 +msgid "Origin:" +msgstr "Origen: " + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:471 +msgid "Copyright:" +msgstr "Copyright: " + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:475 +msgid "Mapped by:" +msgstr "Mapeado por:" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:479 +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:81 +msgid "Type:" +msgstr "Tipo: " + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:508 +msgid "Font size for single-staff views" +msgstr "Tamaño de tipografía para la vista de un solo pentagrama" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:516 +msgid "Font size for multi-staff views" +msgstr "Tamaño de tipografía para la vista de varios pentagramas" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:524 +msgid "Font size for printing (pt)" +msgstr "Tamaño de tipografía para imprimir (pt)" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:541 +msgid "Text font" +msgstr "Tipografía de texto" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:549 +msgid "Sans-serif font" +msgstr "Tipografía sans-serif" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:664 +msgid "%1 (smooth)" +msgstr "%1 (suave)" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:667 +msgid "%1 (jaggy)" +msgstr "%1 (dentado)" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:58 +msgid "JACK latency" +msgstr "latencia de JACK" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:61 +msgid "" +"Use the \"Fetch JACK latencies\" button to discover the latency values set " +"at\n" +"the sequencer. It's recommended that you use the returned values but it's " +"also\n" +"possible to override them manually using the sliders. Note that if you " +"change\n" +"your JACK server parameters you should always fetch the latency values " +"again.\n" +"The latency values will be stored by Rosegarden for use next time." +msgstr "" +"Utilice el botón \"Obtener latencias de JACK\" para descubrir los valores " +"establecidos\n" +"en el secuenciador. Es recomendable utilizar los valores devueltos, pero " +"también es\n" +"posible establecerlos manualmente usando los deslizadores. Observe que si " +"modifica\n" +"los parámetros de su servidor JACK debería siempre recuperar los valores de " +"latencia\n" +"otra vez. Los valores de latencia se almacenarán por Rosegarden para su uso " +"futuro." + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:65 +msgid "JACK playback latency (in ms)" +msgstr "Latencia de reproducción de JACK (en ms)" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:66 +msgid "JACK record latency (in ms)" +msgstr "Latencia de grabación de JACK (en ms)" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:68 +msgid "Fetch JACK latencies" +msgstr "Obtener latencias de JACK" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:121 +msgid "JACK Latency" +msgstr "Latencia de JACK" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:92 +msgid "Audio preview scale" +msgstr "Escala de pre-visualización de audio" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:96 +msgid "Linear - easier to see loud peaks" +msgstr "Lineal - se ven más fácilmente los máximos de volumen" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:97 +msgid "Meter scaling - easier to see quiet activity" +msgstr "Medida a escala - se ven más fácilmente los momentos tranquilos" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:105 +msgid "Record audio files as" +msgstr "Grabar archivos de audio como " + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:107 +msgid "16-bit PCM WAV format (smaller files)" +msgstr "formato WAV 16-bit PCM (archivos más pequeños)" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:108 +msgid "32-bit float WAV format (higher quality)" +msgstr "formato WAV 32-bit flotante (mayor calidad)" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:117 +msgid "External audio editor" +msgstr "Editor externo de audio" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:145 +msgid "Create JACK outputs" +msgstr "Crear salidas de JACK" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:150 +msgid "for individual audio instruments" +msgstr "para instrumentos de audio individuales" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:157 +msgid "for submasters" +msgstr "para submasters" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:184 +msgid "" +"Rosegarden can start the JACK audio daemon (jackd) for you automatically if " +"it isn't already running when Rosegarden starts.\n" +"\n" +"This is recommended for beginners and those who use Rosegarden as their main " +"audio application, but it might not be to the liking of advanced users.\n" +"\n" +"If you want to start JACK automatically, make sure the command includes a " +"full path where necessary as well as any command-line arguments you want to " +"use.\n" +"\n" +"For example: /usr/local/bin/jackd -d alsa -d hw -r44100 -p 2048 -n 2\n" +"\n" +msgstr "" +"Rosegarden puede iniciar automáticamente el demonio de audio JACK (jackd)\n" +" si todavía no está corriendo cuando se inicia Rosegarden.\n" +"\n" +"Esto es recomendable para usuarios noveles y para quienes usan Rosegarden " +"como su aplicación principal de audio, pero puede no ser adecuado para " +"usuarios avanzados.\n" +"\n" +"Si usted quiere iniciar JACK automáticamente, asegúrese de que el mandato " +"incluye un camino completo cuando sea necesario, así como los argumentos de " +"línea de mandatos que desee usar.\n" +"\n" +"Por ejemplo: /usr/local/bin/jackd -d alsa -d hw -r 44100 -p 2048 -n 2\n" +"\n" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:196 +msgid "Start JACK when Rosegarden starts" +msgstr "Iniciar JACK al iniciar Rosegarden" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:201 +msgid "JACK command" +msgstr "Mandato JACK" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:214 +msgid "JACK Startup" +msgstr "Inicio de JACK" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:224 +msgid "External audio editor path" +msgstr "Camino del editor externo de audio" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:262 +msgid "External audio editor \"%1\" not found or not executable" +msgstr "Editor externo de audio \"%1\" no encontrado o no ejecutable" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:70 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:448 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:863 +msgid "Add New Color" +msgstr "Añadir Nuevo Color" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:74 +msgid "Delete Color" +msgstr "Borrar Color" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:93 +msgid "Color Map" +msgstr "Mapa de Color" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:128 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:983 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:882 +msgid "New Color Name" +msgstr "Nombre del Nuevo Color" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:130 +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:59 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:984 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:883 +#: ../src/gui/studio/DeviceManagerDialog.cpp:115 +#: ../src/gui/studio/DeviceManagerDialog.cpp:174 +msgid "New" +msgstr "Nuevo" + +#: ../src/gui/configuration/LatencyConfigurationPage.h:62 +msgid "Latency" +msgstr "Latencia " + +#: ../src/gui/configuration/LatencyConfigurationPage.h:63 +msgid "Sequencer Latency" +msgstr "Latencia del secuenciador" + +#: ../src/gui/configuration/ColourConfigurationPage.h:61 +msgid "Color Settings" +msgstr "Opciones de Color" + +#: ../src/gui/studio/MidiDeviceListViewItem.cpp:55 +#: ../src/gui/studio/MidiKeyMapListViewItem.cpp:44 +msgid "Key Mapping" +msgstr "Mapa del teclado" + +#: ../src/gui/studio/BankEditorDialog.cpp:97 +msgid "Manage MIDI Banks and Programs" +msgstr "Gestionar Bancos y Programas MIDI" + +#: ../src/gui/studio/BankEditorDialog.cpp:128 +msgid "MIDI Device" +msgstr "Dispositivo MIDI" + +#: ../src/gui/studio/BankEditorDialog.cpp:130 +#: ../src/gui/studio/BankEditorDialog.cpp:219 +msgid "MSB" +msgstr "MSB" + +#: ../src/gui/studio/BankEditorDialog.cpp:131 +#: ../src/gui/studio/BankEditorDialog.cpp:218 +msgid "LSB" +msgstr "LSB" + +#: ../src/gui/studio/BankEditorDialog.cpp:140 +msgid "Add Bank" +msgstr "Añadir &Banco" + +#: ../src/gui/studio/BankEditorDialog.cpp:141 +msgid "Add Key Mapping" +msgstr "Añadir Cambio de &Tonalidad" + +#: ../src/gui/studio/BankEditorDialog.cpp:153 +msgid "Add a Bank to the current device" +msgstr "Añadir un Banco al dispositivo actual" + +#: ../src/gui/studio/BankEditorDialog.cpp:157 +msgid "Add a Percussion Key Mapping to the current device" +msgstr "Añadir un mapa de las teclas de percusión al dispositivo corriente" + +#: ../src/gui/studio/BankEditorDialog.cpp:161 +msgid "Delete the current Bank or Key Mapping" +msgstr "Borrar el Banco o Mapa de teclado Corriente" + +#: ../src/gui/studio/BankEditorDialog.cpp:165 +msgid "Delete all Banks and Key Mappings from the current Device" +msgstr "Borrar todos los bancos y las mapas de teclado del dispositivo actual" + +#: ../src/gui/studio/BankEditorDialog.cpp:167 +#: ../src/gui/studio/DeviceManagerDialog.cpp:117 +msgid "Import..." +msgstr "Importar..." + +#: ../src/gui/studio/BankEditorDialog.cpp:168 +#: ../src/gui/studio/DeviceManagerDialog.cpp:118 +msgid "Export..." +msgstr "Exportar..." + +#: ../src/gui/studio/BankEditorDialog.cpp:176 +msgid "" +"Import Bank and Program data from a Rosegarden file to the current Device" +msgstr "" +"Importar datos de Banco y Programa desde un archivo de Rosegarden para el " +"dispositivo actual" + +#: ../src/gui/studio/BankEditorDialog.cpp:179 +msgid "" +"Export all Device and Bank information to a Rosegarden format interchange " +"file" +msgstr "" +"Exportar toda la información del dispositivo y Bancos a un archivo de " +"Rosegarden con formato de intercambio" + +#: ../src/gui/studio/BankEditorDialog.cpp:190 +msgid "Copy all Program names from current Bank to clipboard" +msgstr "Copiar todos los nombres de Programa del Banco actual al portapapeles" + +#: ../src/gui/studio/BankEditorDialog.cpp:194 +msgid "Paste Program names from clipboard to current Bank" +msgstr "Pegar nombres de Programa desde el portapapeles al Banco actual" + +#: ../src/gui/studio/BankEditorDialog.cpp:216 +msgid "Show Variation list based on " +msgstr "Mostrar lista de Variaciones basadas en " + +#: ../src/gui/studio/BankEditorDialog.cpp:1010 +msgid "" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1046 +msgid "" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1048 +msgid "" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1089 +msgid "Really delete this bank?" +msgstr "¿Confirma la eliminación de este banco?" + +#: ../src/gui/studio/BankEditorDialog.cpp:1137 +msgid "Really delete this key mapping?" +msgstr "¿Confirmar la eliminación de este banco?" + +#: ../src/gui/studio/BankEditorDialog.cpp:1187 +msgid "Really delete all banks for " +msgstr "Confirma la eliminación de todos los bancos para " + +#: ../src/gui/studio/BankEditorDialog.cpp:1476 +msgid "Import Banks from Device in File" +msgstr "Importar bancos del dispositivo en el archivo" + +#: ../src/gui/studio/BankEditorDialog.cpp:1623 +#: ../src/gui/studio/DeviceManagerDialog.cpp:770 +msgid "Export Device as..." +msgstr "Exportar dispositivo como..." + +#: ../src/gui/studio/BankEditorDialog.cpp:1694 +msgid "" +"There are unsaved changes.\n" +"Do you want to apply the changes before exiting the Bank Editor or discard " +"the changes ?" +msgstr "" +"Hay cambios no guardados.\n" +"¿ Quiere aplicar los cambios antes de salir del Editor de Bancos, o " +"descargar los cambios ?" + +#: ../src/gui/studio/BankEditorDialog.cpp:1697 +msgid "Unsaved Changes" +msgstr "Cambios no Guardados" + +#: ../src/gui/studio/NameSetEditor.cpp:68 +msgid "Librarian" +msgstr "Bibliotecario" + +#: ../src/gui/studio/NameSetEditor.cpp:75 +msgid "Email" +msgstr "Correo electrónico" + +#: ../src/gui/studio/NameSetEditor.cpp:80 +msgid "" +"The librarian maintains the Rosegarden device data for this device.\n" +"If you've made modifications to suit your own device, it might be worth\n" +"liaising with the librarian in order to publish your information for the " +"benefit\n" +"of others." +msgstr "" +"El bibliotecario mantiene la información de Bancos y Programas para este " +"dispositivo.\n" +"Si hace modificaciones a un Banco para adecuarlo a su propio dispositivo, \n" +"puede ser valioso comunicarlo al bibliotecario para beneficio de otros." + +#: ../src/gui/studio/MidiBankListViewItem.cpp:51 +#: ../src/gui/studio/MidiDeviceListViewItem.cpp:48 +msgid "Percussion Bank" +msgstr "Banco de Percusión" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:84 +#: ../src/gui/studio/MidiBankListViewItem.cpp:51 +#: ../src/gui/studio/MidiDeviceListViewItem.cpp:48 +msgid "Bank" +msgstr "Banco" + +#: ../src/gui/studio/ChangeRecordDeviceCommand.h:39 +msgid "Change Record Device" +msgstr "Cambiar Dispositivo de Grabación" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:61 +#: ../src/gui/studio/DeviceManagerDialog.cpp:96 +msgid "Manage MIDI Devices" +msgstr "Gestionar Dispositivos MIDI" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:98 +msgid "Play devices" +msgstr "Dispositivos de reproducción" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:76 +#: ../src/gui/studio/DeviceManagerDialog.cpp:106 +#: ../src/gui/studio/DeviceManagerDialog.cpp:165 +msgid "Connection" +msgstr "Conexión" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:119 +msgid "Banks..." +msgstr "Bancos..." + +#: ../src/gui/studio/DeviceManagerDialog.cpp:120 +msgid "Control Events..." +msgstr "Eventos de Controlador" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:126 +msgid "Create a new Play device" +msgstr "Crear nuevo Dispositivo de Reproducción" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:129 +#: ../src/gui/studio/DeviceManagerDialog.cpp:184 +msgid "Delete the selected device" +msgstr "Borrar Dispositivo seleccionado" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:132 +msgid "" +"Import Bank, Program and Controller data from a Rosegarden file to the " +"selected device" +msgstr "" +"Importar datos de Banco, Programa y Controladores desde un archivo de " +"Rosegarden para el dispositivo actual" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:135 +msgid "Export Bank and Controller data to a Rosegarden interchange file" +msgstr "" +"Exportar datos de Bancos y Controladores a un archivo de intercambio de " +"Rosegarden" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:138 +msgid "View and edit Banks and Programs for the selected device" +msgstr "Ver y editar Bancos y Programas para el dispositivo seleccionado" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:141 +msgid "" +"View and edit Control Events for the selected device - these are special " +"Event types that you can define against your device and control through " +"Control Rulers or the Instrument Parameter Box " +msgstr "" +"Ver y editar Eventos de Controlador para el dispositivo seleccionado - estos " +"son tipos especiales de Eventos que puede definir contra su dispositivo y " +"controlar mediante Reglas de Controladores o la Caja de Parámetros de " +"Instrumento" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:156 +msgid "Record devices" +msgstr "Dispositivos de grabación" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:164 +msgid "Current" +msgstr "Actual" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:181 +msgid "Create a new Record device" +msgstr "Crear un nuevo dispositivo de Grabación" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:360 +#: ../src/gui/studio/DeviceEditorDialog.cpp:378 +#: ../src/gui/studio/DeviceManagerDialog.cpp:486 +#: ../src/gui/studio/DeviceManagerDialog.cpp:501 +msgid "New Device" +msgstr "Nuevo Dispositivo" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:703 +msgid "Import from Device in File" +msgstr "Importar desde Dispositivo en Archivo" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:55 +msgid "Remap Instrument assigments..." +msgstr "Remapear asignación de instrumentos" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:62 +msgid "Device or Instrument" +msgstr "Dispositivo o Instrumento" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:65 +msgid "Remap Tracks by all Instruments on a Device or by single Instrument" +msgstr "" +"Remapear pistas para todos los instrumentos en un dispositivo o para un solo " +"instrumento" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:74 +msgid "Choose Source and Destination" +msgstr "Elegir Origen y Destino" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:77 +msgid "From" +msgstr "Desde" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:78 +msgid "To" +msgstr "Hacia" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:120 +#: ../src/gui/studio/RemapInstrumentDialog.cpp:121 +msgid "" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:155 +msgid "Show Audio &Faders" +msgstr "Mostrar &Deslizadores de Audio" + +#: ../src/gui/studio/AudioMixerWindow.cpp:160 +msgid "Show Synth &Faders" +msgstr "Mostrar &Deslizadores de Sintetizador" + +#: ../src/gui/studio/AudioMixerWindow.cpp:165 +msgid "Show &Submasters" +msgstr "Mostrar &Submasters" + +#: ../src/gui/studio/AudioMixerWindow.cpp:170 +msgid "Show &Plugin Buttons" +msgstr "Mostrar Botones de &Plugin" + +#: ../src/gui/studio/AudioMixerWindow.cpp:175 +msgid "Show &Unassigned Faders" +msgstr "Mostrar Deslizadores n&o Asignados" + +#: ../src/gui/studio/AudioMixerWindow.cpp:184 +#, c-format +msgid "" +"_n: 1 Input\n" +"%n Inputs" +msgstr "" +"1 Entrada\n" +"%n Entradas" + +#: ../src/gui/studio/AudioMixerWindow.cpp:194 +msgid "No Submasters" +msgstr "Sin Submasters" + +#: ../src/gui/studio/AudioMixerWindow.cpp:203 +#, c-format +msgid "" +"_n: 1 Submaster\n" +"%n Submasters" +msgstr "" +"1 Submaestro\n" +"%n Submaestros" + +#: ../src/gui/studio/AudioMixerWindow.cpp:279 +msgid "Audio Mixer" +msgstr "Mezclador de Audio" + +#: ../src/gui/studio/AudioMixerWindow.cpp:311 +msgid "Record input source" +msgstr "Origen de entrada de grabación" + +#: ../src/gui/studio/AudioMixerWindow.cpp:322 +msgid "Output destination" +msgstr "Destino de salida" + +#: ../src/gui/studio/AudioMixerWindow.cpp:336 +#: ../src/gui/studio/AudioMixerWindow.cpp:495 +msgid "Pan" +msgstr "Panorama" + +#: ../src/gui/studio/AudioMixerWindow.cpp:355 +msgid "Mono or stereo" +msgstr "Mono o Estéreo" + +#: ../src/gui/studio/AudioMixerWindow.cpp:364 +#: ../src/gui/studio/AudioMixerWindow.cpp:513 +msgid "Mute" +msgstr "Silenciar" + +#: ../src/gui/studio/AudioMixerWindow.cpp:373 rc.cpp:408 +#, no-c-format +msgid "Solo" +msgstr "Solo" + +#: ../src/gui/studio/AudioMixerWindow.cpp:382 +msgid "Arm recording" +msgstr "Armar Grabación" + +#: ../src/gui/studio/AudioMixerWindow.cpp:400 +#, c-format +msgid "Audio %1" +msgstr "Audio %1" + +#: ../src/gui/studio/AudioMixerWindow.cpp:404 +#, c-format +msgid "Synth %1" +msgstr "Sint.%1" + +#: ../src/gui/studio/AudioMixerWindow.cpp:578 +#: ../src/gui/studio/AudioMixerWindow.cpp:580 +msgid "Audio master output level" +msgstr "Nivel principal de salida de Audio" + +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:71 +msgid "Manage Synth Plugins" +msgstr "Gestionar plugins sintetizadores" + +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:78 +msgid "Synth plugins" +msgstr "Plugins de Sintetizador" + +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:145 +msgid "Controls" +msgstr "Controles" + +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:152 +msgid "Editor >>" +msgstr "Editor >>" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:66 +#: ../src/gui/studio/MidiProgramsEditor.cpp:169 +msgid "Bank and Program details" +msgstr "Detalles de Bancos y Programas" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:67 +msgid "Programs" +msgstr "Programas" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2711 +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:88 +#: ../src/gui/studio/MidiProgramsEditor.cpp:93 +msgid "Percussion" +msgstr "Percusión" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:99 +msgid "MSB Value" +msgstr "Valor MSB" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:107 +msgid "" +"Selects a MSB controller Bank number (MSB/LSB pairs are always unique for " +"any Device)" +msgstr "" +"Selecciona un número MSB de controlador (los pares MSB/LSB son siempre " +"únicos para cualquier dispositivo)" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:111 +msgid "" +"Selects a LSB controller Bank number (MSB/LSB pairs are always unique for " +"any Device)" +msgstr "" +"Selecciona un número LSB de controlador (los pares MSB/LSB son siempre " +"únicos para cualquier dispositivo)" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:116 +msgid "LSB Value" +msgstr "Valor LSB" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:254 +#: ../src/gui/studio/MidiProgramsEditor.cpp:541 +#, c-format +msgid "Key Mapping: %1" +msgstr "Mapa del teclado: %1 " + +#: ../src/gui/studio/MidiProgramsEditor.cpp:476 +msgid "" +msgstr "" + +#: ../src/gui/studio/MidiKeyMappingEditor.cpp:57 +#: ../src/gui/studio/MidiKeyMappingEditor.cpp:81 +msgid "Key Mapping details" +msgstr "Detalles de Mapa del Teclado" + +#: ../src/gui/studio/MidiKeyMappingEditor.cpp:58 +msgid "Pitches" +msgstr "Tonos" + +#: ../src/gui/studio/MidiMixerWindow.cpp:152 +msgid "MIDI Mixer" +msgstr "Mezclador MIDI" + +#: ../src/gui/studio/MidiMixerWindow.cpp:199 +msgid "Volume" +msgstr "Volumen" + +#: ../src/gui/studio/AudioPluginOSCGUIManager.cpp:444 +msgid "Rosegarden Plugin" +msgstr "Plugin de Rosegarden" + +#: ../src/gui/studio/AudioPluginOSCGUIManager.cpp:447 +#, c-format +msgid "Rosegarden: %1" +msgstr "Rosegarden: %1" + +#: ../src/gui/studio/AudioPluginOSCGUIManager.cpp:449 +msgid "Rosegarden: %1: %2" +msgstr "Rosegarden: %1: %2" + +#: ../src/gui/studio/AudioPluginOSCGUIManager.cpp:450 +#, c-format +msgid "Plugin slot %1" +msgstr "Zócalo de Plugin %1" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:92 +msgid "Add Play Device" +msgstr "Añadir Dispositivo de Reproducción" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:93 +msgid "Add Record Device" +msgstr "Añadir Dispositivo de Grabación" + +#: ../src/commands/studio/CreateOrDeleteDeviceCommand.h:68 +#: ../src/gui/studio/DeviceEditorDialog.cpp:94 +msgid "Delete Device" +msgstr "Borrar Dispositivo" + +#: ../src/gui/editors/segment/PlayList.cpp:77 +#: ../src/gui/studio/DeviceEditorDialog.cpp:156 +#: ../src/gui/studio/DeviceEditorDialog.cpp:361 +msgid "Play" +msgstr "Reproducir" + +#: ../src/commands/segment/SegmentRecordCommand.cpp:37 +#: ../src/gui/studio/DeviceEditorDialog.cpp:156 +#: ../src/gui/studio/DeviceEditorDialog.cpp:379 rc.cpp:394 +#, no-c-format +msgid "Record" +msgstr "Grabación" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:256 +msgid "Apply pending changes?" +msgstr "¿Aplicar los cambios pendientes?" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:359 +#: ../src/gui/studio/DeviceEditorDialog.cpp:377 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentEraser.cpp:82 +msgid "Click on a segment to delete it" +msgstr "Hacer clic en un segmento para borrarlo" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSplitter.cpp:166 +msgid "" +"Click on a segment to split it in two; hold Shift to avoid snapping to beat " +"grid" +msgstr "" +"Hacer clic en un segmento para dividirlo en dos; pulsar mayúsculas para " +"evitar ajuste de tiempo" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSplitter.cpp:168 +msgid "Click on a segment to split it in two" +msgstr "hacer clic en un segmento para dividirlo en dos" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:81 +msgid "Click and drag to select segments" +msgstr "hacer clic y arrastrar para seleccionar segmentos" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentMover.cpp:154 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:238 +msgid "Move Segment" +msgstr "Mover Segmento" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentMover.cpp:154 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:239 +msgid "Move Segments" +msgstr "Mover Segmentos" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:217 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:169 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:141 +#: ../src/gui/editors/segment/segmentcanvas/SegmentMover.cpp:210 +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:255 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:359 +msgid "Hold Shift to avoid snapping to beat grid" +msgstr "" +"Pulsar mayúsculas para evitar ajustar el tiempo a la cuadrícula de ritmo" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:485 +msgid "" +"Click and drag to select segments; middle-click and drag to draw an empty " +"segment" +msgstr "" +"Hacer clic y arrastrar para seleccionar segmentos; botón medio del ratón y " +"arrastrar para dibujar un segmento vacío" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:384 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:502 +msgid "" +"Click and drag to resize a segment; hold Ctrl as well to rescale its contents" +msgstr "" +"Hacer clic y arrastrar para cambiar tamaño de un segmento; pulsar Ctrl para " +"escalar el contenido" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:386 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:504 +msgid "Click and drag to rescale segment" +msgstr "Hacer clic y arrastrar para escalar un segmento" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:509 +msgid "Click and drag to move segments; hold Ctrl as well to copy them" +msgstr "" +"Hacer clic y arrastrar para mover segmentos; pulsar Ctrl a la vez para " +"copiarlos" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:511 +msgid "Click and drag to copy segments" +msgstr "Hacer clic y arrastrar para copiar segmentos" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:515 +msgid "" +"Click and drag to move segment; hold Ctrl as well to copy it; double-click " +"to edit" +msgstr "" +"Hacer clic y arrastrar para mover segmentos; pulsar Ctrl a la vez para " +"copiar; doble clic para editar" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:517 +msgid "Click and drag to copy segment" +msgstr "Hacer clic y arrastrar para copiar segmentos" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:157 +msgid "" +"The audio file path does not exist or is not writable.\n" +"You must set the audio file path to a valid directory in Document Properties " +"before rescaling an audio file.\n" +"Would you like to set it now?" +msgstr "" +"El directorio de archivos de audio no existe o no se puede escribir.\n" +"Por favor, configure el directorio de archivos de audio hacia un directorio " +"válido desde Propiedades del Documento antes de grabar audio.\n" +"¿Quiere usted configurarlo ahora?" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:261 +msgid "" +"Hold Shift to avoid snapping to beat grid; hold Ctrl as well to rescale " +"contents" +msgstr "" +"Pulsar mayúsculas para evitar ajuste de tiempo a la cuadrícula rítmica; " +"pulsar Ctrl a la vez para escalar contenido" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentMover.cpp:325 +msgid "Click and drag to move a segment" +msgstr "Hacer clic y arrastrar para mover un segmento" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentPencil.cpp:225 +msgid "Hold Shift to avoid snapping to bar lines" +msgstr "Pulsar mayúsculas para evitar el ajuste a los límites de compás" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentPencil.cpp:283 +msgid "Record or drop audio here" +msgstr "Grabar o soltar archivos de audio aquí" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentPencil.cpp:289 +msgid "" +"Click and drag to draw an empty segment. Control+Alt click and drag to draw " +"in overlap mode." +msgstr "" +"Hacer clic y arrastrar para para dibujar un segmento vacío; hacer Ctrl+Alt" +"+clic y arrastrar para dibujar sobre un segmento que ya existe" + +#: ../src/gui/editors/segment/TrackLabel.cpp:77 +msgid "" +"Click and hold with left mouse button to assign this Track to an Instrument." +msgstr "" +"Pulsar y mantener el botón izquierdo del ratón para asignar esta pista a un " +"instrumento" + +#: ../src/gui/editors/segment/TrackLabel.cpp:191 +msgid "Change track name" +msgstr "Cambiar nombre de pista" + +#: ../src/gui/editors/segment/TrackLabel.cpp:192 +msgid "Enter new track name" +msgstr "Introducir nuevo nombre de la pista" + +#: ../src/gui/editors/segment/TrackEditor.cpp:648 +msgid "Turn Repeating Segment into Real Copies" +msgstr "Convertir repeticiones de segmento en copias reales" + +#: ../src/gui/editors/segment/TrackEditor.cpp:650 +msgid "Turn Repeating Segments into Real Copies" +msgstr "Convertir repeticiones de segmentos en copias reales" + +#: ../src/gui/editors/segment/TrackEditor.cpp:814 +msgid "" +"You can't drop files into Rosegarden from this client. Try using Konqueror " +"instead." +msgstr "" +"No es posible arrastrar y soltar archivos en Rosegarden desde este cliente. " +"Utilice un administrador de archivos como Konqueror." + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:85 +msgid "Manage Triggered Segments" +msgstr "Gestionar Segmentos Activados" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:89 +msgid "ID" +msgstr "ID" + +#: ../src/gui/editors/eventlist/EventView.cpp:735 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:93 +msgid "Base velocity" +msgstr "Velocidad base" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:94 +msgid "Triggers" +msgstr "Activadores" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:115 +msgid "Add a Triggered Segment" +msgstr "Añadir un Segmento Activado" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:119 +msgid "Delete a Triggered Segment" +msgstr "Borrar un Segmento Activado" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:123 +msgid "Delete All Triggered Segments" +msgstr "Borrar Todos los Segmentos Activados" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:127 +msgid "Close the Triggered Segment Manager" +msgstr "Cerrar el Gestor de Segmentos Activados" + +#: ../src/gui/editors/eventlist/EventView.cpp:169 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:245 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:248 +msgid "" +"_n: %1 on 1 track\n" +"%1 on %n tracks" +msgstr "" +"%1 en 1 pista\n" +"%1 en %n pistas" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:284 +msgid "" +"This will remove all triggered segments from the whole composition. Are you " +"sure?" +msgstr "" +"Esto borrará todos los segmentos activados de toda la composición. ¿Está " +"seguro?" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:288 +msgid "Remove all triggered segments" +msgstr "Eliminar todos los segmentos activados" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:313 +msgid "Trigger Segment Duration" +msgstr "Duración de Segmento Activado" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:336 +#, c-format +msgid "" +"_n: This triggered segment is used 1 time in the current composition. Are " +"you sure you want to remove it?\n" +"This triggered segment is used %n times in the current composition. Are you " +"sure you want to remove it?" +msgstr "" +"Este segmento activado se utiliza 1 vez en la composición actual. ¿Está " +"seguro de querer borrarlo?\n" +"Este segmento activado se utiliza %n veces en la composición actual. ¿Está " +"seguro de querer borrarlo? " + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:400 +msgid "Pa&ste as New Triggered Segment" +msgstr "Pegar como Nuevo &Segmento Activado" + +#: ../src/gui/editors/eventlist/EventView.cpp:1169 +#: ../src/gui/editors/segment/MarkerEditor.cpp:399 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:412 +#: ../src/gui/editors/tempo/TempoView.cpp:622 +msgid "&Musical Times" +msgstr "Tiempos &Musicales" + +#: ../src/gui/editors/eventlist/EventView.cpp:1179 +#: ../src/gui/editors/segment/MarkerEditor.cpp:409 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:422 +#: ../src/gui/editors/tempo/TempoView.cpp:632 +msgid "&Real Times" +msgstr "Tiempos &Reales" + +#: ../src/gui/editors/eventlist/EventView.cpp:1189 +#: ../src/gui/editors/segment/MarkerEditor.cpp:419 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:432 +#: ../src/gui/editors/tempo/TempoView.cpp:642 +msgid "Ra&w Times" +msgstr "Tiempos Cr&udos" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:83 +msgid "Manage Markers" +msgstr "Gestionar Marcadores" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:86 +msgid "Marker time " +msgstr "Tiempo del Marcador " + +#: ../src/gui/editors/segment/MarkerEditor.cpp:87 +msgid "Marker text " +msgstr "Texto de marcador" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:88 +msgid "Marker description " +msgstr "Descripción de Marcador " + +#: ../src/gui/editors/segment/MarkerEditor.cpp:95 +msgid "Pointer position" +msgstr "Posición del puntero" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:100 +msgid "Real time:" +msgstr "Tiempo real:" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:103 +msgid "In measure:" +msgstr "En compás:" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:121 +msgid "Add a Marker" +msgstr "Añadir un Marcador" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:125 +msgid "Delete a Marker" +msgstr "Borrar un Marcador" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:129 +msgid "Delete All Markers" +msgstr "Borrar Todos los Marcadores" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:133 +msgid "Close the Marker Editor" +msgstr "Cerrar el editor de Marcadores" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:296 +msgid "Remove all markers" +msgstr "Eliminar todos los marcadores" + +#: ../src/gui/editors/segment/PlayList.cpp:76 +msgid "Add..." +msgstr "Añadir..." + +#: ../src/gui/editors/segment/PlayList.cpp:78 +msgid "Move Up" +msgstr "Mover Arriba" + +#: ../src/gui/editors/segment/PlayList.cpp:79 +msgid "Move Down" +msgstr "Mover Abajo" + +#: ../src/gui/editors/segment/PlayList.cpp:124 +msgid "Select one or more Rosegarden files" +msgstr "Seleccionar uno o más archivos de Rosegarden" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:73 +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:55 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:89 +msgid "Manage Control Events" +msgstr "Gestionar Eventos de Controladores" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:91 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:99 +msgid " Control Events for %1 (device %2)" +msgstr " Eventos de Control para %1 (dispositivo %2)" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:104 +msgid "Control Event name " +msgstr "Nombre de Controlador " + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:105 +msgid "Control Event type " +msgstr "Tipo de Controlador " + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:106 +msgid "Control Event value " +msgstr "Valor de Controlador " + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:107 +msgid "Description " +msgstr "Descripción " + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:108 +msgid "Min " +msgstr "Mín " + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:109 +msgid "Max " +msgstr "Máx " + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:110 +msgid "Default " +msgstr "Por omisión " + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:111 +msgid "Color " +msgstr "Color " + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:112 +msgid "Position on instrument panel" +msgstr "Posición en el panel del instrumento" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:136 +msgid "Add a Control Parameter to the Studio" +msgstr "Añadir un Parámetro de Control al Estudio" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:140 +msgid "Delete a Control Parameter from the Studio" +msgstr "Eliminar un Parámetro de Control del Estudio" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:144 +msgid "Close the Control Parameter editor" +msgstr "Cerrar el editor de Parámetros de Control" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:221 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:62 +msgid "Edit Control Parameter" +msgstr "Editar Parámetro de Control" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:71 +msgid "Control Event Properties" +msgstr "Propiedades del Evento de Control" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:77 +msgid "Name:" +msgstr "Nombre:" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:93 +msgid "Control Event value:" +msgstr "Valor de Controlador:" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:97 +msgid "Minimum value:" +msgstr "Valor mínimo:" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:101 +msgid "Maximum value:" +msgstr "Valor máximo:" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:105 +msgid "Default value:" +msgstr "Valor por omisión:" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:109 +msgid "Color:" +msgstr "Color:" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:113 +msgid "Instrument Parameter Box position:" +msgstr "Posición de la Caja de Parámetros de Instrumento" + +#: ../src/gui/editors/segment/TrackButtons.cpp:209 +#: ../src/gui/editors/segment/TrackButtons.cpp:585 +#: ../src/gui/editors/segment/TrackButtons.cpp:935 +#: ../src/gui/editors/segment/TrackButtons.cpp:1127 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/TrackButtons.cpp:352 +#: ../src/gui/editors/segment/TrackButtons.cpp:1094 +msgid "" +msgstr "
                    " +msgstr "" +"

                    \"Plugins\" no encontrados

                    Los siguientes \"plugins\" de audio " +"no han podido ser cargados:

                      " + +#: ../src/document/RosegardenGUIDoc.cpp:1698 +msgid "
                    • %1 (from %2)
                    • " +msgstr "
                    • %1 (desde %2)
                    • " + +#: ../src/document/RosegardenGUIDoc.cpp:1712 +msgid "" +"This file contains one or more old element types that are now deprecated.\n" +"Support for these elements may disappear in future versions of Rosegarden.\n" +"We recommend you re-save this file from this version of Rosegarden to ensure " +"that it can still be re-loaded in future versions." +msgstr "" +"Este archivo contiene uno o más tipos de elementos que ahora están " +"obsoletos.\n" +"El soporte para estos elementos puede desaparecer en versiones futuras de\n" +"Rosegarden. Se recomienda guardar este archivo con la versión actual de\n" +"Rosegarden para garantizar que podrá ser reconocida por futuras versiones." + +#: ../src/document/RosegardenGUIDoc.cpp:2207 +msgid "Insert Recorded MIDI" +msgstr "Insertar MIDI Grabado" + +#: ../src/document/RosegardenGUIDoc.cpp:2560 +msgid "%1 (recorded)" +msgstr "%1 (grabado)" + +#: ../src/document/RoseXmlHandler.cpp:442 +msgid "" +"This file was written by Rosegarden %1, and it uses\n" +"a different file format that cannot be read by this version." +msgstr "" +"Este archivo fué escrito por Rosegarden %1 y utiliza\n" +"un formato de archivo diferente que no se puede leer con esta versión." + +#: ../src/document/RoseXmlHandler.cpp:452 +msgid "" +"This file was written by Rosegarden %1, which is more recent than this " +"version.\n" +"There may be some incompatibilities with the file format." +msgstr "" +"Este archivo fué escrito por Rosegarden %1, que es una versión más reciente " +"que esta.\n" +"Pueden haber incompatibilidades con el formato del archivo." + +#: ../src/document/RoseXmlHandler.cpp:1687 +msgid "Loading plugins..." +msgstr "Enumerando plugins... " + +#: rc.cpp:6 rc.cpp:144 +#, no-c-format +msgid "Se&gment" +msgstr "Seg&mento" + +#: rc.cpp:9 rc.cpp:84 rc.cpp:147 rc.cpp:303 +#, no-c-format +msgid "Edit &With" +msgstr "Editar &Con" + +#: rc.cpp:12 rc.cpp:21 rc.cpp:30 rc.cpp:39 rc.cpp:345 +#, no-c-format +msgid "Actions Toolbar" +msgstr "Barra de Herramientas de Acciones" + +#: rc.cpp:15 rc.cpp:33 rc.cpp:129 rc.cpp:285 +#, no-c-format +msgid "Time Toolbar" +msgstr "Barra de Herramientas de Tiempo" + +#: rc.cpp:18 rc.cpp:36 rc.cpp:57 rc.cpp:63 rc.cpp:120 rc.cpp:243 rc.cpp:342 +#, no-c-format +msgid "Transport Toolbar" +msgstr "Barra de Herramientas de Transporte" + +#: rc.cpp:24 rc.cpp:42 rc.cpp:123 rc.cpp:348 +#, no-c-format +msgid "Zoom Toolbar" +msgstr "Barra de Herramientas de Ampliación" + +#: rc.cpp:45 rc.cpp:60 rc.cpp:99 rc.cpp:228 rc.cpp:327 +#, no-c-format +msgid "T&ransport" +msgstr "T&ransporte" + +#: rc.cpp:51 +#, no-c-format +msgid "Number of Stereo &Inputs" +msgstr "Número de &Entradas Estereofónicas" + +#: rc.cpp:54 +#, no-c-format +msgid "&Number of Submasters" +msgstr "&Número de Submasters" + +#: rc.cpp:66 +#, no-c-format +msgid "&Import" +msgstr "&Importar" + +#: rc.cpp:69 +#, no-c-format +msgid "&Merge" +msgstr "&Mezclar" + +#: rc.cpp:72 +#, no-c-format +msgid "&Export" +msgstr "&Exportar" + +#: rc.cpp:75 rc.cpp:141 rc.cpp:297 +#, no-c-format +msgid "&Composition" +msgstr "&Composición" + +#: rc.cpp:78 +#, no-c-format +msgid "&Studio" +msgstr "E&studio" + +#: rc.cpp:81 +#, no-c-format +msgid "Se&gments" +msgstr "Se&gmentos" + +#: rc.cpp:90 +#, no-c-format +msgid "Trac&ks" +msgstr "Pis&tas" + +#: rc.cpp:93 +#, no-c-format +msgid "Set &Instrument" +msgstr "Establecer &Instrumento" + +#: rc.cpp:102 rc.cpp:234 rc.cpp:333 +#, no-c-format +msgid "&Toolbars" +msgstr "Barras de &Herramientas" + +#: rc.cpp:105 rc.cpp:237 rc.cpp:336 +#, no-c-format +msgid "&Rulers" +msgstr "&Reglas" + +#: rc.cpp:111 rc.cpp:240 rc.cpp:339 +#, no-c-format +msgid "Tools Toolbar" +msgstr "Barra de Herramientas de Herramientas" + +#: rc.cpp:114 +#, no-c-format +msgid "Tracks Toolbar" +msgstr "Barra de Herramientas de Pistas" + +#: rc.cpp:117 +#, no-c-format +msgid "Editors Toolbar" +msgstr "Barra de Herramientas de Edición" + +#: rc.cpp:135 +#, no-c-format +msgid "&Layout Mode" +msgstr "Modo de &Formato" + +#: rc.cpp:138 rc.cpp:294 +#, no-c-format +msgid "Add Event Ruler" +msgstr "Añadir Regla de Eventos" + +#: rc.cpp:150 +#, no-c-format +msgid "N&ote" +msgstr "N&ota" + +#: rc.cpp:153 +#, no-c-format +msgid "Mar&ks" +msgstr "Mar&cadores" + +#: rc.cpp:156 +#, no-c-format +msgid "&Ornaments" +msgstr "&Ornamentos" + +#: rc.cpp:159 +#, no-c-format +msgid "&Fingerings" +msgstr "&Digitaciones" + +#: rc.cpp:162 +#, no-c-format +msgid "S&lashes" +msgstr "Co&rchetes" + +#: rc.cpp:165 rc.cpp:219 +#, no-c-format +msgid "&Accidentals" +msgstr "&Alteraciones" + +#: rc.cpp:168 +#, no-c-format +msgid "&Phrase" +msgstr "&Frase" + +#: rc.cpp:171 +#, no-c-format +msgid "Slur &Position" +msgstr "&Posición de la Ligadura" + +#: rc.cpp:174 +#, no-c-format +msgid "Tie &Position" +msgstr "&Posición de la ligadura" + +#: rc.cpp:177 +#, no-c-format +msgid "&Octaves" +msgstr "&Octavas" + +#: rc.cpp:180 rc.cpp:306 +#, no-c-format +msgid "Ad&just" +msgstr "A&juste" + +#: rc.cpp:183 +#, no-c-format +msgid "R&ests" +msgstr "Sil&encios" + +#: rc.cpp:186 rc.cpp:213 +#, no-c-format +msgid "&Notes" +msgstr "&Notas" + +#: rc.cpp:189 rc.cpp:309 +#, no-c-format +msgid "&Quantize" +msgstr "&Cuantificación" + +#: rc.cpp:195 rc.cpp:315 +#, no-c-format +msgid "Trans&pose" +msgstr "Trans&portar" + +#: rc.cpp:198 rc.cpp:318 +#, no-c-format +msgid "Convert" +msgstr "Convertir" + +#: rc.cpp:201 +#, no-c-format +msgid "&Fine Positioning" +msgstr "Posicionamiento &Fino" + +#: rc.cpp:204 +#, no-c-format +msgid "Fine Ti&ming" +msgstr "Te&mporización fina" + +#: rc.cpp:207 +#, no-c-format +msgid "&Visibility" +msgstr "&Visibilidad" + +#: rc.cpp:216 +#, no-c-format +msgid "&Rests" +msgstr "&Silencios" + +#: rc.cpp:222 +#, no-c-format +msgid "&Clefs" +msgstr "&Claves" + +#: rc.cpp:225 rc.cpp:324 +#, no-c-format +msgid "Local &Cursor" +msgstr "&Cursor Local" + +#: rc.cpp:246 +#, no-c-format +msgid "Notes Toolbar" +msgstr "Barra de Herramientas de Notas" + +#: rc.cpp:249 +#, no-c-format +msgid "Rests Toolbar" +msgstr "Barra de Herramientas de Silencios" + +#: rc.cpp:252 +#, no-c-format +msgid "Clefs Toolbar" +msgstr "Barra de Herramientas de Claves" + +#: rc.cpp:255 +#, no-c-format +msgid "Accidentals Toolbar" +msgstr "Barra de Herramientas de Alteraciones" + +#: rc.cpp:258 +#, no-c-format +msgid "Group Toolbar" +msgstr "Barra de Herramientas de Grupo" + +#: rc.cpp:261 +#, no-c-format +msgid "Marks Toolbar" +msgstr "Barra de Herramientas de Marcadores" + +#: rc.cpp:264 +#, no-c-format +msgid "Meta Toolbar" +msgstr "Meta-Barra de Herramientas" + +#: rc.cpp:267 +#, no-c-format +msgid "Layout Toolbar" +msgstr "Barra de Herramientas de Formato" + +#: rc.cpp:270 rc.cpp:351 +#, no-c-format +msgid "Control Ruler actions" +msgstr "Acciones de Regla de Controlador" + +#: rc.cpp:273 rc.cpp:354 +#, no-c-format +msgid "Property Ruler actions" +msgstr "Acciones de Regla de Propiedad" + +#: rc.cpp:276 +#, no-c-format +msgid "&Action" +msgstr "&Acción" + +#: rc.cpp:279 +#, no-c-format +msgid "General Toolbar" +msgstr "Barra de Herramientas General" + +#: rc.cpp:291 +#, no-c-format +msgid "&Grid" +msgstr "&Rejilla" + +#: rc.cpp:300 +#, no-c-format +msgid "&Segment" +msgstr "&Segmento" + +#: rc.cpp:361 +#, no-c-format +msgid "Hide additional controls" +msgstr "Ocultar controles adicionales" + +#: rc.cpp:365 +#, no-c-format +msgid "Panic Button" +msgstr "Botón de Pánico" + +#: rc.cpp:368 +#, no-c-format +msgid "Resets all MIDI devices if you've got stuck notes" +msgstr "Restablece todos los dispositivos MIDI cuando hay notas colgadas" + +#: rc.cpp:375 +#, no-c-format +msgid "Provides a metronome click for you to play along with" +msgstr "Proporciona una señal de metrónomo para tocar con ella" + +#: rc.cpp:378 +#, no-c-format +msgid "Shows MIDI activity in and out of Rosegarden" +msgstr "Muestra actividad de entrada y salida MIDI en Rosegarden" + +#: rc.cpp:381 +#, no-c-format +msgid "IN" +msgstr "IN" + +#: rc.cpp:384 +#, no-c-format +msgid "OUT" +msgstr "OUT" + +#: rc.cpp:387 rc.cpp:390 +#, no-c-format +msgid "NO EVENTS" +msgstr "SIN EVENTOS" + +#: rc.cpp:397 +#, no-c-format +msgid "Record either MIDI or audio" +msgstr "Grabar tanto MIDI como audio" + +#: rc.cpp:401 +#, no-c-format +msgid "Loop" +msgstr "Repetir" + +#: rc.cpp:404 +#, no-c-format +msgid "Turn on and off the loop markers (if set)" +msgstr "Activa y desactiva las marcas de repetición (si hay)" + +#: rc.cpp:411 +#, no-c-format +msgid "Mutes all but the currently selected track" +msgstr "Silencia todas las pistas excepto la seleccionada" + +#: rc.cpp:415 +#, no-c-format +msgid "Start loop or range here" +msgstr "Comenzar bucle o ámbito ahí" + +#: rc.cpp:419 +#, no-c-format +msgid "End loop or range here" +msgstr "Terminar bucle o ámbito ahí" + +#: rc.cpp:422 +#, no-c-format +msgid "SIG" +msgstr "SIG" + +#: rc.cpp:425 +#, no-c-format +msgid "DIV" +msgstr "DIV" + +#: rc.cpp:428 +#, no-c-format +msgid "/16" +msgstr "/16" + +#: rc.cpp:431 +#, no-c-format +msgid "TEMPO" +msgstr "TEMPO" + +#: rc.cpp:434 +#, no-c-format +msgid "END" +msgstr "FIN" + +#: rc.cpp:437 +#, no-c-format +msgid "BAR" +msgstr "COMPÁS" + +#: rc.cpp:441 +#, no-c-format +msgid "Switch between real time, musical time, and frame count" +msgstr "Conmutar entre tiempo real, tiempo musical y cuadros" + +#: rc.cpp:445 +#, no-c-format +msgid "Show additional controls" +msgstr "Mostrar controles adicionales" + +#: rc.cpp:449 +#, no-c-format +msgid "Rewind" +msgstr "Rebobinar" + +#: rc.cpp:452 +#, no-c-format +msgid "Moves the current pointer position back one bar." +msgstr "Mueve la posición actual del cursor un compás hacia atrás" + +#: rc.cpp:456 +#, no-c-format +msgid "Rewind to beginning" +msgstr "Rebobinar al principio" + +#: rc.cpp:459 +#, no-c-format +msgid "" +"Moves the pointer position to the start of the composition. (This may mean " +"going forwards if the pointer is currently before the start.)" +msgstr "" +"Mueve la posición del cursor al comienzo de la composición (esto puede " +"significar adelantarlo si el cursor está actualmente antes del comienzo)" + +#: rc.cpp:463 +#, no-c-format +msgid "Play/Pause" +msgstr "Reproducción/Pausa" + +#: rc.cpp:466 +#, no-c-format +msgid "" +"Plays from the current pointer position, or pauses playback if already in " +"progress." +msgstr "" +"Toca desde la posición actual del cursor, o para la reproducción si ya está " +"tocando." + +#: rc.cpp:473 +#, no-c-format +msgid "Stops playback or recording." +msgstr "Para la grabación o reproducción" + +#: rc.cpp:477 +#, no-c-format +msgid "Fast forward" +msgstr "Avance rápido" + +#: rc.cpp:480 +#, no-c-format +msgid "Moves the current pointer position forwards one bar." +msgstr "Mueve la posición actual del cursor un compás hacia delante" + +#: rc.cpp:484 +#, no-c-format +msgid "Fast forward to end" +msgstr "Avance rápido hacia el final" + +#: rc.cpp:487 +#, no-c-format +msgid "" +"Moves the pointer position to the end of the composition. (This may mean " +"going backwards if the pointer is already beyond the end.)" +msgstr "" +"Mueve la posición del cursor al final de la composición. (Esto puede " +"significar rebobinado si la posición ya está más allá del final.)" + +#: rc.cpp:491 +#, no-c-format +msgid "Display time to end" +msgstr "Muestra tiempo restante" + +#: ../docs/en/tips.cpp:3 +msgid "" +"

                      To configure a track to play using a particular instrument:

                      \n" +"  * click on the track label and hold a moment
                      \n" +"  * select an output device
                      \n" +"  * select one of that device's available instruments (#1 - #16)" +"
                      \n" +"  * adjust that instrument's output channel, program, bank, and\n" +"controllers via the instrument parameters box\n" +msgstr "" +"

                      Para configurar una pista para tocar con un determinado instrumento:

                      \n" +"  * haga clic en la etiqueta de la pista y mantenga pulsado el " +"botón un momento
                      \n" +"  * seleccione un dispositivo de salida
                      \n" +"  * seleccione uno de los instrumentos disponibles del dispositivo " +"(#1 - #16)
                      \n" +"  * ajuste el canal, banco, programa, y controladores del " +"instrumento usando\n" +"los controles del cuadro de parámetros del instrumento\n" + +#: ../docs/en/tips.cpp:13 +msgid "" +"

                      ...that Rosegarden has an autosave feature?

                      \n" +"You can select your autosave interval from Settings->Configure\n" +"Rosegarden.

                      \n" +"When something goes awry, such as a power outage or a Rosegarden crash\n" +"(unfortunately, it happens...) simply load the file you were working on, and " +"you'll be given the\n" +"option to load the autosaved version, or the unmodified original.

                      \n" +msgstr "" +"

                      ...que Rosegarden tiene una característica de auto-guardar?

                      \n" +"Puede seleccionar el intervalo de tiempo en Preferencias->Configurar \n" +" Rosegarden

                      \n" +"Cuando algo va mal, como un corte de corriente o un fallo de Rosegarden \n" +"(desgraciadamente, ocurre...) simplemente recupere el archivo con el que " +"estaba trabajando, \n" +"y se le presentará la \n" +"opción de abrir la versión auto-guardada, o bien la original sin modificar.\n" + +#: ../docs/en/tips.cpp:23 +msgid "" +"

                      \n" +"...that you can save the current document as your default studio by using\n" +"Composition -> Studio -> Save Current Document as Default Studio?\n" +msgstr "" +"

                      \n" +"... que usted puede guardar el documento actual como el estudio " +"predeterminado usando\n" +"Composición -> Estudio -> Guardar documento actual como Estudio " +"predeterminado?

                      \n" + +#: ../docs/en/tips.cpp:30 +msgid "" +"

                      ...that your default studio is a complete Rosegarden composition that " +"gets\n" +"loaded every time you create a new document or import a MIDI file?

                      \n" +msgstr "" +"

                      ...que su estudio predeterminado es una composición completa de " +"Rosegarden que se\n" +"carga cada vez que usted crea un nuevo documento o importa un archivo MIDI?\n" + +#: ../docs/en/tips.cpp:36 +msgid "" +"

                      ...that your default studio can contain instrument assignments, document " +"properties, LilyPond headers,\n" +"and many other things?

                      The default studio is a complete Rosegarden " +"composition, so it can contain anything that you may wish to have available " +"in each\n" +"new document you create.

                      \n" +msgstr "" +"

                      ...que su estudio predeterminado puede\n" +"contener asignaciones de instrumentos predeterminadas, propiedades del " +"documento, cabeceras de LilyPond, \n" +"y muchas otras cosas?

                      El estudio predeterminado es una composición " +"completa de Rosegarden, así que puede contener cualquier cosa que usted " +"puede desear tener disponible en cada nuevo documento creado.

                      \n" + +#: ../docs/en/tips.cpp:43 +msgid "" +"

                      ...that Rosegarden will detect and create a default connection for ALSA " +"soft\n" +"synth applications that are started after Rosegarden is already running?\n" +msgstr "" +"

                      ...que Rosegarden detectará y creará una conexión para los sintetizadores " +"software de ALSA que se inicien después de que Rosegarden ya esté en " +"ejecución?

                      \n" + +#: ../docs/en/tips.cpp:49 +msgid "" +"

                      ...that you can make your default studio override that in every " +"Rosegarden composition you load?

                      If your studio setup does not change " +"very often, and you would prefer for\n" +"the settings in your default studio to take precedence over whatever\n" +"studio is saved with any files you happen to load, you can make your studio " +"the default for everything using Settings -> Configure Rosegarden ->\n" +"MIDI -> Always use default studio when loading files.

                      \n" +msgstr "" +"

                      ... que usted puede hacer que su estudio por omisión prevalezca sobre " +"cualquier composición de Rosegarden que cargue?

                      Si la configuración " +"de su estudio no cambia muy a menudo, y usted prefiere que\n" +"las configuraciones en su estudio por omisión tengan prioridad sobre " +"cualquier\n" +"estudio almacenado con cualquier archivo que esté cargando, puede hacer de " +"su estudio el estudio predeterminado para todo, usando Preferencias -> " +"Configurar Rosegarden ->MIDI -> Usar siempre estudio por omisión al cargar\n" +" archivos.

                      \n" + +#: ../docs/en/tips.cpp:57 +msgid "" +"

                      If you have accidentally recorded a segment so short that it does not\n" +"appear on the canvas, which you can only hear during subsequent recording\n" +"sessions, you can gain access to it by using Composition -> Change\n" +"Composition Start and End and then setting the composition to start at a " +"negative number.

                      \n" +msgstr "" +"

                      Si usted ha grabado accidentalmente un segmento tan corto que no\n" +"aparece en el lienzo, y el cual solo puede escucharlo durante las " +"siguientes\n" +"sesiones de grabación, puede obtener acceso a éste usando Composición -" +"> \n" +"Cambiar Comienzo y Final de la Composición y luego configurar la " +"composición\n" +"para que empiece en un número negativo.

                      \n" + +#: ../docs/en/tips.cpp:65 +msgid "" +"

                      ...that if you place a note at the wrong pitch using the notation or " +"matrix editor, you can move it one semitone at a time with the up and down " +"arrow keys on your keyboard?

                      \n" +msgstr "" +"

                      ...que si coloca una nota a una altura incorrecta usando el editor de " +"partituras o de matriz, puede moverla un semitono cada vez con las teclas de " +"flecha arriba y abajo del teclado?

                      \n" + +#: ../docs/en/tips.cpp:70 +msgid "" +"

                      ...that you can toggle stem directions in the notation editor by " +"selecting\n" +"one or more notes and using Ctrl-PageUp and Ctrl-PageDown?

                      \n" +msgstr "" +"

                      ...que puede cambiar la dirección de las plicas en el editor de " +"partituras seleccionando\n" +"una o mas notas y usando Ctrl-RePag y Ctrl-AvPag?

                      \n" + +#: ../docs/en/tips.cpp:76 +msgid "" +"

                      ...that you can change the accidental used for a note in the notation " +"editor (without changing the pitch of the note) by selecting\n" +"it and using the up and down arrow keys with both Ctrl and Shift pressed?\n" +msgstr "" +"

                      ...que puede cambiar el signo de alteración usado para una nota en el " +"editor de partitura (sin cambiar la altura de la nota) seleccionándola\n" +"y usando las teclas de flecha arriba y abajo del teclado con Ctrl y " +"Mayúsculas pulsadas simultáneamente?

                      \n" + +#: ../docs/en/tips.cpp:82 ../docs/en/tips.cpp:93 +msgid "" +"

                      ...that you can hold down the Shift key while repositioning segments on " +"the\n" +"segment canvas in order to avoid the \"snap-to\" effect and exert finer " +"control?

                      \n" +msgstr "" +"

                      ...que puede mantener pulsada la tecla de cambio a mayúsculas mientras " +"reposiciona segmentos en el lienzo\n" +"de segmentos para evitar el efecto \"auto-posicionamiento\" y ejercer un " +"control más fino?

                      \n" + +#: ../docs/en/tips.cpp:88 +msgid "" +"

                      ...that you can use the arrow tool to draw, move, and resize segments and " +"events as well as to select them?

                      Drag a segment or event block to " +"move it, drag the right edge of a block to resize it, and drag with the " +"middle mouse button pressed to draw a new segment or event.

                      (Of " +"course, the dedicated draw, move and resize tools are still quicker for " +"repeated operations.)

                      \n" +msgstr "" +"

                      ...que puede usar la herramienta \"flecha\" para dibujar, mover y " +"redimensionar segmentos además de seleccionarlos?

                      Arrastre un " +"segmento o un bloque de eventos para moverlo, arrastre el margen derecho de " +"un bloque para redimensionarlo, y arrastre con el botón medio del ratón " +"pulsado para dibujar un nuevo segmento o evento.

                      (Por supuesto, las " +"herramientas dedicadas 'mover' y 'redimensionar' son más eficaces para " +"operaciones reiteradas.)

                      \n" + +#: ../docs/en/tips.cpp:99 +msgid "" +"

                      ...that you can hold down the Shift key while repositioning or resizing " +"events in the\n" +"matrix view in order to avoid the \"snap-to\" effect and exert finer control?" +"

                      \n" +msgstr "" +"

                      ...que puede mantener pulsada la tecla de cambio a mayúsculas mientras " +"reposiciona o redimensiona eventos en la vista del editor de matriz \n" +"para evitar el efecto de \"auto-posicionamiento\" y ejercer un control más " +"fino?

                      \n" + +#: ../docs/en/tips.cpp:105 +msgid "" +"

                      ...that you can edit multiple segments on multiple tracks simultaneously " +"in\n" +"the notation editor? Simply select the segments, then use Edit -> Open " +"in Notation Editor.

                      \n" +msgstr "" +"

                      ...que puede editar múltiples segmentos en múltiples pistas " +"simultáneamente en\n" +"el editor de partituras? Simplemente seleccione los segmentos, entonces " +"utilice Editar->Abrir en el editor de partituras

                      \n" + +#: ../docs/en/tips.cpp:111 +msgid "" +"

                      ...that Rosegarden can export files for use by LilyPond, the high-quality " +"score typesetting system?

                      \n" +"From the File menu, navigate to Export -> Export LilyPond File

                      \n" +msgstr "" +"

                      ...que Rosegarden puede exportar archivos para su uso con LilyPond, el " +"sistema de\n" +"edición de partituras de alta calidad?\n" +"Desde el menú Archivo, navegue a Exportar -> Exportar archivo " +"LilyPond

                      \n" + +#: ../docs/en/tips.cpp:117 +msgid "" +"

                      ...that Rosegarden can print via LilyPond, the high-quality score " +"typesetting system?

                      \n" +"From the File menu, navigate to Preview with LilyPond. The " +"file\n" +"will be exported, rendered, and a preview will appear in KPDF, or one of\n" +"several other PDF viewers, where it can then be printed as well.

                      \n" +msgstr "" +"

                      ...que Rosegarden puede imprimir vía LilyPond, el sistema de edición de " +"partituras de alta calidad?

                      \n" +"Desde el menú Archivo, navegue a Previsualizar con LilyPond El " +"archivo será exportado, representado y previsualizado con KPDF u otro " +"programa visor de archivos PDF, desde el cual también puede ser impreso.\n" + +#: ../docs/en/tips.cpp:125 +msgid "" +"

                      ...that if you use the quantizer from within the notation view, you can " +"tell it to quantize only the timing used for notation -- making it possible " +"to have good looking notation and a human MIDI performance?

                      \n" +msgstr "" +"

                      ...que si usted usa la cuantificación desde la vista de edición de " +"partitura, puede decirle que cuantifique solamente los tiempos usados para " +"la notación de partitura -- haciendo posible tener una partitura elegante " +"y a la vez una interpretación MIDI humana?

                      \n" + +#: ../docs/en/tips.cpp:130 +msgid "" +"

                      ...that you can change segment labels using the controls on the Segment " +"Parameters box\n" +"in the main window?

                      \n" +msgstr "" +"

                      ...que usted puede cambiar las etiquetas de los segmentos utilizando los " +"controles en la caja Parámetros de Segmento de la ventana principal?

                      \n" + +#: ../docs/en/tips.cpp:136 +msgid "" +"

                      ...that the number of tracks in new documents is based on the contents " +"of\n" +"your autoload.rg file?\n" +"

                      \n" +"Whether you prefer to start with three tracks or 43, create a document that\n" +"contains the desired number of tracks, plus any other studio or document " +"properties settings\n" +"you wish to configure, and use Composition -> Studio -> Save Current " +"Document as Default\n" +"Studio to make this your new default.

                      \n" +msgstr "" +"

                      ...que el número de pistas en los nuevos documentos está basado en el " +"contenido de su archivo autoload.rg?\n" +"Si prefiere comenzar con tres pistas o con 43, cree un documento que\n" +"contenga el número de pistas deseado, mas cualesquiera otras preferencias de " +"estudio\n" +"o de documento que desee configurar, y utilice Composición -> Estudio -> " +"Guardar documento actual como \n" +"Estudio predeterminado para que esta configuración se active por omisión." +"

                      \n" + +#: ../docs/en/tips.cpp:147 +msgid "" +"

                      ...that you can change the name of a track by double clicking on the " +"label? (The\n" +"label must be visible for this to work.)

                      \n" +msgstr "" +"

                      ...que puede cambiar el nombre de una pista haciendo doble clic en su " +"etiqueta? (La\n" +"etiqueta debe estar visible para que esto funcione.)

                      \n" + +#: ../docs/en/tips.cpp:153 +msgid "" +"

                      ...that you can configure what happens when you double-click on a segment?" +"

                      Go to Settings -> Configure Rosegarden and choose your " +"preferred editing window under the Behaviour tab.

                      \n" +msgstr "" +"

                      ...que puede configurar lo que ocurre cuando hace doble clic en un " +"segmento? Seleccione Preferencias -> Configurar Rosegarden y elija " +"la opción que prefiera bajo la pestaña Comportamiento.

                      \n" + +#: ../docs/en/tips.cpp:158 +msgid "" +"

                      ...that Rosegarden is being developed as a community effort with\n" +"contributions from around the world?

                      \n" +"The four most active developers live in London (England), Cannes, " +"Barcelona,\n" +"and... Christiansburg? (Christiansburg is a town of about 50,000 in\n" +"southwestern Virginia, USA.)

                      \n" +"We have had contributors from elsewhere in the US, UK, Spain, Mexico, " +"Argentina, Germany,\n" +"Sweden, Russia, Japan, Finland, and Italy, just to name a few...

                      \n" +msgstr "" +"

                      ...que Rosegarden está siendo desarrollado como un esfuerzo comunitario " +"con contribuciones procedentes de todas partes del mundo?

                      \n" +"Los cuatro desarrolladores más activos viven en Londres (Inglaterra), " +"Cannes, Barcelona, y... Christiansburg (Christiansburg es una ciudad de " +"50.000 habitantes en el suroeste de Virginia, EEUU.)

                      Hemos tenido " +"colaboradores de todas partes en los EEUU, España, Mexico, Argentina, " +"Alemania, Suecia, Rusia, Japón, Finlandia e Italia, por nombrar algunos...\n" + +#: ../docs/en/tips.cpp:169 +msgid "" +"

                      ...that Rosegarden is available in Spanish, French, German, Russian, " +"Welsh, Swedish, Italian and Estonian\n" +"translations? (Just to name a few.)

                      \n" +"If you're interested in translating Rosegarden to another language, drop us " +"a\n" +"line at rosegarden-devel@lists.sourceforge.net.

                      \n" +msgstr "" +"

                      ...que Rosegarden tiene disponibles traducciones al español, francés, " +"alemán, ruso, galés, sueco, italiano y estonio?

                      \n" +"Si usted está interesado en traducir Rosegarden a otro idioma, envíenos un " +"mensaje a\n" +"rosegarden-devel@lists.sourceforge.net.

                      \n" + +#: ../docs/en/tips.cpp:177 +msgid "" +"

                      ...that you can change the total number of bars in the composition via\n" +"Composition -> Change Composition Start and End?

                      \n" +msgstr "" +"

                      ...que se puede cambiar el número total de compases en la composición por " +"medio de\n" +"Editar -> Cambiar Comienzo y Final de la Composición?

                      \n" + +#: ../docs/en/tips.cpp:183 +msgid "" +"

                      ...that you can see the difference between performance and display " +"duration\n" +"of duration-quantized notes in the notation editor?

                      \n" +"Use Settings -> Show Raw Note Ruler to turn on this handy\n" +"feature.

                      \n" +"Note that this feature does not work in page layout view.

                      \n" +msgstr "" +"

                      ...que puede ver la diferencia entre la interpretación y la duración " +"representada\n" +"de las notas cuya duración ha sido cuantificada en el editor de partitura?" +"

                      \n" +"Utilice Preferencias -> Mostrar regla de Nota Cruda para activar esta " +"práctica característica.

                      \n" +"Fíjese que esta característica no funciona en el la vista de formato de " +"página.

                      \n" + +#: ../docs/en/tips.cpp:192 +msgid "" +"

                      ...that you can add tempo and time-signature changes by double-clicking " +"on the values displayed in the transport window or tempo rulers?

                      \n" +msgstr "" +"

                      ...que puede añadir cambios de tempo y de medida del compás haciendo " +"doble clic en los valores mostrados en la ventana de transporte o regla de " +"tempo?

                      \n" + +#: ../docs/en/tips.cpp:197 +msgid "" +"

                      ...that the transport window can display musical time, sample frame " +"count, and a visual metronome as well as real time?

                      Just click on the " +"small button at the extreme top left of the window.

                      \n" +msgstr "" +"

                      ...que la ventana de transporte puede mostrar tiempo musical, contador de " +"cuadros y un metrónomo visual además de tiempo real?

                      Pulse el " +"pequeño botón de la esquina superior izquierda de la ventana.

                      \n" + +#: ../docs/en/tips.cpp:202 +msgid "" +"

                      ...that you can select all notes of a particular pitch in the matrix " +"view, by shift-clicking on that pitch on the piano keyboard at the left?" +"

                      If you shift-click-drag, you can select whole ranges too.

                      \n" +msgstr "" +"

                      ...que puede seleccionar todas las notas de una determinada altura en la " +"vista de matriz, pulsando mayúsculas y haciendo clic en la nota del teclado " +"de piano de la izquierda?

                      También puede seleccionar rangos completos " +"pulsando mayúsculas + clic + arrastrar.

                      \n" + +#: ../docs/en/tips.cpp:207 +msgid "" +"

                      ...that you can set a loop in the main window by clicking-and-dragging on " +"the time ruler with Shift pressed?

                      (If the ruler isn't visible, use " +"Settings -> Show Rulers.)

                      \n" +msgstr "" +"

                      ...que puede establecer una repetición en la ventana principal, pulsando " +"y arrastrando en la regla de tiempo con la tecla de mayúsculas pulsada? " +"

                      (Si la regla no está visible, utilice Preferencias -> Mostrar " +"reglas.)

                      \n" + +#: ../docs/en/tips.cpp:212 +msgid "" +"

                      ...that if you're editing a section in the matrix or notation view, you " +"can\n" +"set that section to loop while you edit it?

                      Select it and use " +"Tools ->\n" +"Local Cursor -> Set Loop to Selection, then hit Play.



                      \n" +"This feature does not work quite as well for compositions that include " +"sampled\n" +"audio.\n" +msgstr "" +"

                      ...que si usted está editando una sección en las vistas de matriz o " +"partitura, puede establecer dicha sección como repetición mientras la está " +"editando?
                      Seleccione y utilice Herramientas -> Cursor Local -> " +"Establecer repetición en la Selección, luego pulse Reproducir.

                      \n" +"Esta caracteristica no funciona demasiado bien en composiciones que " +"incluyen audio digital.\n" + +#: ../docs/en/tips.cpp:221 +msgid "" +"

                      ...if you have more than one note or controller event at the same time, " +"you\n" +"can use the [ and ] keys to flip the stack of events around on the " +"controller\n" +"and velocity rulers in order to bring the item you wish to adjust into\n" +"focus.

                      \n" +msgstr "" +"

                      ...si usted tiene más de una nota o evento de controlador en el mismo " +"tiempo, puede usar\n" +"las teclas [ y ] para intercambiar el orden en la pila de eventos, en la " +"barra de controladores\n" +"y de velocidad para traer al frente el ítem que desea ajustar.

                      \n" + +#: ../docs/en/tips.cpp:229 +msgid "" +"

                      ...that the notation view shows you notes using their display duration, " +"while the\n" +"matrix allows you to edit their performance duration?

                      \n" +"Be careful with tied notes in the matrix. It is not apparent that they " +"are\n" +"tied, and if you split up a pair of tied notes, subsequent notation views " +"will\n" +"be confused and unhappy. This is an old bug that has been on our TODO list\n" +"for years. Sorry about that, folks. Patches welcome.\n" +"

                      \n" +msgstr "" +"

                      ...que la vista de partitura le muestra las notas utilizando las " +"duraciones de representación, mientras que la vista de matriz le permite " +"editar sus duraciones de interpretación?

                      \n" +"Tenga cuidado con las notas ligadas en la matriz. No es evidente que " +"están ligadas\n" +"y si usted divide un par de notas ligadas, la vista de partitura estará " +"confundida e infeliz.\n" +"Este es un viejo defecto que ha estado en nuestra lista de tareas pendientes " +"durante años.\n" +"Lo sentimos, amigos. Parches serán bienvenidos.

                      \n" + +#: ../docs/en/tips.cpp:240 +msgid "" +"

                      If you're working with a human performance and you need to insert some " +"new\n" +"notes, these new notes will sound for their entire written duration. To " +"blend\n" +"these new notes into a human performance, select them, then use Adjust -> " +"Interpret... \n" +"from the notation view to interpret any marks and massage their " +"performance\n" +"durations to something less mechanical.

                      \n" +msgstr "" +"

                      si usted está trabajando con una interpretación humana y necesita " +"insertar algunas\n" +"notas nuevas, dichas nuevas notas sonarán durante tanto tiempo como indica " +"su duración\n" +"escrita. Para fusionar estas notas con una interpretación humana, " +"selecciónelas y utilice \n" +"Ajuste -> Notas -> Interpretar... desde la ventana del editor de " +"partitura, para\n" +"interpretar cualesquiera marcadores y masajear su interpretación en algo " +"menos mecánico

                      \n" + +#: ../docs/en/tips.cpp:249 +msgid "" +"

                      ...that Rosegarden can export certain things to LilyPond that it cannot " +"yet\n" +"display within its own native interface?

                      These new directives can be " +"inserted\n" +"via the T text insert tool in the notation view.

                      \n" +"Load the example files\n" +"lilypond-alternative-endings.rg and lilypond-directives.rg for " +"a\n" +"demonstration of how to use the new exportable directives.

                      \n" +"Use File -> Preview with\n" +"LilyPond to see what they look like on the exported page.

                      \n" +"Be sure to turn on\n" +"Settings -> Show LilyPond Directives and Show Annotations " +"within\n" +"the notation view.

                      \n" +msgstr "" +"

                      ...que Rosegarden puede exportar ciertas cosas a LilyPond que no puede " +"mostrar con su interfáz propio?

                      Estas directrices nuevas pueden " +"insertarse desde la vista de partitura con la herramienta T de " +"inserción de Texto.

                      Cargue los archivos de ejemplo lilypond-" +"alternative-endings.rg y lilypond-directives.rg para una " +"demostración de como usar las nuevas \n" +"directrices exportables.

                      \n" +"Utilice Archivo -> Previsualizar con LilyPond para ver como quedan en " +"la página exportada.

                      \n" +"Asegúrese de habilitar Preferencias ->Mostrar Directrices para LilyPond y Mostrar Anotaciones en la vista de partitura.

                      \n" + +#: ../docs/en/tips.cpp:264 +msgid "" +"

                      ...that Rosegarden has track parameters allowing you to Create " +"segments with: certain\n" +"properties by default?

                      You can pre-select the clef, transposition, " +"colour, and specify\n" +"the highest and lowest playable notes (notes outside this range display in\n" +"red by default). Then draw a segment with the pencil, or record one, and " +"any\n" +"new segments created on this track will take these properties as segment\n" +"parameters.

                      \n" +"These parameters do not apply to audio tracks.

                      \n" +msgstr "" +"

                      ... que Rosegarden tiene parámetros de pista que se pueden utilizar para " +"Crear nuevos segmentos con: ciertas propiedades por defecto?" +"

                      Usted puede seleccionar la clave, la transposición, el color, y " +"especificar las notas más altas y más bajas que pueden ser tocadas en un " +"instrumento de un cierto tipo (notas afuera de este ámbito se muestran en " +"rojo). Luego puede dibujar o grabar un segmento, y todos los segmentos " +"creados en esa pista tomarán estas propiedades como parámetros de segmento. " +"

                      \n" +"Estos parámetros no tienen nada que ver con segmentos audio.

                      \n" + +#: ../docs/en/tips.cpp:275 +msgid "" +"

                      ...that Rosegarden has a database of preset parameters describing more " +"than 300\n" +"musical instruments from the real world, grouped into several convenient\n" +"categories?

                      Each preset contains a clef, transposition, and playable " +"range\n" +"suggestions for both amateur and professional players.

                      Click the\n" +"Load button in the new track parameters box to get started! (If " +"you\n" +"do not see a Load button, be sure your parameter panel is set for\n" +"tabbed mode, rather than stacked mode.)

                      (Special thanks to " +"Magnus\n" +"Johansson for assembling this extraordinary database.)

                      \n" +msgstr "" +"

                      ... que Rosegarden tiene una nueva base de datos de parámetros " +"preprogramados que describe más de 300 instrumentos musicales del mundo " +"real, agrupados en varias categorías convenientes?

                      Cada instrumento " +"preprogramado contiene una clave, una transposición, y una tesitura adecuada " +"para un músico aficionado y uno profesional.

                      Pulse el botón " +"Cargar en la nueva caja de parámetros de pista para comenzar! (Si " +"no puede ver un botón Cargar, asegúrese de que el panel se muestra " +"con pestañas en lugar de apilado.)

                      (Gracias especiales a " +"Magnus Johansson por reunir esta extraordinaria base de datos.)

                      \n" + +#: ../docs/en/tips.cpp:287 +msgid "" +"

                      ...that when exporting to Lilypond, you can merge tracks that have the " +"same name onto a single staff?

                      For example, if there are three voices " +"in a single part, write each\n" +"voice as an independent segment/staff, each on a separate track. Give all\n" +"three tracks the same name, and select [x] Merge tracks that have the " +"same\n" +"name from the options dialog that appears when you export to, or " +"preview\n" +"with LilyPond.

                      \n" +"The tracks must have a non-default name for this to work.

                      \n" +msgstr "" +"

                      ...que al exportar a LilyPond usted puede fusionar las pistas que tienen " +"el mismo nombre en el mismo pentagrama?

                      Por ejemplo, si hay tres " +"voces en una misma parte, escriba cada voz como un segmento independiente, y " +"seleccione [x] Fusionar pistas con el mismo nombre en el diálogo de " +"opciones que aparece cuando exporta o previsualiza con LilyPond.

                      \n" +"Las pistas no pueden tener el nombre por defecto, para que esta técnica " +"funcione.

                      \n" + +#: ../docs/en/tips.cpp:297 +msgid "" +" \t \n" +"

                      ...that you can use the mouse wheel to scroll up and down, scroll left " +"and right, and zoom in and out?

                      Just roll the wheel to scroll up or " +"down. Hold Alt as well to scroll left or right, or hold Ctrl to zoom in and " +"out.

                      \t \n" +msgstr "" +" \t \n" +"

                      ...que puede usar la rueda del ratón para desplazar arriba y abajo, " +"izquierda y derecha, y ampliar o reducir?

                      Utilice simplemente la " +"rueda del ratón para realizar desplazamiento vertical. Pulse la tecla Alt " +"al mismo tiempo que gira la rueda para el desplazamiento horizontal, o pulse " +"Ctrl para ampliar y reducir.

                      \t \n" + +#: ../docs/en/tips.cpp:303 +msgid "" +" \t \n" +"

                      ...that you can time-stretch an audio segment -- stretching or squashing " +"a\n" +"sample to a different duration without changing its pitch -- just by\n" +"dragging its right edge with the Ctrl key pressed?

                      \n" +msgstr "" +" \t \n" +"

                      ... que puede estirar en el tiempo un segmento de audio --estirar o " +"encoger\n" +"una muestra hasta una duración diferente sin cambiar su afinación -- " +"arrastrando el margen derecho del segmento mientras pulsa la tecka Ctrl?\n" + +#: ../docs/en/tips.cpp:311 +msgid "" +" \t \n" +"

                      ...that you can add audio to your Rosegarden composition just by dragging " +"an audio file from your file manager and dropping it on the Rosegarden " +"segment canvas? (Make sure you drop it on an audio track!)

                      You can " +"also drop audio files from Rosegarden's audio file manager window onto the " +"segment canvas, and from other programs onto the audio file manager.

                      \n" +msgstr "" +" \t \n" +"

                      ...que usted puede añadir audio a su composición de Rosegarden " +"simplementearastrando y soltando un archivo de audio desde su administrador " +"de archivos hasta el lienzo de segmentos de Rosegarden? (¡asegúrese de " +"soltarlo en una pista de audio!)

                      \n" +"También puede soltar archivos de audio desde el administrador de segmentos " +"de audio de Rosegarden hacia el lienzo de segmentos, y desde otros programas " +"hasta el administrador de segmentos de audio.

                      \n" + +#: ../docs/en/tips.cpp:317 +msgid "" +" \t \n" +"

                      ...that you can set the tempo to match the duration of an audio segment " +"if you know it's an exact number of bars or beats long?

                      Just select " +"the audio segment and use Composition -> Tempo and Time Signature -> Set " +"Tempo to Audio Segment Duration.

                      \n" +msgstr "" +" \t \n" +"

                      ...que usted puede establecer el tempo para que coincida con la duración " +"de un segmento de audio si conoce exactamente su longitud en número de " +"compases?

                      Simplemente seleccione el segmento de audio y utilice " +"Composición -> Tempo y medida del compás -> Establecer tempo a la " +"duración del segmento de audio.

                      \n" + +#: ../data/fonts/mappings/fonts.cpp:1 +msgid "Feta Pixmaps" +msgstr "Mapas de pixels Feta" + +#: ../data/fonts/mappings/fonts.cpp:2 ../data/fonts/mappings/fonts.cpp:7 +msgid "GNU Lilypond" +msgstr "GNU LilyPond" + +#: ../data/fonts/mappings/fonts.cpp:3 ../data/fonts/mappings/fonts.cpp:8 +msgid "Copyright (c) 1997--2003 Han-Wen Nienhuys and Jan Nieuwenhuizen" +msgstr "Copyright (c) 1997--2003 Han-Wen Nienhuys y Jan Nieuwenhuizen" + +#: ../data/fonts/mappings/fonts.cpp:4 ../data/fonts/mappings/fonts.cpp:9 +#: ../data/fonts/mappings/fonts.cpp:14 ../data/fonts/mappings/fonts.cpp:19 +#: ../data/fonts/mappings/fonts.cpp:24 ../data/fonts/mappings/fonts.cpp:29 +#: ../data/fonts/mappings/fonts.cpp:34 ../data/fonts/mappings/fonts.cpp:39 +#: ../data/fonts/mappings/fonts.cpp:44 ../data/fonts/mappings/fonts.cpp:49 +#: ../data/fonts/mappings/fonts.cpp:54 +msgid "Chris Cannam" +msgstr "Chris Cannam" + +#: ../data/fonts/mappings/fonts.cpp:5 ../data/fonts/mappings/fonts.cpp:40 +msgid "pixmap" +msgstr "mapa de pixels" + +#: ../data/fonts/mappings/fonts.cpp:6 +msgid "Feta" +msgstr "Feta" + +#: ../data/fonts/mappings/fonts.cpp:10 ../data/fonts/mappings/fonts.cpp:15 +#: ../data/fonts/mappings/fonts.cpp:20 ../data/fonts/mappings/fonts.cpp:25 +#: ../data/fonts/mappings/fonts.cpp:30 ../data/fonts/mappings/fonts.cpp:35 +#: ../data/fonts/mappings/fonts.cpp:45 ../data/fonts/mappings/fonts.cpp:50 +#: ../data/fonts/mappings/fonts.cpp:55 +msgid "scalable" +msgstr "escalable" + +#: ../data/fonts/mappings/fonts.cpp:11 +msgid "Fughetta" +msgstr "Fughetta" + +#: ../data/fonts/mappings/fonts.cpp:12 +msgid "" +"Created by Blake Hodgetts; freely redistributable. See http://www.efn.org/" +"~bch/aboutfonts.html" +msgstr "" +"Creada por Blake Hodgetts; libremente redistribuible. Ver http://www.efn." +"org/~bch/aboutfonts.html " + +#: ../data/fonts/mappings/fonts.cpp:13 +msgid "Copyright 1995-1999 Blake Hodgetts" +msgstr "Copyright 1995-1999 Blake Hodgetts" + +#: ../data/fonts/mappings/fonts.cpp:16 +msgid "Inkpen" +msgstr "Inkpen" + +#: ../data/fonts/mappings/fonts.cpp:17 +msgid "Inkpen is part of Sibelius, but other fonts may use the same mappings." +msgstr "" +"Inkpen es parte de Sibelius, pero otras tipografías pueden usar el mismo " +"mapa." + +#: ../data/fonts/mappings/fonts.cpp:18 ../data/fonts/mappings/fonts.cpp:28 +msgid "Copyright Sibelius Software Ltd" +msgstr "Copyright Sibelius Software Ltd" + +#: ../data/fonts/mappings/fonts.cpp:21 +msgid "Maestro" +msgstr "Maestro" + +#: ../data/fonts/mappings/fonts.cpp:22 +msgid "Maestro is part of Finale, but other fonts use the same mappings." +msgstr "" +"Maestro es parte de Finale, pero otras tipografías pueden usar el mismo mapa." + +#: ../data/fonts/mappings/fonts.cpp:23 ../data/fonts/mappings/fonts.cpp:33 +msgid "Copyright Coda Inc" +msgstr "Copyright Coda Inc" + +#: ../data/fonts/mappings/fonts.cpp:27 +msgid "Opus is part of Sibelius, but other fonts may use the same mappings." +msgstr "" +"Opus es parte de Sibelius, pero otras tipografías pueden usar el mismo mapa." + +#: ../data/fonts/mappings/fonts.cpp:31 +msgid "Petrucci" +msgstr "Petrucci" + +#: ../data/fonts/mappings/fonts.cpp:32 +msgid "Petrucci is part of Finale, but other fonts use the same mappings." +msgstr "Petrucci es parte de Finale, pero otras tipografías usan el mismo mapa" + +#: ../data/fonts/mappings/fonts.cpp:36 +msgid "RG21" +msgstr "RG21" + +#: ../data/fonts/mappings/fonts.cpp:37 +msgid "Rosegarden 2.1" +msgstr "Rosegarden 2.1" + +#: ../data/fonts/mappings/fonts.cpp:38 +msgid "Copyright (c) 1994--2001 Chris Cannam" +msgstr "Copyright (c) 1994--2001 Chris Cannam" + +#: ../data/fonts/mappings/fonts.cpp:41 +msgid "Sonata" +msgstr "Sonata" + +#: ../data/fonts/mappings/fonts.cpp:42 +msgid "Adobe" +msgstr "Adobe" + +#: ../data/fonts/mappings/fonts.cpp:43 +msgid "Copyright Adobe Inc" +msgstr "Copyright Adobe Inc" + +#: ../data/fonts/mappings/fonts.cpp:46 +msgid "Steinberg" +msgstr "Steinberg" + +#: ../data/fonts/mappings/fonts.cpp:47 +msgid "The Steinberg Notation font is part of Cubase." +msgstr "La tipografía de partitura de Steinberg es parte de Cubase." + +#: ../data/fonts/mappings/fonts.cpp:48 +msgid "Copyright Steinberg Inc" +msgstr "Copyright Steinberg Inc" + +#: ../data/fonts/mappings/fonts.cpp:51 +msgid "Xinfonia" +msgstr "Xinfonia" + +#: ../data/fonts/mappings/fonts.cpp:52 +msgid "xemo.org" +msgstr "xemo.org" + +#: ../data/fonts/mappings/fonts.cpp:53 +msgid "Copyright 2001-2003 Xemus Software LLC" +msgstr "Copyright 2001-2003 Xemus Software LLC" + +#: ../data/styles/styles.cpp:1 +msgid "Classical" +msgstr "Classical" + +#: ../data/styles/styles.cpp:2 +msgid "Cross" +msgstr "Cross" + +#: ../data/styles/styles.cpp:3 +msgid "Mensural" +msgstr "Mensural" + +#: ../data/styles/styles.cpp:4 +msgid "Triangle" +msgstr "Triangle" diff --git a/po/et.po b/po/et.po new file mode 100644 index 0000000..60ef0df --- /dev/null +++ b/po/et.po @@ -0,0 +1,11992 @@ +# translation of et.po to Estonian +# This file is distributed under the same license as the PACKAGE package. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. +# Hasso Tepper , 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: et\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-04-24 18:19-0400\n" +"PO-Revision-Date: 2004-01-04 17:27+0200\n" +"Last-Translator: Hasso Tepper \n" +"Language-Team: Estonian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.3\n" + +#: ../src/gui/dialogs/RescaleDialog.cpp:51 rc.cpp:192 rc.cpp:312 +#, no-c-format +msgid "Rescale" +msgstr "" + +#: ../src/gui/dialogs/RescaleDialog.cpp:56 +#, fuzzy +msgid "Duration of selection" +msgstr "Valiku lõikamine..." + +#: ../src/gui/dialogs/RescaleDialog.cpp:62 +msgid "Adjust times of following events accordingly" +msgstr "" + +#: ../src/gui/dialogs/PitchDialog.cpp:45 +#: ../src/gui/dialogs/RescaleDialog.cpp:72 +#: ../src/gui/dialogs/TimeDialog.cpp:51 ../src/gui/dialogs/TimeDialog.cpp:68 +#: ../src/gui/studio/BankEditorDialog.cpp:109 +msgid "Reset" +msgstr "Lähtesta" + +#: ../src/commands/segment/SegmentSplitByPitchCommand.cpp:46 +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:46 +msgid "Split by Pitch" +msgstr "Tükeldamine helikõrguse järgi" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:54 +msgid "Starting split pitch" +msgstr "" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:57 +msgid "Range up and down to follow music" +msgstr "" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:63 +msgid "Duplicate non-note events" +msgstr "" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:66 +msgid "Clef handling:" +msgstr "Noodivõtmed:" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:69 +msgid "Leave clefs alone" +msgstr "Jäta noodivõtmed rahule" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:70 +msgid "Guess new clefs" +msgstr "Uute noodivõtmete arvamine" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:71 +msgid "Use treble and bass clefs" +msgstr "Viiulivõtme ja bassivõtme kasutamine" + +#: ../src/gui/dialogs/DocumentConfigureDialog.cpp:64 +#, fuzzy +msgid "Document Properties" +msgstr "&Redigeeri dokumendi omadusi..." + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:45 +#: ../src/gui/editors/notation/NotationView.cpp:6048 +#, fuzzy +msgid "Make Ornament" +msgstr "Märgise nimi " + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:183 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:179 +#: ../src/gui/dialogs/EventEditDialog.cpp:128 +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:49 +#: ../src/gui/studio/DeviceEditorDialog.cpp:74 +#: ../src/gui/studio/NameSetEditor.cpp:72 +#: ../src/gui/widgets/ColourTable.cpp:51 +msgid "Name" +msgstr "Nimi" + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:51 +msgid "" +"The name is used to identify both the ornament\n" +"and the triggered segment that stores\n" +"the ornament's notes." +msgstr "" + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:54 +#, fuzzy +msgid "Name: " +msgstr "Nimi:" + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:57 +#: ../src/gui/editors/eventlist/EventView.cpp:717 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:92 +#, fuzzy +msgid "Base pitch" +msgstr "Noodi helikõrgus:" + +#: ../src/gui/dialogs/TextEventDialog.cpp:57 +#: ../src/gui/editors/eventlist/EventView.cpp:140 +msgid "Text" +msgstr "Tekst" + +#: ../src/gui/dialogs/TextEventDialog.cpp:66 +msgid "Specification" +msgstr "Spetsifikatsioon" + +#: ../src/gui/dialogs/TextEventDialog.cpp:68 +msgid "Preview" +msgstr "Eelvaatlus" + +#: ../src/gui/dialogs/TextEventDialog.cpp:72 +msgid "Text: " +msgstr "Tekst. " + +#: ../src/gui/dialogs/TextEventDialog.cpp:79 +msgid "Style: " +msgstr "Stiil. " + +#: ../src/gui/dialogs/TextEventDialog.cpp:90 +msgid "Dynamic" +msgstr "Dünaamiline" + +#: ../src/gui/dialogs/TextEventDialog.cpp:93 +msgid "Direction" +msgstr "Suund" + +#: ../src/gui/dialogs/TextEventDialog.cpp:96 +msgid "Local Direction" +msgstr "Kohalik suund" + +#: ../src/gui/dialogs/TempoDialog.cpp:63 +#: ../src/gui/dialogs/TextEventDialog.cpp:99 +#: ../src/gui/editors/tempo/TempoView.cpp:91 +msgid "Tempo" +msgstr "Tempo" + +#: ../src/gui/dialogs/TextEventDialog.cpp:102 +msgid "Local Tempo" +msgstr "Kohalik tempo" + +#: ../src/gui/dialogs/TextEventDialog.cpp:105 +msgid "Lyric" +msgstr "Sõnad" + +#: ../src/gui/dialogs/TextEventDialog.cpp:108 +#: ../src/gui/editors/notation/NotationView.cpp:4242 +#, fuzzy +msgid "Chord" +msgstr "Tekita a&kord" + +#: ../src/gui/dialogs/TextEventDialog.cpp:111 +msgid "Annotation" +msgstr "Annotatsioon" + +#: ../src/gui/dialogs/TextEventDialog.cpp:114 +#, fuzzy +msgid "LilyPond Directive" +msgstr "Lilypond failid" + +#: ../src/gui/dialogs/TextEventDialog.cpp:138 +msgid "Verse: " +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:148 +#, fuzzy +msgid "Dynamic: " +msgstr "Dünaamiline" + +#: ../src/gui/dialogs/TextEventDialog.cpp:152 +msgid "ppp" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:153 +msgid "pp" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:154 +msgid "p" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:155 +msgid "mp" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:156 +msgid "mf" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:157 +msgid "f" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:158 +#, fuzzy +msgid "ff" +msgstr "väljas" + +#: ../src/gui/dialogs/TextEventDialog.cpp:159 +#, fuzzy +msgid "fff" +msgstr "väljas" + +#: ../src/gui/dialogs/TextEventDialog.cpp:160 +msgid "rfz" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:161 +msgid "sf" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:165 +#, fuzzy +msgid "Direction: " +msgstr "Suund" + +#: ../src/gui/dialogs/TextEventDialog.cpp:174 +msgid " ," +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:175 +msgid "D.C. al Fine" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:176 +msgid "D.S. al Fine" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:177 +#, fuzzy +msgid "Fine" +msgstr "Sündmuste filter" + +#: ../src/gui/dialogs/TextEventDialog.cpp:178 +msgid "D.S. al Coda" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:179 +msgid "to Coda" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:180 +#, fuzzy +msgid "Coda" +msgstr "Noodivõti" + +#: ../src/gui/dialogs/TextEventDialog.cpp:184 +#, fuzzy +msgid "Local Direction: " +msgstr "Kohalik suund" + +#: ../src/gui/dialogs/TextEventDialog.cpp:188 +#, fuzzy +msgid "accel." +msgstr "Kanal" + +#: ../src/gui/dialogs/TextEventDialog.cpp:189 +msgid "ritard." +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:190 +msgid "ralletando" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:191 +#, fuzzy +msgid "a tempo" +msgstr "Uus tempo" + +#: ../src/gui/dialogs/TextEventDialog.cpp:192 +#, fuzzy +msgid "legato" +msgstr "Legal" + +#: ../src/gui/dialogs/TextEventDialog.cpp:193 +#, fuzzy +msgid "simile" +msgstr "Sündmuste filter" + +#: ../src/gui/dialogs/TextEventDialog.cpp:194 +msgid "pizz." +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:195 +#, fuzzy +msgid "arco" +msgstr "&Marcato" + +#: ../src/gui/dialogs/TextEventDialog.cpp:196 +msgid "non vib." +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:197 +msgid "sul pont." +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:198 +#: ../src/gui/dialogs/TextEventDialog.cpp:200 +msgid "sul tasto" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:199 +msgid "con legno" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:201 +msgid "sul G" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:202 +msgid "ordinario" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:203 +#, fuzzy +msgid "Muta in " +msgstr "Metastring:" + +#: ../src/gui/dialogs/TextEventDialog.cpp:204 +msgid "volti subito " +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:205 +msgid "soli" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:206 +msgid "div." +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:210 +#, fuzzy +msgid "Tempo: " +msgstr "Tempo" + +#: ../src/gui/dialogs/TextEventDialog.cpp:214 +#: ../src/gui/dialogs/TextEventDialog.cpp:238 +msgid "Grave" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:215 +#: ../src/gui/dialogs/TextEventDialog.cpp:239 +#, fuzzy +msgid "Adagio" +msgstr "Audio" + +#: ../src/gui/dialogs/TextEventDialog.cpp:216 +#: ../src/gui/dialogs/TextEventDialog.cpp:240 +msgid "Largo" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:217 +#: ../src/gui/dialogs/TextEventDialog.cpp:241 +#, fuzzy +msgid "Lento" +msgstr "Legal" + +#: ../src/gui/dialogs/TextEventDialog.cpp:218 +#: ../src/gui/dialogs/TextEventDialog.cpp:242 +msgid "Andante" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:219 +#: ../src/gui/dialogs/TextEventDialog.cpp:243 +#, fuzzy +msgid "Moderato" +msgstr "&Muuda märgist" + +#: ../src/gui/dialogs/TextEventDialog.cpp:220 +#: ../src/gui/dialogs/TextEventDialog.cpp:244 +msgid "Allegretto" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:221 +#: ../src/gui/dialogs/TextEventDialog.cpp:245 +msgid "Allegro" +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:222 +#: ../src/gui/dialogs/TextEventDialog.cpp:246 +#, fuzzy +msgid "Vivace" +msgstr " Vaade: " + +#: ../src/gui/dialogs/TextEventDialog.cpp:223 +#: ../src/gui/dialogs/TextEventDialog.cpp:247 +#, fuzzy +msgid "Presto" +msgstr "paus" + +#: ../src/gui/dialogs/TextEventDialog.cpp:224 +#: ../src/gui/dialogs/TextEventDialog.cpp:248 +#, fuzzy +msgid "Prestissimo" +msgstr "Esitlus" + +#: ../src/gui/dialogs/TextEventDialog.cpp:225 +#: ../src/gui/dialogs/TextEventDialog.cpp:249 +#, fuzzy +msgid "Maestoso" +msgstr "Metronoom" + +#: ../src/gui/dialogs/TextEventDialog.cpp:226 +#: ../src/gui/dialogs/TextEventDialog.cpp:250 +#, fuzzy +msgid "Sostenuto" +msgstr "T&enuto" + +#: ../src/gui/dialogs/TextEventDialog.cpp:227 +#: ../src/gui/dialogs/TextEventDialog.cpp:251 +#, fuzzy +msgid "Tempo Primo" +msgstr "Tempo" + +#: ../src/gui/dialogs/TextEventDialog.cpp:234 +#, fuzzy +msgid "Local Tempo: " +msgstr "Kohalik tempo" + +#: ../src/gui/dialogs/TextEventDialog.cpp:255 +#, fuzzy +msgid "Directive: " +msgstr "Suund" + +#: ../src/gui/dialogs/TextEventDialog.cpp:312 +msgid "Example" +msgstr "Näide" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:65 +msgid "Event Filter" +msgstr "Sündmuste filter" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:86 +#, fuzzy +msgid "Note Events" +msgstr "Liiguta sündmuseid" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:90 +msgid "lowest:" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:93 +msgid "highest:" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:96 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:141 +#: ../src/gui/widgets/PitchChooser.cpp:53 +msgid "Pitch:" +msgstr "Helikõrgus:" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:99 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:163 +msgid "Velocity:" +msgstr "Kiirus:" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:102 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:129 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:257 +msgid "Duration:" +msgstr "Kestvus:" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:107 +#: ../src/gui/dialogs/EventFilterDialog.cpp:114 +#: ../src/gui/dialogs/EventFilterDialog.cpp:121 +msgid "include" +msgstr "kaasaarvatud" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:108 +#: ../src/gui/dialogs/EventFilterDialog.cpp:115 +#: ../src/gui/dialogs/EventFilterDialog.cpp:122 +msgid "exclude" +msgstr "väljaarvatud" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:136 +#: ../src/gui/dialogs/EventFilterDialog.cpp:155 +#: ../src/gui/editors/eventlist/EventView.cpp:172 +#: ../src/gui/editors/eventlist/EventView.cpp:179 +#: ../src/gui/editors/eventlist/EventView.cpp:186 +#, fuzzy +msgid "edit" +msgstr "Redigeerimine" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:141 +#: ../src/gui/dialogs/EventFilterDialog.cpp:157 +msgid "choose a pitch using a staff" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:182 +#: ../src/gui/dialogs/EventFilterDialog.cpp:188 +msgid "longest" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:200 +msgid "Include all" +msgstr "Kaasa kõik" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:203 +msgid "Include entire range of values" +msgstr "Kaasa terve väärtuste piirkond" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:206 +msgid "Exclude all" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:209 +msgid "Exclude entire range of values" +msgstr "" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:233 +#: ../src/gui/dialogs/EventFilterDialog.cpp:234 +#, fuzzy +msgid "shortest" +msgstr "paus" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:333 +#, fuzzy +msgid "Lowest pitch" +msgstr "Noodi helikõrgus:" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:343 +#, fuzzy +msgid "Highest pitch" +msgstr "Sõnade redigeerimine" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:56 +#: ../src/gui/editors/notation/NotationView.cpp:1619 +#: ../src/gui/editors/notation/NotationView.cpp:6088 +msgid "Use Ornament" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:260 +#: ../src/gui/configuration/NotationConfigurationPage.h:64 +#: ../src/gui/configuration/NotationConfigurationPage.h:65 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:63 +msgid "Notation" +msgstr "Noodikiri" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:68 +#, fuzzy +msgid "Display as: " +msgstr "Näita aega lõpuni" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:84 +#, fuzzy +msgid "Trill" +msgstr "Tri&ller" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:84 +msgid "Trill with line" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:84 +msgid "Trill line only" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:85 +msgid "Turn" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:85 +msgid "Mordent" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:85 +#, fuzzy +msgid "Inverted mordent" +msgstr "Lisa sündmus" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:86 +msgid "Long mordent" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:86 +msgid "Long inverted mordent" +msgstr "" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:94 +#, fuzzy +msgid "Text mark" +msgstr "Tekst: " + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:98 +#, fuzzy +msgid " Text: " +msgstr "Tekst. " + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:104 +#, fuzzy +msgid "Performance" +msgstr "Programmi muutus" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:109 +msgid "Perform using triggered segment: " +msgstr "" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:75 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:123 +msgid "Perform with timing: " +msgstr "" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:81 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:129 +msgid "As stored" +msgstr "" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:82 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:130 +msgid "Truncate if longer than note" +msgstr "" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:83 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:131 +msgid "End at same time as note" +msgstr "" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:84 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:132 +msgid "Stretch or squash segment to note duration" +msgstr "" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:86 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:134 +msgid "Adjust pitch to note" +msgstr "" + +#: ../src/gui/dialogs/PitchPickerDialog.cpp:40 +msgid "Pitch Selector" +msgstr "" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:44 +#, fuzzy +msgid "Audio Segment Duration" +msgstr "Kestvus" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:50 +msgid "The selected audio segment contains:" +msgstr "" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:59 +#, fuzzy +msgid "beat(s)" +msgstr "löögid:" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:60 +msgid "bar(s)" +msgstr "" + +#: ../src/gui/dialogs/TupletDialog.cpp:51 +msgid "Tuplet" +msgstr "" + +#: ../src/gui/dialogs/TupletDialog.cpp:58 +msgid "New timing for tuplet group" +msgstr "" + +#: ../src/gui/dialogs/TupletDialog.cpp:76 +msgid "Play " +msgstr "Mängitakse " + +#: ../src/gui/dialogs/TupletDialog.cpp:98 +msgid "in the time of " +msgstr "" + +#: ../src/gui/dialogs/TupletDialog.cpp:104 +msgid "Timing is already correct: update display only" +msgstr "" + +#: ../src/gui/dialogs/TupletDialog.cpp:114 +msgid "Timing calculations" +msgstr "" + +#: ../src/gui/dialogs/TupletDialog.cpp:120 +msgid "Selected region:" +msgstr "Valitud ala:" + +#: ../src/gui/dialogs/TupletDialog.cpp:129 +msgid "Group with current timing:" +msgstr "" + +#: ../src/gui/dialogs/TupletDialog.cpp:135 +msgid "Group with new timing:" +msgstr "" + +#: ../src/gui/dialogs/TupletDialog.cpp:141 +msgid "Gap created by timing change:" +msgstr "" + +#: ../src/gui/dialogs/TupletDialog.cpp:149 +msgid "Unchanged at end of selection:" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:63 rc.cpp:372 +#, no-c-format +msgid "Metronome" +msgstr "Metronoom" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:77 +msgid "Metronome Instrument" +msgstr "Metronoomi instrument" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:82 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:150 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:183 +#: ../src/gui/studio/DeviceEditorDialog.cpp:73 +#: ../src/gui/studio/DeviceManagerDialog.cpp:105 +#: ../src/gui/studio/DeviceManagerDialog.cpp:163 +#: ../src/gui/studio/RemapInstrumentDialog.cpp:66 +msgid "Device" +msgstr "Seade" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:101 +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:89 +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:215 +#: ../src/gui/studio/DeviceEditorDialog.cpp:195 +#: ../src/gui/studio/DeviceEditorDialog.cpp:218 +#: ../src/gui/studio/DeviceEditorDialog.cpp:230 +#: ../src/gui/studio/DeviceManagerDialog.cpp:196 +#: ../src/gui/studio/DeviceManagerDialog.cpp:440 +#: ../src/gui/studio/DeviceManagerDialog.cpp:452 +msgid "No connection" +msgstr "Ühendus puudub" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:112 +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:111 +#: ../src/gui/editors/parameters/InstrumentParameterBox.cpp:53 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1209 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:159 +#: ../src/gui/general/PresetHandlerDialog.cpp:92 +#: ../src/gui/studio/MidiMixerWindow.cpp:204 +#: ../src/gui/studio/RemapInstrumentDialog.cpp:67 +msgid "Instrument" +msgstr "Instrument" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:118 +#, fuzzy +msgid "Beats" +msgstr "Biit" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:184 +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:123 +msgid "Resolution" +msgstr "Resolutsioon" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:309 +#: ../src/gui/configuration/NotationConfigurationPage.cpp:139 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:205 +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:125 +#: ../src/gui/editors/matrix/MatrixView.cpp:2132 +#: ../src/gui/editors/notation/NotationView.cpp:1582 +#: ../src/gui/widgets/QuantizeParameters.cpp:128 +#: ../src/gui/widgets/QuantizeParameters.cpp:301 +msgid "None" +msgstr "Puudub" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:126 +msgid "Bars only" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:127 +msgid "Bars and beats" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:128 +msgid "Bars, beats, and divisions" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:132 +#, fuzzy +msgid "Bar velocity" +msgstr "Noodi kiirus:" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:139 +#, fuzzy +msgid "Beat velocity" +msgstr "Noodi kiirus:" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:146 +#, fuzzy +msgid "Sub-beat velocity" +msgstr "Noodi kiirus:" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:155 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:324 +msgid "Pitch" +msgstr "Helikõrgus" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:160 +#, fuzzy +msgid "for Bar" +msgstr "Alguse takt" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:161 +#, fuzzy +msgid "for Beat" +msgstr "Löök" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:162 +msgid "for Sub-beat" +msgstr "" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:166 +#, fuzzy +msgid "Metronome Activated" +msgstr "Metronoom" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:167 +#, fuzzy +msgid "Playing" +msgstr "Mängi maha" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:168 +#, fuzzy +msgid "Recording" +msgstr "Faili lugemine..." + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:46 +msgid "Choose Text Encoding" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:50 +msgid "" +"\n" +"This file contains text in an unknown language encoding.\n" +"\n" +"Please select one of the following estimated text encodings\n" +"for use with the text in this file:\n" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:61 +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:77 +msgid "Japanese Shift-JIS" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:62 +msgid "Unicode variable-width" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:63 +msgid "Western Europe" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:64 +msgid "Western Europe + Euro" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:65 +msgid "Eastern Europe" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:66 +msgid "Southern Europe" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:67 +msgid "Northern Europe" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:68 +#, fuzzy +msgid "Cyrillic" +msgstr "Sõnad" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:69 +msgid "Arabic" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:70 +msgid "Greek" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:71 +msgid "Hebrew" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:72 +msgid "Turkish" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:73 +msgid "Nordic" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:74 +msgid "Thai" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:75 +#, fuzzy +msgid "Baltic" +msgstr "Löök" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:76 +msgid "Celtic" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:78 +msgid "Traditional Chinese" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:79 +#, fuzzy +msgid "Simplified Chinese" +msgstr "Sünkroniseerimine" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:80 +msgid "Russian" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:81 +msgid "Ukrainian" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:82 +#, fuzzy +msgid "Tamil" +msgstr "Tri&ller" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:117 +#, c-format +msgid "Microsoft Code Page %1" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:123 +#: ../src/gui/editors/matrix/MatrixView.cpp:1490 +#, fuzzy +msgid "%1 (%2)" +msgstr "&%1%2" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:142 +msgid "" +"\n" +"Example text from file:" +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:59 +#: ../src/gui/editors/tempo/TempoView.cpp:92 +msgid "Time Signature" +msgstr "Taktimõõt" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:82 +msgid "Time signature" +msgstr "Taktimõõt" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:116 +msgid "Time where signature takes effect" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:83 +#: ../src/gui/dialogs/TempoDialog.cpp:128 +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:129 +#: ../src/gui/general/PresetHandlerDialog.cpp:101 +#, fuzzy +msgid "Scope" +msgstr "Ulatus" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:141 +#, c-format +msgid "Insertion point is at start of measure %1." +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:145 +#, c-format +msgid "Insertion point is in the middle of measure %1." +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:150 +msgid "Insertion point is at start of composition." +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:155 +msgid "Start measure %1 here" +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:159 +#, fuzzy, c-format +msgid "Change time from start of measure %1" +msgstr "takti %1 alguses." + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:166 +#, c-format +msgid "Time change will take effect at the start of measure %1." +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:176 +#, fuzzy +msgid "Hide the time signature" +msgstr "Taktimõõt" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:181 +msgid "Hide the affected bar lines" +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:186 +msgid "Show as common time" +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:191 +msgid "Correct the durations of following measures" +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:280 +msgid "Display as common time" +msgstr "" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:284 +msgid "Display as cut common time" +msgstr "" + +#: ../src/gui/dialogs/ConfigureDialog.cpp:66 +#, fuzzy +msgid "Configure Rosegarden" +msgstr "Rosegarden" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:53 +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:61 +msgid "Edit Marker" +msgstr "Redigeeri märgist" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:78 +msgid "Marker Time" +msgstr "Märgise aeg" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:94 +msgid "Marker Properties" +msgstr "Märgise omadused" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:100 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:554 +msgid "Text:" +msgstr "Tekst:" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:104 +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:85 +msgid "Description:" +msgstr "Kirjeldus:" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:46 +msgid "Merge File" +msgstr "Faili liitmine" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:53 +msgid "Merge new file " +msgstr "Liida uus fail " + +#: ../src/gui/dialogs/FileMergeDialog.cpp:56 +msgid "At start of existing composition" +msgstr "Olemasoleva kompositsiooni algusesse" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:57 +msgid "From end of existing composition" +msgstr "Olemasoleva kompostsiooni lõppu" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:61 +msgid "The file has different time signatures or tempos." +msgstr "Failil on erinevad taktimõõdud või tempod." + +#: ../src/gui/dialogs/FileMergeDialog.cpp:62 +msgid "Import these as well" +msgstr "Impordi ka need failid" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:171 +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:44 +msgid "Sequencer status" +msgstr "Sekventseri staatus" + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:48 +msgid "Sequencer status:" +msgstr "Sekventseri staatus:" + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:50 +msgid "Status not available." +msgstr "Staatuse kohta pole võimalik infot hankida." + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:57 +msgid "Sequencer is not running or is not responding." +msgstr "" + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:64 +msgid "Sequencer is not returning a valid status report." +msgstr "" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:46 +#, fuzzy +msgid "Add Tracks" +msgstr "Lisa rajad..." + +#: ../src/gui/dialogs/AddTracksDialog.cpp:54 +#, fuzzy +msgid "How many tracks do you want to add?" +msgstr "Kui palju radasid sa soovid lisada? (maks. 24)" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:62 +#, fuzzy +msgid "Add tracks" +msgstr "&Kustuta rada" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:64 +msgid "At the top" +msgstr "" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:65 +#, fuzzy +msgid "Above the current selected track" +msgstr "Vaigistab kõik rajad peale aktiivse" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:66 +#, fuzzy +msgid "Below the current selected track" +msgstr "Vaigistab kõik rajad peale aktiivse" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:67 +msgid "At the bottom" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:75 +msgid "Event Properties" +msgstr "Sündmuse omadused" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:81 +msgid "Event type:" +msgstr "Sündmuse tüüp:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:117 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:251 +#: ../src/gui/editors/segment/MarkerEditor.cpp:97 +msgid "Absolute time:" +msgstr "Absoluutne aeg:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:156 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:323 +msgid "Controller name:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:157 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:530 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:562 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:563 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:602 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:631 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:267 +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:269 +#: ../src/gui/editors/segment/MarkerEditor.cpp:279 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:272 +#: ../src/gui/studio/AudioMixerWindow.cpp:388 +#: ../src/gui/studio/AudioMixerWindow.cpp:519 +#: ../src/gui/studio/AudioMixerWindow.cpp:683 +#: ../src/gui/studio/AudioMixerWindow.cpp:722 +#: ../src/gui/studio/AudioMixerWindow.cpp:904 +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:121 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:174 +msgid "Meta string:" +msgstr "Metastring:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:179 +msgid "Load data" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:181 +#, fuzzy +msgid "Save data" +msgstr "Salvesta kui..." + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:192 +#, fuzzy +msgid "Notation Properties" +msgstr "Sündmuse omadused" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:198 +msgid "Lock to changes in performed values" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:205 +#, fuzzy +msgid "Notation time:" +msgstr "Noodikirja font" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:217 +#, fuzzy +msgid "Notation duration:" +msgstr "Audiofaili mängimine" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:283 +msgid "Note pitch:" +msgstr "Noodi helikõrgus:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:291 +msgid "Note velocity:" +msgstr "Noodi kiirus:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:317 +msgid "Controller number:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:326 +msgid "Controller value:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:354 +msgid "Key pitch:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:362 +msgid "Key pressure:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:390 +msgid "Channel pressure:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:418 +msgid "Program change:" +msgstr "Programmi muutus:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:461 +msgid "Data length:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:462 +#, fuzzy +msgid "Data:" +msgstr "löök:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:480 +msgid "Pitchbend MSB:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:488 +msgid "Pitchbend LSB:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:523 +#, fuzzy +msgid "Indication:" +msgstr "Suund" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:553 +msgid "Text type:" +msgstr "Teksti tüüp:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:596 +msgid "Clef type:" +msgstr "Noodivõtme tüüp:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:625 +msgid "Key name:" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:674 +msgid "Unsupported event type:" +msgstr "Toetuseta sündmuse tüüp:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:931 +#, fuzzy +msgid "Edit Event Time" +msgstr "Sündmuse redigeerimine" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:943 +#, fuzzy +msgid "Edit Event Notation Time" +msgstr "Sündmuse redigeerimine" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:955 +#, fuzzy +msgid "Edit Duration" +msgstr "Kestvus" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:968 +#, fuzzy +msgid "Edit Notation Duration" +msgstr "Kestvus" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:981 +#, fuzzy +msgid "Edit Pitch" +msgstr "Sõnade redigeerimine" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:991 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:1016 +msgid "*.syx|System exclusive files (*.syx)" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:992 +msgid "Load System Exclusive data in File" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:1017 +msgid "Save System Exclusive data to..." +msgstr "" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:46 +msgid "Locate audio file" +msgstr "" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:50 +#, fuzzy +msgid "&Skip" +msgstr "&Jäta vahele" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:51 +#, fuzzy +msgid "Skip &All" +msgstr "Vali &kõik" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:52 +msgid "&Locate" +msgstr "" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:57 +msgid "" +"Can't find file \"%1\".\n" +"Would you like to try and locate this file or skip it?" +msgstr "" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:71 +#, fuzzy +msgid "" +"%1|Requested file (%2)\n" +"*.wav|WAV files (*.wav)" +msgstr "*.wav|WAV failid (*.wav)" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:74 +msgid "Select an Audio File" +msgstr "Audiofaili valimine" + +#: ../src/gui/dialogs/ClefDialog.cpp:53 ../src/gui/dialogs/ClefDialog.cpp:62 +#: ../src/gui/dialogs/ClefDialog.cpp:79 ../src/gui/dialogs/ClefDialog.cpp:90 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:278 +msgid "Clef" +msgstr "Noodivõti" + +#: ../src/gui/dialogs/ClefDialog.cpp:65 +msgid "Existing notes following clef change" +msgstr "Olemasolevad noodid järgivad noodivõtme muutust" + +#: ../src/gui/dialogs/ClefDialog.cpp:71 +msgid "Lower clef" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:77 +msgid "Up an Octave" +msgstr "Oktavi võrra üles" + +#: ../src/gui/dialogs/ClefDialog.cpp:84 +msgid "Down an Octave" +msgstr "Oktavi võrra alla" + +#: ../src/gui/dialogs/ClefDialog.cpp:88 +msgid "Higher clef" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:96 +#: ../src/gui/dialogs/KeySignatureDialog.cpp:152 +msgid "Maintain current pitches" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:99 +msgid "Transpose into appropriate octave" +msgstr "Transponeeritakse vastavasse oktavisse" + +#: ../src/gui/dialogs/ClefDialog.cpp:231 +#, fuzzy +msgid "%1 down an octave" +msgstr "Oktavi võrra alla" + +#: ../src/gui/dialogs/ClefDialog.cpp:234 +#, fuzzy +msgid "%1 down two octaves" +msgstr "Oktavi võrra alla" + +#: ../src/gui/dialogs/ClefDialog.cpp:237 +#, fuzzy +msgid "%1 up an octave" +msgstr "Oktavi võrra üles" + +#: ../src/gui/dialogs/ClefDialog.cpp:240 +msgid "%1 up two octaves" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:249 +msgid "Treble" +msgstr "Viiulivõti" + +#: ../src/gui/dialogs/ClefDialog.cpp:251 +#, fuzzy +msgid "French violin" +msgstr "Sünkroniseerimine" + +#: ../src/gui/dialogs/ClefDialog.cpp:253 +#, fuzzy +msgid "Soprano" +msgstr "S&forzando" + +#: ../src/gui/dialogs/ClefDialog.cpp:255 +#, fuzzy +msgid "Mezzo-soprano" +msgstr "S&forzando" + +#: ../src/gui/dialogs/ClefDialog.cpp:257 +msgid "Alto" +msgstr "Aldivõti" + +#: ../src/gui/dialogs/ClefDialog.cpp:259 +msgid "Tenor" +msgstr "Tenorivõti" + +#: ../src/gui/dialogs/ClefDialog.cpp:261 +#, fuzzy +msgid "C-baritone" +msgstr "Variatsioon" + +#: ../src/gui/dialogs/ClefDialog.cpp:263 +#, fuzzy +msgid "F-baritone" +msgstr "Variatsioon" + +#: ../src/gui/dialogs/ClefDialog.cpp:265 +msgid "Bass" +msgstr "Bassivõti" + +#: ../src/gui/dialogs/ClefDialog.cpp:267 +#, fuzzy +msgid "Sub-bass" +msgstr "Bassivõti" + +#: ../src/gui/dialogs/CountdownDialog.cpp:52 +#, fuzzy +msgid "Recording..." +msgstr "Faili lugemine..." + +#: ../src/gui/dialogs/CountdownDialog.cpp:60 +msgid "Recording time remaining: " +msgstr "" + +#: ../src/gui/dialogs/CountdownDialog.cpp:120 +msgid "Just how big is your hard disk?" +msgstr "" + +#: ../src/gui/dialogs/CountdownDialog.cpp:154 +#, fuzzy +msgid "Recording beyond end of composition: " +msgstr "Olemasoleva kompostsiooni lõppu" + +#: ../src/gui/dialogs/IntervalDialog.cpp:52 +msgid "Specify Interval" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:58 +msgid "Reference note:" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:59 +#, fuzzy +msgid "Target note:" +msgstr "veerandnoot" + +#: ../src/gui/dialogs/IntervalDialog.cpp:68 +#: ../src/gui/dialogs/IntervalDialog.cpp:315 +msgid "a perfect unison" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:76 +msgid "Effect on Key" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:77 +#, fuzzy +msgid "Transpose within key" +msgstr "Transponeerimine" + +#: ../src/gui/dialogs/IntervalDialog.cpp:79 +#, fuzzy +msgid "Change key for selection" +msgstr " Valik puudub " + +#: ../src/gui/dialogs/IntervalDialog.cpp:89 +msgid "" +"Adjust segment transposition in opposite direction (maintain audible pitch)" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:190 +#: ../src/gui/dialogs/IntervalDialog.cpp:220 +msgid "a diminished" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:192 +#: ../src/gui/dialogs/IntervalDialog.cpp:222 +msgid "an augmented" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:194 +#: ../src/gui/dialogs/IntervalDialog.cpp:224 +msgid "a doubly diminished" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:196 +#: ../src/gui/dialogs/IntervalDialog.cpp:226 +msgid "a doubly augmented" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:198 +#: ../src/gui/dialogs/IntervalDialog.cpp:228 +msgid "a triply diminished" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:200 +#: ../src/gui/dialogs/IntervalDialog.cpp:230 +msgid "a triply augmented" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:202 +msgid "a quadruply diminished" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:204 +#: ../src/gui/dialogs/IntervalDialog.cpp:232 +msgid "a quadruply augmented" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:206 +#: ../src/gui/dialogs/IntervalDialog.cpp:234 +msgid "a perfect" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:208 +#: ../src/gui/dialogs/IntervalDialog.cpp:236 +msgid "an (unknown, %1)" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:216 +#, fuzzy +msgid "a minor" +msgstr "Tenorivõti" + +#: ../src/gui/dialogs/IntervalDialog.cpp:218 +msgid "a major" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:239 +#, fuzzy +msgid "an (unknown)" +msgstr "Tundmatu" + +#: ../src/gui/dialogs/IntervalDialog.cpp:248 +#: ../src/gui/dialogs/IntervalDialog.cpp:251 +#, fuzzy +msgid "%1 octave" +msgstr "Oktavi võrra üles" + +#: ../src/gui/dialogs/IntervalDialog.cpp:254 +#, fuzzy +msgid "%1 unison" +msgstr "ühikut" + +#: ../src/gui/dialogs/IntervalDialog.cpp:258 +#, fuzzy +msgid "%1 second" +msgstr "Sekundit:" + +#: ../src/gui/dialogs/IntervalDialog.cpp:261 +#, fuzzy +msgid "%1 third" +msgstr "Muu" + +#: ../src/gui/dialogs/IntervalDialog.cpp:264 +#, fuzzy +msgid "%1 fourth" +msgstr "%1 bemoll" + +#: ../src/gui/dialogs/IntervalDialog.cpp:267 +#, fuzzy +msgid "%1 fifth" +msgstr "Helikõrgus" + +#: ../src/gui/dialogs/IntervalDialog.cpp:270 +#, fuzzy +msgid "%1 sixth" +msgstr "Helikõrgus" + +#: ../src/gui/dialogs/IntervalDialog.cpp:273 +#, fuzzy +msgid "%1 seventh" +msgstr "Muuda sündmuse suurust" + +#: ../src/gui/dialogs/IntervalDialog.cpp:276 +#: ../src/gui/studio/DeviceManagerDialog.cpp:329 +#: ../src/gui/studio/DeviceManagerDialog.cpp:363 +#, c-format +msgid "%1" +msgstr "%1" + +#: ../src/gui/dialogs/IntervalDialog.cpp:287 +msgid "" +"_n: up 1 octave and %1\n" +"up %n octaves and %1" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:291 +#, c-format +msgid "" +"_n: up 1 octave\n" +"up %n octaves" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:295 +#, fuzzy, c-format +msgid "up %1" +msgstr "Audio" + +#: ../src/gui/dialogs/IntervalDialog.cpp:303 +msgid "" +"_n: down 1 octave and %1\n" +"down %n octaves and %1" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:307 +#, fuzzy, c-format +msgid "" +"_n: down 1 octave\n" +"down %n octaves" +msgstr "Oktavi võrra alla" + +#: ../src/gui/dialogs/IntervalDialog.cpp:311 +#, fuzzy, c-format +msgid "down %1" +msgstr "Lisa %1" + +#: ../src/gui/dialogs/EventEditDialog.cpp:81 +msgid "Intrinsics" +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:85 +msgid "Event type: " +msgstr "Sündmuse tüüp. " + +#: ../src/gui/dialogs/EventEditDialog.cpp:91 +msgid "Absolute time: " +msgstr "Absoluutne aeg: " + +#: ../src/gui/dialogs/EventEditDialog.cpp:101 +msgid "Duration: " +msgstr "Kestvus: " + +#: ../src/gui/dialogs/EventEditDialog.cpp:114 +msgid "Sub-ordering: " +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:125 +msgid "Persistent properties" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:169 +#: ../src/gui/dialogs/EventEditDialog.cpp:133 +#: ../src/gui/studio/BankEditorDialog.cpp:129 +#: ../src/gui/studio/DeviceEditorDialog.cpp:75 +msgid "Type" +msgstr "Tüüp" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:184 +#: ../src/gui/dialogs/EventEditDialog.cpp:135 +#: ../src/gui/dialogs/EventParameterDialog.cpp:89 +#: ../src/gui/dialogs/EventParameterDialog.cpp:93 +#: ../src/gui/dialogs/EventParameterDialog.cpp:115 +msgid "Value" +msgstr "Väärtus" + +#: ../src/gui/dialogs/EventEditDialog.cpp:155 +msgid "Non-persistent properties" +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:156 +msgid "These are cached values, lost if the event is modified." +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:170 +msgid "Name " +msgstr "Nimi " + +#: ../src/gui/dialogs/EventEditDialog.cpp:172 +msgid "Type " +msgstr "Tüüp " + +#: ../src/gui/dialogs/EventEditDialog.cpp:174 +msgid "Value " +msgstr "Väärtus " + +#: ../src/gui/dialogs/EventEditDialog.cpp:188 +msgid "Make persistent" +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:292 +msgid "Delete this property" +msgstr "Kustuta see omadus" + +#: ../src/gui/dialogs/EventEditDialog.cpp:433 +msgid "" +"Are you sure you want to delete the \"%1\" property?\n" +"\n" +"Removing necessary properties may cause unexpected behavior." +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:436 +#: ../src/gui/dialogs/EventEditDialog.cpp:469 +msgid "Edit Event" +msgstr "Sündmuse redigeerimine" + +#: ../src/gui/dialogs/EventEditDialog.cpp:465 +msgid "" +"Are you sure you want to make the \"%1\" property persistent?\n" +"\n" +"This could cause problems if it overrides a different computed value later " +"on." +msgstr "" + +#: ../src/gui/dialogs/EventEditDialog.cpp:470 +msgid "Make &Persistent" +msgstr "" + +#: ../src/gui/dialogs/PasteNotationDialog.cpp:52 +msgid "Paste type" +msgstr "" + +#: ../src/gui/dialogs/PasteNotationDialog.cpp:72 +msgid "Make this the default paste type" +msgstr "" + +#: ../src/gui/dialogs/LyricEditDialog.cpp:53 +msgid "Edit Lyrics" +msgstr "Sõnade redigeerimine" + +#: ../src/gui/dialogs/LyricEditDialog.cpp:62 +msgid "Lyrics for this segment" +msgstr "Selle segmendi sõnad" + +#: ../src/gui/dialogs/LyricEditDialog.cpp:70 +#, fuzzy +msgid "Add Verse" +msgstr "Decrescendo lisamine..." + +#: ../src/gui/dialogs/LyricEditDialog.cpp:84 +#: ../src/gui/dialogs/LyricEditDialog.cpp:106 +#, c-format +msgid "Verse %1" +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:59 +msgid "Import from Device..." +msgstr "Import seadmest..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2163 +#: ../src/gui/application/RosegardenGUIApp.cpp:2229 +#: ../src/gui/application/RosegardenGUIApp.cpp:7780 +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:87 +#: ../src/sound/AudioFileManager.cpp:664 +#, c-format +msgid "Cannot download file %1" +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:99 +#, c-format +msgid "Cannot open file %1" +msgstr "Faili %1 pole võimalik avada" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:106 +#, c-format +msgid "No devices found in file %1" +msgstr "Failist %1 ei leitud ühtegi seadet" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:113 +msgid "Source device" +msgstr "Lähteseade" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:118 +msgid "Import from: " +msgstr "Import asukohast: " + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:140 +#: ../src/gui/studio/DeviceEditorDialog.cpp:148 +#, c-format +msgid "Device %1" +msgstr "Seade %1" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:155 +msgid "Import banks" +msgstr "Pankade import" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:156 +#, fuzzy +msgid "Import key mappings" +msgstr "Pankade import" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:157 +msgid "Import controllers" +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:160 +msgid "Import device name" +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:166 +#, fuzzy +msgid "Bank import behavior" +msgstr "Panga impordi käitumine" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:168 +msgid "Merge banks" +msgstr "Pankade liitmine" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:169 +msgid "Overwrite banks" +msgstr "Pankade ülekirjutamine" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:367 +msgid "Bank %1:%2" +msgstr "Pank %1:%2" + +#: ../src/commands/segment/SegmentSplitByRecordingSrcCommand.cpp:42 +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:48 +#, fuzzy +msgid "Split by Recording Source" +msgstr "Salvestavad seadmed" + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:53 +#, fuzzy +msgid "Recording Source" +msgstr "Salvestavad seadmed" + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:57 +#, fuzzy +msgid "Channel:" +msgstr "Kanal" + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:64 +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:75 +#, fuzzy +msgid "any" +msgstr "Suvaline" + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:69 +#, fuzzy +msgid "Device:" +msgstr "Seade" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:46 +#, fuzzy +msgid "Select Unused Audio Files" +msgstr "Audiofaili valimine" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:53 +#: ../src/gui/editors/segment/PlayListView.cpp:36 +#, fuzzy +msgid "File name" +msgstr "Failinimi:" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:54 +#, fuzzy +msgid "File size" +msgstr "Failinimi:" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:55 +msgid "Last modified date" +msgstr "" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:60 +msgid " (not found) " +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:105 +#, fuzzy +msgid "Audio File Manager" +msgstr "Rosegardeni audiofailide haldur" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:126 +msgid "" +"* Some audio files are encoded at a sample rate different from that of the " +"JACK audio server.\n" +"Rosegarden will play them at the correct speed, but they will sound " +"terrible.\n" +"Please consider resampling such files externally, or adjusting the sample " +"rate of the JACK server." +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:132 +#, fuzzy +msgid "&Add Audio File..." +msgstr "Lisa audiofail" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:135 +#, fuzzy +msgid "&Unload Audio File" +msgstr "Lisa audiofail" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:140 +#, fuzzy +msgid "&Play Preview" +msgstr "Mahamängivad seadmed" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:151 +msgid "&Insert into Selected Audio Track" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:155 +#, fuzzy +msgid "Unload &all Audio Files" +msgstr "Eemalda kõik audiofailid" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:159 +#, fuzzy +msgid "Unload all &Unused Audio Files" +msgstr "Eemalda kõik audiofailid" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:163 +#, fuzzy +msgid "&Delete Unused Audio Files..." +msgstr "Eemalda kõik audiofailid" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:167 +#, fuzzy +msgid "&Export Audio File..." +msgstr "Ekspordi audiofail" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:173 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:180 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:91 +msgid "Duration" +msgstr "Kestvus" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:181 +msgid "Envelope" +msgstr "Ümbrik" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:182 +msgid "Sample rate" +msgstr "Diskreetimissagedus" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:183 +msgid "Channels" +msgstr "Kanalid" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:282 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:488 +msgid "*.wav|WAV files (*.wav)" +msgstr "*.wav|WAV failid (*.wav)" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:489 +msgid "Choose a name to save this file as" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:499 +msgid "Exporting audio file..." +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:609 +msgid "" +"This will unload audio file \"%1\" and remove all associated segments. Are " +"you sure?" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:692 +#, fuzzy +msgid "" +"*.wav|WAV files (*.wav)\n" +"*.*|All files" +msgstr "*.wav|WAV failid (*.wav)" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:697 +msgid "" +"*.wav *.flac *.ogg *.mp3|Audio files (*.wav *.flac *.ogg *.mp3)\n" +"*.wav|WAV files (*.wav)\n" +"*.flac|FLAC files (*.flac)\n" +"*.ogg|Ogg files (*.ogg)\n" +"*.mp3|MP3 files (*.mp3)\n" +"*.*|All files" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:704 +#, fuzzy +msgid "Select one or more audio files" +msgstr "Audiofaili valimine" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:763 +msgid "" +"This will unload all audio files and remove their associated segments.\n" +"This action cannot be undone, and associations with these files will be " +"lost.\n" +"Files will not be removed from your disk.\n" +"Are you sure?" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:800 +msgid "" +"This will unload all audio files that are not associated with any segments " +"in this composition.\n" +"This action cannot be undone, and associations with these files will be " +"lost.\n" +"Files will not be removed from your disk.\n" +"Are you sure?" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:865 +msgid "" +"The following audio files are not used in the current composition.\n" +"\n" +"Please select the ones you wish to delete permanently from the hard disk.\n" +msgstr "" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:875 +#, c-format +msgid "" +"_n: About to delete 1 audio file permanently from the hard disk.
                      This " +"action cannot be undone, and there will be no way to recover this file." +"
                      Are you sure?
                      \n" +"\n" +"About to delete %n audio files permanently from the hard disk.
                      This " +"action cannot be undone, and there will be no way to recover these files." +"
                      Are you sure?
                      " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:525 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:888 +#, fuzzy +msgid "File %1 could not be deleted." +msgstr "Faili \"%1\" ei eksisteeri" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:921 +msgid "Change Audio File label" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6466 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:922 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1099 +msgid "Enter new label" +msgstr "" + +#: ../src/gui/application/RosegardenGUIView.cpp:1538 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1086 +#, fuzzy +msgid "Adding audio file..." +msgstr "Lisa audiofail" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1107 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1112 +#, fuzzy +msgid "Failed to add audio file. " +msgstr "Kukutatud faili pole võimalik lisada." + +#: ../src/document/RosegardenGUIDoc.cpp:2789 +#: ../src/gui/application/RosegardenGUIApp.cpp:2736 +#: ../src/gui/application/RosegardenGUIView.cpp:1574 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1122 +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:180 +msgid "Generating audio preview..." +msgstr "Audio eelvaatluse genereerimine..." + +#: ../src/gui/application/RosegardenGUIView.cpp:1581 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:1130 +msgid "" +"Try copying this file to a directory where you have write permission and re-" +"add it" +msgstr "" + +#: ../src/gui/dialogs/TransportDialog.cpp:90 rc.cpp:357 +#, no-c-format +msgid "Rosegarden Transport" +msgstr "Rosegardeni transport" + +#: ../src/gui/dialogs/TransportDialog.cpp:925 +#: ../src/gui/dialogs/TransportDialog.cpp:985 +msgid "PITCH WHEEL" +msgstr "PITCH WHEEL" + +#: ../src/gui/dialogs/TransportDialog.cpp:929 +#: ../src/gui/dialogs/TransportDialog.cpp:989 +msgid "CONTROLLER" +msgstr "CONTROLLER" + +#: ../src/gui/dialogs/TransportDialog.cpp:933 +#: ../src/gui/dialogs/TransportDialog.cpp:993 +msgid "PROG CHNGE" +msgstr "PROG CHNGE" + +#: ../src/gui/dialogs/TransportDialog.cpp:938 +#: ../src/gui/dialogs/TransportDialog.cpp:998 +msgid "PRESSURE" +msgstr "PRESSURE" + +#: ../src/gui/dialogs/TransportDialog.cpp:942 +#: ../src/gui/dialogs/TransportDialog.cpp:1002 +#, fuzzy +msgid "SYS MESSAGE" +msgstr "SYS EXCLSVE" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:177 +#: ../src/gui/dialogs/QuantizeDialog.cpp:40 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:127 +msgid "Quantize" +msgstr "Kvantimine" + +#: ../src/gui/dialogs/QuantizeDialog.cpp:52 +msgid "Advanced" +msgstr "" + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:42 +msgid "Export Devices..." +msgstr "Ekspordi seadmed..." + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:47 +msgid "Export devices" +msgstr "Seadmete eksport" + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:49 +msgid "Export all devices" +msgstr "Kõiki seadmete eksport" + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:50 +msgid "Export selected device only" +msgstr "Eksporditakse ainult valitud seadmed" + +#: ../src/gui/dialogs/ExportDeviceDialog.cpp:51 +msgid " (\"%1\")" +msgstr " (\"%1\")" + +#: ../src/gui/dialogs/CompositionLengthDialog.cpp:44 +msgid "Change Composition Length" +msgstr "Kompositsiooni pikkuse muutmine" + +#: ../src/gui/dialogs/CompositionLengthDialog.cpp:50 +msgid "Set the Start and End bar markers for this Composition" +msgstr "" + +#: ../src/gui/dialogs/CompositionLengthDialog.cpp:54 +msgid "Start Bar" +msgstr "Alguse takt" + +#: ../src/gui/dialogs/CompositionLengthDialog.cpp:62 +msgid "End Bar" +msgstr "Lõpu takt" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:62 +#, fuzzy +msgid "LilyPond Export/Preview" +msgstr "Lilypond ekport" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:85 +#, fuzzy +msgid "General options" +msgstr "Üldised seadistused" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:90 +msgid "Advanced options" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:112 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:95 +msgid "Headers" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:106 +msgid "Basic options" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:113 +#, fuzzy +msgid "Compatibility level" +msgstr "Lilypond'i kompatiiblus" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:117 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:118 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:119 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:120 +#, fuzzy, c-format +msgid "LilyPond %1" +msgstr "Lilypond 2.0+" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:125 +#, fuzzy +msgid "Paper size" +msgstr "Faili avamine" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:129 +msgid "A3" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:130 +msgid "A4" +msgstr "A4" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:131 +msgid "A5" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:132 +msgid "A6" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:133 +msgid "Legal" +msgstr "Legal" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:134 +msgid "US Letter" +msgstr "US Letter" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:135 +msgid "Tabloid" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:136 +msgid "do not specify" +msgstr "määramata" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:152 +#, fuzzy +msgid "Font size" +msgstr "Failinimi:" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:157 +#, fuzzy +msgid "%1 pt" +msgstr "%1 (tükeldatud)" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:169 +msgid "Staff level options" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:176 +#, fuzzy +msgid "Export content" +msgstr "Seadmete eksport" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:179 +#, fuzzy +msgid "All tracks" +msgstr "&Kustuta rada" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:180 +#, fuzzy +msgid "Non-muted tracks" +msgstr "&Kustuta rada" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:181 +#, fuzzy +msgid "Selected track" +msgstr "&Vali uus rada" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:182 +#, fuzzy +msgid "Selected segments" +msgstr "V&ali kõik segmendid" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:188 +msgid "Merge tracks that have the same name" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:198 +#, fuzzy +msgid "Notation options" +msgstr "Sündmuse omadused" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:206 +#, fuzzy +msgid "First" +msgstr "paus" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:207 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:538 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:557 +msgid "All" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:211 +msgid "Export tempo marks " +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:215 +#, fuzzy +msgid "Export lyrics" +msgstr "\\lyric ploki eksport" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:225 +msgid "Export beamings" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:232 +msgid "Export track staff brackets" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:244 +#, fuzzy +msgid "Layout options" +msgstr "Lilypond'i ekpordi seadistused" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:257 +#, fuzzy +msgid "Lyrics alignment" +msgstr "Selle segmendi sõnad" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:261 +msgid "Ragged bottom (systems will not be spread vertically across the page)" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:267 +msgid "Miscellaneous options" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:274 +msgid "Enable \"point and click\" debugging" +msgstr "" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:279 +msgid "Export \\midi block" +msgstr "\\midi ploki eksport" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:284 +#, fuzzy +msgid "No markers" +msgstr "Eemalda kõik märgised" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:285 +#, fuzzy +msgid "Rehearsal marks" +msgstr "Eemalda kõik märgised" + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:286 +#, fuzzy +msgid "Marker text" +msgstr "Märgise aeg " + +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:290 +#, fuzzy +msgid "Export markers" +msgstr "Eksport kui..." + +#: ../src/gui/dialogs/AudioSplitDialog.cpp:57 +msgid "Autosplit Audio Segment" +msgstr "Audio segmendi tükeldamine" + +#: ../src/gui/dialogs/AudioSplitDialog.cpp:70 +msgid "AutoSplit Segment \"" +msgstr "" + +#: ../src/gui/dialogs/AudioSplitDialog.cpp:84 +msgid "Threshold" +msgstr "Lävi" + +#: ../src/gui/dialogs/AudioSplitDialog.cpp:142 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:70 +msgid "Audio Plugin" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:94 +#: ../src/gui/widgets/AudioFaderBox.cpp:136 +#, fuzzy +msgid "Editor" +msgstr "Redigeerimine" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:100 +#, fuzzy +msgid "Plugin" +msgstr "Plugin" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:105 +msgid "Category:" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:110 +#, fuzzy +msgid "Plugin:" +msgstr "Plugin" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:114 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:398 +msgid "Select a plugin from this list." +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:119 +#, fuzzy +msgid "Bypass" +msgstr "Läbiv" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:121 +msgid "Bypass this plugin." +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:127 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:390 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:130 +msgid "Input and output port counts." +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:132 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:391 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:135 +msgid "Unique ID of plugin." +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:149 +#, fuzzy +msgid "Copy plugin parameters" +msgstr "Segmendi parameetrid" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:155 +#, fuzzy +msgid "Paste plugin parameters" +msgstr "Instrumendi parameetrid" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:161 +msgid "Set to defaults" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:225 +msgid "(any)" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:226 +#, fuzzy +msgid "(unclassified)" +msgstr "piiramatu" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:247 +msgid "(none)" +msgstr "(puudub)" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:389 +#: ../src/gui/editors/parameters/AudioInstrumentParameterPanel.cpp:132 +#: ../src/gui/editors/parameters/AudioInstrumentParameterPanel.cpp:361 +#: ../src/gui/studio/AudioMixerWindow.cpp:685 +#: ../src/gui/studio/AudioMixerWindow.cpp:724 +#: ../src/gui/studio/AudioMixerWindow.cpp:906 +#: ../src/gui/widgets/AudioFaderBox.cpp:79 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:427 +msgid "This plugin has too many controls to edit here." +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:438 +#, fuzzy, c-format +msgid "Id: %1" +msgstr "Lisa %1" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:490 +msgid "mono" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:492 +msgid "stereo" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:494 +msgid "%1 in, %2 out" +msgstr "" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:518 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:704 +#, fuzzy +msgid "Program: " +msgstr "Programm" + +#: ../src/gui/dialogs/AudioPluginDialog.cpp:522 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:532 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:708 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:716 +#: ../src/gui/dialogs/AudioPluginDialog.cpp:745 +#, fuzzy +msgid "" +msgstr "" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:56 +msgid "Set the %1 property of the event selection:" +msgstr "" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:61 +msgid "Pattern" +msgstr "Pattern" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:66 +msgid "Flat - set %1 to value" +msgstr "" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:70 +msgid "Alternating - set %1 to max and min on alternate events" +msgstr "" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:74 +msgid "Crescendo - set %1 rising from min to max" +msgstr "" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:78 +msgid "Diminuendo - set %1 falling from max to min" +msgstr "" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:82 +msgid "Ringing - set %1 alternating from max to min with both dying to zero" +msgstr "" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:123 +#: ../src/gui/dialogs/EventParameterDialog.cpp:150 +msgid "First Value" +msgstr "Esimene väärtus" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:124 +#: ../src/gui/dialogs/EventParameterDialog.cpp:151 +msgid "Second Value" +msgstr "Teine väärtus" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:132 +#: ../src/gui/dialogs/EventParameterDialog.cpp:142 +#, fuzzy +msgid "Low Value" +msgstr "Väärtus" + +#: ../src/gui/dialogs/EventParameterDialog.cpp:133 +#: ../src/gui/dialogs/EventParameterDialog.cpp:141 +#, fuzzy +msgid "High Value" +msgstr "Esimene väärtus" + +#: ../src/gui/dialogs/TempoDialog.cpp:56 ../src/gui/rulers/TempoRuler.cpp:127 +msgid "Insert Tempo Change" +msgstr "Lisa tempo muudatus" + +#: ../src/gui/dialogs/TempoDialog.cpp:69 +#, fuzzy +msgid "New tempo:" +msgstr "Uus tempo" + +#: ../src/gui/dialogs/TempoDialog.cpp:76 +msgid "Tap" +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:81 +#, fuzzy +msgid "Tempo is fixed until the following tempo change" +msgstr "Olemasolevad noodid järgivad noodivõtme muutust" + +#: ../src/gui/dialogs/TempoDialog.cpp:82 +#, fuzzy +msgid "Tempo ramps to the following tempo" +msgstr "Olemasolevad noodid järgivad noodivõtme muutust" + +#: ../src/gui/dialogs/TempoDialog.cpp:83 +#, fuzzy +msgid "Tempo ramps to:" +msgstr "Tempo" + +#: ../src/gui/dialogs/TempoDialog.cpp:120 +#, fuzzy +msgid "Time of tempo change" +msgstr "Teised tempo muudatused puuduvad." + +#: ../src/gui/dialogs/TempoDialog.cpp:138 +msgid "The pointer is currently at " +msgstr "Kursor on praegu asukohas " + +#: ../src/gui/dialogs/TempoDialog.cpp:154 +msgid "Apply this tempo from here onwards" +msgstr "Rakenda seda tempot siit edasi" + +#: ../src/gui/dialogs/TempoDialog.cpp:158 +msgid "Replace the last tempo change" +msgstr "Asenda viimane tempo muudatus" + +#: ../src/gui/dialogs/TempoDialog.cpp:164 +msgid "Apply this tempo from the start of this bar" +msgstr "Rakenda seda tempot selle takti algusest" + +#: ../src/gui/dialogs/TempoDialog.cpp:167 +msgid "Apply this tempo to the whole composition" +msgstr "Rakenda seda tempot kogu kompositsioonile" + +#: ../src/gui/dialogs/TempoDialog.cpp:172 +msgid "Also make this the default tempo" +msgstr "Ning tee see vaiketempoks" + +#: ../src/gui/dialogs/TempoDialog.cpp:256 +msgid "%1.%2 s," +msgstr "%1.%2 s," + +#: ../src/gui/dialogs/TempoDialog.cpp:262 +#, c-format +msgid "at the start of measure %1." +msgstr "takti %1 alguses." + +#: ../src/gui/dialogs/TempoDialog.cpp:266 +#, c-format +msgid "in the middle of measure %1." +msgstr "takti %1 keskel." + +#: ../src/gui/dialogs/TempoDialog.cpp:285 +#, fuzzy +msgid " (at %1.%2 s, in measure %3)" +msgstr " (asukohas %1.%2 s, taktis %3)" + +#: ../src/gui/dialogs/TempoDialog.cpp:302 +msgid "There are no preceding tempo changes." +msgstr "" + +#: ../src/gui/dialogs/TempoDialog.cpp:310 +msgid "There are no other tempo changes." +msgstr "Teised tempo muudatused puuduvad." + +#: ../src/gui/dialogs/TempoDialog.cpp:328 +msgid " bpm" +msgstr "" + +#: ../src/gui/dialogs/AudioPlayingDialog.cpp:42 +msgid "Playing audio file" +msgstr "Audiofaili mängimine" + +#: ../src/gui/dialogs/AudioPlayingDialog.cpp:47 +msgid "Playing audio file \"%1\"" +msgstr "Audiofaili \"%1\" mängimine" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:52 +#: ../src/gui/editors/matrix/MatrixView.cpp:2655 +#, fuzzy +msgid "Trigger Segment" +msgstr "Kustuta segment" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:61 +#, fuzzy +msgid "Trigger segment: " +msgstr "Kustuta segment" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:59 +msgid "Key Change" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:77 +msgid "Key signature" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:80 +#, fuzzy +msgid "Key transposition" +msgstr "Sünkroniseerimine" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:86 +msgid "Existing notes following key change" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:98 +#, fuzzy +msgid "Flatten" +msgstr "Ühtlustamine" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:100 +#, fuzzy +msgid "Key" +msgstr "Klahv" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:105 +#, fuzzy +msgid "Sharpen" +msgstr "Teravdus" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:109 +msgid "Major" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:110 +#: ../src/gui/dialogs/KeySignatureDialog.cpp:369 +#, fuzzy +msgid "Minor" +msgstr "Tenorivõti" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:123 +msgid "Transpose key according to segment transposition" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:126 +msgid "Use specified key. Do not transpose" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:134 +msgid "Apply to current segment only" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:137 +msgid "Apply to all segments at this time" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:141 +msgid "Exclude percussion segments" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:155 +msgid "Maintain current accidentals" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:158 +msgid "Transpose into this key" +msgstr "" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:331 +msgid "No such key" +msgstr "" + +#: ../src/gui/dialogs/InterpretDialog.cpp:44 +#: ../src/gui/editors/notation/NotationSelector.cpp:118 +msgid "Interpret" +msgstr "" + +#: ../src/gui/dialogs/InterpretDialog.cpp:50 +msgid "Interpretations to apply" +msgstr "" + +#: ../src/gui/dialogs/InterpretDialog.cpp:53 +msgid "Apply text dynamics (p, mf, ff etc)" +msgstr "" + +#: ../src/gui/dialogs/InterpretDialog.cpp:55 +msgid "Apply hairpin dynamics" +msgstr "" + +#: ../src/gui/dialogs/InterpretDialog.cpp:57 +msgid "Stress beats" +msgstr "" + +#: ../src/gui/dialogs/InterpretDialog.cpp:59 +msgid "Articulate slurs, staccato, tenuto etc" +msgstr "" + +#: ../src/gui/dialogs/InterpretDialog.cpp:61 +msgid "All available interpretations" +msgstr "Kõikvõimalikud interpretatsioonid" + +#: ../src/gui/application/RosegardenGUIApp.cpp:316 +msgid "" +"Attempted to launch JACK audio daemon failed. Audio will be disabled.\n" +"Please check configuration (Settings -> Configure Rosegarden -> Audio -> " +"Startup)\n" +" and restart." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:325 +msgid "Starting sequencer..." +msgstr "Sekventseri käivitamine..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:333 +#, fuzzy +msgid "Initializing plugin manager..." +msgstr "Pluginate halduri initsialiseerimine..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:338 +#, fuzzy +msgid "Initializing view..." +msgstr "Vaate initsialiseerimine..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:354 +#, fuzzy +msgid "Special Parameters" +msgstr "Segmendi parameetrid" + +#: ../src/gui/application/RosegardenGUIApp.cpp:430 +msgid "Starting sequence manager..." +msgstr "Sekventseri halduri käivitamine..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:456 +msgid "Clearing studio data..." +msgstr "Stuudio andmete puhastamine..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:475 +#: ../src/gui/editors/notation/NotationView.cpp:558 +msgid "Starting..." +msgstr "Käivitamine..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:556 +#, fuzzy +msgid "Import Rosegarden &Project file..." +msgstr "Impordi &Rosegarden 2.1 fail..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:560 +msgid "Import &MIDI file..." +msgstr "Impordi &MIDI fail..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:564 +msgid "Import &Rosegarden 2.1 file..." +msgstr "Impordi &Rosegarden 2.1 fail..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:568 +#, fuzzy +msgid "Import &Hydrogen file..." +msgstr "Impordi &Rosegarden 2.1 fail..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:572 +msgid "Merge &File..." +msgstr "Liida &fail..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:576 +msgid "Merge &MIDI file..." +msgstr "Liida &MIDI fail..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:580 +msgid "Merge &Rosegarden 2.1 file..." +msgstr "Liida &Rosegarden 2.1 fail..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:584 +#, fuzzy +msgid "Merge &Hydrogen file..." +msgstr "Impordi &Rosegarden 2.1 fail..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:588 +#, fuzzy +msgid "Export Rosegarden &Project file..." +msgstr "Impordi &Rosegarden 2.1 fail..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:592 +msgid "Export &MIDI file..." +msgstr "Ekspordi &MIDI fail..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:596 +#, fuzzy +msgid "Export &LilyPond file..." +msgstr "Ekspordi &Lilypond fail..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:600 +msgid "Export Music&XML file..." +msgstr "Ekspordi Music&XML fail..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:604 +msgid "Export &Csound score file..." +msgstr "Expordi &Csound noodikirja fail..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:608 +msgid "Export M&up file..." +msgstr "Ekspordi M&up fail..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:612 +#: ../src/gui/editors/notation/NotationView.cpp:1500 +#, fuzzy +msgid "Print &with LilyPond..." +msgstr "Lilypond faili eksport..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:616 +#: ../src/gui/editors/notation/NotationView.cpp:1504 +#, fuzzy +msgid "Preview with Lil&yPond..." +msgstr "Lilypond faili eksport..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:620 +#, fuzzy +msgid "Play&list" +msgstr "Mängi maha" + +#: ../src/gui/application/RosegardenGUIApp.cpp:627 +#, fuzzy +msgid "Rosegarden &Tutorial" +msgstr "Rosegarden" + +#: ../src/gui/application/RosegardenGUIApp.cpp:631 +msgid "&Bug Reporting Guidelines" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:645 +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:348 +#: ../src/gui/editors/segment/MarkerEditor.cpp:378 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:388 +#: ../src/gui/general/EditViewBase.cpp:190 +#: ../src/gui/studio/BankEditorDialog.cpp:318 +#: ../src/gui/studio/DeviceManagerDialog.cpp:227 +msgid "Und&o" +msgstr "Tühista tegev&us" + +#: ../src/gui/application/RosegardenGUIApp.cpp:651 +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:354 +#: ../src/gui/editors/segment/MarkerEditor.cpp:384 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:394 +#: ../src/gui/general/EditViewBase.cpp:196 +#: ../src/gui/studio/BankEditorDialog.cpp:324 +#: ../src/gui/studio/DeviceManagerDialog.cpp:233 +msgid "Re&do" +msgstr "&Tee uuesti" + +#: ../src/gui/application/RosegardenGUIApp.cpp:665 +#: ../src/gui/editors/notation/NotationView.cpp:2297 +msgid "Show T&ools Toolbar" +msgstr "Näita t&ööriistade tööriistariba" + +#: ../src/gui/application/RosegardenGUIApp.cpp:669 +msgid "Show Trac&ks Toolbar" +msgstr "Näita &radade tööriistariba" + +#: ../src/gui/application/RosegardenGUIApp.cpp:673 +msgid "Show &Editors Toolbar" +msgstr "Näita r&edaktori tööriistariba" + +#: ../src/gui/application/RosegardenGUIApp.cpp:677 +#: ../src/gui/editors/notation/NotationView.cpp:2309 +msgid "Show Trans&port Toolbar" +msgstr "Näita trans&pordi tööristariba" + +#: ../src/gui/application/RosegardenGUIApp.cpp:681 +msgid "Show &Zoom Toolbar" +msgstr "Näita &suurenduse tööriistariba" + +#: ../src/gui/application/RosegardenGUIApp.cpp:688 +msgid "Show Tra&nsport" +msgstr "Näita tra&nspordi akent" + +#: ../src/gui/application/RosegardenGUIApp.cpp:693 +msgid "Show Track &Labels" +msgstr "Näita radade &nimesid" + +#: ../src/gui/application/RosegardenGUIApp.cpp:698 +#, fuzzy +msgid "Show Playback Position R&uler" +msgstr "Mahamängimise kursor &kursori juurde" + +#: ../src/gui/application/RosegardenGUIApp.cpp:703 +msgid "Show Te&mpo Ruler" +msgstr "Näita te&mpo joonlauda" + +#: ../src/gui/application/RosegardenGUIApp.cpp:708 +msgid "Show Cho&rd Name Ruler" +msgstr "Näita ako&rdi nimede joonlauda" + +#: ../src/gui/application/RosegardenGUIApp.cpp:714 +msgid "Show Segment Pre&views" +msgstr "Näita segmentide eel&vaatlusi" + +#: ../src/gui/application/RosegardenGUIApp.cpp:719 +#, fuzzy +msgid "Show Special &Parameters" +msgstr "Näita &instrumentide parameetreid" + +#: ../src/gui/application/RosegardenGUIApp.cpp:753 +#: ../src/gui/editors/matrix/MatrixView.cpp:641 +#: ../src/gui/editors/notation/NotationView.cpp:1772 +#, fuzzy +msgid "&Select and Edit" +msgstr "Vali l&õpuni" + +#: ../src/gui/application/RosegardenGUIApp.cpp:758 +#: ../src/gui/editors/matrix/MatrixView.cpp:646 +msgid "&Draw" +msgstr "&Joonista" + +#: ../src/commands/edit/EraseCommand.h:50 +#: ../src/gui/application/RosegardenGUIApp.cpp:763 +#: ../src/gui/editors/matrix/MatrixView.cpp:651 +#: ../src/gui/editors/notation/NotationView.cpp:1766 +msgid "&Erase" +msgstr "&Kustuta" + +#: ../src/gui/application/RosegardenGUIApp.cpp:768 +#: ../src/gui/editors/matrix/MatrixView.cpp:656 +msgid "&Move" +msgstr "&Liikumine" + +#: ../src/gui/application/RosegardenGUIApp.cpp:775 +msgid "&Resize" +msgstr "Muuda suu&rust" + +#: ../src/gui/application/RosegardenGUIApp.cpp:782 rc.cpp:87 +#, no-c-format +msgid "&Split" +msgstr "&Tükelda" + +#: ../src/commands/segment/SegmentJoinCommand.h:53 +#: ../src/gui/application/RosegardenGUIApp.cpp:789 +msgid "&Join" +msgstr "Üh&enda" + +#: ../src/gui/application/RosegardenGUIApp.cpp:795 +msgid "&Harmonize" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:806 +#: ../src/gui/rulers/TempoRuler.cpp:157 +#, fuzzy +msgid "Open Tempo and Time Signature Editor" +msgstr "Ava sündmuse redaktoris" + +#: ../src/commands/segment/CutRangeCommand.cpp:41 +#: ../src/gui/application/RosegardenGUIApp.cpp:812 +#, fuzzy +msgid "Cut Range" +msgstr "Lõika ja s&ulge" + +#: ../src/commands/edit/CopyCommand.cpp:73 +#: ../src/gui/application/RosegardenGUIApp.cpp:816 +msgid "Copy Range" +msgstr "" + +#: ../src/commands/segment/PasteRangeCommand.cpp:45 +#: ../src/gui/application/RosegardenGUIApp.cpp:820 +#, fuzzy +msgid "Paste Range" +msgstr "Maatriks" + +#: ../src/gui/application/RosegardenGUIApp.cpp:828 +#, fuzzy +msgid "Insert Range..." +msgstr "Lisa paus" + +#: ../src/gui/application/RosegardenGUIApp.cpp:832 +#: ../src/gui/editors/notation/NotationView.cpp:1804 +msgid "De&lete" +msgstr "&Kustuta" + +#: ../src/gui/application/RosegardenGUIApp.cpp:836 +msgid "Select &All Segments" +msgstr "V&ali kõik segmendid" + +#: ../src/gui/application/RosegardenGUIApp.cpp:852 +#, fuzzy +msgid "Edit Mar&kers..." +msgstr "Redigeeri märgist" + +#: ../src/gui/application/RosegardenGUIApp.cpp:856 +msgid "Edit Document P&roperties..." +msgstr "&Redigeeri dokumendi omadusi..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:864 +msgid "Open in &Default Editor" +msgstr "Ava vaikere&daktoris" + +#: ../src/gui/application/RosegardenGUIApp.cpp:870 +#: ../src/gui/general/EditViewBase.cpp:206 +msgid "Open in Matri&x Editor" +msgstr "Ava maatri&ksredaktoris" + +#: ../src/gui/application/RosegardenGUIApp.cpp:876 +#: ../src/gui/general/EditViewBase.cpp:212 +#, fuzzy +msgid "Open in &Percussion Matrix Editor" +msgstr "Ava maatri&ksredaktoris" + +#: ../src/gui/application/RosegardenGUIApp.cpp:882 +#: ../src/gui/general/EditViewBase.cpp:218 +msgid "Open in &Notation Editor" +msgstr "Ava &noodikirja redaktoris" + +#: ../src/gui/application/RosegardenGUIApp.cpp:888 +#: ../src/gui/general/EditViewBase.cpp:224 +msgid "Open in &Event List Editor" +msgstr "Ava sündmuste nim&ekirja redaktoris" + +#: ../src/commands/edit/EventQuantizeCommand.cpp:120 +#: ../src/commands/edit/EventUnquantizeCommand.cpp:87 +#: ../src/gui/application/RosegardenGUIApp.cpp:894 +msgid "&Quantize..." +msgstr "&Kvandi..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:908 +#: ../src/gui/editors/matrix/MatrixView.cpp:686 +msgid "Repeat Last Quantize" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:928 +#, fuzzy +msgid "Split at Time..." +msgstr "Käivitamine..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:932 +#: ../src/gui/general/EditView.cpp:796 +msgid "Jog &Left" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:936 +#: ../src/gui/general/EditView.cpp:800 +msgid "Jog &Right" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:940 +#, fuzzy +msgid "Set Start Time..." +msgstr "Käivitamine..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:944 +#, fuzzy +msgid "Set Duration..." +msgstr "Kestvus" + +#: ../src/gui/application/RosegardenGUIApp.cpp:953 +msgid "Turn Re&peats into Copies" +msgstr "Muuda kordused koo&piateks" + +#: ../src/gui/application/RosegardenGUIApp.cpp:958 +#, fuzzy +msgid "Manage Tri&ggered Segments" +msgstr "A&udiosegmentide manageerimine" + +#: ../src/gui/application/RosegardenGUIApp.cpp:962 +msgid "Set Tempos from &Beat Segment" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:966 +msgid "Set &Tempo to Audio Segment Duration" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:972 +#, fuzzy +msgid "Manage A&udio Files" +msgstr "Lisa audiofail" + +#: ../src/gui/application/RosegardenGUIApp.cpp:977 +#, fuzzy +msgid "Show Segment Labels" +msgstr "Segmendi nime muutmine" + +#: ../src/gui/application/RosegardenGUIApp.cpp:986 +#, fuzzy +msgid "Add &Track" +msgstr "Lisa rajad..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:990 +#, fuzzy +msgid "&Add Tracks..." +msgstr "Lisa rajad..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:996 +#, fuzzy +msgid "D&elete Track" +msgstr "&Kustuta rada" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1002 +msgid "Move Track &Down" +msgstr "Liiguta ra&da alla" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1008 +msgid "Move Track &Up" +msgstr "Liig&uta rada üles" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1012 +msgid "Select &Next Track" +msgstr "&Vali uus rada" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1017 +msgid "Select &Previous Track" +msgstr "Vali eelmine &rada" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1022 +#, fuzzy +msgid "Mute or Unmute Track" +msgstr "&Kustuta rada" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1027 +msgid "Arm or Un-arm Track for Record" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1034 +#, fuzzy +msgid "&Mute all Tracks" +msgstr "&Kustuta rada" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1040 +msgid "&Unmute all Tracks" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1044 +msgid "&Remap Instruments..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1053 +#, fuzzy +msgid "&Audio Mixer" +msgstr "Lisa audiofail" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1059 +msgid "Midi Mi&xer" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1065 +#, fuzzy +msgid "Manage MIDI &Devices" +msgstr "MIDI seadmete haldamine" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1071 +msgid "Manage S&ynth Plugins" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1075 +#, fuzzy +msgid "Modify MIDI &Filters" +msgstr "MIDI &filtrite muutmine..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:1079 +msgid "MIDI Thru Routing" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1085 +#, fuzzy +msgid "Manage &Metronome" +msgstr "&Metronoomi haldamine..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:1089 +msgid "&Save Current Document as Default Studio" +msgstr "&Salvesta aktiivne dokument vaikestuudioks" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1093 +msgid "&Import Default Studio" +msgstr "&Impordi vaikestuudio" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1097 +#, fuzzy +msgid "Im&port Studio from File..." +msgstr "&Impordi stuudio failist..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:1101 +msgid "&Reset MIDI Network" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1105 +#, fuzzy +msgid "Set Quick Marker at Playback Position" +msgstr "Lisa tempo muudatus" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1109 +msgid "Jump to Quick Marker" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1142 +#: ../src/gui/editors/matrix/MatrixView.cpp:782 +#: ../src/gui/editors/notation/NotationView.cpp:2397 +#: ../src/gui/studio/AudioMixerWindow.cpp:105 +#: ../src/gui/studio/MidiMixerWindow.cpp:81 +msgid "&Play" +msgstr "&Mahamängimine" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1153 +#: ../src/gui/editors/matrix/MatrixView.cpp:791 +#: ../src/gui/editors/notation/NotationView.cpp:2406 +#: ../src/gui/studio/AudioMixerWindow.cpp:114 +#: ../src/gui/studio/MidiMixerWindow.cpp:90 +msgid "&Stop" +msgstr "&Stopp" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1160 +#: ../src/gui/editors/matrix/MatrixView.cpp:802 +#: ../src/gui/editors/notation/NotationView.cpp:2417 +#: ../src/gui/studio/AudioMixerWindow.cpp:125 +#: ../src/gui/studio/MidiMixerWindow.cpp:101 +msgid "&Fast Forward" +msgstr "Keri &edasi" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1168 +#: ../src/gui/editors/matrix/MatrixView.cpp:796 +#: ../src/gui/editors/notation/NotationView.cpp:2411 +#: ../src/gui/studio/AudioMixerWindow.cpp:119 +#: ../src/gui/studio/MidiMixerWindow.cpp:95 +msgid "Re&wind" +msgstr "&Keri tagasi" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1175 +msgid "P&unch in Record" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1182 +#: ../src/gui/studio/AudioMixerWindow.cpp:143 +#: ../src/gui/studio/MidiMixerWindow.cpp:119 +msgid "&Record" +msgstr "Sa&lvestus" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1189 +#: ../src/gui/editors/matrix/MatrixView.cpp:808 +#: ../src/gui/editors/notation/NotationView.cpp:2423 +#: ../src/gui/studio/AudioMixerWindow.cpp:131 +#: ../src/gui/studio/MidiMixerWindow.cpp:107 +msgid "Rewind to &Beginning" +msgstr "Keri tagasi &algusesse" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1196 +#: ../src/gui/editors/matrix/MatrixView.cpp:814 +#: ../src/gui/editors/notation/NotationView.cpp:2429 +#: ../src/gui/studio/AudioMixerWindow.cpp:137 +#: ../src/gui/studio/MidiMixerWindow.cpp:113 +msgid "Fast Forward to &End" +msgstr "Keri &edasi lõppu" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1203 +#: ../src/gui/editors/matrix/MatrixView.cpp:832 +#: ../src/gui/editors/notation/NotationView.cpp:2447 +msgid "Scro&ll to Follow Playback" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1209 +#: ../src/gui/editors/matrix/MatrixView.cpp:838 +#: ../src/gui/editors/notation/NotationView.cpp:2453 +#: ../src/gui/studio/AudioMixerWindow.cpp:149 +#: ../src/gui/studio/MidiMixerWindow.cpp:125 +#, fuzzy +msgid "Panic" +msgstr "Panoraam" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1213 +msgid "Segment Debug Dump " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1283 +msgid " Zoom: " +msgstr " Suurendus: " + +#: ../src/gui/application/RosegardenGUIApp.cpp:1719 +msgid "File \"%1\" does not exist" +msgstr "Faili \"%1\" ei eksisteeri" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1725 +msgid "File \"%1\" is actually a directory" +msgstr "Fail \"%1\" on tegelikult kataloog" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1734 +msgid "You do not have read permission for \"%1\"" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1802 +msgid "" +"An auto-save file for this document has been found\n" +"Do you want to open it instead ?" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:1896 +#, fuzzy +msgid "Example Files" +msgstr "Näide" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2100 +msgid "Opening a new application window..." +msgstr "Uue rakenduse akna avamine..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2110 +msgid "Creating new document..." +msgstr "Uue dokumendi loomine..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2154 +#, c-format +msgid "" +"Malformed URL\n" +"%1" +msgstr "" +"Vigane URL\n" +"%1" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2179 +#: ../src/gui/application/RosegardenGUIApp.cpp:2240 +msgid "Opening file..." +msgstr "Faili avamine..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2201 +#: ../src/gui/application/RosegardenGUIApp.cpp:2220 +msgid "Open File" +msgstr "Faili avamine" + +#: ../src/document/RosegardenGUIDoc.cpp:1225 +#: ../src/gui/application/RosegardenGUIApp.cpp:2258 +msgid "Saving file..." +msgstr "Faili salvestamine..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2330 +msgid "This is not a valid filename.\n" +msgstr "See ei ole korrektne faili nimi.\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2335 +msgid "This is not a local file.\n" +msgstr "See ei ole kohalik fail.\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2342 +#: ../src/gui/studio/BankEditorDialog.cpp:1640 +#: ../src/gui/studio/DeviceManagerDialog.cpp:787 +msgid "You have specified a directory" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2348 +#: ../src/gui/studio/BankEditorDialog.cpp:1646 +#: ../src/gui/studio/DeviceManagerDialog.cpp:793 +msgid "The specified file exists. Overwrite?" +msgstr "Määratud fail eksisteerib juba. Kas kirjutada üle?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2362 +msgid "Saving file with a new filename..." +msgstr "Faili salvestamine uue nimega..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2364 +#, fuzzy +msgid "Rosegarden files" +msgstr "Rosegarden-4 failid" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2365 +#: ../src/gui/application/RosegardenGUIApp.cpp:4860 +#: ../src/gui/application/RosegardenGUIApp.cpp:4904 +#: ../src/gui/application/RosegardenGUIApp.cpp:4942 +#: ../src/gui/application/RosegardenGUIApp.cpp:4975 +#: ../src/gui/application/RosegardenGUIApp.cpp:5009 +#: ../src/gui/application/RosegardenGUIApp.cpp:5116 +msgid "All files" +msgstr "Kõik failid" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2366 +msgid "Save as..." +msgstr "Salvesta kui..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2404 +msgid "Closing file..." +msgstr "Faili sulgemine..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2421 +#: ../src/gui/editors/notation/NotationView.cpp:4618 +msgid "Printing..." +msgstr "Trükkimine..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2433 +#: ../src/gui/editors/notation/NotationView.cpp:4635 +msgid "Previewing..." +msgstr "Eelvaatlus..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2440 +msgid "Exiting..." +msgstr "Väljumine..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2463 +msgid "Cutting selection..." +msgstr "Valiku lõikamine..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2474 +#: ../src/gui/editors/matrix/MatrixView.cpp:1614 +#: ../src/gui/editors/notation/NotationView.cpp:4763 +msgid "Copying selection to clipboard..." +msgstr "Valiku kopeerimine lõikepuhvrisse..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2484 +#: ../src/gui/editors/eventlist/EventView.cpp:878 +#: ../src/gui/editors/matrix/MatrixView.cpp:1625 +#: ../src/gui/editors/notation/NotationView.cpp:4796 +#: ../src/gui/editors/notation/NotationView.cpp:4841 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:352 +msgid "Clipboard is empty" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2487 +#: ../src/gui/editors/eventlist/EventView.cpp:882 +#: ../src/gui/editors/matrix/MatrixView.cpp:1629 +#: ../src/gui/editors/notation/NotationView.cpp:4804 +#: ../src/gui/editors/notation/NotationView.cpp:4845 +msgid "Inserting clipboard contents..." +msgstr "Lõikelaua sisu lisamine..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2556 +#, fuzzy +msgid "Duration of empty range to insert" +msgstr "Valiku lõikamine..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2631 +msgid "This function needs no more than one segment to be selected." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2654 +msgid "Can't join Audio segments" +msgstr "Audiosegmente ei saa ühendada" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2707 +#, fuzzy +msgid "rescaling an audio file" +msgstr "Audiofaili mängimine" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2723 +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:172 +#, fuzzy +msgid "Rescaling audio file..." +msgstr "Faili lugemine..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2767 +msgid "" +"The audio file path does not exist or is not writable.\n" +"You must set the audio file path to a valid directory in Document Properties " +"before %1.\n" +"Would you like to set it now?" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2769 +#: ../src/gui/application/RosegardenGUIApp.cpp:5291 +#: ../src/gui/application/RosegardenGUIApp.cpp:5339 +#: ../src/gui/editors/segment/TrackButtons.cpp:419 +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:159 +#, fuzzy +msgid "Set audio file path" +msgstr "Audiofailide asukoht:" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2833 +#, fuzzy +msgid "Jog Selection" +msgstr "Puhasta valik" + +#: ../src/gui/application/RosegardenGUIApp.cpp:2978 +#, fuzzy, c-format +msgid "" +"_n: Split Segment at Time\n" +"Split %n Segments at Time" +msgstr "Kestvus" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3013 +#: ../src/gui/general/EditViewBase.cpp:619 +#, fuzzy +msgid "Segment Start Time" +msgstr "Segmendi parameetrid" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3023 +#, fuzzy +msgid "Set Segment Start Times" +msgstr "Näita &segmentide parameetreid" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3024 +#: ../src/gui/general/EditViewBase.cpp:626 +#, fuzzy +msgid "Set Segment Start Time" +msgstr "Näita &segmentide parameetreid" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3056 +#: ../src/gui/general/EditViewBase.cpp:644 +#, fuzzy +msgid "Segment Duration" +msgstr "Kestvus" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3068 +#, fuzzy +msgid "Set Segment Durations" +msgstr "Näita &segmentide parameetreid" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3069 +#: ../src/gui/general/EditViewBase.cpp:652 +#, fuzzy +msgid "Set Segment Duration" +msgstr "Noodivar&te suund" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3176 +#: ../src/gui/application/RosegardenGUIApp.cpp:5875 +msgid "Set Global Tempo" +msgstr "Globaalse tempo seadmine" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3234 +#: ../src/gui/general/EditViewBase.cpp:477 +msgid "Toggle the toolbar..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3244 +msgid "Toggle the tools toolbar..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3254 +msgid "Toggle the tracks toolbar..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3264 +msgid "Toggle the editor toolbar..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3274 +msgid "Toggle the transport toolbar..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3284 +msgid "Toggle the zoom toolbar..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3294 +msgid "Toggle the Transport" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3377 +#: ../src/gui/general/EditViewBase.cpp:487 +msgid "Toggle the statusbar..." +msgstr "Olekuriba lülitamine..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3434 +msgid "" +"The join tool isn't implemented yet. Instead please highlight the segments " +"you want to join and then use the menu option:\n" +"\n" +" Segments->Collapse Segments.\n" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3437 +msgid "Join tool not yet implemented" +msgstr "Ühendamine ei tööta veel" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3675 +msgid "Revert modified document to previous saved version?" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3691 +#, fuzzy +msgid "" +"*.rgp|Rosegarden Project files\n" +"*|All files" +msgstr "" +"*.rose|Rosegarden-2 failid\n" +"*|Kõik failid" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3692 +#, fuzzy +msgid "Import Rosegarden Project File" +msgstr "Impordi &Rosegarden 2.1 fail..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3717 +msgid "Failed to import project file \"%1\"" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3739 +msgid "Open MIDI File" +msgstr "MIDI faili avamine" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3756 +msgid "Merge MIDI File" +msgstr "MIDI faili liitmine" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3866 +msgid "Importing MIDI file..." +msgstr "MIDI faili import..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:3903 +msgid "Calculating notation..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3950 +msgid "Calculate Notation" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3991 +#: ../src/gui/application/RosegardenGUIApp.cpp:4008 +msgid "" +"*.rose|Rosegarden-2 files\n" +"*|All files" +msgstr "" +"*.rose|Rosegarden-2 failid\n" +"*|Kõik failid" + +#: ../src/gui/application/RosegardenGUIApp.cpp:3992 +#: ../src/gui/application/RosegardenGUIApp.cpp:4009 +msgid "Open Rosegarden 2.1 File" +msgstr "Rosegarden 2.1 faili avamine" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4026 +msgid "Importing Rosegarden 2.1 file..." +msgstr "Rosegarden 2.1 faili import..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4052 +msgid "Can't load Rosegarden 2.1 file. It appears to be corrupted." +msgstr "Rosegarden 2.1 faili ei õnnestu avada. See paistab olevat vigane." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4078 +#: ../src/gui/application/RosegardenGUIApp.cpp:4095 +#, fuzzy +msgid "" +"*.h2song|Hydrogen files\n" +"*|All files" +msgstr "" +"*.rg|Rosegarden-4 failid\n" +"*|Kõik failid" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4079 +#: ../src/gui/application/RosegardenGUIApp.cpp:4096 +#, fuzzy +msgid "Open Hydrogen File" +msgstr "Rosegarden 2.1 faili avamine" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4113 +#, fuzzy +msgid "Importing Hydrogen file..." +msgstr "Rosegarden 2.1 faili import..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4139 +#, fuzzy +msgid "Can't load Hydrogen file. It appears to be corrupted." +msgstr "Rosegarden 2.1 faili ei õnnestu avada. See paistab olevat vigane." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4527 +#, fuzzy +msgid "Export and import of Rosegarden Project files" +msgstr "Rosegarden 2.1 faili import..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4529 +#, fuzzy +msgid "The Rosegarden Project Packager helper script" +msgstr "Rosegarden-4 failid" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4533 +msgid "%1 - for project file support" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4550 +msgid "The Rosegarden LilyPondView helper script" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4554 +#, fuzzy +msgid "%1 - for LilyPond preview support" +msgstr "Lilypond'i ekpordi seadistused" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4570 +msgid "The Rosegarden Audio File Importer helper script" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4574 +#, fuzzy +msgid "%1 - for audio file import" +msgstr "Audiofailide asukoht:" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4585 +msgid "" +"

                      Helper programs not found

                      Rosegarden could not find one or more " +"helper programs which it needs to provide some features. The following " +"features will not be available:

                      " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4586 +#: ../src/gui/application/RosegardenGUIApp.cpp:4592 +#, fuzzy +msgid "
                        " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4588 +#: ../src/gui/application/RosegardenGUIApp.cpp:4594 +msgid "
                      • %1
                      • " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4590 +#: ../src/gui/application/RosegardenGUIApp.cpp:4596 +msgid "
                      " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4591 +msgid "" +"

                      To fix this, you should install the following additional programs:

                      " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4603 +msgid "Helper programs not found" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4686 +msgid "Starting the sequencer..." +msgstr "Sekventseri käivitamine..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4712 +msgid "Couldn't start the sequencer" +msgstr "Sekventserit ei õnnestunud käivitada" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4789 +msgid "Clearing down jackd..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4803 +msgid "Starting jackd..." +msgstr "Jackd käivitamine..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4842 +msgid "" +"The Rosegarden sequencer process has exited unexpectedly. Sound and " +"recording will no longer be available for this session.\n" +"Please exit and restart Rosegarden to restore sound capability." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4846 +msgid "" +"The Rosegarden sequencer could not be started, so sound and recording will " +"be unavailable for this session.\n" +"For assistance with correct audio and MIDI configuration, go to http://" +"rosegardenmusic.com." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4856 +#, fuzzy +msgid "Exporting Rosegarden Project file..." +msgstr "Rosegarden 2.1 faili import..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4859 +#, fuzzy +msgid "Rosegarden Project files\n" +msgstr "Rosegarden-4 failid" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4861 +#: ../src/gui/application/RosegardenGUIApp.cpp:4905 +#: ../src/gui/application/RosegardenGUIApp.cpp:4943 +#: ../src/gui/application/RosegardenGUIApp.cpp:4976 +#: ../src/gui/application/RosegardenGUIApp.cpp:5010 +#: ../src/gui/application/RosegardenGUIApp.cpp:5116 +msgid "Export as..." +msgstr "Eksport kui..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4875 +#, c-format +msgid "Saving Rosegarden file to package failed: %1" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4889 +msgid "Failed to export to project file \"%1\"" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4900 +#: ../src/gui/application/RosegardenGUIApp.cpp:4915 +msgid "Exporting MIDI file..." +msgstr "MIDI faili eksport..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4903 +msgid "Standard MIDI files\n" +msgstr "Standard MIDI failid\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:4934 +#: ../src/gui/application/RosegardenGUIApp.cpp:4966 +#: ../src/gui/application/RosegardenGUIApp.cpp:4999 +#: ../src/gui/application/RosegardenGUIApp.cpp:5103 +#: ../src/gui/application/RosegardenGUIApp.cpp:5140 +#: ../src/gui/editors/notation/NotationView.cpp:4733 +msgid "Export failed. The file could not be opened for writing." +msgstr "Eksport ebaõnnestus. Faili ei õnnestunud kirjutamiseks avada." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4940 +#: ../src/gui/application/RosegardenGUIApp.cpp:4952 +msgid "Exporting Csound score file..." +msgstr "Csound noodikirja faili eksport..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4972 +#: ../src/gui/application/RosegardenGUIApp.cpp:4985 +msgid "Exporting Mup file..." +msgstr "Mup faili eksport..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:4975 +msgid "Mup files\n" +msgstr "Mup failid\n" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5005 +#: ../src/gui/application/RosegardenGUIApp.cpp:5089 +#: ../src/gui/editors/notation/NotationView.cpp:4719 +#, fuzzy +msgid "Exporting LilyPond file..." +msgstr "Lilypond faili eksport..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:5008 +#, fuzzy +msgid "LilyPond files" +msgstr "Lilypond failid" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5023 +#: ../src/gui/editors/notation/NotationView.cpp:4653 +#, fuzzy +msgid "Printing LilyPond file..." +msgstr "Lilypond faili eksport..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:5028 +#: ../src/gui/application/RosegardenGUIApp.cpp:5052 +#: ../src/gui/editors/notation/NotationView.cpp:4658 +#: ../src/gui/editors/notation/NotationView.cpp:4682 +#, fuzzy +msgid "Failed to open a temporary file for LilyPond export." +msgstr "Audiofaili valimine" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5047 +#: ../src/gui/editors/notation/NotationView.cpp:4677 +#, fuzzy +msgid "Previewing LilyPond file..." +msgstr "Lilypond faili eksport..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:5080 +#: ../src/gui/editors/notation/NotationView.cpp:4710 +#, fuzzy +msgid "LilyPond Preview Options" +msgstr "Lilypond'i ekpordi seadistused" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5081 +#: ../src/gui/editors/notation/NotationView.cpp:4711 +#, fuzzy +msgid "LilyPond preview options" +msgstr "Lilypond'i ekpordi seadistused" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5112 +#: ../src/gui/application/RosegardenGUIApp.cpp:5126 +msgid "Exporting MusicXML file..." +msgstr "MusicXML faili eksport..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:5115 +msgid "XML files" +msgstr "XML failid" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5289 +#: ../src/gui/editors/segment/TrackButtons.cpp:417 +msgid "" +"The audio file path does not exist or is not writable.\n" +"Please set the audio file path to a valid directory in Document Properties " +"before recording audio.\n" +"Would you like to set it now?" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5337 +msgid "" +"The audio file path does not exist or is not writable.\n" +"Please set the audio file path to a valid directory in Document Properties " +"before you start to record audio.\n" +"Would you like to set it now?" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5780 +#, fuzzy +msgid "Move playback pointer to time" +msgstr "Mahamängimise kursor &kursori juurde" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5793 +#: ../src/gui/editors/matrix/MatrixView.cpp:2240 +msgid "%1%" +msgstr "%1%" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5861 +#, c-format +msgid "Replace Tempo Change at %1" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5891 +msgid "Set Global and Default Tempo" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5914 +#, fuzzy +msgid "Move Tempo Change" +msgstr "Eemalda &tempo muutus..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:5949 +#, fuzzy +msgid "new marker" +msgstr "Eemalda kõik märgised" + +#: ../src/gui/application/RosegardenGUIApp.cpp:5950 +#, fuzzy +msgid "no description" +msgstr "Kirjeldus" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6363 +#, c-format +msgid "Sequencer failed to add audio file %1" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6388 +#, c-format +msgid "Sequencer failed to remove audio file id %1" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6448 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1086 +msgid "Modify Segment label" +msgstr "Segmendi nime muutmine" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6450 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1088 +msgid "Modify Segments label" +msgstr "Segmentide nime muutmine" + +#: ../src/gui/application/RosegardenGUIApp.cpp:6452 +msgid "Relabelling selection..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7539 +#, fuzzy +msgid "Play List" +msgstr "Mängitakse " + +#: ../src/gui/application/RosegardenGUIApp.cpp:7567 +msgid "http://rosegarden.sourceforge.net/tutorial/en/chapter-0.html" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7574 +msgid "http://rosegarden.sourceforge.net/tutorial/bug-guidelines.html" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7650 +msgid "Queueing MIDI panic events for tranmission..." +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7708 +msgid "Are you sure you want to save this as your default studio?" +msgstr "Oled sa kindel, et soovid salvestada selle oma vaikestuudioks?" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7713 +msgid "Saving current document as default studio..." +msgstr "Aktiivse dokumendi salvestamine vaikestuudioks..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:7738 +msgid "" +"Are you sure you want to import your default studio and lose the current one?" +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7773 +msgid "Import Studio from File" +msgstr "Stuudio import failist" + +#: ../src/gui/application/RosegardenGUIApp.cpp:7807 +msgid "Import Studio" +msgstr "Stuudio import" + +#: ../src/gui/application/RosegardenGUIApp.cpp:8015 +msgid "" +"

                      Newer version available

                      A newer version of Rosegarden may be " +"available.
                      Please consult the Rosegarden website for more information.

                      " +msgstr "" + +#: ../src/gui/application/RosegardenGUIApp.cpp:8016 +#, fuzzy +msgid "Newer version available" +msgstr "Lokaliseeritud (kui võimalik)" + +#: ../src/gui/application/RosegardenApplication.cpp:104 +#, c-format +msgid "Failed to load soundfont %1" +msgstr "" + +#: ../src/gui/application/main.cpp:311 +msgid "Rosegarden - A sequencer and musical notation editor" +msgstr "" + +#: ../src/gui/application/main.cpp:315 +msgid "Don't use the sequencer (support editing only)" +msgstr "" + +#: ../src/gui/application/main.cpp:316 +msgid "Don't show the splash screen" +msgstr "" + +#: ../src/gui/application/main.cpp:317 +msgid "Don't automatically run in the background" +msgstr "" + +#: ../src/gui/application/main.cpp:318 +msgid "Attach to a running sequencer process, if found" +msgstr "" + +#: ../src/gui/application/main.cpp:319 +msgid "Ignore installed version - for devs only" +msgstr "" + +#: ../src/gui/application/main.cpp:320 +msgid "file to open" +msgstr "avatav fail" + +#: ../src/gui/application/main.cpp:370 +msgid "Installation contains the wrong version of Rosegarden." +msgstr "Paigaldus sisaldab valet Rosegardeni versiooni." + +#: ../src/gui/application/main.cpp:371 +msgid "" +" The wrong versions of Rosegarden's data files were\n" +" found in the standard KDE installation directories.\n" +" (I am %1, but the installed files are for version %2.)\n" +"\n" +" This may mean one of the following:\n" +"\n" +" 1. This is a new upgrade of Rosegarden, and it has not yet been\n" +" installed. If you compiled it yourself, check that you have\n" +" run \"make install\" and that the procedure completed\n" +" successfully.\n" +"\n" +" 2. The upgrade was installed in a non-standard directory,\n" +" and an old version was found in a standard directory. If so,\n" +" you will need to add the correct directory to your KDEDIRS\n" +" environment variable before you can run it." +msgstr "" + +#: ../src/gui/application/main.cpp:383 ../src/gui/application/main.cpp:401 +msgid "Installation problem" +msgstr "Probleem paigaldusega" + +#: ../src/gui/application/main.cpp:389 +msgid "Rosegarden does not appear to have been installed." +msgstr "Paistab, et Rosegarden pole paigaldatud." + +#: ../src/gui/application/main.cpp:390 +msgid "" +" One or more of Rosegarden's data files could not be\n" +" found in the standard KDE installation directories.\n" +"\n" +" This may mean one of the following:\n" +"\n" +" 1. Rosegarden has not been correctly installed. If you compiled\n" +" it yourself, check that you have run \"make install\" and that\n" +" the procedure completed successfully.\n" +"\n" +" 2. Rosegarden has been installed in a non-standard directory,\n" +" and you need to add this directory to your KDEDIRS environment\n" +" variable before you can run it. This may be the case if you\n" +" installed into $HOME or a local third-party package directory\n" +" like /usr/local or /opt." +msgstr "" + +#: ../src/gui/application/main.cpp:414 +msgid "Rosegarden" +msgstr "Rosegarden" + +#: ../src/gui/application/main.cpp:416 +msgid "" +"Copyright 2000 - 2008 Guillaume Laurent, Chris Cannam, Richard Bown\n" +"Parts copyright 1994 - 2004 Chris Cannam, Andy Green, Richard Bown, " +"Guillaume Laurent\n" +"LilyPond fonts copyright 1997 - 2005 Han-Wen Nienhuys and Jan Nieuwenhuizen" +msgstr "" + +#: ../src/gui/application/main.cpp:428 +msgid "Chord labelling code" +msgstr "" + +#: ../src/gui/application/main.cpp:429 +msgid "" +"LilyPond output\n" +"assorted other patches\n" +"i18n-ization" +msgstr "" + +#: ../src/gui/application/main.cpp:430 +msgid "" +"UI improvements\n" +"bug fixes" +msgstr "" + +#: ../src/gui/application/main.cpp:431 +msgid "" +"Segment colours\n" +"Other UI and bug fixes" +msgstr "" + +#: ../src/gui/application/main.cpp:432 +msgid "" +"Russian translation\n" +"i18n-ization" +msgstr "" + +#: ../src/gui/application/main.cpp:433 ../src/gui/application/main.cpp:434 +msgid "German translation" +msgstr "" + +#: ../src/gui/application/main.cpp:435 +msgid "Welsh translation" +msgstr "" + +#: ../src/gui/application/main.cpp:436 +#, fuzzy +msgid "French translation" +msgstr "Sünkroniseerimine" + +#: ../src/gui/application/main.cpp:437 +#, fuzzy +msgid "" +"French translation\n" +"Bug fixes" +msgstr "Sünkroniseerimine" + +#: ../src/gui/application/main.cpp:438 ../src/gui/application/main.cpp:439 +msgid "Italian translation" +msgstr "" + +#: ../src/gui/application/main.cpp:440 ../src/gui/application/main.cpp:441 +msgid "Swedish translation" +msgstr "" + +#: ../src/gui/application/main.cpp:442 +msgid "Estonian translation" +msgstr "" + +#: ../src/gui/application/main.cpp:443 ../src/gui/application/main.cpp:444 +#, fuzzy +msgid "Dutch translation" +msgstr "Kestvus" + +#: ../src/gui/application/main.cpp:445 +msgid "HSpinBox class" +msgstr "" + +#: ../src/gui/application/main.cpp:446 +msgid "Transposition by interval" +msgstr "" + +#: ../src/gui/application/main.cpp:447 +msgid "Original designs for rotary controllers" +msgstr "" + +#: ../src/gui/application/main.cpp:448 +#, fuzzy +msgid "Japanese translation" +msgstr "Sünkroniseerimine" + +#: ../src/gui/application/main.cpp:449 +msgid "" +"Auto-scroll deceleration\n" +"Rests outside staves and other bug fixes" +msgstr "" + +#: ../src/gui/application/main.cpp:450 +#, fuzzy +msgid "Simplified Chinese translation" +msgstr "Sünkroniseerimine" + +#: ../src/gui/application/main.cpp:451 +msgid "LIRC infrared remote-controller support" +msgstr "" + +#: ../src/gui/application/main.cpp:452 +msgid "MTC slave timing implementation" +msgstr "" + +#: ../src/gui/application/main.cpp:453 +#, fuzzy +msgid "Czech translation" +msgstr "Sünkroniseerimine" + +#: ../src/gui/application/main.cpp:454 +msgid "SCons/bksys building system" +msgstr "" + +#: ../src/gui/application/main.cpp:455 +msgid "icons, icons, icons" +msgstr "" + +#: ../src/gui/application/main.cpp:456 ../src/gui/application/main.cpp:457 +#: ../src/gui/application/main.cpp:458 ../src/gui/application/main.cpp:459 +#, fuzzy +msgid "Spanish translation" +msgstr "Sünkroniseerimine" + +#: ../src/gui/application/main.cpp:460 ../src/gui/application/main.cpp:461 +#, fuzzy +msgid "Catalan translation" +msgstr "Sünkroniseerimine" + +#: ../src/gui/application/main.cpp:462 +msgid "" +"1.2.3 splash screen photo\n" +"Gave birth to D. Michael McIntyre, bought him a good flute once\n" +"upon a time, and always humored him when he came over to play her\n" +"some new instrument, even though she really hated his playing.\n" +"Born October 19, 1951, died September 21, 2007, R. I. P." +msgstr "" + +#: ../src/gui/application/main.cpp:463 +msgid "Initial guitar chord editing code" +msgstr "" + +#: ../src/gui/application/main.cpp:464 +#, fuzzy +msgid "Polish translation" +msgstr "Sünkroniseerimine" + +#: ../src/gui/application/main.cpp:465 +#, fuzzy +msgid "Basque translation" +msgstr "Sünkroniseerimine" + +#: ../src/gui/application/main.cpp:466 +msgid "Klearlook theme" +msgstr "" + +#: ../src/_translatorinfo.cpp:1 ../src/gui/application/main.cpp:468 +msgid "" +"_: NAME OF TRANSLATORS\n" +"Your names" +msgstr "Hasso Tepper" + +#: ../src/_translatorinfo.cpp:3 ../src/gui/application/main.cpp:468 +msgid "" +"_: EMAIL OF TRANSLATORS\n" +"Your emails" +msgstr "hasso@linux.ee" + +#: ../src/gui/application/main.cpp:719 +msgid "Welcome!" +msgstr "" + +#: ../src/gui/application/main.cpp:731 +msgid "" +"

                      Welcome to Rosegarden!

                      Welcome to the Rosegarden audio and MIDI " +"sequencer and musical notation editor.

                      • If you have not already " +"done so, you may wish to install some DSSI synth plugins, or a separate " +"synth program such as QSynth. Rosegarden does not synthesize sounds from " +"MIDI on its own, so without these you will hear nothing.

                      • Rosegarden uses the JACK audio server for recording and " +"playback of audio, and for playback from DSSI synth plugins. These features " +"will only be available if the JACK server is running.

                      • Rosegarden has comprehensive documentation: see the Help menu " +"for the handbook, tutorials, and other information!

                      Rosegarden " +"was brought to you by a team of volunteers across the world. To learn more, " +"go to http://www.rosegardenmusic." +"com/.

                      " +msgstr "" + +#: ../src/gui/application/RosegardenGUIView.cpp:257 +msgid "No non-audio segments in composition" +msgstr "Kompostsioonis pole mitte-audio segmente" + +#: ../src/gui/application/RosegardenGUIView.cpp:333 +msgid "Selection must contain only audio or non-audio segments" +msgstr "" +"Valik peab sisldama kas ainult audiosegmente või ainult mitte audiosegmente." + +#: ../src/gui/application/RosegardenGUIView.cpp:431 +#: ../src/gui/application/RosegardenGUIView.cpp:576 +#: ../src/gui/application/RosegardenGUIView.cpp:612 +#: ../src/gui/application/RosegardenGUIView.cpp:776 +msgid "No non-audio segments selected" +msgstr "Ühtegi mitte-audio segmenti pole valitud" + +#: ../src/gui/application/RosegardenGUIView.cpp:851 +msgid "" +"You've not yet defined an audio editor for Rosegarden to use.\n" +"See Settings -> Configure Rosegarden -> Audio." +msgstr "" + +#: ../src/gui/application/RosegardenGUIView.cpp:1559 +#: ../src/gui/application/RosegardenGUIView.cpp:1564 +msgid "Can't add dropped file. " +msgstr "Kukutatud faili pole võimalik lisada." + +#: ../src/gui/seqmanager/SequenceManager.cpp:1014 +#: ../src/gui/seqmanager/SequenceManager.cpp:1150 +msgid "" +"The JACK Audio subsystem has failed or it has stopped Rosegarden from " +"processing audio.\n" +"Please restart Rosegarden to continue working with audio.\n" +"Quitting other running applications may improve Rosegarden's performance." +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1020 +#: ../src/gui/seqmanager/SequenceManager.cpp:1156 +msgid "" +"The JACK Audio subsystem has stopped Rosegarden from processing audio, " +"probably because of a processing overload.\n" +"An attempt to restart the audio service has been made, but some problems may " +"remain.\n" +"Quitting other running applications may improve Rosegarden's performance." +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1031 +msgid "" +"Run out of processor power for real-time audio processing. Cannot continue." +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1057 +msgid "" +"A serious error has occurred in the ALSA MIDI subsystem. It may not be " +"possible to continue sequencing. Please check console output for more " +"information." +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1078 +msgid "JACK Audio subsystem is losing sample frames." +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1096 +msgid "" +"Failed to read audio data from disc in time to service the audio subsystem." +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1100 +msgid "" +"Failed to write audio data to disc fast enough to service the audio " +"subsystem." +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1104 +msgid "The audio mixing subsystem is failing to keep up." +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1108 +msgid "The audio subsystem is failing to keep up." +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1112 +msgid "Unknown sequencer failure mode!" +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1170 +msgid "" +"

                      System timer resolution is too low

                      Rosegarden was unable to find " +"a high-resolution timing source for MIDI performance.

                      This may mean " +"you are using a Linux system with the kernel timer resolution set too low. " +"Please contact your Linux distributor for more information.

                      Some Linux " +"distributors already provide low latency kernels, see http://rosegarden.wiki." +"sourceforge.net/Low+latency+kernels for instructions.

                      " +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1188 +msgid "" +"

                      System timer resolution is too low

                      Rosegarden was unable to find " +"a high-resolution timing source for MIDI performance.

                      You may be able " +"to solve this problem by loading the RTC timer kernel module. To do this, " +"try running sudo modprobe snd-rtctimer in a terminal window and then " +"restarting Rosegarden.

                      Alternatively, check whether your Linux " +"distributor provides a multimedia-optimized kernel. See http://rosegarden.wiki." +"sourceforge.net/Low+latency+kernels for notes about this.

                      " +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1312 +msgid "" +"

                      Both MIDI and Audio subsystems have failed to initialize.

                      You may " +"continue without the sequencer, but we suggest closing Rosegarden, running " +"\"alsaconf\" as root, and starting Rosegarden again. If you wish to run " +"with no sequencer by design, then use \"rosegarden --nosequencer\" to avoid " +"seeing this error in the future.

                      " +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1314 +msgid "" +"

                      The MIDI subsystem has failed to initialize.

                      You may continue " +"without the sequencer, but we suggest closing Rosegarden, running \"modprobe " +"snd-seq-midi\" as root, and starting Rosegarden again. If you wish to run " +"with no sequencer by design, then use \"rosegarden --nosequencer\" to avoid " +"seeing this error in the future.

                      " +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1316 +msgid "" +"

                      The Rosegarden sequencer module version does not match the GUI module " +"version.

                      You have probably mixed up files from two different versions " +"of Rosegarden. Please check your installation.

                      " +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1322 +#, fuzzy, c-format +msgid "

                      Sequencer startup failed

                      %1" +msgstr "Sekventseri staatus:" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1330 +msgid "" +"

                      Failed to connect to JACK audio server.

                      Rosegarden could not " +"connect to the JACK audio server. This probably means the JACK server is " +"not running.

                      If you want to be able to play or record audio files or " +"use plugins, you should exit Rosegarden and start the JACK server before " +"running Rosegarden again.

                      " +msgstr "" + +#: ../src/gui/seqmanager/SequenceManager.cpp:1331 +msgid "Failed to connect to JACK" +msgstr "" + +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:46 +msgid "Modify MIDI filters..." +msgstr "MIDI filtrite muutmine..." + +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:58 +msgid "THRU events to ignore" +msgstr "Ignoreeritavad THRU sündmused" + +#: ../src/gui/editors/eventlist/EventView.cpp:131 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:60 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:96 +msgid "Note" +msgstr "Noot" + +#: ../src/gui/editors/eventlist/EventView.cpp:132 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:61 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:97 +msgid "Program Change" +msgstr "Programmi muutus" + +#: ../src/gui/editors/eventlist/EventView.cpp:136 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:62 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:98 +msgid "Key Pressure" +msgstr "Klahvivajutus" + +#: ../src/gui/editors/eventlist/EventView.cpp:137 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:63 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:99 +msgid "Channel Pressure" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:134 +#: ../src/gui/general/EditView.cpp:899 +#: ../src/gui/rulers/ControllerEventsRuler.cpp:198 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:64 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:100 +msgid "Pitch Bend" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:133 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:65 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:101 +msgid "Controller" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:135 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:66 +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:102 +msgid "System Exclusive" +msgstr "" + +#: ../src/gui/seqmanager/MidiFilterDialog.cpp:94 +msgid "RECORD events to ignore" +msgstr "Ignoreeritavad RECORD sündmused" + +#: ../src/gui/widgets/TimeWidget.cpp:101 +msgid "Note:" +msgstr "Noot:" + +#: ../src/gui/widgets/TimeWidget.cpp:108 ../src/gui/widgets/TimeWidget.cpp:145 +msgid "" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:151 +msgid "Units:" +msgstr "Ühikud:" + +#: ../src/gui/widgets/TimeWidget.cpp:173 +msgid "Time:" +msgstr "Aeg:" + +#: ../src/gui/widgets/TimeWidget.cpp:184 +msgid "units" +msgstr "ühikut" + +#: ../src/gui/widgets/TimeWidget.cpp:193 +msgid "Measures:" +msgstr "Taktid:" + +#: ../src/gui/widgets/TimeWidget.cpp:193 +msgid "Measure:" +msgstr "Takt:" + +#: ../src/gui/widgets/TimeWidget.cpp:212 +msgid "beats:" +msgstr "löögid:" + +#: ../src/gui/widgets/TimeWidget.cpp:212 +msgid "beat:" +msgstr "löök:" + +#: ../src/gui/widgets/TimeWidget.cpp:230 +msgid "%1:" +msgstr "%1:" + +#: ../src/gui/widgets/TimeWidget.cpp:254 +msgid "Seconds:" +msgstr "Sekundit:" + +#: ../src/gui/widgets/TimeWidget.cpp:273 +msgid "msec:" +msgstr "msek:" + +#: ../src/gui/widgets/TimeWidget.cpp:407 ../src/gui/widgets/TimeWidget.cpp:531 +msgid "(%1/%2 time)" +msgstr "(%1/%2 aeg)" + +#: ../src/gui/widgets/TimeWidget.cpp:452 +msgid "(starting %1.%2 qpm, %2.%3 bpm)" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:458 +msgid "(starting %1.%2 bpm)" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:464 +msgid "(%1.%2 qpm, %2.%3 bpm)" +msgstr "" + +#: ../src/gui/widgets/TimeWidget.cpp:470 +#, fuzzy +msgid "(%1.%2 bpm)" +msgstr "%1.%2 s," + +#: ../src/gui/editors/notation/TrackHeader.cpp:239 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:60 +msgid "C" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:241 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:61 +#, fuzzy +msgid "D" +msgstr "I" + +#: ../src/gui/editors/notation/TrackHeader.cpp:243 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:62 +msgid "E" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:244 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:63 +msgid "F" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:246 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:64 +msgid "G" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:248 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:65 +#, fuzzy +msgid "A" +msgstr "A4" + +#: ../src/gui/editors/notation/TrackHeader.cpp:250 +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:66 +msgid "B" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:70 +msgid "-2" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:71 +msgid "-1" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:72 +msgid "0" +msgstr "0" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:73 +#, fuzzy +msgid "1" +msgstr "%1" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:74 +msgid "2" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:75 +msgid "3" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:76 +#, fuzzy +msgid "4" +msgstr "A4" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:77 +msgid "5" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:78 +msgid "6" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:79 +msgid "7" +msgstr "" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:83 +#, fuzzy +msgid "double flat" +msgstr "topelttäis" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:84 +#, fuzzy +msgid "flat" +msgstr "Bemoll" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:85 +#, fuzzy +msgid "natural" +msgstr "Üldine" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:86 +#, fuzzy +msgid "sharp" +msgstr "Diees" + +#: ../src/gui/widgets/DiatonicPitchChooser.cpp:87 +#, fuzzy +msgid "double sharp" +msgstr "topelttäis" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:234 +#, fuzzy, c-format +msgid "In %1" +msgstr "V&õta tagasi %1" + +#: ../src/gui/studio/AudioMixerWindow.cpp:587 +#: ../src/gui/widgets/AudioRouteMenu.cpp:236 +#: ../src/gui/widgets/AudioRouteMenu.cpp:259 +#, fuzzy +msgid "Master" +msgstr "Maatriks" + +#: ../src/gui/studio/AudioMixerWindow.cpp:528 +#: ../src/gui/widgets/AudioRouteMenu.cpp:238 +#: ../src/gui/widgets/AudioRouteMenu.cpp:261 +#, c-format +msgid "Sub %1" +msgstr "" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:244 +#, fuzzy +msgid "In %1 R" +msgstr "[ %1 ]" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:245 +#, fuzzy +msgid "In %1 L" +msgstr "[ %1 ]" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:247 +msgid "Master R" +msgstr "" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:248 +msgid "Master L" +msgstr "" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:250 +msgid "Sub %1 R" +msgstr "" + +#: ../src/gui/widgets/AudioRouteMenu.cpp:251 +msgid "Sub %1 L" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:391 +#: ../src/gui/studio/AudioMixerWindow.cpp:522 +#: ../src/gui/widgets/AudioFaderBox.cpp:82 +msgid "Audio plugin button" +msgstr "" + +#: ../src/gui/editors/parameters/AudioInstrumentParameterPanel.cpp:129 +#: ../src/gui/editors/parameters/AudioInstrumentParameterPanel.cpp:357 +#: ../src/gui/widgets/AudioFaderBox.cpp:91 +#, fuzzy +msgid "" +msgstr "" + +#: ../src/gui/widgets/AudioFaderBox.cpp:93 +#, fuzzy +msgid "Synth plugin button" +msgstr "Näita &annotatsioone" + +#: ../src/gui/widgets/AudioFaderBox.cpp:153 +msgid "Set the audio pan position in the stereo field" +msgstr "" + +#: ../src/gui/widgets/AudioFaderBox.cpp:155 +#, fuzzy +msgid "Open synth plugin's native editor" +msgstr "Ava maatri&ksredaktoris" + +#: ../src/gui/widgets/AudioFaderBox.cpp:157 +#, fuzzy +msgid "Mono or Stereo Instrument" +msgstr "Metronoomi instrument" + +#: ../src/gui/widgets/AudioFaderBox.cpp:159 +#, fuzzy +msgid "Record level" +msgstr "Salvestavad seadmed" + +#: ../src/gui/widgets/AudioFaderBox.cpp:161 +#, fuzzy +msgid "Playback level" +msgstr "Mahamängivad seadmed" + +#: ../src/gui/studio/AudioMixerWindow.cpp:345 +#: ../src/gui/studio/AudioMixerWindow.cpp:347 +#: ../src/gui/studio/AudioMixerWindow.cpp:503 +#: ../src/gui/studio/AudioMixerWindow.cpp:505 +#: ../src/gui/widgets/AudioFaderBox.cpp:163 +#, fuzzy +msgid "Audio level" +msgstr "Lisa audiofail" + +#: ../src/gui/widgets/AudioFaderBox.cpp:170 +#, fuzzy +msgid "In:" +msgstr "Taktis:" + +#: ../src/gui/widgets/AudioFaderBox.cpp:173 +msgid "Out:" +msgstr "" + +#: ../src/gui/widgets/ProgressDialog.cpp:48 +#: ../src/gui/widgets/ProgressDialog.cpp:53 +#: ../src/gui/widgets/ProgressDialog.cpp:76 +msgid "Processing..." +msgstr "Töötlemine..." + +#: ../src/gui/configuration/ColourConfigurationPage.h:60 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:130 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:346 +#: ../src/gui/widgets/ColourTable.cpp:52 +msgid "Color" +msgstr "Värv" + +#: ../src/gui/widgets/ColourTable.cpp:68 +msgid "Modify Color Name" +msgstr "" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:129 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:983 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:882 +#: ../src/gui/widgets/ColourTable.cpp:68 +msgid "Enter new name" +msgstr "Sisesta uus nimi" + +#: ../src/gui/widgets/ColourTable.cpp:107 +msgid "Default Color" +msgstr "Vaikevärv" + +#: ../src/gui/widgets/Rotary.cpp:108 +msgid "" +"Click and drag up and down or left and right to modify.\n" +"Double click to edit value directly." +msgstr "" + +#: ../src/gui/widgets/Rotary.cpp:433 +#, fuzzy +msgid "Select a new value" +msgstr "Kustuta see omadus" + +#: ../src/gui/widgets/Rotary.cpp:434 +#, fuzzy +msgid "Enter a new value" +msgstr "Sisesta uus nimi" + +#: ../src/gui/widgets/QuantizeParameters.cpp:80 +msgid "Quantizer" +msgstr "Kvantimine" + +#: ../src/gui/widgets/QuantizeParameters.cpp:86 +msgid "Quantizer type:" +msgstr "Kvantimise tüüp:" + +#: ../src/gui/widgets/QuantizeParameters.cpp:88 +msgid "Grid quantizer" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:89 +#, fuzzy +msgid "Legato quantizer" +msgstr "Kvantimine" + +#: ../src/gui/widgets/QuantizeParameters.cpp:90 +msgid "Heuristic notation quantizer" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:94 +msgid "Quantize for notation only (leave performance unchanged)" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:104 +msgid "Notation parameters" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:109 +#: ../src/gui/widgets/QuantizeParameters.cpp:150 +msgid "Base grid unit:" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:114 +msgid "Complexity:" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:118 +msgid "Very high" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:119 +msgid "High" +msgstr "Kõrge" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:224 +#: ../src/gui/widgets/QuantizeParameters.cpp:120 +msgid "Normal" +msgstr "Normaalne" + +#: ../src/gui/widgets/QuantizeParameters.cpp:121 +msgid "Low" +msgstr "Madal" + +#: ../src/gui/widgets/QuantizeParameters.cpp:122 +msgid "Very low" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:125 +msgid "Tuplet level:" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:129 +msgid "2-in-the-time-of-3" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4241 +#: ../src/gui/widgets/QuantizeParameters.cpp:130 +msgid "Triplet" +msgstr "Triool" + +#: ../src/gui/widgets/QuantizeParameters.cpp:138 +msgid "Any" +msgstr "Suvaline" + +#: ../src/gui/widgets/QuantizeParameters.cpp:141 +msgid "Permit counterpoint" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:145 +msgid "Grid parameters" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:154 +msgid "Swing:" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:159 +msgid "Iterative amount:" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:165 +msgid "Quantize durations as well as start times" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:169 +msgid "After quantization" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:183 +msgid "Show advanced options" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:192 +msgid "Re-beam" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:194 +msgid "Add articulations (staccato, tenuto, slurs)" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:195 +msgid "Tie notes at barlines etc" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:196 +msgid "Split-and-tie overlapping chords" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:307 +#, fuzzy +msgid "Full quantize" +msgstr " Kvantimine: " + +#: ../src/gui/widgets/QuantizeParameters.cpp:450 +msgid "Show Advanced Options" +msgstr "" + +#: ../src/gui/widgets/QuantizeParameters.cpp:454 +msgid "Hide Advanced Options" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:257 +#: ../src/gui/configuration/MatrixConfigurationPage.h:56 +#: ../src/gui/configuration/MatrixConfigurationPage.h:57 +#: ../src/gui/editors/matrix/MatrixView.cpp:2709 +msgid "Matrix" +msgstr "Maatriks" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:64 +msgid "Printable headers" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:92 +#, fuzzy +msgid "Dedication" +msgstr "Suund" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:96 +#: ../src/gui/editors/segment/PlayListView.cpp:35 +#, fuzzy +msgid "Title" +msgstr "Triool" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:100 +#, fuzzy +msgid "Subtitle" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:104 +#, fuzzy +msgid "Subsubtitle" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:108 +#, fuzzy +msgid "Poet" +msgstr "paus" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:116 +#, fuzzy +msgid "Composer" +msgstr "Värv" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:120 +#, fuzzy +msgid "Meter" +msgstr "Maatriks" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:124 +#, fuzzy +msgid "Arranger" +msgstr "Triool" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:128 +#, fuzzy +msgid "Piece" +msgstr "Helikõrgus" + +#: ../data/fonts/mappings/fonts.cpp:26 +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:132 +msgid "Opus" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:136 +#, fuzzy +msgid "Copyright" +msgstr "Autoriõigus:" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:140 +#, fuzzy +msgid "Tagline" +msgstr "Triool" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:155 +#, fuzzy +msgid "The composition comes here." +msgstr "Kompositsiooni pikkuse muutmine" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:172 +msgid "Non-printable headers" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:213 +msgid "Add New Property" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:217 +msgid "Delete Property" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:236 +msgid "{new property %1}" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:236 +msgid "{new property}" +msgstr "" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:243 +msgid "{undefined}" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:87 +#, fuzzy +msgid "Double-click opens segment in" +msgstr "Vaikeredaktor (topeltklõpsu jaoks segmendil)" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:91 +#, fuzzy +msgid "Notation editor" +msgstr "Audiofaili mängimine" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:92 +#, fuzzy +msgid "Matrix editor" +msgstr "Ava maatri&ksredaktoris" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:93 +#, fuzzy +msgid "Event List editor" +msgstr "Ava sündmuste nim&ekirja redaktoris" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:99 +msgid "Number of count-in measures when recording" +msgstr "Sissejuhatavate taktide arv salvestamisel" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:109 +#, fuzzy +msgid "Auto-save interval" +msgstr "Automaatse salvestamise intervall (sekundites)" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:112 +msgid "Every 30 seconds" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:113 +msgid "Every minute" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:114 +msgid "Every five minutes" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:115 +msgid "Every half an hour" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:116 +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:277 +#: ../src/gui/configuration/NotationConfigurationPage.cpp:157 +msgid "Never" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:140 +#, fuzzy +msgid "Use JACK transport" +msgstr "JACK transpordi režiim" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:173 +msgid "Unknown" +msgstr "Tundmatu" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:179 +msgid "No MIDI, audio OK" +msgstr "MIDI puudub, audio OK" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:182 +msgid "MIDI OK, no audio" +msgstr "MIDI OK, audio puudub" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:185 +msgid "MIDI OK, audio OK" +msgstr "MIDI OK, audio OK" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:188 +msgid "No driver" +msgstr "Draiver puudub" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:195 +#, fuzzy +msgid "Details..." +msgstr "Kustuta rajad..." + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:204 +#, fuzzy +msgid "Behavior" +msgstr "Käitumine" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:219 +msgid "Side-bar parameter box layout" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:223 +msgid "Vertically stacked" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:225 +msgid "Tabbed" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:233 +msgid "Note name style" +msgstr "Noodi nimede stiil" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:237 +msgid "Always use US names (e.g. quarter, 8th)" +msgstr "Kasutatakse alati ameerika nimesid (so. quarter, 8th)" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:238 +#, fuzzy +msgid "Localized (where available)" +msgstr "Lokaliseeritud (kui võimalik)" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:252 +msgid "Show textured background on" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:254 +msgid "Main window" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:275 +msgid "Use bundled Klearlook theme" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:278 +msgid "When not running under KDE" +msgstr "" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:279 +#: ../src/gui/configuration/NotationConfigurationPage.cpp:159 +#, fuzzy +msgid "Always" +msgstr "Kõik failid" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:287 +msgid "Presentation" +msgstr "Esitlus" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:423 +msgid "" +"Changes to the textured background in the main window will not take effect " +"until you restart Rosegarden." +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:168 +#: ../src/gui/configuration/GeneralConfigurationPage.h:78 +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:207 +#: ../src/gui/configuration/MatrixConfigurationPage.cpp:59 +msgid "General" +msgstr "Üldine" + +#: ../src/gui/configuration/GeneralConfigurationPage.h:79 +msgid "General Configuration" +msgstr "Üldised seadistused" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:92 +msgid "Base octave number for MIDI pitch display" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:107 +msgid "Always use default studio when loading files" +msgstr "Failide laadimisel kasutatakse alati vaikestuudiot" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:119 +msgid "Send all MIDI Controllers at start of each playback" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:121 +msgid "" +"Rosegarden can send all MIDI Controllers (Pan, Reverb etc) to all MIDI " +"devices every\n" +"time you hit play if you so wish. Please note that this option will usually " +"incur a\n" +"delay at the start of playback due to the amount of data being transmitted." +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:138 +#, fuzzy +msgid "Sequencer timing source" +msgstr "Sekventser lõpetas töö" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:163 +msgid "Load SoundFont to SoundBlaster card at startup" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:164 +msgid "" +"Check this box to enable soundfont loading on EMU10K-based cards when " +"Rosegarden is launched" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:173 +msgid "Path to 'asfxload' or 'sfxload' command" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:180 +msgid "SoundFont" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:223 +#, fuzzy +msgid "MIDI Clock and System messages" +msgstr "MIDI sünkro ja süsteemsete teadete saatmine" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:229 +#, fuzzy +msgid "Send MIDI Clock, Start and Stop" +msgstr "MIDI sünkro ja süsteemsete teadete saatmine" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:230 +msgid "Accept Start, Stop and Continue" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:241 +#, fuzzy +msgid "MIDI Machine Control mode" +msgstr "A&udiosegmentide manageerimine" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:248 +#, fuzzy +msgid "MMC Master" +msgstr "Maatriks" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:249 +msgid "MMC Slave" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:260 +msgid "MIDI Time Code mode" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:267 +#, fuzzy +msgid "MTC Master" +msgstr "Maatriks" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:268 +msgid "MTC Slave" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:281 +msgid "Automatically connect sync output to all devices in use" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:292 +#, fuzzy +msgid "MIDI Sync" +msgstr "MIDI latents" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:308 +msgid "sfxload path" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.cpp:315 +msgid "Soundfont path" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:67 +msgid "%1 minutes %2.%3%4 seconds (%5 units, %6 measures)" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:133 +msgid "Filename:" +msgstr "Failinimi:" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:136 +msgid "Formal duration (to end marker):" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:141 +#, fuzzy +msgid "Playing duration:" +msgstr "Audiofaili mängimine" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:146 +#, fuzzy +msgid "Tracks:" +msgstr "&Rajad" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:147 +msgid "%1 used, %2 total" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:152 +msgid "Segments:" +msgstr "Segmente:" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:153 +msgid "%1 MIDI, %2 audio, %3 total" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:161 +msgid "Statistics" +msgstr "Statistika" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:170 +#: ../src/gui/editors/parameters/InstrumentParameterBox.cpp:155 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:92 +#, fuzzy +msgid "Track" +msgstr "&Rajad" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:171 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:125 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:90 +msgid "Label" +msgstr "Nimi" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:172 +#, fuzzy +msgid "Time" +msgstr "Aeg:" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:174 +#, fuzzy +msgid "Events" +msgstr "S&ündmus" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:175 +msgid "Polyphony" +msgstr "" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:176 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:126 +msgid "Repeat" +msgstr "Kordus" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:178 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:128 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:305 +#: ../src/gui/general/EditView.cpp:1488 +msgid "Transpose" +msgstr "Transponeerimine" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:179 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:129 +msgid "Delay" +msgstr "Viivitus" + +#: ../src/gui/configuration/AudioConfigurationPage.h:61 +#: ../src/gui/configuration/AudioPropertiesPage.h:58 +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:204 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:523 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:524 +msgid "Audio" +msgstr "Audio" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:204 +#: ../src/gui/configuration/MIDIConfigurationPage.h:62 +#, fuzzy +msgid "MIDI" +msgstr "II" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:317 +#, fuzzy +msgid "Segment Summary" +msgstr "Segmendi parameetrid" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:63 +msgid "Audio file path:" +msgstr "Audiofailide asukoht:" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:137 +#: ../src/gui/configuration/AudioPropertiesPage.cpp:68 +msgid "Choose..." +msgstr "Vali..." + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:73 +msgid "Disk space remaining:" +msgstr "Vaba kettaruumi:" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:78 +msgid "Equivalent minutes of 16-bit stereo:" +msgstr "16 bitist stereo audiot minutites:" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:90 +msgid "Modify audio path" +msgstr "Audiofailide otsingutee" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:113 +msgid "%1 out of %2 (%3% used)" +msgstr "" + +#: ../src/gui/configuration/AudioPropertiesPage.cpp:144 +msgid "minutes at" +msgstr "" + +#: ../src/gui/configuration/MIDIConfigurationPage.h:63 +#, fuzzy +msgid "MIDI Settings" +msgstr "Värviseadistused" + +#: ../src/gui/configuration/AudioConfigurationPage.h:62 +#: ../src/gui/configuration/AudioPropertiesPage.h:59 +msgid "Audio Settings" +msgstr "Audio seadistused" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:87 +msgid "Default layout mode" +msgstr "Vaikimisi paigutuse režiim" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:91 +msgid "Linear layout" +msgstr "Lineaarne paigutus" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:92 +msgid "Continuous page layout" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:93 +msgid "Multiple page layout" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:101 +msgid "Default spacing" +msgstr "Vaikesamm" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:125 +#, fuzzy +msgid "Default duration factor" +msgstr "Kestvus " + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:141 +msgid "Full" +msgstr "Täis" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:152 +msgid "Show track headers (linear layout only)" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:158 +msgid "When needed" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:166 +msgid "" +"\"Always\" and \"Never\" mean what they usually mean\n" +"\"When needed\" means \"when staves are too many to all fit in the current " +"window\"" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:178 +msgid "Show non-notation events as question marks" +msgstr "Mitte-noodikirja sündmused küsimärkidena" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:188 +msgid "Show notation-quantized notes in a different color" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:198 +msgid "Show \"invisible\" events in grey" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:208 +msgid "Show notes outside suggested playable range in red" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:218 +msgid "Highlight superimposed notes with a halo effect" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:231 +msgid "When recording MIDI, split-and-tie long notes at barlines" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:242 +msgid "Layout" +msgstr "Paigutus" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:255 +msgid "Default note style for new notes" +msgstr "Uute nootide vaikestiil" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:287 +msgid "When inserting notes..." +msgstr "Nootide lisamisel..." + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:294 +msgid "Split notes into ties to make durations match" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:295 +msgid "Ignore existing durations" +msgstr "Ignoreeritakse olemasolevaid pikkuseid" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:305 +msgid "Auto-beam on insert when appropriate" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:317 +#: ../src/gui/editors/notation/NotationEraser.cpp:54 +msgid "Collapse rests after erase" +msgstr "Pärast kustutamist tõmmatakse pausid kokku" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:328 +msgid "Default paste type" +msgstr "Asetamise tüüp vaikimisi" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:350 +msgid "Editing" +msgstr "Redigeerimine" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:362 +#, fuzzy +msgid "Accidentals in one octave..." +msgstr "Juhuslike märkide tööriistriba" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:364 +msgid "Affect only that octave" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:365 +#, fuzzy +msgid "Require cautionaries in other octaves" +msgstr "Teised tempo muudatused puuduvad." + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:366 +msgid "Affect all subsequent octaves" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:374 +#, fuzzy +msgid "Accidentals in one bar..." +msgstr "Juhuslike märkide tööriistriba" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:376 +msgid "Affect only that bar" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:377 +msgid "Require cautionary resets in following bar" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:378 +msgid "Require explicit resets in following bar" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:386 +msgid "Key signature cancellation style" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:388 +msgid "Cancel only when entering C major or A minor" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:389 +msgid "Cancel whenever removing sharps or flats" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:390 +msgid "Cancel always" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:400 +#, fuzzy +msgid "Accidentals" +msgstr "&Juhuslikud märgid" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:441 +msgid "Notation font" +msgstr "Noodikirja font" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:467 +msgid "Origin:" +msgstr "Algupära:" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:471 +msgid "Copyright:" +msgstr "Autoriõigus:" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:475 +msgid "Mapped by:" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:479 +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:81 +msgid "Type:" +msgstr "Tüüp:" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:508 +msgid "Font size for single-staff views" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:516 +msgid "Font size for multi-staff views" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:524 +msgid "Font size for printing (pt)" +msgstr "Fondi suurus trükkimisel (punktides)" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:541 +#, fuzzy +msgid "Text font" +msgstr "Tekst: " + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:549 +msgid "Sans-serif font" +msgstr "" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:664 +#, fuzzy +msgid "%1 (smooth)" +msgstr "%1 (tükeldatud)" + +#: ../src/gui/configuration/NotationConfigurationPage.cpp:667 +msgid "%1 (jaggy)" +msgstr "" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:58 +msgid "JACK latency" +msgstr "JACK latents" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:61 +msgid "" +"Use the \"Fetch JACK latencies\" button to discover the latency values set " +"at\n" +"the sequencer. It's recommended that you use the returned values but it's " +"also\n" +"possible to override them manually using the sliders. Note that if you " +"change\n" +"your JACK server parameters you should always fetch the latency values " +"again.\n" +"The latency values will be stored by Rosegarden for use next time." +msgstr "" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:65 +msgid "JACK playback latency (in ms)" +msgstr "JACK'i mahamängimise latents (millisekundites)" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:66 +msgid "JACK record latency (in ms)" +msgstr "JACK'i salvestamise latents (millisekundites)" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:68 +msgid "Fetch JACK latencies" +msgstr "" + +#: ../src/gui/configuration/LatencyConfigurationPage.cpp:121 +msgid "JACK Latency" +msgstr "JACK'i latents" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:92 +#, fuzzy +msgid "Audio preview scale" +msgstr "Lisa audiofail" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:96 +msgid "Linear - easier to see loud peaks" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:97 +msgid "Meter scaling - easier to see quiet activity" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:105 +#, fuzzy +msgid "Record audio files as" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:107 +msgid "16-bit PCM WAV format (smaller files)" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:108 +msgid "32-bit float WAV format (higher quality)" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:117 +msgid "External audio editor" +msgstr "Väline audiofailide redaktor" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:145 +msgid "Create JACK outputs" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:150 +#, fuzzy +msgid "for individual audio instruments" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:157 +#, fuzzy +msgid "for submasters" +msgstr "Näita &joonlaudu" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:184 +msgid "" +"Rosegarden can start the JACK audio daemon (jackd) for you automatically if " +"it isn't already running when Rosegarden starts.\n" +"\n" +"This is recommended for beginners and those who use Rosegarden as their main " +"audio application, but it might not be to the liking of advanced users.\n" +"\n" +"If you want to start JACK automatically, make sure the command includes a " +"full path where necessary as well as any command-line arguments you want to " +"use.\n" +"\n" +"For example: /usr/local/bin/jackd -d alsa -d hw -r44100 -p 2048 -n 2\n" +"\n" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:196 +msgid "Start JACK when Rosegarden starts" +msgstr "Rosegardeni käivitamisel käivitatakse JACK" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:201 +msgid "JACK command" +msgstr "" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:214 +#, fuzzy +msgid "JACK Startup" +msgstr "Käivitamine" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:224 +#, fuzzy +msgid "External audio editor path" +msgstr "Väline audiofailide redaktor" + +#: ../src/gui/configuration/AudioConfigurationPage.cpp:262 +msgid "External audio editor \"%1\" not found or not executable" +msgstr "" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:70 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:448 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:863 +msgid "Add New Color" +msgstr "Lisa uus värv" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:74 +msgid "Delete Color" +msgstr "Kustuta värv" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:93 +msgid "Color Map" +msgstr "Värvikaart" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:128 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:983 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:882 +msgid "New Color Name" +msgstr "Uue värvi nimi" + +#: ../src/gui/configuration/ColourConfigurationPage.cpp:130 +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:59 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:984 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:883 +#: ../src/gui/studio/DeviceManagerDialog.cpp:115 +#: ../src/gui/studio/DeviceManagerDialog.cpp:174 +msgid "New" +msgstr "Uus" + +#: ../src/gui/configuration/LatencyConfigurationPage.h:62 +msgid "Latency" +msgstr "Latents" + +#: ../src/gui/configuration/LatencyConfigurationPage.h:63 +msgid "Sequencer Latency" +msgstr "Sekventseri latents" + +#: ../src/gui/configuration/ColourConfigurationPage.h:61 +msgid "Color Settings" +msgstr "Värviseadistused" + +#: ../src/gui/studio/MidiDeviceListViewItem.cpp:55 +#: ../src/gui/studio/MidiKeyMapListViewItem.cpp:44 +msgid "Key Mapping" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:97 +msgid "Manage MIDI Banks and Programs" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:128 +msgid "MIDI Device" +msgstr "MIDI seade" + +#: ../src/gui/studio/BankEditorDialog.cpp:130 +#: ../src/gui/studio/BankEditorDialog.cpp:219 +msgid "MSB" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:131 +#: ../src/gui/studio/BankEditorDialog.cpp:218 +msgid "LSB" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:140 +#, fuzzy +msgid "Add Bank" +msgstr "Lisa rajad..." + +#: ../src/gui/studio/BankEditorDialog.cpp:141 +#, fuzzy +msgid "Add Key Mapping" +msgstr "Lisa helisti&ku muutus..." + +#: ../src/gui/studio/BankEditorDialog.cpp:153 +msgid "Add a Bank to the current device" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:157 +msgid "Add a Percussion Key Mapping to the current device" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:161 +msgid "Delete the current Bank or Key Mapping" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:165 +msgid "Delete all Banks and Key Mappings from the current Device" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:167 +#: ../src/gui/studio/DeviceManagerDialog.cpp:117 +#, fuzzy +msgid "Import..." +msgstr "&Impordi" + +#: ../src/gui/studio/BankEditorDialog.cpp:168 +#: ../src/gui/studio/DeviceManagerDialog.cpp:118 +#, fuzzy +msgid "Export..." +msgstr "&Ekspordi" + +#: ../src/gui/studio/BankEditorDialog.cpp:176 +msgid "" +"Import Bank and Program data from a Rosegarden file to the current Device" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:179 +msgid "" +"Export all Device and Bank information to a Rosegarden format interchange " +"file" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:190 +msgid "Copy all Program names from current Bank to clipboard" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:194 +msgid "Paste Program names from clipboard to current Bank" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:216 +msgid "Show Variation list based on " +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1010 +msgid "" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1046 +msgid "" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1048 +msgid "" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1089 +msgid "Really delete this bank?" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1137 +msgid "Really delete this key mapping?" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1187 +msgid "Really delete all banks for " +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1476 +msgid "Import Banks from Device in File" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1623 +#: ../src/gui/studio/DeviceManagerDialog.cpp:770 +msgid "Export Device as..." +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1694 +msgid "" +"There are unsaved changes.\n" +"Do you want to apply the changes before exiting the Bank Editor or discard " +"the changes ?" +msgstr "" + +#: ../src/gui/studio/BankEditorDialog.cpp:1697 +msgid "Unsaved Changes" +msgstr "" + +#: ../src/gui/studio/NameSetEditor.cpp:68 +msgid "Librarian" +msgstr "" + +#: ../src/gui/studio/NameSetEditor.cpp:75 +msgid "Email" +msgstr "E-posti aadress" + +#: ../src/gui/studio/NameSetEditor.cpp:80 +msgid "" +"The librarian maintains the Rosegarden device data for this device.\n" +"If you've made modifications to suit your own device, it might be worth\n" +"liaising with the librarian in order to publish your information for the " +"benefit\n" +"of others." +msgstr "" + +#: ../src/gui/studio/MidiBankListViewItem.cpp:51 +#: ../src/gui/studio/MidiDeviceListViewItem.cpp:48 +#, fuzzy +msgid "Percussion Bank" +msgstr "Löökriistad" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:84 +#: ../src/gui/studio/MidiBankListViewItem.cpp:51 +#: ../src/gui/studio/MidiDeviceListViewItem.cpp:48 +msgid "Bank" +msgstr "Pank" + +#: ../src/gui/studio/ChangeRecordDeviceCommand.h:39 +msgid "Change Record Device" +msgstr "Muuda salvestavat seadet" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:61 +#: ../src/gui/studio/DeviceManagerDialog.cpp:96 +msgid "Manage MIDI Devices" +msgstr "MIDI seadmete haldamine" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:98 +msgid "Play devices" +msgstr "Mahamängivad seadmed" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:76 +#: ../src/gui/studio/DeviceManagerDialog.cpp:106 +#: ../src/gui/studio/DeviceManagerDialog.cpp:165 +msgid "Connection" +msgstr "Ühendus" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:119 +msgid "Banks..." +msgstr "Pangad..." + +#: ../src/gui/studio/DeviceManagerDialog.cpp:120 +#, fuzzy +msgid "Control Events..." +msgstr "Vali..." + +#: ../src/gui/studio/DeviceManagerDialog.cpp:126 +msgid "Create a new Play device" +msgstr "Uue mahamängiva seadme loomine" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:129 +#: ../src/gui/studio/DeviceManagerDialog.cpp:184 +msgid "Delete the selected device" +msgstr "Valitud seadme kustutamine" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:132 +msgid "" +"Import Bank, Program and Controller data from a Rosegarden file to the " +"selected device" +msgstr "" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:135 +msgid "Export Bank and Controller data to a Rosegarden interchange file" +msgstr "" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:138 +msgid "View and edit Banks and Programs for the selected device" +msgstr "" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:141 +msgid "" +"View and edit Control Events for the selected device - these are special " +"Event types that you can define against your device and control through " +"Control Rulers or the Instrument Parameter Box " +msgstr "" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:156 +msgid "Record devices" +msgstr "Salvestavad seadmed" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:164 +msgid "Current" +msgstr "Aktiivne" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:181 +msgid "Create a new Record device" +msgstr "Uue salvestava seadme loomine" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:360 +#: ../src/gui/studio/DeviceEditorDialog.cpp:378 +#: ../src/gui/studio/DeviceManagerDialog.cpp:486 +#: ../src/gui/studio/DeviceManagerDialog.cpp:501 +msgid "New Device" +msgstr "Uus seade" + +#: ../src/gui/studio/DeviceManagerDialog.cpp:703 +msgid "Import from Device in File" +msgstr "Import seadmest failis" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:55 +msgid "Remap Instrument assigments..." +msgstr "" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:62 +msgid "Device or Instrument" +msgstr "Seade või instrument" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:65 +msgid "Remap Tracks by all Instruments on a Device or by single Instrument" +msgstr "" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:74 +msgid "Choose Source and Destination" +msgstr "" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:77 +msgid "From" +msgstr "Kust" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:78 +msgid "To" +msgstr "Kuhu" + +#: ../src/gui/studio/RemapInstrumentDialog.cpp:120 +#: ../src/gui/studio/RemapInstrumentDialog.cpp:121 +msgid "" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:155 +#, fuzzy +msgid "Show Audio &Faders" +msgstr "Näita &joonlaudu" + +#: ../src/gui/studio/AudioMixerWindow.cpp:160 +#, fuzzy +msgid "Show Synth &Faders" +msgstr "Näita &joonlaudu" + +#: ../src/gui/studio/AudioMixerWindow.cpp:165 +#, fuzzy +msgid "Show &Submasters" +msgstr "Näita &joonlaudu" + +#: ../src/gui/studio/AudioMixerWindow.cpp:170 +#, fuzzy +msgid "Show &Plugin Buttons" +msgstr "Näita &annotatsioone" + +#: ../src/gui/studio/AudioMixerWindow.cpp:175 +msgid "Show &Unassigned Faders" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:184 +#, c-format +msgid "" +"_n: 1 Input\n" +"%n Inputs" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:194 +msgid "No Submasters" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:203 +#, fuzzy, c-format +msgid "" +"_n: 1 Submaster\n" +"%n Submasters" +msgstr "JACK audio sisendite arv" + +#: ../src/gui/studio/AudioMixerWindow.cpp:279 +#, fuzzy +msgid "Audio Mixer" +msgstr "Lisa audiofail" + +#: ../src/gui/studio/AudioMixerWindow.cpp:311 +#, fuzzy +msgid "Record input source" +msgstr "Salvestavad seadmed" + +#: ../src/gui/studio/AudioMixerWindow.cpp:322 +msgid "Output destination" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:336 +#: ../src/gui/studio/AudioMixerWindow.cpp:495 +msgid "Pan" +msgstr "Panoraam" + +#: ../src/gui/studio/AudioMixerWindow.cpp:355 +msgid "Mono or stereo" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:364 +#: ../src/gui/studio/AudioMixerWindow.cpp:513 +msgid "Mute" +msgstr "" + +#: ../src/gui/studio/AudioMixerWindow.cpp:373 rc.cpp:408 +#, no-c-format +msgid "Solo" +msgstr "Soolo" + +#: ../src/gui/studio/AudioMixerWindow.cpp:382 +#, fuzzy +msgid "Arm recording" +msgstr "Salvestamine" + +#: ../src/gui/studio/AudioMixerWindow.cpp:400 +#, fuzzy, c-format +msgid "Audio %1" +msgstr "Audio" + +#: ../src/gui/studio/AudioMixerWindow.cpp:404 +#, fuzzy, c-format +msgid "Synth %1" +msgstr "V&õta tagasi %1" + +#: ../src/gui/studio/AudioMixerWindow.cpp:578 +#: ../src/gui/studio/AudioMixerWindow.cpp:580 +msgid "Audio master output level" +msgstr "" + +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:71 +msgid "Manage Synth Plugins" +msgstr "" + +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:78 +#, fuzzy +msgid "Synth plugins" +msgstr "Näita &annotatsioone" + +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:145 +#, fuzzy +msgid "Controls" +msgstr "Vali..." + +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:152 +#, fuzzy +msgid "Editor >>" +msgstr "Redigeerimine" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:66 +#: ../src/gui/studio/MidiProgramsEditor.cpp:169 +msgid "Bank and Program details" +msgstr "" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:67 +#, fuzzy +msgid "Programs" +msgstr "Programm" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2711 +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:88 +#: ../src/gui/studio/MidiProgramsEditor.cpp:93 +msgid "Percussion" +msgstr "Löökriistad" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:99 +msgid "MSB Value" +msgstr "" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:107 +msgid "" +"Selects a MSB controller Bank number (MSB/LSB pairs are always unique for " +"any Device)" +msgstr "" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:111 +msgid "" +"Selects a LSB controller Bank number (MSB/LSB pairs are always unique for " +"any Device)" +msgstr "" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:116 +msgid "LSB Value" +msgstr "" + +#: ../src/gui/studio/MidiProgramsEditor.cpp:254 +#: ../src/gui/studio/MidiProgramsEditor.cpp:541 +#, fuzzy, c-format +msgid "Key Mapping: %1" +msgstr "Lisa helisti&ku muutus..." + +#: ../src/gui/studio/MidiProgramsEditor.cpp:476 +msgid "" +msgstr "" + +#: ../src/gui/studio/MidiKeyMappingEditor.cpp:57 +#: ../src/gui/studio/MidiKeyMappingEditor.cpp:81 +msgid "Key Mapping details" +msgstr "" + +#: ../src/gui/studio/MidiKeyMappingEditor.cpp:58 +#, fuzzy +msgid "Pitches" +msgstr "Helikõrgus" + +#: ../src/gui/studio/MidiMixerWindow.cpp:152 +#, fuzzy +msgid "MIDI Mixer" +msgstr "MIDI seade" + +#: ../src/gui/studio/MidiMixerWindow.cpp:199 +#, fuzzy +msgid "Volume" +msgstr "Väärtus" + +#: ../src/gui/studio/AudioPluginOSCGUIManager.cpp:444 +#, fuzzy +msgid "Rosegarden Plugin" +msgstr "Rosegarden" + +#: ../src/gui/studio/AudioPluginOSCGUIManager.cpp:447 +#, fuzzy, c-format +msgid "Rosegarden: %1" +msgstr "Rosegarden" + +#: ../src/gui/studio/AudioPluginOSCGUIManager.cpp:449 +#, fuzzy +msgid "Rosegarden: %1: %2" +msgstr "Rosegarden" + +#: ../src/gui/studio/AudioPluginOSCGUIManager.cpp:450 +#, fuzzy, c-format +msgid "Plugin slot %1" +msgstr "Plugin" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:92 +msgid "Add Play Device" +msgstr "Lisa mahamängiv seade" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:93 +msgid "Add Record Device" +msgstr "Lisa salvestav seade" + +#: ../src/commands/studio/CreateOrDeleteDeviceCommand.h:68 +#: ../src/gui/studio/DeviceEditorDialog.cpp:94 +msgid "Delete Device" +msgstr "Kustuta seade" + +#: ../src/gui/editors/segment/PlayList.cpp:77 +#: ../src/gui/studio/DeviceEditorDialog.cpp:156 +#: ../src/gui/studio/DeviceEditorDialog.cpp:361 +msgid "Play" +msgstr "Mängi maha" + +#: ../src/commands/segment/SegmentRecordCommand.cpp:37 +#: ../src/gui/studio/DeviceEditorDialog.cpp:156 +#: ../src/gui/studio/DeviceEditorDialog.cpp:379 rc.cpp:394 +#, no-c-format +msgid "Record" +msgstr "Salvesta" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:256 +msgid "Apply pending changes?" +msgstr "Rakendada tehtud muudatused?" + +#: ../src/gui/studio/DeviceEditorDialog.cpp:359 +#: ../src/gui/studio/DeviceEditorDialog.cpp:377 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentEraser.cpp:82 +msgid "Click on a segment to delete it" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSplitter.cpp:166 +msgid "" +"Click on a segment to split it in two; hold Shift to avoid snapping to beat " +"grid" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSplitter.cpp:168 +msgid "Click on a segment to split it in two" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:81 +msgid "Click and drag to select segments" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentMover.cpp:154 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:238 +msgid "Move Segment" +msgstr "Liiguta segmenti" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentMover.cpp:154 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:239 +msgid "Move Segments" +msgstr "Liiguta segmente" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:217 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:169 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:141 +#: ../src/gui/editors/segment/segmentcanvas/SegmentMover.cpp:210 +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:255 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:359 +msgid "Hold Shift to avoid snapping to beat grid" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:485 +msgid "" +"Click and drag to select segments; middle-click and drag to draw an empty " +"segment" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:384 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:502 +msgid "" +"Click and drag to resize a segment; hold Ctrl as well to rescale its contents" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:386 +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:504 +msgid "Click and drag to rescale segment" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:509 +msgid "Click and drag to move segments; hold Ctrl as well to copy them" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:511 +msgid "Click and drag to copy segments" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:515 +msgid "" +"Click and drag to move segment; hold Ctrl as well to copy it; double-click " +"to edit" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentSelector.cpp:517 +msgid "Click and drag to copy segment" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:157 +msgid "" +"The audio file path does not exist or is not writable.\n" +"You must set the audio file path to a valid directory in Document Properties " +"before rescaling an audio file.\n" +"Would you like to set it now?" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentResizer.cpp:261 +msgid "" +"Hold Shift to avoid snapping to beat grid; hold Ctrl as well to rescale " +"contents" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentMover.cpp:325 +msgid "Click and drag to move a segment" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentPencil.cpp:225 +msgid "Hold Shift to avoid snapping to bar lines" +msgstr "" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentPencil.cpp:283 +#, fuzzy +msgid "Record or drop audio here" +msgstr "MIDI või audio salvestamine" + +#: ../src/gui/editors/segment/segmentcanvas/SegmentPencil.cpp:289 +msgid "" +"Click and drag to draw an empty segment. Control+Alt click and drag to draw " +"in overlap mode." +msgstr "" + +#: ../src/gui/editors/segment/TrackLabel.cpp:77 +msgid "" +"Click and hold with left mouse button to assign this Track to an Instrument." +msgstr "" + +#: ../src/gui/editors/segment/TrackLabel.cpp:191 +msgid "Change track name" +msgstr "" + +#: ../src/gui/editors/segment/TrackLabel.cpp:192 +#, fuzzy +msgid "Enter new track name" +msgstr "Sisesta uus nimi" + +#: ../src/gui/editors/segment/TrackEditor.cpp:648 +msgid "Turn Repeating Segment into Real Copies" +msgstr "" + +#: ../src/gui/editors/segment/TrackEditor.cpp:650 +msgid "Turn Repeating Segments into Real Copies" +msgstr "" + +#: ../src/gui/editors/segment/TrackEditor.cpp:814 +msgid "" +"You can't drop files into Rosegarden from this client. Try using Konqueror " +"instead." +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:85 +#, fuzzy +msgid "Manage Triggered Segments" +msgstr "A&udiosegmentide manageerimine" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:89 +#, fuzzy +msgid "ID" +msgstr "I" + +#: ../src/gui/editors/eventlist/EventView.cpp:735 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:93 +#, fuzzy +msgid "Base velocity" +msgstr "Noodi kiirus:" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:94 +#, fuzzy +msgid "Triggers" +msgstr "Triool" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:115 +msgid "Add a Triggered Segment" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:119 +msgid "Delete a Triggered Segment" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:123 +#, fuzzy +msgid "Delete All Triggered Segments" +msgstr "V&ali kõik segmendid" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:127 +msgid "Close the Triggered Segment Manager" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:169 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:245 +#, fuzzy +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:248 +msgid "" +"_n: %1 on 1 track\n" +"%1 on %n tracks" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:284 +msgid "" +"This will remove all triggered segments from the whole composition. Are you " +"sure?" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:288 +#, fuzzy +msgid "Remove all triggered segments" +msgstr "Eemalda kõik märgised" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:313 +#, fuzzy +msgid "Trigger Segment Duration" +msgstr "Noodivar&te suund" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:336 +#, c-format +msgid "" +"_n: This triggered segment is used 1 time in the current composition. Are " +"you sure you want to remove it?\n" +"This triggered segment is used %n times in the current composition. Are you " +"sure you want to remove it?" +msgstr "" + +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:400 +msgid "Pa&ste as New Triggered Segment" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1169 +#: ../src/gui/editors/segment/MarkerEditor.cpp:399 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:412 +#: ../src/gui/editors/tempo/TempoView.cpp:622 +msgid "&Musical Times" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1179 +#: ../src/gui/editors/segment/MarkerEditor.cpp:409 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:422 +#: ../src/gui/editors/tempo/TempoView.cpp:632 +#, fuzzy +msgid "&Real Times" +msgstr "Reaalajas:" + +#: ../src/gui/editors/eventlist/EventView.cpp:1189 +#: ../src/gui/editors/segment/MarkerEditor.cpp:419 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:432 +#: ../src/gui/editors/tempo/TempoView.cpp:642 +#, fuzzy +msgid "Ra&w Times" +msgstr "Reaalajas:" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:83 +msgid "Manage Markers" +msgstr "Märgiste haldamine" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:86 +msgid "Marker time " +msgstr "Märgise aeg " + +#: ../src/gui/editors/segment/MarkerEditor.cpp:87 +#, fuzzy +msgid "Marker text " +msgstr "Märgise aeg " + +#: ../src/gui/editors/segment/MarkerEditor.cpp:88 +msgid "Marker description " +msgstr "Märgise kirjeldus " + +#: ../src/gui/editors/segment/MarkerEditor.cpp:95 +msgid "Pointer position" +msgstr "Kursori asukoht" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:100 +msgid "Real time:" +msgstr "Reaalajas:" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:103 +msgid "In measure:" +msgstr "Taktis:" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:121 +msgid "Add a Marker" +msgstr "Lisa märgis" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:125 +msgid "Delete a Marker" +msgstr "Kustuta märgis" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:129 +msgid "Delete All Markers" +msgstr "Kustuta kõik märgised" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:133 +msgid "Close the Marker Editor" +msgstr "Sulge märgiste haldur" + +#: ../src/gui/editors/segment/MarkerEditor.cpp:296 +msgid "Remove all markers" +msgstr "Eemalda kõik märgised" + +#: ../src/gui/editors/segment/PlayList.cpp:76 +#, fuzzy +msgid "Add..." +msgstr "..." + +#: ../src/gui/editors/segment/PlayList.cpp:78 +#, fuzzy +msgid "Move Up" +msgstr "Liig&uta rada üles" + +#: ../src/gui/editors/segment/PlayList.cpp:79 +#, fuzzy +msgid "Move Down" +msgstr "Liiguta ra&da alla" + +#: ../src/gui/editors/segment/PlayList.cpp:124 +#, fuzzy +msgid "Select one or more Rosegarden files" +msgstr "Audiofaili valimine" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:73 +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:55 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:89 +#, fuzzy +msgid "Manage Control Events" +msgstr "A&udiosegmentide manageerimine" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:91 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:99 +msgid " Control Events for %1 (device %2)" +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:104 +msgid "Control Event name " +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:105 +#, fuzzy +msgid "Control Event type " +msgstr "Sündmuse tüüp. " + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:106 +msgid "Control Event value " +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:107 +msgid "Description " +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:108 +msgid "Min " +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:109 +msgid "Max " +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:110 +msgid "Default " +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:111 +msgid "Color " +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:112 +msgid "Position on instrument panel" +msgstr "Asukoht instrumentide paneelil" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:136 +msgid "Add a Control Parameter to the Studio" +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:140 +msgid "Delete a Control Parameter from the Studio" +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:144 +msgid "Close the Control Parameter editor" +msgstr "" + +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:221 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:62 +msgid "Edit Control Parameter" +msgstr "" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:71 +#, fuzzy +msgid "Control Event Properties" +msgstr "Sündmuse omadused" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:77 +msgid "Name:" +msgstr "Nimi:" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:93 +msgid "Control Event value:" +msgstr "" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:97 +msgid "Minimum value:" +msgstr "Minimaalne väärtus:" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:101 +msgid "Maximum value:" +msgstr "Maksimaalne väärtus:" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:105 +msgid "Default value:" +msgstr "Vaikeväärtus:" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:109 +msgid "Color:" +msgstr "Värv:" + +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:113 +msgid "Instrument Parameter Box position:" +msgstr "Instrumendi parameetrite kasti asukoht:" + +#: ../src/gui/editors/segment/TrackButtons.cpp:209 +#: ../src/gui/editors/segment/TrackButtons.cpp:585 +#: ../src/gui/editors/segment/TrackButtons.cpp:935 +#: ../src/gui/editors/segment/TrackButtons.cpp:1127 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/TrackButtons.cpp:352 +#: ../src/gui/editors/segment/TrackButtons.cpp:1094 +msgid "" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:130 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:662 +#: ../src/gui/editors/segment/TrackButtons.cpp:354 +#: ../src/gui/editors/segment/TrackButtons.cpp:1096 +msgid "" +msgstr "" + +#: ../src/gui/editors/segment/TrackButtons.cpp:1058 +#, fuzzy +msgid "Mute track" +msgstr "&Kustuta rada" + +#: ../src/gui/editors/segment/TrackButtons.cpp:1063 +msgid "Record on this track" +msgstr "" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:88 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:1015 +#, fuzzy +msgid "Segment" +msgstr "Seg&mendid" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:89 +#, fuzzy +msgid "Segment Parameters" +msgstr "Instrumendi parameetrid" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:366 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:697 +msgid "%1 ms" +msgstr "%1 ms" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1031 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:910 +msgid "Highest playable note" +msgstr "" + +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1051 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:930 +msgid "Lowest playable note" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:93 +#, fuzzy +msgid "Track Parameters" +msgstr "Segmendi parameetrid" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:137 +#, fuzzy +msgid "Playback parameters" +msgstr "Mahamängivad seadmed" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:172 +#, fuzzy +msgid "Recording filters" +msgstr "Salvestavad seadmed" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:191 +msgid "Channel" +msgstr "Kanal" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:203 +#, fuzzy +msgid "Staff export options" +msgstr "Lilypond'i ekpordi seadistused" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:220 +#, fuzzy +msgid "Notation size:" +msgstr "Noodikirja font" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:225 +#, fuzzy +msgid "Small" +msgstr "E-posti aadress" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:226 +msgid "Tiny" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:233 +#, fuzzy +msgid "Bracket type:" +msgstr "Teksti tüüp:" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:237 +msgid "-----" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:238 +msgid "[----" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:239 +msgid "----]" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:240 +msgid "[---]" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:241 +msgid "{----" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:242 +msgid "----}" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:243 +msgid "{[---" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:244 +msgid "---]}" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:253 +#, fuzzy +msgid "Create segments with" +msgstr "Loo segment" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:264 +#, fuzzy +msgid "Preset" +msgstr "paus" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:272 +msgid "Load" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:282 +#, fuzzy +msgid "treble" +msgstr "Viiulivõti" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:283 +#, fuzzy +msgid "bass" +msgstr "Bassivõti" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:284 +#, fuzzy +msgid "crotales" +msgstr "Oktav &alla" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:285 +msgid "xylophone" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:286 +msgid "guitar" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:287 +msgid "contrabass" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:288 +#, fuzzy +msgid "celesta" +msgstr "&Kustuta" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:289 +msgid "old celesta" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:290 +msgid "french" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:291 +msgid "soprano" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:292 +#, fuzzy +msgid "mezzosoprano" +msgstr "S&forzando" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:293 +#, fuzzy +msgid "alto" +msgstr "Aldivõti" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:294 +#, fuzzy +msgid "tenor" +msgstr "Tenorivõti" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:295 +#, fuzzy +msgid "baritone" +msgstr "Variatsioon" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:296 +#, fuzzy +msgid "varbaritone" +msgstr "Variatsioon" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:297 +#, fuzzy +msgid "subbass" +msgstr "Bassivõti" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:327 +#, fuzzy +msgid "Lowest" +msgstr "Madal" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:329 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:336 +msgid "---" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:331 +msgid "Choose the lowest suggested playable note, using a staff" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:334 +#, fuzzy +msgid "Highest" +msgstr "Kõrge" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:338 +msgid "Choose the highest suggested playable note, using a staff" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:666 +msgid "[ Track %1 - %2 ]" +msgstr "" + +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:985 +msgid "The instrument preset database is corrupt. Check your installation." +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:173 +#: ../src/gui/editors/parameters/InstrumentParameterBox.cpp:54 +msgid "Instrument Parameters" +msgstr "Instrumendi parameetrid" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:85 +msgid "Variation" +msgstr "Variatsioon" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:86 +msgid "Program" +msgstr "Programm" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:87 +#, fuzzy +msgid "Channel out" +msgstr "Kanal" + +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:215 +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:221 +msgid "[ %1 ]" +msgstr "[ %1 ]" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:58 +#: ../src/gui/editors/matrix/MatrixMover.cpp:71 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:67 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:77 +msgid "Switch to Draw Tool" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:75 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:69 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:71 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:81 +#: ../src/gui/editors/notation/ClefInserter.cpp:57 +#: ../src/gui/editors/notation/GuitarChordInserter.cpp:63 +#: ../src/gui/editors/notation/NotationSelector.cpp:87 +#: ../src/gui/editors/notation/NoteInserter.cpp:113 +#: ../src/gui/editors/notation/RestInserter.cpp:72 +#: ../src/gui/editors/notation/TextInserter.cpp:61 +msgid "Switch to Erase Tool" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:62 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:73 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:75 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:85 +msgid "Switch to Move Tool" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:68 +#: ../src/gui/editors/matrix/MatrixMover.cpp:81 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:79 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:93 +#, fuzzy +msgid "Switch to Resize Tool" +msgstr "Näita &pauside tööriistariba" + +#: ../src/gui/editors/matrix/MatrixSelector.cpp:446 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:579 +msgid "Click and drag to select; middle-click and drag to draw new note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixResizer.cpp:324 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:597 +msgid "Click and drag to resize selected notes" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixSelector.cpp:599 +msgid "Click and drag to resize note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:471 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:604 +msgid "Click and drag to move selected notes; hold Ctrl as well to copy" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:473 +#: ../src/gui/editors/matrix/MatrixSelector.cpp:606 +msgid "Click and drag to copy selected notes" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixSelector.cpp:610 +msgid "Click and drag to move note; hold Ctrl as well to copy" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixSelector.cpp:612 +msgid "Click and drag to copy note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:54 +#: ../src/gui/editors/matrix/MatrixMover.cpp:67 +#: ../src/gui/editors/matrix/MatrixPainter.cpp:65 +#: ../src/gui/editors/matrix/MatrixResizer.cpp:63 +#: ../src/gui/editors/notation/ClefInserter.cpp:53 +#: ../src/gui/editors/notation/GuitarChordInserter.cpp:59 +#: ../src/gui/editors/notation/NotationEraser.cpp:67 +#: ../src/gui/editors/notation/NoteInserter.cpp:109 +#: ../src/gui/editors/notation/RestInserter.cpp:68 +#: ../src/gui/editors/notation/TextInserter.cpp:57 +msgid "Switch to Select Tool" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixResizer.cpp:218 +msgid "Resize Event" +msgstr "Muuda sündmuse suurust" + +#: ../src/gui/editors/matrix/MatrixResizer.cpp:221 +msgid "Resize Events" +msgstr "Muuda sündmuste suurust" + +#: ../src/gui/editors/matrix/MatrixResizer.cpp:326 +msgid "Click and drag to resize a note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:328 +#, fuzzy +msgid "Copy and Move Event" +msgstr "Liiguta sündmust" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:330 +#, fuzzy +msgid "Copy and Move Events" +msgstr "Liiguta sündmuseid" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:334 +msgid "Move Event" +msgstr "Liiguta sündmust" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:336 +msgid "Move Events" +msgstr "Liiguta sündmuseid" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:465 +msgid "Click and drag to move a note; hold Ctrl as well to copy it" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixMover.cpp:467 +msgid "Click and drag to copy a note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixPainter.cpp:361 +msgid "Click and drag to draw a note; Shift to avoid snapping to grid" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixPainter.cpp:363 +msgid "Click and drag to draw a note" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:437 +#: ../src/gui/editors/matrix/MatrixView.cpp:3053 +msgid "Couldn't apply piano roll layout" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:663 +msgid "Resi&ze" +msgstr "Muuda &suurust" + +#: ../src/gui/editors/matrix/MatrixView.cpp:669 +#: ../src/gui/editors/notation/NotationView.cpp:1919 +msgid "C&hord Insert Mode" +msgstr "A&kordi lisamise režiim" + +#: ../src/gui/editors/matrix/MatrixView.cpp:676 +#: ../src/gui/editors/notation/NotationView.cpp:1778 +msgid "Ste&p Recording" +msgstr "&Sammhaaval salvestamine" + +#: ../src/gui/editors/matrix/MatrixView.cpp:694 +#, fuzzy +msgid "&Legato" +msgstr "Legal" + +#: ../src/gui/editors/matrix/MatrixView.cpp:708 +#, fuzzy +msgid "Set to Current Velocity" +msgstr "Noodi kiirus:" + +#: ../src/gui/editors/matrix/MatrixView.cpp:712 +msgid "Set Event &Velocities..." +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:716 +#, fuzzy +msgid "Trigger Se&gment..." +msgstr "Kustuta segment" + +#: ../src/gui/editors/matrix/MatrixView.cpp:720 +#, fuzzy +msgid "Remove Triggers..." +msgstr "Eemalda &tempo muutus..." + +#: ../src/gui/editors/eventlist/EventView.cpp:1153 +#: ../src/gui/editors/matrix/MatrixView.cpp:724 +#: ../src/gui/editors/tempo/TempoView.cpp:606 +msgid "Select &All" +msgstr "Vali &kõik" + +#: ../src/gui/editors/matrix/MatrixView.cpp:732 +#: ../src/gui/editors/notation/NotationView.cpp:2325 +msgid "Cursor &Back" +msgstr "Kursor &tagasi" + +#: ../src/gui/editors/matrix/MatrixView.cpp:736 +#: ../src/gui/editors/notation/NotationView.cpp:2329 +msgid "Cursor &Forward" +msgstr "Kursor &edasi" + +#: ../src/gui/editors/matrix/MatrixView.cpp:740 +#: ../src/gui/editors/notation/NotationView.cpp:2333 +msgid "Cursor Ba&ck Bar" +msgstr "Kursor takti &võrra tagasi" + +#: ../src/gui/editors/matrix/MatrixView.cpp:744 +#: ../src/gui/editors/notation/NotationView.cpp:2337 +msgid "Cursor For&ward Bar" +msgstr "Kursor takti v&õrra edasi" + +#: ../src/gui/editors/matrix/MatrixView.cpp:748 +#: ../src/gui/editors/notation/NotationView.cpp:2341 +msgid "Cursor Back and Se&lect" +msgstr "Kursor tagasi ja va&limine" + +#: ../src/gui/editors/matrix/MatrixView.cpp:752 +#: ../src/gui/editors/notation/NotationView.cpp:2345 +msgid "Cursor Forward and &Select" +msgstr "Kursor eda&si ja valimine" + +#: ../src/gui/editors/matrix/MatrixView.cpp:756 +#: ../src/gui/editors/notation/NotationView.cpp:2349 +msgid "Cursor Back Bar and Select" +msgstr "Kursor takti võrra tagasi ja valimine" + +#: ../src/gui/editors/matrix/MatrixView.cpp:760 +#: ../src/gui/editors/notation/NotationView.cpp:2353 +msgid "Cursor Forward Bar and Select" +msgstr "Kursor takti võrra edasi ja valimine" + +#: ../src/gui/editors/matrix/MatrixView.cpp:764 +#: ../src/gui/editors/notation/NotationView.cpp:2363 +msgid "Cursor to St&art" +msgstr "Kursor &algusesse" + +#: ../src/gui/editors/matrix/MatrixView.cpp:770 +#: ../src/gui/editors/notation/NotationView.cpp:2369 +msgid "Cursor to &End" +msgstr "Kursor &lõppu" + +#: ../src/gui/editors/matrix/MatrixView.cpp:776 +#: ../src/gui/editors/notation/NotationView.cpp:2391 +msgid "Cursor to &Playback Pointer" +msgstr "Kursor &mahamängimise kursori juurde" + +#: ../src/gui/editors/matrix/MatrixView.cpp:820 +#: ../src/gui/editors/notation/NotationView.cpp:2435 +msgid "Playback Pointer to &Cursor" +msgstr "Mahamängimise kursor &kursori juurde" + +#: ../src/gui/editors/matrix/MatrixView.cpp:826 +#: ../src/gui/editors/notation/NotationView.cpp:2441 +msgid "&Solo" +msgstr "&Soolo" + +#: ../src/gui/editors/matrix/MatrixView.cpp:841 +#: ../src/gui/editors/notation/NotationView.cpp:2456 +msgid "Set Loop to Selection" +msgstr "Korduse seadmine valikule" + +#: ../src/gui/editors/matrix/MatrixView.cpp:845 +#: ../src/gui/editors/notation/NotationView.cpp:2460 +msgid "Clear L&oop" +msgstr "Kustuta k&ordus" + +#: ../src/gui/editors/eventlist/EventView.cpp:1157 +#: ../src/gui/editors/matrix/MatrixView.cpp:849 +#: ../src/gui/editors/notation/NotationView.cpp:2464 +#: ../src/gui/editors/tempo/TempoView.cpp:610 +msgid "Clear Selection" +msgstr "Puhasta valik" + +#: ../src/gui/editors/eventlist/EventView.cpp:1149 +#: ../src/gui/editors/matrix/MatrixView.cpp:854 +#: ../src/gui/editors/notation/NotationView.cpp:2471 +msgid "&Filter Selection" +msgstr "&Filtri valimine" + +#: ../src/gui/editors/matrix/MatrixView.cpp:879 +msgid "&No Snap" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:884 +msgid "Snap to Bea&t" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:888 +msgid "Snap to &Bar" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:908 +#, fuzzy, c-format +msgid "Snap to %1" +msgstr "V&õta tagasi %1" + +#: ../src/gui/editors/matrix/MatrixView.cpp:917 +#, fuzzy +msgid "Show Instrument Parameters" +msgstr "Näita &instrumentide parameetreid" + +#: ../src/gui/editors/matrix/MatrixView.cpp:922 +#: ../src/gui/editors/notation/NotationView.cpp:1850 +msgid "Show Ch&ord Name Ruler" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:926 +#: ../src/gui/editors/notation/NotationView.cpp:1858 +msgid "Show &Tempo Ruler" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1238 +#: ../src/gui/editors/notation/NotationView.cpp:3245 +#, c-format +msgid "" +"_n: 1 event selected \n" +" %n events selected " +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1241 +#: ../src/gui/editors/notation/NotationView.cpp:3247 +msgid " No selection " +msgstr " Valik puudub " + +#: ../src/gui/editors/matrix/MatrixView.cpp:1348 +#: ../src/gui/editors/matrix/MatrixView.cpp:1360 +#: ../src/gui/editors/matrix/MatrixView.cpp:2079 +#: ../src/gui/editors/notation/NotationView.cpp:5869 +msgid "Quantizing..." +msgstr "Kvantimine..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:1370 +#: ../src/gui/editors/notation/NotationView.cpp:5407 +msgid "Collapsing notes..." +msgstr "Nootide kokkutõmbamine..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:1381 +#, fuzzy +msgid "Making legato..." +msgstr "Akordi loomine..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:1476 +#, fuzzy +msgid "Note: %1 (%2.%3s)" +msgstr "Aeg: %1 (%2.%3s)" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1531 +#: ../src/gui/editors/notation/NotationView.cpp:7206 +msgid "Time: %1 (%2.%3s)" +msgstr "Aeg: %1 (%2.%3s)" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1604 +#: ../src/gui/editors/notation/NotationView.cpp:4744 +#: ../src/gui/editors/notation/NotationView.cpp:4773 +msgid "Cutting selection to clipboard..." +msgstr "Valiku lõikamine lõikepuhvrisse..." + +#: ../src/gui/editors/eventlist/EventView.cpp:912 +#: ../src/gui/editors/matrix/MatrixView.cpp:1636 +#: ../src/gui/editors/notation/NotationSelectionPaster.cpp:82 +msgid "Couldn't paste at this point" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1647 +#: ../src/gui/editors/notation/NotationView.cpp:4754 +msgid "Deleting selection..." +msgstr "Valiku kustutamine..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:1833 +#: ../src/gui/editors/notation/NotationView.cpp:5617 +#, c-format +msgid "Unknown note insert action %1" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:1837 +#: ../src/gui/editors/matrix/MatrixView.cpp:2857 +#: ../src/gui/editors/notation/NotationView.cpp:5621 +msgid "Inserting note" +msgstr "Noodi lisamine" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2091 +msgid "Unquantizing..." +msgstr "Kvantimise eemaldamine..." + +#: ../src/gui/editors/matrix/MatrixView.cpp:2120 +msgid " Grid: " +msgstr " Võre: " + +#: ../src/gui/editors/matrix/MatrixView.cpp:2134 +msgid "Unit" +msgstr " Üksus" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2136 +msgid "Beat" +msgstr "Löök" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2138 +msgid "Bar" +msgstr "Takt" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2159 +#, fuzzy +msgid " Velocity: " +msgstr "Kiirus:" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2170 +msgid " Quantize: " +msgstr " Kvantimine: " + +#: ../src/gui/editors/matrix/MatrixView.cpp:2584 +msgid "Raising velocities..." +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2596 +msgid "Lowering velocities..." +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2611 +msgid "Set Event Velocities" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2616 +msgid "Setting Velocities..." +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2665 +#, fuzzy +msgid "Remove Triggers" +msgstr "&Eemalda märgis" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2723 +msgid "%1 - Segment Track #%2 - %3" +msgstr "" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2730 +#, fuzzy +msgid "%1 - All Segments - %2" +msgstr "Kestvus" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2737 +#, fuzzy +msgid "" +"_n: %1 - 1 Segment - %2\n" +"%1 - %n Segments - %2" +msgstr "Kestvus" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2885 +#, fuzzy +msgid "Can't insert note: No grid duration selected" +msgstr "Nooti pole võimalik lisada: noodi pikkust pole valitud" + +#: ../src/gui/editors/matrix/MatrixView.cpp:2935 +#, fuzzy +msgid " Chord " +msgstr "Tekita a&kord" + +#: ../src/gui/editors/matrix/MatrixEraser.cpp:105 +msgid "Click on a note to delete it" +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:89 +#, fuzzy +msgid "Filter" +msgstr "Sündmuste filter" + +#: ../src/gui/editors/eventlist/EventView.cpp:245 +#: ../src/gui/editors/tempo/TempoView.cpp:117 +msgid "Time " +msgstr "Aeg " + +#: ../src/gui/editors/tempo/TempoView.cpp:118 +#, fuzzy +msgid "Type " +msgstr "Tüüp" + +#: ../src/gui/editors/tempo/TempoView.cpp:119 +#, fuzzy +msgid "Value " +msgstr "Väärtus" + +#: ../src/gui/editors/tempo/TempoView.cpp:120 +#, fuzzy +msgid "Properties " +msgstr "Sündmuse omadused" + +#: ../src/gui/editors/tempo/TempoView.cpp:208 +msgid "Common, hidden" +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:210 +msgid "Hidden" +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:213 +msgid "Common" +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:220 +#, fuzzy +msgid "Time Signature " +msgstr "Taktimõõt" + +#: ../src/gui/editors/tempo/TempoView.cpp:245 +#, fuzzy +msgid "%1.%2%3" +msgstr "&%1%2" + +#: ../src/gui/editors/tempo/TempoView.cpp:255 +msgid "%1.%2%3 qpm (%4.%5%6 bpm) " +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:264 +#, fuzzy +msgid "Tempo " +msgstr "Tempo" + +#: ../src/gui/editors/tempo/TempoView.cpp:271 +#, fuzzy +msgid "" +msgstr "" + +#: ../src/gui/editors/tempo/TempoView.cpp:463 +#, fuzzy +msgid "Delete Tempo or Time Signature" +msgstr "Taktimõõt" + +#: ../src/gui/editors/tempo/TempoView.cpp:602 +#, fuzzy +msgid "&Edit Item" +msgstr "R&edigeeri sündmust" + +#: ../src/gui/editors/tempo/TempoView.cpp:834 +msgid "%1 - Tempo and Time Signature Editor" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordEditorDialog.cpp:43 +msgid "Guitar Chord Editor" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordEditorDialog.cpp:51 +#, fuzzy +msgid "Start fret" +msgstr "Alguse takt" + +#: ../src/gui/editors/guitar/GuitarChordEditorDialog.cpp:58 +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:51 +msgid "Root" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordEditorDialog.cpp:62 +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:55 +#, fuzzy +msgid "Extension" +msgstr "Löökriistad" + +#: ../src/gui/editors/guitar/Fingering.cpp:118 +msgid "couldn't parse fingering '%1' in '%2'" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:45 +#, fuzzy +msgid "Guitar Chord Selector" +msgstr "Puhasta valik" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:64 +msgid "beginner" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:65 +msgid "common" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:66 +msgid "all" +msgstr "" + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:86 +#, fuzzy +msgid "Fingerings" +msgstr "Decrescendo lisamine..." + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:419 +#, fuzzy +msgid "couldn't open file '%1'" +msgstr "Faili '%1' pole võimalik avada." + +#: ../src/gui/editors/guitar/GuitarChordSelectorDialog.cpp:428 +#, c-format +msgid "couldn't parse chord dictionnary : %1" +msgstr "" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:87 +#, c-format +msgid "Note Font Viewer: %1" +msgstr "" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:93 +msgid " Component: " +msgstr " Komponent: " + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:101 +msgid " View: " +msgstr " Vaade: " + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:104 +msgid "Glyphs" +msgstr "" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:105 +#, fuzzy +msgid "Codes" +msgstr "Noodivõti" + +#: ../src/gui/editors/notation/NoteFontViewer.cpp:107 +msgid " Page: " +msgstr " Lehekülg: " + +#: ../src/gui/editors/notation/ClefInserter.cpp:64 +#: ../src/gui/editors/notation/GuitarChordInserter.cpp:71 +#: ../src/gui/editors/notation/RestInserter.cpp:79 +#: ../src/gui/editors/notation/TextInserter.cpp:68 +msgid "Switch to Inserting Notes" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:522 +msgid "Close track headers" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:917 +msgid "Preparing to print..." +msgstr "Ettevalmistus trükkimiseks..." + +#: ../src/gui/editors/notation/NotationView.cpp:1516 +msgid "Note &Font" +msgstr "Noodikirja &font" + +#: ../src/gui/editors/notation/NotationView.cpp:1539 +msgid "Si&ze" +msgstr "Suu&rus" + +#: ../src/gui/editors/notation/NotationView.cpp:1545 +#, fuzzy +msgid "Show Track Headers" +msgstr "Näita radade &nimesid" + +#: ../src/gui/editors/notation/NotationView.cpp:1550 +msgid "S&pacing" +msgstr "Sa&mm" + +#: ../src/gui/editors/notation/NotationView.cpp:1572 +#, fuzzy +msgid "Du&ration Factor" +msgstr "Kestvus " + +#: ../src/gui/editors/notation/NotationView.cpp:1598 +msgid "Note &Style" +msgstr "Nootikirja &stiil" + +#: ../src/gui/editors/notation/NotationView.cpp:1624 +msgid "Insert Rest" +msgstr "Lisa paus" + +#: ../src/gui/editors/notation/NotationView.cpp:1628 +msgid "Switch from Note to Rest" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1633 +msgid "Switch from Rest to Note" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1690 +msgid "No accidental" +msgstr "Juhuslikud märgid puuduvad" + +#: ../src/gui/editors/notation/NotationView.cpp:1691 +#, fuzzy +msgid "Follow previous accidental" +msgstr "Juhuslikud märgid puuduvad" + +#: ../src/gui/editors/notation/NotationView.cpp:1692 +msgid "Sharp" +msgstr "Diees" + +#: ../src/gui/editors/notation/NotationView.cpp:1693 +msgid "Flat" +msgstr "Bemoll" + +#: ../src/gui/editors/notation/NotationView.cpp:1694 +msgid "Natural" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1695 +msgid "Double sharp" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1696 +msgid "Double flat" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1717 +msgid "&Treble Clef" +msgstr "&Viiulivõti" + +#: ../src/gui/editors/notation/NotationView.cpp:1724 +msgid "&Alto Clef" +msgstr "&Aldivõti" + +#: ../src/gui/editors/notation/NotationView.cpp:1731 +msgid "Te&nor Clef" +msgstr "Te&norivõti" + +#: ../src/gui/editors/notation/NotationView.cpp:1738 +msgid "&Bass Clef" +msgstr "&Bassivõti" + +#: ../src/gui/editors/notation/NotationView.cpp:1745 +msgid "&Text" +msgstr "&Tekst" + +#: ../src/gui/editors/notation/NotationView.cpp:1751 +#, fuzzy +msgid "&Guitar Chord" +msgstr "Puhasta valik" + +#: ../src/gui/editors/notation/NotationView.cpp:1784 +msgid "Select from Sta&rt" +msgstr "Vali al&gusest" + +#: ../src/gui/editors/notation/NotationView.cpp:1788 +msgid "Select to &End" +msgstr "Vali l&õpuni" + +#: ../src/gui/editors/notation/NotationView.cpp:1792 +msgid "Select Whole St&aff" +msgstr "V&ali kogu lõik" + +#: ../src/commands/edit/CutAndCloseCommand.h:53 +#: ../src/gui/editors/notation/NotationView.cpp:1796 +msgid "C&ut and Close" +msgstr "Lõika ja s&ulge" + +#: ../src/gui/editors/notation/NotationView.cpp:1800 +msgid "Pa&ste..." +msgstr "A&seta..." + +#: ../src/gui/editors/notation/NotationSelector.cpp:122 +#: ../src/gui/editors/notation/NotationView.cpp:1808 +msgid "Move to Staff Above" +msgstr "" + +#: ../src/gui/editors/notation/NotationSelector.cpp:126 +#: ../src/gui/editors/notation/NotationView.cpp:1812 +msgid "Move to Staff Below" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1826 +msgid "&Linear Layout" +msgstr "&Lineaarne paigutus" + +#: ../src/gui/editors/notation/NotationView.cpp:1835 +msgid "&Continuous Page Layout" +msgstr "&Pideva leheküljega paigutus" + +#: ../src/gui/editors/notation/NotationView.cpp:1844 +msgid "&Multiple Page Layout" +msgstr "&Mitme leheküljega paigutus" + +#: ../src/gui/editors/notation/NotationView.cpp:1854 +msgid "Show Ra&w Note Ruler" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1862 +msgid "Show &Annotations" +msgstr "Näita &annotatsioone" + +#: ../src/gui/editors/notation/NotationView.cpp:1866 +msgid "Show Lily&Pond Directives" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:1870 +msgid "Open L&yric Editor" +msgstr "Ava s&õnade redaktor" + +#: ../src/gui/editors/notation/NotationView.cpp:1912 +msgid "Trip&let Insert Mode" +msgstr "Trioo&li lisamise režiim" + +#: ../src/gui/editors/notation/NotationView.cpp:1926 +#, fuzzy +msgid "Grace Insert Mode" +msgstr "Trioo&li lisamise režiim" + +#: ../src/gui/editors/notation/NotationView.cpp:2180 +msgid "&Dump selected events to stderr" +msgstr "Valitud sündmused väljastatakse standardsesse veaväljundisse" + +#: ../src/gui/editors/notation/NotationView.cpp:2248 +#, fuzzy +msgid "Ma&ke Ornament..." +msgstr "Märgise nimi " + +#: ../src/gui/editors/notation/NotationView.cpp:2252 +msgid "Trigger &Ornament..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2256 +#, fuzzy +msgid "Remove Ornament..." +msgstr "Kontrapunkti eemaldamine..." + +#: ../src/gui/editors/notation/NotationView.cpp:2261 +msgid "&None" +msgstr "&Puudub" + +#: ../src/gui/editors/notation/NotationView.cpp:2289 +#, fuzzy +msgid "Convert Notation For..." +msgstr "Audio eelvaatluse genereerimine..." + +#: ../src/gui/editors/notation/NotationView.cpp:2298 +msgid "Show &Notes Toolbar" +msgstr "Näita &nootide tööriistariba" + +#: ../src/gui/editors/notation/NotationView.cpp:2299 +msgid "Show &Rests Toolbar" +msgstr "Näita &pauside tööriistariba" + +#: ../src/gui/editors/notation/NotationView.cpp:2300 +msgid "Show &Accidentals Toolbar" +msgstr "Näita &juhuslike märkide tööristariba" + +#: ../src/gui/editors/notation/NotationView.cpp:2301 +msgid "Show Cle&fs Toolbar" +msgstr "Näita v&õtmete tööristariba" + +#: ../src/gui/editors/notation/NotationView.cpp:2303 +msgid "Show &Marks Toolbar" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2305 +msgid "Show &Group Toolbar" +msgstr "Näita &grupeerimise tööriistariba" + +#: ../src/gui/editors/notation/NotationView.cpp:2307 +msgid "Show &Layout Toolbar" +msgstr "Näita &paigutuse tööriistariba" + +#: ../src/gui/editors/notation/NotationView.cpp:2311 +msgid "Show M&eta Toolbar" +msgstr "Näita m&eta tööriistariba" + +#: ../src/gui/editors/notation/NotationView.cpp:2373 +msgid "Cursor &Up Staff" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2377 +msgid "Cursor &Down Staff" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2381 +msgid "Cursor Pre&vious Segment" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2385 +#, fuzzy +msgid "Cursor Ne&xt Segment" +msgstr "Loo segment" + +#: ../src/gui/editors/notation/NotationView.cpp:2475 +msgid "Push &Left" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2479 +msgid "Push &Right" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2483 +msgid "Push &Up" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2487 +#, fuzzy +msgid "Push &Down" +msgstr "Noodivarred &alla" + +#: ../src/gui/editors/notation/NotationView.cpp:2491 +#, fuzzy +msgid "&Restore Positions" +msgstr "Taasta a&rvutatud noodivarred" + +#: ../src/gui/editors/notation/NotationView.cpp:2495 +msgid "Make &Invisible" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2499 +msgid "Make &Visible" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2503 +#, fuzzy +msgid "Toggle Dot" +msgstr "täisnoot" + +#: ../src/gui/editors/notation/NotationView.cpp:2507 +#: ../src/gui/editors/notation/NotationView.cpp:2511 +#, fuzzy +msgid "Add Dot" +msgstr "Lisa %1" + +#: ../src/gui/editors/notation/NotationView.cpp:2570 +#, c-format +msgid "" +"_n: 1 pixel\n" +"%n pixels" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:2619 +msgid " Font: " +msgstr " Font: " + +#: ../src/gui/editors/notation/NotationView.cpp:2647 +msgid "Unknown font \"%1\", using default" +msgstr "Tundmatu font \"%1\", kasutatakse vaikeväärtust" + +#: ../src/gui/editors/notation/NotationView.cpp:2655 +msgid " Size: " +msgstr " Suurus: " + +#: ../src/gui/editors/notation/NotationView.cpp:2677 +msgid " Spacing: " +msgstr " Samm: " + +#: ../src/gui/editors/notation/NotationView.cpp:2993 +#: ../src/gui/editors/notation/NotationView.cpp:3818 +msgid " Ready." +msgstr " Valmis." + +#: ../src/gui/editors/notation/NotationView.cpp:2998 +msgid "Laying out score..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:3011 +msgid "Laying out staff %1..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:3020 +msgid "Reconciling staffs..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:3885 +msgid "Sizing and allocating canvas..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4050 +msgid "note" +msgstr "noot" + +#: ../src/gui/editors/notation/NotationView.cpp:4050 +msgid "rest" +msgstr "paus" + +#: ../src/gui/editors/notation/NotationView.cpp:4211 +msgid "%1 - Segment Track #%2 - Notation" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4217 +#, fuzzy +msgid "%1 - All Segments - Notation" +msgstr "Kestvus" + +#: ../src/gui/editors/notation/NotationView.cpp:4222 +#, fuzzy +msgid "" +"_n: %1 - Segment - Notation\n" +"%1 - %n Segments - Notation" +msgstr "Kestvus" + +#: ../src/gui/editors/notation/NotationView.cpp:4243 +#, fuzzy +msgid "Grace" +msgstr "&Rajad" + +#: ../src/gui/editors/notation/NotationView.cpp:4247 +#: ../src/gui/editors/notation/NotationView.cpp:4251 +#: ../src/gui/editors/notation/NotationView.cpp:4255 +#, fuzzy +msgid "%1 %2" +msgstr "&%1%2" + +#: ../src/gui/editors/notation/NotationView.cpp:4271 +msgid "Hidden annotations" +msgstr "Peidetud annotatsioonid" + +#: ../src/gui/editors/notation/NotationView.cpp:4293 +msgid "Hidden LilyPond directives" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4326 +#, c-format +msgid "Unknown spacing action %1" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4384 +#, c-format +msgid "Unknown proportion action %1" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4431 +#, c-format +msgid "Unknown font action %1" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4449 +#, c-format +msgid "Unknown font size %1" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4453 +#, c-format +msgid "Unknown font size action %1" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4780 +msgid "" +"The Restricted paste type requires enough empty space (containing only " +"rests) at the paste position to hold all of the events to be pasted.\n" +"Not enough space was found.\n" +"If you want to paste anyway, consider using one of the other paste types " +"from the \"Paste...\" option on the Edit menu. You can also change the " +"default paste type to something other than Restricted if you wish." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4800 +msgid "Can't paste multiple Segments into one" +msgstr "Mitut segmenti ei saa ühte asetada" + +#: ../src/gui/editors/notation/NotationView.cpp:4828 +#: ../src/gui/editors/notation/NotationView.cpp:4877 +msgid "Couldn't paste at this point." +msgstr "Sellesse kohta ei saa asetada." + +#: ../src/gui/editors/notation/NotationView.cpp:4896 +msgid "Move Events to Staff Above" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:4924 +msgid "Move Events to Staff Below" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5036 +#, fuzzy +msgid "Pushing selection left..." +msgstr "Valiku lõikamine..." + +#: ../src/gui/editors/notation/NotationView.cpp:5047 +#, fuzzy +msgid "Pushing selection right..." +msgstr "Valiku lõikamine..." + +#: ../src/gui/editors/notation/NotationView.cpp:5058 +#, fuzzy +msgid "Pushing selection up..." +msgstr "Valiku lõikamine..." + +#: ../src/gui/editors/notation/NotationView.cpp:5069 +#, fuzzy +msgid "Pushing selection down..." +msgstr "Valiku lõikamine..." + +#: ../src/gui/editors/notation/NotationView.cpp:5080 +#, fuzzy +msgid "Restoring computed positions..." +msgstr "Noodivarte arvutatud suuna taastamine..." + +#: ../src/gui/editors/notation/NotationView.cpp:5089 +#, fuzzy +msgid "Making visible..." +msgstr "Akordi loomine..." + +#: ../src/gui/editors/notation/NotationView.cpp:5098 +#, fuzzy +msgid "Making invisible..." +msgstr "Akordi loomine..." + +#: ../src/gui/editors/notation/NotationView.cpp:5185 +msgid "Beaming group..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5195 +msgid "Auto-beaming selection..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5205 +msgid "Breaking groups..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5293 +msgid "Untupleting..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5301 +msgid "Adding slur..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5302 +msgid "slur" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5307 +#, fuzzy +msgid "Adding phrasing slur..." +msgstr "Decrescendo lisamine..." + +#: ../src/gui/editors/notation/NotationView.cpp:5308 +msgid "phrasing slur" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5313 +#, fuzzy +msgid "Adding glissando..." +msgstr "Crescendo lisamine..." + +#: ../src/gui/editors/notation/NotationView.cpp:5314 +#, fuzzy +msgid "glissando" +msgstr "Crescendo lisamine..." + +#: ../src/gui/editors/notation/NotationView.cpp:5319 +msgid "Adding crescendo..." +msgstr "Crescendo lisamine..." + +#: ../src/gui/editors/notation/NotationView.cpp:5320 +#: ../src/gui/editors/notation/NotationView.cpp:5326 +#, fuzzy +msgid "dynamic" +msgstr "Dünaamiline" + +#: ../src/gui/editors/notation/NotationView.cpp:5325 +msgid "Adding decrescendo..." +msgstr "Decrescendo lisamine..." + +#: ../src/gui/editors/notation/NotationView.cpp:5331 +#: ../src/gui/editors/notation/NotationView.cpp:5337 +#: ../src/gui/editors/notation/NotationView.cpp:5343 +#: ../src/gui/editors/notation/NotationView.cpp:5349 +#, fuzzy +msgid "Adding octave..." +msgstr "Crescendo lisamine..." + +#: ../src/gui/editors/notation/NotationView.cpp:5332 +#: ../src/gui/editors/notation/NotationView.cpp:5338 +#: ../src/gui/editors/notation/NotationView.cpp:5344 +#: ../src/gui/editors/notation/NotationView.cpp:5350 +msgid "ottava" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5366 +msgid "Can't add overlapping %1 indications" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5375 +msgid "Making chord..." +msgstr "Akordi loomine..." + +#: ../src/gui/editors/notation/NotationView.cpp:5387 +msgid "Normalizing rests..." +msgstr "Pauside normaliseerimine..." + +#: ../src/gui/editors/notation/NotationView.cpp:5397 +msgid "Collapsing rests..." +msgstr "Pauside kokkutõmbamine..." + +#: ../src/gui/editors/notation/NotationView.cpp:5417 +msgid "Tying notes..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5427 +msgid "Untying notes..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5437 +msgid "Making notes viable..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5447 +msgid "Removing counterpoint..." +msgstr "Kontrapunkti eemaldamine..." + +#: ../src/gui/editors/notation/NotationView.cpp:5457 +msgid "Pointing stems up..." +msgstr "Noodivarte üles suunamine..." + +#: ../src/gui/editors/notation/NotationView.cpp:5467 +msgid "Pointing stems down..." +msgstr "Noodivarte alla suunamine..." + +#: ../src/gui/editors/notation/NotationView.cpp:5478 +msgid "Restoring computed stem directions..." +msgstr "Noodivarte arvutatud suuna taastamine..." + +#: ../src/gui/editors/notation/NotationView.cpp:5488 +#: ../src/gui/editors/notation/NotationView.cpp:5498 +#, fuzzy +msgid "Positioning slurs..." +msgstr "Noodivarte üles suunamine..." + +#: ../src/gui/editors/notation/NotationView.cpp:5509 +#, fuzzy +msgid "Restoring slur positions..." +msgstr "Noodivarte arvutatud suuna taastamine..." + +#: ../src/gui/editors/notation/NotationView.cpp:5519 +#: ../src/gui/editors/notation/NotationView.cpp:5529 +#, fuzzy +msgid "Positioning ties..." +msgstr "Noodivarte üles suunamine..." + +#: ../src/gui/editors/notation/NotationView.cpp:5540 +#, fuzzy +msgid "Restoring tie positions..." +msgstr "Noodivarte arvutatud suuna taastamine..." + +#: ../src/gui/editors/notation/NotationView.cpp:5550 +msgid "Fixing notation quantization..." +msgstr "Nootide kvantimise parandamine..." + +#: ../src/gui/editors/notation/NotationView.cpp:5560 +#, fuzzy +msgid "Removing notation quantization..." +msgstr "Nootide kvantimise parandamine..." + +#: ../src/gui/editors/notation/NotationView.cpp:5577 +msgid "Changing to %1 style..." +msgstr "%1 stiili muutmine..." + +#: ../src/gui/editors/notation/NotationView.cpp:5585 +#, c-format +msgid "Unknown style action %1" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5598 +#: ../src/gui/editors/notation/NotationView.cpp:5639 +#: ../src/gui/editors/notation/NotationView.cpp:5695 +msgid "No note duration selected" +msgstr "Noodi pikkust pole valitud" + +#: ../src/gui/editors/notation/NotationView.cpp:5660 +msgid "No rest duration selected" +msgstr "Pausi pikkust pole valitud" + +#: ../src/gui/editors/notation/NotationView.cpp:5746 +#, fuzzy +msgid "No note or rest duration selected" +msgstr "Pausi pikkust pole valitud" + +#: ../src/gui/editors/notation/NotationView.cpp:5757 +#: ../src/gui/editors/notation/NotationView.cpp:5768 +#: ../src/gui/editors/notation/NotationView.cpp:5779 +#: ../src/gui/editors/notation/NotationView.cpp:5790 +#: ../src/gui/editors/notation/NotationView.cpp:5801 +#: ../src/gui/editors/notation/NotationView.cpp:5812 +#: ../src/gui/editors/notation/NotationView.cpp:5823 +msgid "Forcing accidentals..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5834 +msgid "Restoring accidentals..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5845 +msgid "Showing cautionary accidentals..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5855 +msgid "Cancelling cautionary accidentals..." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:5884 +msgid "Interpreting selection..." +msgstr "Valiku interpreteerimine..." + +#: ../src/gui/editors/notation/NotationView.cpp:5896 +#, fuzzy +msgid "Setting note durations..." +msgstr "Noodivar&te suund" + +#: ../src/gui/editors/notation/NotationView.cpp:5904 +#: ../src/gui/editors/notation/NotationView.cpp:5912 +#, fuzzy +msgid "Adding dot..." +msgstr "Crescendo lisamine..." + +#: ../src/gui/editors/notation/NotationView.cpp:5934 +msgid "Text: " +msgstr "Tekst: " + +#: ../src/gui/editors/notation/NotationView.cpp:5948 +msgid "Fingering: " +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:6036 +msgid "Ornament track %1 bar %2" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:6038 +#, fuzzy, c-format +msgid "Ornament bar %1" +msgstr "Seg&mendid" + +#: ../src/gui/editors/notation/NotationView.cpp:6098 +#, fuzzy +msgid "Remove Ornaments" +msgstr "Eemalda kõik märgised" + +#: ../src/gui/editors/notation/NotationView.cpp:6145 +msgid "Estimated key signature shown" +msgstr "" + +#: ../src/gui/editors/notation/NotationStaff.cpp:1249 +#: ../src/gui/editors/notation/NotationView.cpp:6202 +msgid "Sustain" +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:6218 +msgid "" +"There is no sustain controller defined for this device.\n" +"Please ensure the device is configured correctly in the Manage MIDI Devices " +"dialog in the main window." +msgstr "" + +#: ../src/gui/editors/notation/NotationView.cpp:7250 +msgid "Can't insert note: No note duration selected" +msgstr "Nooti pole võimalik lisada: noodi pikkust pole valitud" + +#: ../src/gui/editors/notation/NotationEraser.cpp:61 +#: ../src/gui/editors/notation/NotationSelector.cpp:83 +msgid "Switch to Insert Tool" +msgstr "" + +#: ../src/gui/editors/notation/NotePixmapFactory.cpp:2303 +#: ../src/gui/editors/notation/NotePixmapFactory.cpp:2347 +msgid "..." +msgstr "..." + +#: ../src/gui/editors/notation/NoteFontFactory.cpp:200 +msgid "Can't obtain a default font -- no fonts found" +msgstr "" + +#: ../src/gui/editors/notation/NoteFontMap.cpp:52 +#: ../src/gui/general/PresetGroup.cpp:49 +#, fuzzy +msgid "unknown error" +msgstr "Tundmatu" + +#: ../src/gui/editors/notation/NoteFontMap.cpp:78 +msgid "Can't open font mapping file %1 or %2" +msgstr "" + +#: ../src/gui/editors/notation/NoteFontMap.cpp:82 +#, c-format +msgid "Can't open font mapping file %1" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:52 +msgid "%1-dotted-%2" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:54 +msgid "%1-dotted %2" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:57 +#, c-format +msgid "dotted-%1" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:59 +#, c-format +msgid "dotted %1" +msgstr "punktiga %1" + +#: ../src/gui/editors/notation/NotationStrings.cpp:83 +msgid "sixty-fourth note" +msgstr "kuuekümneneljandiknoot" + +#: ../src/gui/editors/notation/NotationStrings.cpp:83 +msgid "thirty-second note" +msgstr "kolmekümnekahendiknoot" + +#: ../src/gui/editors/notation/NotationStrings.cpp:84 +msgid "sixteenth note" +msgstr "kuueteistkümnendiknoot" + +#: ../src/gui/editors/notation/NotationStrings.cpp:84 +msgid "eighth note" +msgstr "kaheksandiknoot" + +#: ../src/gui/editors/notation/NotationStrings.cpp:85 +msgid "quarter note" +msgstr "veerandnoot" + +#: ../src/gui/editors/notation/NotationStrings.cpp:85 +msgid "half note" +msgstr "poolnoot" + +#: ../src/gui/editors/notation/NotationStrings.cpp:86 +msgid "whole note" +msgstr "täisnoot" + +#: ../src/gui/editors/notation/NotationStrings.cpp:86 +msgid "double whole note" +msgstr "topelt täisnoot" + +#: ../src/gui/editors/notation/NotationStrings.cpp:89 +msgid "sixty-fourth notes" +msgstr "kuuekümneneljandiknoodid" + +#: ../src/gui/editors/notation/NotationStrings.cpp:89 +msgid "thirty-second notes" +msgstr "kolmekümnekahendiknoodid" + +#: ../src/gui/editors/notation/NotationStrings.cpp:90 +msgid "sixteenth notes" +msgstr "kuueteiskümnendiknoodid" + +#: ../src/gui/editors/notation/NotationStrings.cpp:90 +msgid "eighth notes" +msgstr "kaheksandiknoodid" + +#: ../src/gui/editors/notation/NotationStrings.cpp:91 +msgid "quarter notes" +msgstr "veerandnoodid" + +#: ../src/gui/editors/notation/NotationStrings.cpp:91 +msgid "half notes" +msgstr "poolnoodid" + +#: ../src/gui/editors/notation/NotationStrings.cpp:92 +msgid "whole notes" +msgstr "täisnoodid" + +#: ../src/gui/editors/notation/NotationStrings.cpp:92 +msgid "double whole notes" +msgstr "topelt täisnoodid" + +#: ../src/gui/editors/notation/NotationStrings.cpp:96 +#: ../src/gui/editors/notation/NotationStrings.cpp:154 +msgid "%1 triplets" +msgstr "%1 trioolid" + +#: ../src/gui/editors/notation/NotationStrings.cpp:100 +#: ../src/gui/editors/notation/NotationStrings.cpp:158 +msgid "%1 triplet" +msgstr "%1 triool" + +#: ../src/gui/editors/notation/NotationStrings.cpp:143 +msgid "64th" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:143 +msgid "32nd" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:143 +#, fuzzy +msgid "16th" +msgstr "16." + +#: ../src/gui/editors/notation/NotationStrings.cpp:143 +#, fuzzy +msgid "8th" +msgstr "8." + +#: ../src/gui/editors/notation/NotationStrings.cpp:144 +msgid "quarter" +msgstr "veerand" + +#: ../src/gui/editors/notation/NotationStrings.cpp:144 +msgid "half" +msgstr "pool" + +#: ../src/gui/editors/notation/NotationStrings.cpp:144 +msgid "whole" +msgstr "täis" + +#: ../src/gui/editors/notation/NotationStrings.cpp:145 +msgid "double whole" +msgstr "topelttäis" + +#: ../src/gui/editors/notation/NotationStrings.cpp:148 +msgid "64ths" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:148 +msgid "32nds" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:148 +msgid "16ths" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:148 +msgid "8ths" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:149 +msgid "quarters" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:149 +msgid "halves" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:149 +msgid "wholes" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:150 +msgid "double wholes" +msgstr "" + +#: ../src/gui/editors/notation/NotationStrings.cpp:278 +msgid "%1 ticks" +msgstr "" + +#: ../src/gui/editors/notation/FontViewFrame.cpp:100 +#, c-format +msgid "Error: Unable to match font name %1" +msgstr "" + +#: ../src/gui/editors/notation/FontViewFrame.cpp:108 +msgid "Warning: No good match for font name %1 (best is %2)" +msgstr "" + +#: ../src/gui/editors/notation/FontViewFrame.cpp:116 +#, c-format +msgid "Error: Unable to open best-match font %1" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:113 +#, fuzzy +msgid "Track %1 : \"%2\"" +msgstr "Pank %1:%2" + +#: ../src/gui/editors/notation/TrackHeader.cpp:119 +#, c-format +msgid "" +"\n" +"Notate for: %1" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:121 +#, fuzzy +msgid "normal" +msgstr "Normaalne" + +#: ../src/gui/editors/notation/TrackHeader.cpp:124 +#, fuzzy +msgid "small" +msgstr "Väärtus" + +#: ../src/gui/editors/notation/TrackHeader.cpp:127 +msgid "tiny" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:131 +msgid "--" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:156 +msgid "" +"\n" +"Size: %1, Bracket: %2 " +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:183 +msgid "" +"\n" +"bars [%1-%2] in %3 (tr=%4) : \"%5\"" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:190 +msgid "" +"\n" +"bars [%1-%2] (tr=%3) : \"%4\"" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:240 +#, fuzzy +msgid "C#" +msgstr "C#%1" + +#: ../src/gui/editors/notation/TrackHeader.cpp:242 +msgid "Eb" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:245 +#, fuzzy +msgid "F#" +msgstr "F#%1" + +#: ../src/gui/editors/notation/TrackHeader.cpp:247 +#, fuzzy +msgid "G#" +msgstr "G#%1" + +#: ../src/gui/editors/notation/TrackHeader.cpp:249 +msgid "Bb" +msgstr "" + +#: ../src/gui/editors/notation/TrackHeader.cpp:352 +#, fuzzy +msgid "%1: %2" +msgstr "&%1%2" + +#: ../src/gui/editors/notation/TrackHeader.cpp:355 +#, fuzzy, c-format +msgid " in %1" +msgstr "V&õta tagasi %1" + +#: ../src/gui/editors/notation/NotationStaff.cpp:452 +msgid "Rendering staff %1..." +msgstr "" + +#: ../src/gui/editors/notation/NotationStaff.cpp:515 +#, fuzzy +msgid "Rendering notes on staff %1..." +msgstr "Nootide lisamisel..." + +#: ../src/gui/editors/notation/NotationStaff.cpp:583 +msgid "Positioning staff %1..." +msgstr "" + +#: ../src/gui/editors/notation/NotationSelectionPaster.cpp:85 +msgid "Ready." +msgstr "Valmis." + +#: ../src/gui/editors/notation/RestInserter.cpp:62 +msgid "Dotted rest" +msgstr "Punktiga paus" + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:57 +#, c-format +msgid "Can't open style file %1" +msgstr "" + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:92 +msgid "type is a required attribute of note" +msgstr "" + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:101 +#, c-format +msgid "Unrecognised note name %1" +msgstr "" + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:108 +msgid "global element must precede note elements" +msgstr "" + +#: ../src/gui/editors/notation/NoteStyleFileReader.cpp:137 +msgid "" +"global and note elements may have shape or charname attribute, but not both" +msgstr "" + +#: ../src/gui/editors/notation/NotationVLayout.cpp:493 +msgid "" +"Spanned note at %1 has no HEIGHT_ON_STAFF property!\n" +"This is a bug (the program would previously have crashed by now)" +msgstr "" + +#: ../src/gui/editors/notation/NoteInserter.cpp:82 +msgid "Auto-Beam when appropriate" +msgstr "" + +#: ../src/gui/editors/notation/NoteInserter.cpp:103 +msgid "Dotted note" +msgstr "Punktiga noot" + +#: ../src/gui/editors/notation/NoteInserter.cpp:120 +msgid "Switch to Inserting Rests" +msgstr "" + +#: ../src/gui/editors/notation/NotationSelector.cpp:98 +#, fuzzy +msgid "Collapse Rests" +msgstr "&Tõmba pausid kokku" + +#: ../src/gui/editors/notation/NotationSelector.cpp:102 +msgid "Respell as Flat" +msgstr "" + +#: ../src/gui/editors/notation/NotationSelector.cpp:106 +#, fuzzy +msgid "Respell as Sharp" +msgstr "Juhuslike märkide tööriistriba" + +#: ../src/gui/editors/notation/NotationSelector.cpp:110 +msgid "Respell as Natural" +msgstr "" + +#: ../src/gui/editors/notation/NotationSelector.cpp:114 +#, fuzzy +msgid "Collapse Notes" +msgstr "&Tõmba pausid kokku" + +#: ../src/gui/editors/notation/NotationSelector.cpp:130 +#, fuzzy +msgid "Make Invisible" +msgstr "Akordi loomine..." + +#: ../src/gui/editors/notation/NotationSelector.cpp:134 +#, fuzzy +msgid "Make Visible" +msgstr "Akordi loomine..." + +#: ../src/gui/editors/eventlist/EventView.cpp:129 +msgid "Event filters" +msgstr "Sündmuse filtrid" + +#: ../src/gui/editors/eventlist/EventView.cpp:138 +msgid "Rest" +msgstr "Paus" + +#: ../src/gui/editors/eventlist/EventView.cpp:139 +msgid "Indication" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:141 +msgid "Other" +msgstr "Muu" + +#: ../src/gui/editors/eventlist/EventView.cpp:161 +#, fuzzy +msgid "Triggered Segment Properties" +msgstr "Sündmuse omadused" + +#: ../src/gui/editors/eventlist/EventView.cpp:166 +#, fuzzy +msgid "Label: " +msgstr "Nimi" + +#: ../src/gui/editors/eventlist/EventView.cpp:176 +#, fuzzy +msgid "Base pitch: " +msgstr "Noodi helikõrgus:" + +#: ../src/gui/editors/eventlist/EventView.cpp:183 +#, fuzzy +msgid "Base velocity: " +msgstr "Noodi kiirus:" + +#: ../src/gui/editors/eventlist/EventView.cpp:246 +msgid "Duration " +msgstr "Kestvus " + +#: ../src/gui/editors/eventlist/EventView.cpp:247 +msgid "Event Type " +msgstr "Sündmuse tüüp " + +#: ../src/gui/editors/eventlist/EventView.cpp:248 +msgid "Pitch " +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:249 +msgid "Velocity " +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:250 +msgid "Type (Data1) " +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:251 +msgid "Value (Data2) " +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:461 +msgid "(group %1) " +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:519 +msgid "" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:521 +msgid "" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:696 +#, fuzzy +msgid "Segment label" +msgstr "Segmendi nime muutmine" + +#: ../src/gui/editors/eventlist/EventView.cpp:696 +#, fuzzy +msgid "Label:" +msgstr "Nimi" + +#: ../src/gui/editors/eventlist/EventView.cpp:1123 +msgid "&Insert Event" +msgstr "&Lisa sündmus" + +#: ../src/gui/editors/eventlist/EventView.cpp:1130 +msgid "&Delete Event" +msgstr "&Kustuta sündmus" + +#: ../src/gui/editors/eventlist/EventView.cpp:1137 +msgid "&Edit Event" +msgstr "R&edigeeri sündmust" + +#: ../src/gui/editors/eventlist/EventView.cpp:1144 +msgid "&Advanced Event Editor" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1518 +msgid "Open in Event Editor" +msgstr "Ava sündmuse redaktoris" + +#: ../src/gui/editors/eventlist/EventView.cpp:1519 +msgid "Open in Expert Event Editor" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1577 +#, fuzzy +msgid "%1 - Triggered Segment: %2" +msgstr "Loo segment" + +#: ../src/gui/editors/eventlist/EventView.cpp:1592 +msgid "%1 - Segment Track #%2 - Event List" +msgstr "" + +#: ../src/gui/editors/eventlist/EventView.cpp:1598 +msgid "%1 - %2 Segments - Event List" +msgstr "" + +#: ../src/gui/rulers/TempoRuler.cpp:131 +#, fuzzy +msgid "Insert Tempo Change at Playback Position" +msgstr "Lisa tempo muudatus" + +#: ../src/gui/rulers/TempoRuler.cpp:136 +#, fuzzy +msgid "Delete Tempo Change" +msgstr "Lisa tempo muudatus" + +#: ../src/gui/rulers/TempoRuler.cpp:140 +msgid "Ramp Tempo to Next Tempo" +msgstr "" + +#: ../src/gui/rulers/TempoRuler.cpp:144 +msgid "Un-Ramp Tempo" +msgstr "" + +#: ../src/gui/rulers/TempoRuler.cpp:149 +#, fuzzy +msgid "Edit Tempo..." +msgstr "Muuda &vaiketempot..." + +#: ../src/gui/rulers/TempoRuler.cpp:153 +#, fuzzy +msgid "Edit Time Signature..." +msgstr "Taktimõõt" + +#: ../src/gui/rulers/TempoRuler.cpp:588 +#, fuzzy +msgid "%1.%2%3 (%4.%5%6 bpm)" +msgstr "%1.%2 s," + +#: ../src/gui/rulers/TempoRuler.cpp:596 +#, fuzzy +msgid "%1.%2%3 bpm" +msgstr "%1.%2 s," + +#: ../src/gui/rulers/TempoRuler.cpp:604 +#, fuzzy +msgid "%1 - %2.%3%4" +msgstr "&%1%2" + +#: ../src/gui/rulers/ControlRulerEventInsertCommand.cpp:36 +msgid "Insert Controller Event" +msgstr "" + +#: ../src/gui/rulers/ControlChangeCommand.cpp:35 +msgid "Control Change" +msgstr "" + +#: ../src/gui/rulers/PropertyViewRuler.cpp:72 +msgid "%1 controller" +msgstr "" + +#: ../src/gui/rulers/RawNoteRuler.cpp:453 +msgid "Track #%1, Segment \"%2\" (runtime id %3)" +msgstr "" + +#: ../src/gui/rulers/MarkerRuler.cpp:100 +#, fuzzy +msgid "Insert Marker" +msgstr "Lisa paus" + +#: ../src/gui/rulers/MarkerRuler.cpp:104 +#, fuzzy +msgid "Insert Marker at Playback Position" +msgstr "Lisa tempo muudatus" + +#: ../src/gui/rulers/MarkerRuler.cpp:109 +#, fuzzy +msgid "Delete Marker" +msgstr "Kustuta märgis" + +#: ../src/gui/rulers/MarkerRuler.cpp:114 +#, fuzzy +msgid "Edit Marker..." +msgstr "Redigeeri märgist" + +#: ../src/gui/rulers/MarkerRuler.cpp:119 +msgid "" +"Click on a marker to move the playback pointer.\n" +"Shift-click to set a range between markers.\n" +"Double-click to open the marker editor." +msgstr "" + +#: ../src/gui/rulers/ChordNameRuler.cpp:97 +msgid "" +"Chord name ruler.\n" +"Turn it on and off from the Settings->Rulers menu." +msgstr "" + +#: ../src/gui/rulers/ControlRulerEventEraseCommand.cpp:37 +msgid "Erase Controller Event(s)" +msgstr "" + +#: ../src/gui/general/EditView.cpp:901 +#: ../src/gui/rulers/ControllerEventsRuler.cpp:188 +#, fuzzy +msgid "Unsupported Event Type" +msgstr "Toetuseta sündmuse tüüp:" + +#: ../src/gui/rulers/ControllerEventsRuler.cpp:203 +msgid "Controller Events" +msgstr "" + +#: ../src/gui/rulers/ControllerEventsRuler.cpp:278 +msgid "Controller Event Number" +msgstr "" + +#: ../src/gui/rulers/ControllerEventsRuler.cpp:471 +msgid "Add line of controllers" +msgstr "" + +#: ../src/gui/rulers/LoopRuler.cpp:89 +msgid "" +"Click and drag to move the playback pointer.\n" +"Shift-click and drag to set a range for looping or editing.\n" +"Shift-click to clear the loop or range.\n" +"Double-click to start playback." +msgstr "" + +#: ../src/gui/general/EditViewBase.cpp:228 +#, fuzzy +msgid "Set Segment Start Time..." +msgstr "Näita &segmentide parameetreid" + +#: ../src/gui/general/EditViewBase.cpp:232 +#, fuzzy +msgid "Set Segment Duration..." +msgstr "Noodivar&te suund" + +#: ../src/gui/general/PresetHandlerDialog.cpp:56 +msgid "Load track parameters preset" +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:62 +#, fuzzy +msgid "Convert notation for..." +msgstr "Audio eelvaatluse genereerimine..." + +#: ../src/gui/general/PresetHandlerDialog.cpp:86 +msgid "Select preset track parameters for:" +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:87 +msgid "Create appropriate notation for:" +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:89 +msgid "Category" +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:95 +#, fuzzy +msgid "Player Ability" +msgstr "Mängi maha" + +#: ../src/gui/general/PresetHandlerDialog.cpp:97 +#, fuzzy +msgid "Amateur" +msgstr "Maatriks" + +#: ../src/gui/general/PresetHandlerDialog.cpp:98 +#, fuzzy +msgid "Professional" +msgstr "Töötlemine..." + +#: ../src/gui/general/PresetHandlerDialog.cpp:104 +#, fuzzy +msgid "Only selected segments" +msgstr "V&ali kõik segmendid" + +#: ../src/gui/general/PresetHandlerDialog.cpp:106 +msgid "All segments in this track" +msgstr "" + +#: ../src/gui/general/PresetHandlerDialog.cpp:111 +#, fuzzy +msgid "Only for new segments" +msgstr "Selle segmendi sõnad" + +#: ../src/gui/general/PresetHandlerDialog.cpp:113 +#, fuzzy +msgid "Convert existing segments" +msgstr "Loo segment" + +#: ../src/gui/general/MidiPitchLabel.cpp:39 +#, c-format +msgid "C%1" +msgstr "C%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:39 +#, c-format +msgid "C#%1" +msgstr "C#%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:39 +#, c-format +msgid "D%1" +msgstr "D%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:39 +#, c-format +msgid "D#%1" +msgstr "D#%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:40 +#, c-format +msgid "E%1" +msgstr "E%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:40 +#, c-format +msgid "F%1" +msgstr "F%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:40 +#, c-format +msgid "F#%1" +msgstr "F#%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:40 +#, c-format +msgid "G%1" +msgstr "G%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:41 +#, c-format +msgid "G#%1" +msgstr "G#%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:41 +#, c-format +msgid "A%1" +msgstr "A%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:41 +#, c-format +msgid "A#%1" +msgstr "A#%1" + +#: ../src/gui/general/MidiPitchLabel.cpp:41 +#, c-format +msgid "B%1" +msgstr "B%1" + +#: ../src/gui/general/PresetGroup.cpp:95 +#, fuzzy, c-format +msgid "Can't open preset file %1" +msgstr "Faili '%1' pole võimalik avada." + +#: ../src/gui/general/EditView.cpp:744 +#, fuzzy +msgid "&Halve Durations" +msgstr "Kestvus" + +#: ../src/gui/general/EditView.cpp:748 +#, fuzzy +msgid "&Double Durations" +msgstr "Kestvus" + +#: ../src/gui/general/EditView.cpp:806 +msgid "Show Velocity Property Ruler" +msgstr "" + +#: ../src/gui/general/EditView.cpp:825 +msgid "Insert item" +msgstr "Lisa element" + +#: ../src/gui/general/EditView.cpp:831 +msgid "Erase selected items" +msgstr "Kustuta valitud elemendid" + +#: ../src/gui/general/EditView.cpp:835 +msgid "Clear ruler" +msgstr "Puhasta joonlaud" + +#: ../src/gui/general/EditView.cpp:839 +msgid "Insert line of controllers" +msgstr "" + +#: ../src/gui/general/EditView.cpp:843 +#, fuzzy +msgid "Flip forward" +msgstr "Edasi kerimine" + +#: ../src/gui/general/EditView.cpp:847 +msgid "Flip backwards" +msgstr "" + +#: ../src/gui/general/EditView.cpp:851 +#, fuzzy +msgid "Draw property line" +msgstr "Vaikeproportsioonid" + +#: ../src/gui/general/EditView.cpp:855 +#, fuzzy +msgid "Select all property values" +msgstr "Kustuta see omadus" + +#: ../src/gui/general/EditView.cpp:894 +#, fuzzy +msgid "%1 Controller %2 %3" +msgstr "Vali..." + +#: ../src/gui/general/EditView.cpp:1066 +msgid "I" +msgstr "I" + +#: ../src/gui/general/EditView.cpp:1066 +msgid "II" +msgstr "II" + +#: ../src/gui/general/EditView.cpp:1066 +msgid "III" +msgstr "III" + +#: ../src/gui/general/EditView.cpp:1066 +msgid "IV" +msgstr "IV" + +#: ../src/gui/general/EditView.cpp:1067 +msgid "V" +msgstr "V" + +#: ../src/gui/general/EditView.cpp:1067 +msgid "VI" +msgstr "VI" + +#: ../src/gui/general/EditView.cpp:1067 +msgid "VII" +msgstr "VII" + +#: ../src/gui/general/EditView.cpp:1067 +msgid "VIII" +msgstr "VIII" + +#: ../src/gui/general/EditView.cpp:1069 +msgid "%1 flat" +msgstr "%1 bemoll" + +#: ../src/gui/general/EditView.cpp:1070 +msgid "%1 sharp" +msgstr "%1 diees" + +#: ../src/gui/general/EditView.cpp:1085 +msgid "&Insert Note" +msgstr "L&isa noot" + +#: ../src/gui/general/EditView.cpp:1091 +msgid "&Upper Octave" +msgstr "Oktav &üles" + +#: ../src/gui/general/EditView.cpp:1096 +msgid "&Lower Octave" +msgstr "Oktav &alla" + +#: ../src/gui/general/EditView.cpp:1268 +msgid "Estimated time signature shown" +msgstr "" + +#: ../src/gui/general/EditView.cpp:1431 +#, fuzzy +msgid "Halving durations..." +msgstr "Noodivar&te suund" + +#: ../src/gui/general/EditView.cpp:1445 +#, fuzzy +msgid "Doubling durations..." +msgstr "Noodivar&te suund" + +#: ../src/gui/general/EditView.cpp:1469 +#, fuzzy +msgid "Rescaling..." +msgstr "Faili lugemine..." + +#: ../src/gui/general/EditView.cpp:1489 +msgid "By number of semitones: " +msgstr "" + +#: ../src/gui/general/EditView.cpp:1496 ../src/gui/general/EditView.cpp:1518 +msgid "Transposing..." +msgstr "" + +#: ../src/gui/general/EditView.cpp:1536 +msgid "Transposing up one semitone..." +msgstr "" + +#: ../src/gui/general/EditView.cpp:1545 +msgid "Transposing up one octave..." +msgstr "" + +#: ../src/gui/general/EditView.cpp:1554 +msgid "Transposing down one semitone..." +msgstr "" + +#: ../src/gui/general/EditView.cpp:1563 +msgid "Transposing down one octave..." +msgstr "" + +#: ../src/gui/general/EditView.cpp:1575 +#, fuzzy +msgid "Inverting..." +msgstr "Käivitamine..." + +#: ../src/gui/general/EditView.cpp:1587 +#, fuzzy +msgid "Retrograding..." +msgstr "Faili lugemine..." + +#: ../src/gui/general/EditView.cpp:1599 +#, fuzzy +msgid "Retrograde inverting..." +msgstr "Faili lugemine..." + +#: ../src/gui/general/EditView.cpp:1608 +#, fuzzy +msgid "Jogging left..." +msgstr "Faili sulgemine..." + +#: ../src/gui/general/EditView.cpp:1623 +msgid "Jogging right..." +msgstr "" + +#: ../src/sound/AudioFileManager.cpp:660 +#, fuzzy, c-format +msgid "Downloading file %1" +msgstr "Audiofaili \"%1\" mängimine" + +#: ../src/sound/AudioFileManager.cpp:735 +#, fuzzy +msgid "Converting audio file..." +msgstr "Audio eelvaatluse genereerimine..." + +#: ../src/sound/AudioFileManager.cpp:737 +#, fuzzy +msgid "Resampling audio file..." +msgstr "Faili lugemine..." + +#: ../src/sound/AudioFileManager.cpp:739 +msgid "Converting and resampling audio file..." +msgstr "" + +#: ../src/sound/AudioFileManager.cpp:741 +#, fuzzy +msgid "Importing audio file..." +msgstr "Rosegarden 2.1 faili import..." + +#: ../src/sound/AudioFileManager.cpp:794 +#, fuzzy +msgid "Failed to convert or resample audio file on import" +msgstr "Audiofaili valimine" + +#: ../src/sequencer/main.cpp:46 ../src/sequencer/main.cpp:86 +#, fuzzy +msgid "RosegardenSequencer" +msgstr "Rosegarden" + +#: ../src/sequencer/main.cpp:54 +#, fuzzy +msgid "JACK playback and capture ports" +msgstr "JACK'i mahamängimise latents (millisekundites)" + +#: ../src/commands/segment/SegmentSyncCommand.cpp:38 +#: ../src/commands/segment/SegmentSyncCommand.cpp:44 +#: ../src/commands/segment/SegmentSyncCommand.cpp:55 +#: ../src/commands/segment/SegmentSyncCommand.cpp:63 +#, fuzzy +msgid "Sync segment parameters" +msgstr "Instrumendi parameetrid" + +#: ../src/commands/segment/RenameTrackCommand.h:52 +#, fuzzy +msgid "Rename Track" +msgstr "&Kustuta rada" + +#: ../src/commands/segment/SegmentRepeatToCopyCommand.cpp:39 +msgid "Turn Repeats into Copies" +msgstr "Muuda kordused koopiateks" + +#: ../src/commands/segment/SegmentTransposeCommand.cpp:36 +#: ../src/commands/segment/SegmentTransposeCommand.cpp:42 +#, fuzzy +msgid "Change segment transposition" +msgstr "Muuda segmendi värvi" + +#: ../src/commands/edit/RescaleCommand.h:50 +#: ../src/commands/segment/AudioSegmentRescaleCommand.h:62 +#: ../src/commands/segment/SegmentRescaleCommand.h:58 +msgid "Stretch or S&quash..." +msgstr "" + +#: ../src/commands/segment/SegmentLabelCommand.h:52 +msgid "Re&label..." +msgstr "&Nimeta ümber..." + +#: ../src/commands/segment/AudioSegmentResizeFromStartCommand.cpp:39 +#: ../src/commands/segment/SegmentResizeFromStartCommand.cpp:39 +#, fuzzy +msgid "Resize Segment" +msgstr "Muuda sündmuse suurust" + +#: ../src/commands/segment/RemoveTempoChangeCommand.h:58 +msgid "Remove &Tempo Change..." +msgstr "Eemalda &tempo muutus..." + +#: ../src/commands/segment/SegmentEraseCommand.cpp:40 +#: ../src/commands/segment/SegmentEraseCommand.cpp:52 +msgid "Erase Segment" +msgstr "Kustuta segment" + +#: ../src/commands/segment/AudioSegmentRescaleCommand.cpp:126 +#: ../src/commands/segment/SegmentRescaleCommand.cpp:102 +msgid "(rescaled)" +msgstr "" + +#: ../src/commands/segment/AudioSegmentRescaleCommand.cpp:127 +#: ../src/commands/segment/SegmentRescaleCommand.cpp:105 +msgid "%1 (rescaled)" +msgstr "" + +#: ../src/commands/segment/PasteToTriggerSegmentCommand.cpp:47 +msgid "Paste as New Triggered Segment" +msgstr "" + +#: ../src/commands/segment/SegmentColourMapCommand.h:52 +msgid "Change Segment Color Map..." +msgstr "Muuda segmendi värvikaarti..." + +#: ../src/commands/segment/SegmentQuickCopyCommand.h:55 +#, fuzzy +msgid "Quick-Copy Segment" +msgstr "Liiguta segmenti" + +#: ../src/commands/segment/AudioSegmentSplitCommand.cpp:42 +msgid "Split Audio Segment" +msgstr "Audiofaili tükeldamine" + +#: ../src/commands/segment/AudioSegmentSplitCommand.cpp:103 +#: ../src/commands/segment/SegmentSplitCommand.cpp:135 +#, fuzzy +msgid " (split)" +msgstr "%1 (tükeldatud)" + +#: ../src/commands/segment/AudioSegmentSplitCommand.cpp:104 +#: ../src/commands/segment/SegmentSplitByRecordingSrcCommand.cpp:120 +#: ../src/commands/segment/SegmentSplitByRecordingSrcCommand.cpp:122 +#: ../src/commands/segment/SegmentSplitCommand.cpp:136 +msgid "%1 (split)" +msgstr "%1 (tükeldatud)" + +#: ../src/commands/segment/SegmentLabelCommand.cpp:40 +msgid "Label Segments" +msgstr "Segmentide nimetamine" + +#: ../src/commands/segment/OpenOrCloseRangeCommand.cpp:43 +msgid "Open or Close Range" +msgstr "" + +#: ../src/commands/edit/TransposeCommand.h:55 +#: ../src/commands/segment/SegmentTransposeCommand.h:54 +#, fuzzy +msgid "Transpose by &Interval..." +msgstr "&Transponeeri..." + +#: ../src/commands/segment/SegmentAutoSplitCommand.cpp:148 +msgid "%1 (part)" +msgstr "" + +#: ../src/commands/segment/AudioSegmentInsertCommand.cpp:51 +#: ../src/commands/segment/SegmentInsertCommand.cpp:43 +#: ../src/commands/segment/SegmentInsertCommand.cpp:56 +msgid "Create Segment" +msgstr "Loo segment" + +#: ../src/commands/segment/AudioSegmentInsertCommand.cpp:114 +msgid "%1 (inserted)" +msgstr "%1 (lisatud)" + +#: ../src/commands/segment/AudioSegmentInsertCommand.cpp:117 +msgid "unknown audio file" +msgstr "tundmatu audiofail" + +#: ../src/commands/segment/CreateTempoMapFromSegmentCommand.cpp:40 +#, fuzzy +msgid "Set Tempos from Beat Segment" +msgstr "Korda segmenti" + +#: ../src/commands/segment/SegmentSplitByRecordingSrcCommand.h:52 +#, fuzzy +msgid "Split by &Recording Source..." +msgstr "Tükeldamine helikõrguse järgi" + +#: ../src/commands/segment/SegmentColourMapCommand.cpp:40 +msgid "Change Segment Color Map" +msgstr "Muuda segmendi värvikaarti" + +#: ../src/commands/edit/CopyCommand.cpp:64 +#: ../src/commands/segment/SegmentQuickCopyCommand.cpp:57 +msgid "%1 (copied)" +msgstr "%1 (kopeeritud)" + +#: ../src/commands/segment/SegmentColourCommand.h:52 +msgid "Change Segment Color..." +msgstr "Muuda segmendi värvi..." + +#: ../src/commands/segment/SegmentSplitByPitchCommand.cpp:170 +msgid "%1 (upper)" +msgstr "" + +#: ../src/commands/segment/SegmentSplitByPitchCommand.cpp:172 +msgid "%1 (lower)" +msgstr "" + +#: ../src/commands/segment/SegmentSingleRepeatToCopyCommand.cpp:39 +msgid "Turn Single Repeat into Copy" +msgstr "Muuda üksik kordus koopiaks" + +#: ../src/commands/segment/AddTempoChangeCommand.h:58 +msgid "Add Te&mpo Change..." +msgstr "Lisa te&mpo muutus..." + +#: ../src/commands/segment/AudioSegmentAutoSplitCommand.h:57 +#: ../src/commands/segment/SegmentAutoSplitCommand.h:53 +msgid "&Split on Silence" +msgstr "&Tükeldamine vaikuse kohalt" + +#: ../src/commands/segment/SetTriggerSegmentBaseVelocityCommand.cpp:39 +#, fuzzy +msgid "Set Base Velocity" +msgstr "Noodi kiirus:" + +#: ../src/commands/segment/DeleteRangeCommand.cpp:43 +#: ../src/commands/segment/EraseSegmentsStartingInRangeCommand.cpp:39 +#, fuzzy +msgid "Delete Range" +msgstr "&Kustuta" + +#: ../src/commands/segment/ChangeCompositionLengthCommand.h:53 +#, fuzzy +msgid "Change &Composition Start and End..." +msgstr "Muuda &kompositsiooni pikkust..." + +#: ../src/commands/segment/MoveTracksCommand.h:51 +msgid "Move Tracks..." +msgstr "Liiguta radasid..." + +#: ../src/commands/segment/SegmentColourCommand.cpp:39 +msgid "Change Segment Color" +msgstr "Muuda segmendi värvi" + +#: ../src/commands/segment/AudioSegmentDistributeCommand.h:66 +msgid "Distribute Audio Segments over MIDI" +msgstr "" + +#: ../src/commands/segment/AudioSegmentAutoSplitCommand.cpp:147 +msgid "%1 (autosplit %2)" +msgstr "" + +#: ../src/commands/segment/SetTriggerSegmentDefaultRetuneCommand.cpp:39 +#, fuzzy +msgid "Set Default Retune" +msgstr "Vaikeväärtus:" + +#: ../src/commands/segment/AddTimeSignatureCommand.h:52 +msgid "Add Time Si&gnature Change..." +msgstr "Lisa &taktimõõdu muutus..." + +#: ../src/commands/segment/AddTriggerSegmentCommand.cpp:42 +#, fuzzy +msgid "Add Triggered Segment" +msgstr "Loo segment" + +#: ../src/commands/segment/SetTriggerSegmentDefaultTimeAdjustCommand.cpp:39 +msgid "Set Default Time Adjust" +msgstr "" + +#: ../src/commands/segment/RemoveTimeSignatureCommand.h:58 +#, fuzzy +msgid "Remove &Time Signature Change..." +msgstr "Lisa &taktimõõdu muutus..." + +#: ../src/commands/segment/SegmentCommandRepeat.cpp:39 +msgid "Repeat Segments" +msgstr "Korda segmenti" + +#: ../src/commands/segment/AddTracksCommand.h:55 +msgid "Add Tracks..." +msgstr "Lisa rajad..." + +#: ../src/commands/segment/ModifyDefaultTempoCommand.h:51 +msgid "Modify &Default Tempo..." +msgstr "Muuda &vaiketempot..." + +#: ../src/commands/segment/SegmentSplitByPitchCommand.h:61 +#, fuzzy +msgid "Split by &Pitch..." +msgstr "Tükeldamine helikõrguse järgi" + +#: ../src/commands/segment/DeleteTriggerSegmentCommand.cpp:40 +msgid "Delete Triggered Segment" +msgstr "" + +#: ../src/commands/segment/SegmentSplitCommand.cpp:42 +msgid "Split Segment" +msgstr "Segmendi tükeldamine" + +#: ../src/commands/segment/DeleteTracksCommand.h:51 +msgid "Delete Tracks..." +msgstr "Kustuta rajad..." + +#: ../src/commands/segment/InsertRangeCommand.cpp:42 +#, fuzzy +msgid "Insert Range" +msgstr "Lisa paus" + +#: ../src/commands/segment/DeleteRangeCommand.h:62 +msgid "Rejoin Command" +msgstr "" + +#: ../src/commands/segment/SetTriggerSegmentBasePitchCommand.cpp:39 +#, fuzzy +msgid "Set Base Pitch" +msgstr "Tükeldamine helikõrguse järgi" + +#: ../src/commands/segment/PasteConductorDataCommand.cpp:41 +#, fuzzy +msgid "Paste Tempos and Time Signatures" +msgstr "Ava sündmuse redaktoris" + +#: ../src/commands/segment/SegmentSyncClefCommand.cpp:34 +#, fuzzy +msgid "Sync segment clef" +msgstr "Segmendi nime muutmine" + +#: ../src/commands/matrix/MatrixInsertionCommand.cpp:46 +#: ../src/commands/notation/NoteInsertionCommand.cpp:54 +msgid "Insert Note" +msgstr "Noodi lisamine" + +#: ../src/commands/matrix/MatrixEraseCommand.cpp:41 +msgid "Erase Note" +msgstr "Kustuta noot" + +#: ../src/commands/matrix/MatrixPercussionInsertionCommand.cpp:47 +#, fuzzy +msgid "Insert Percussion Note" +msgstr "Noodi lisamine" + +#: ../src/commands/matrix/MatrixModifyCommand.cpp:43 +msgid "Move Note" +msgstr "Liiguta nooti" + +#: ../src/commands/matrix/MatrixModifyCommand.cpp:43 +msgid "Modify Note" +msgstr "Muuda nooti" + +#: ../src/commands/edit/PasteEventsCommand.cpp:98 +msgid "Paste into an existing gap [\"restricted\"]" +msgstr "" + +#: ../src/commands/edit/PasteEventsCommand.cpp:100 +msgid "Erase existing events to make room [\"simple\"]" +msgstr "" + +#: ../src/commands/edit/PasteEventsCommand.cpp:102 +msgid "Move existing events out of the way [\"open-n-paste\"]" +msgstr "" + +#: ../src/commands/edit/PasteEventsCommand.cpp:104 +msgid "Overlay notes, tying against present notes [\"note-overlay\"]" +msgstr "" + +#: ../src/commands/edit/PasteEventsCommand.cpp:106 +msgid "Overlay notes, ignoring present notes [\"matrix-overlay\"]" +msgstr "" + +#: ../src/commands/edit/AddDotCommand.h:52 +#, fuzzy +msgid "&Add Dot" +msgstr "Lisa %1" + +#: ../src/commands/edit/RemoveMarkerCommand.h:55 +msgid "&Remove Marker" +msgstr "&Eemalda märgis" + +#: ../src/commands/edit/EventUnquantizeCommand.cpp:43 +#: ../src/commands/edit/EventUnquantizeCommand.cpp:54 +msgid "Unquantize Events" +msgstr "Eemalda sündmustelt kvantimine" + +#: ../src/commands/edit/ChangeVelocityCommand.h:53 +#, fuzzy +msgid "&Increase Velocity" +msgstr "Noodi kiirus:" + +#: ../src/commands/edit/ChangeVelocityCommand.h:54 +#, fuzzy +msgid "&Reduce Velocity" +msgstr "Noodi kiirus:" + +#: ../src/commands/edit/CopyCommand.cpp:46 +msgid "(excerpt)" +msgstr "" + +#: ../src/commands/edit/CopyCommand.cpp:60 +msgid "(copied)" +msgstr "(kopeeritud)" + +#: ../src/commands/edit/EventInsertionCommand.cpp:39 +msgid "Insert Event" +msgstr "Lisa sündmus" + +#: ../src/commands/edit/InsertTriggerNoteCommand.cpp:55 +#, fuzzy +msgid "Insert Trigger Note" +msgstr "Noodi lisamine" + +#: ../src/commands/edit/CollapseNotesCommand.h:50 +msgid "Collapse &Equal-Pitch Notes" +msgstr "Tõmba üh&ekõrgused noodid kokku" + +#: ../src/commands/edit/TransposeCommand.h:61 +msgid "&Up a Semitone" +msgstr "Pooltoon &üles" + +#: ../src/commands/edit/TransposeCommand.h:62 +msgid "&Down a Semitone" +msgstr "Pooltoon &alla" + +#: ../src/commands/edit/TransposeCommand.h:63 +msgid "Up an &Octave" +msgstr "Oktav ü&les" + +#: ../src/commands/edit/TransposeCommand.h:64 +msgid "Down an Octa&ve" +msgstr "Oktav &alla" + +#: ../src/commands/edit/TransposeCommand.h:65 +#, fuzzy +msgid "&Transpose by Semitones..." +msgstr "&Transponeeri..." + +#: ../src/commands/edit/SetNoteTypeCommand.h:56 +#, fuzzy +msgid "&Set Note Type" +msgstr "L&isa noot" + +#: ../src/commands/edit/EventEditCommand.h:55 +msgid "Edit E&vent" +msgstr "Redigeeri s&ündmust" + +#: ../src/commands/edit/AddMarkerCommand.h:54 +msgid "&Add Marker" +msgstr "&Lisa märgis" + +#: ../src/commands/edit/SelectionPropertyCommand.h:66 +#, fuzzy +msgid "Set &Property" +msgstr "Sündmuse omadused" + +#: ../src/commands/edit/CutCommand.h:55 +msgid "Cu&t" +msgstr "&Lõika" + +#: ../src/commands/edit/EventQuantizeCommand.cpp:114 +msgid "Heuristic Notation &Quantize" +msgstr "Heuristiline noodikirja &kvantimine" + +#: ../src/commands/edit/EventQuantizeCommand.cpp:116 +msgid "Grid &Quantize" +msgstr "" + +#: ../src/commands/edit/ClearTriggersCommand.h:52 +#, fuzzy +msgid "&Clear Triggers" +msgstr "Puhasta joonlaud" + +#: ../src/commands/edit/RetrogradeCommand.h:51 +#, fuzzy +msgid "&Retrograde" +msgstr "Sa&lvestus" + +#: ../src/commands/edit/InvertCommand.h:51 +#, fuzzy +msgid "&Invert" +msgstr "L&isa noot" + +#: ../src/commands/edit/SetTriggerCommand.h:64 +#, fuzzy +msgid "Tri&gger Segment" +msgstr "Kustuta segment" + +#: ../src/commands/edit/SetLyricsCommand.h:50 +msgid "Edit L&yrics" +msgstr "Redigeeri s&õnu" + +#: ../src/commands/edit/MoveAcrossSegmentsCommand.cpp:73 +msgid "&Move Events to Other Segment" +msgstr "" + +#: ../src/commands/edit/RetrogradeInvertCommand.h:51 +msgid "Re&trograde Invert" +msgstr "" + +#: ../src/commands/edit/ModifyMarkerCommand.h:55 +msgid "&Modify Marker" +msgstr "&Muuda märgist" + +#: ../src/commands/studio/AddControlParameterCommand.h:61 +#, fuzzy +msgid "&Add Control Parameter" +msgstr "Instrumendi parameetrid" + +#: ../src/commands/studio/ModifyInstrumentMappingCommand.h:55 +msgid "Modify &Instrument Mapping" +msgstr "" + +#: ../src/commands/studio/RemoveControlParameterCommand.h:60 +#, fuzzy +msgid "&Remove Control Parameter" +msgstr "Segmendi parameetrid" + +#: ../src/commands/studio/ReconnectDeviceCommand.h:55 +#, fuzzy +msgid "Reconnect Device" +msgstr "Kustuta seade" + +#: ../src/commands/studio/ModifyDeviceCommand.h:68 +#, fuzzy +msgid "Modify &MIDI Bank" +msgstr "MIDI &filtrite muutmine..." + +#: ../src/commands/studio/CreateOrDeleteDeviceCommand.h:68 +#, fuzzy +msgid "Create Device" +msgstr "Kustuta seade" + +#: ../src/commands/studio/ModifyDeviceMappingCommand.h:55 +msgid "Modify &Device Mapping" +msgstr "" + +#: ../src/commands/studio/RenameDeviceCommand.h:55 +#, fuzzy +msgid "Rename Device" +msgstr "Nimeta fail ümber" + +#: ../src/commands/studio/ModifyControlParameterCommand.h:61 +#, fuzzy +msgid "&Modify Control Parameter" +msgstr "&Muuda märgist" + +#: ../src/commands/notation/TieNotesCommand.h:49 +#, fuzzy +msgid "&Tie" +msgstr "Aeg:" + +#: ../src/commands/notation/ClefInsertionCommand.cpp:74 +msgid "Add Cle&f Change..." +msgstr "Lisa noodiv&õtme muutus..." + +#: ../src/commands/notation/GuitarChordInsertionCommand.cpp:40 +#, fuzzy +msgid "Insert Guitar Chord" +msgstr "Lisa paus" + +#: ../src/commands/notation/RespellCommand.cpp:47 +#, c-format +msgid "Respell with %1" +msgstr "" + +#: ../src/commands/notation/RespellCommand.cpp:50 +msgid "Do&uble Sharp" +msgstr "" + +#: ../src/commands/notation/RespellCommand.cpp:52 +msgid "&Sharp" +msgstr "&Diees" + +#: ../src/commands/notation/RespellCommand.cpp:54 +msgid "&Flat" +msgstr "&Bemoll" + +#: ../src/commands/notation/RespellCommand.cpp:56 +msgid "Dou&ble Flat" +msgstr "" + +#: ../src/commands/notation/RespellCommand.cpp:58 +msgid "&Natural" +msgstr "" + +#: ../src/commands/notation/RespellCommand.cpp:60 +msgid "N&one" +msgstr "&Puudub" + +#: ../src/commands/notation/RespellCommand.cpp:66 +#, fuzzy +msgid "Respell Accidentals &Upward" +msgstr "Juhuslike märkide tööriistriba" + +#: ../src/commands/notation/RespellCommand.cpp:69 +#, fuzzy +msgid "Respell Accidentals &Downward" +msgstr "Juhuslike märkide tööriistriba" + +#: ../src/commands/notation/RespellCommand.cpp:72 +#, fuzzy +msgid "&Restore Accidentals" +msgstr "&Juhuslikud märgid" + +#: ../src/commands/notation/RespellCommand.cpp:75 +#, fuzzy +msgid "Respell Accidentals" +msgstr "&Juhuslikud märgid" + +#: ../src/commands/notation/DeCounterpointCommand.h:55 +msgid "Split-and-Tie Overlapping &Chords" +msgstr "" + +#: ../src/commands/notation/BeamCommand.h:49 +#, fuzzy +msgid "&Beam Group" +msgstr "&Grupeerimine" + +#: ../src/commands/notation/AddTextMarkCommand.h:51 +#, fuzzy +msgid "Add Te&xt Mark..." +msgstr "Lisa rajad..." + +#: ../src/commands/notation/RestoreSlursCommand.h:49 +#, fuzzy +msgid "&Restore Slur Positions" +msgstr "Taasta a&rvutatud noodivarred" + +#: ../src/commands/notation/SustainInsertionCommand.h:56 +msgid "Add Pedal &Press" +msgstr "" + +#: ../src/commands/notation/SustainInsertionCommand.h:58 +msgid "Add Pedal &Release" +msgstr "" + +#: ../src/commands/notation/FixNotationQuantizeCommand.h:49 +#, fuzzy +msgid "Fi&x Notation Quantization" +msgstr "Nootide kvantimise parandamine..." + +#: ../src/commands/notation/ChangeStemsCommand.h:51 +msgid "Stems &Up" +msgstr "Noodivarred &üles" + +#: ../src/commands/notation/ChangeStemsCommand.h:51 +msgid "Stems &Down" +msgstr "Noodivarred &alla" + +#: ../src/commands/notation/MakeAccidentalsCautionaryCommand.cpp:43 +#, fuzzy +msgid "Use &Cautionary Accidentals" +msgstr "&Juhuslikud märgid" + +#: ../src/commands/notation/MakeAccidentalsCautionaryCommand.cpp:45 +msgid "Cancel C&autionary Accidentals" +msgstr "" + +#: ../src/commands/notation/SetVisibilityCommand.h:50 +msgid "Set Visibility" +msgstr "" + +#: ../src/commands/notation/ChangeStyleCommand.h:53 +msgid "Change &Note Style" +msgstr "Muuda &noodi stiili" + +#: ../src/commands/notation/TextInsertionCommand.cpp:41 +msgid "Insert Text" +msgstr "Teksti lisamine" + +#: ../src/commands/notation/InterpretCommand.h:70 +msgid "&Interpret..." +msgstr "&Interpreet..." + +#: ../src/commands/notation/TupletCommand.h:53 +#, fuzzy +msgid "&Triplet" +msgstr "Triool" + +#: ../src/commands/notation/TupletCommand.h:54 +#, fuzzy +msgid "Tu&plet..." +msgstr "&Interpreet..." + +#: ../src/commands/notation/UnTupletCommand.h:50 +#, fuzzy +msgid "&Untuplet" +msgstr " Üksus" + +#: ../src/commands/notation/CollapseRestsCommand.h:54 +msgid "&Collapse Rests" +msgstr "&Tõmba pausid kokku" + +#: ../src/commands/notation/AddIndicationCommand.cpp:145 +msgid "Add S&lur" +msgstr "" + +#: ../src/commands/notation/AddIndicationCommand.cpp:147 +msgid "Add &Phrasing Slur" +msgstr "" + +#: ../src/commands/notation/AddIndicationCommand.cpp:149 +msgid "Add Double-Octave Up" +msgstr "" + +#: ../src/commands/notation/AddIndicationCommand.cpp:151 +msgid "Add Octave &Up" +msgstr "" + +#: ../src/commands/notation/AddIndicationCommand.cpp:153 +msgid "Add Octave &Down" +msgstr "" + +#: ../src/commands/notation/AddIndicationCommand.cpp:155 +msgid "Add Double Octave Down" +msgstr "" + +#: ../src/commands/notation/AddIndicationCommand.cpp:160 +#, fuzzy +msgid "Add &Crescendo" +msgstr "Crescendo lisamine..." + +#: ../src/commands/notation/AddIndicationCommand.cpp:162 +#, fuzzy +msgid "Add &Decrescendo" +msgstr "Decrescendo lisamine..." + +#: ../src/commands/notation/AddIndicationCommand.cpp:164 +#, fuzzy +msgid "Add &Glissando" +msgstr "Crescendo lisamine..." + +#: ../src/commands/notation/AddIndicationCommand.cpp:167 +msgid "Add &%1%2" +msgstr "Lisa &%1%2" + +#: ../src/commands/notation/RemoveNotationQuantizeCommand.h:49 +#, fuzzy +msgid "Remo&ve Notation Quantization" +msgstr "Nootide kvantimise parandamine..." + +#: ../src/commands/notation/MakeChordCommand.h:50 +msgid "Make &Chord" +msgstr "Tekita a&kord" + +#: ../src/commands/notation/MultiKeyInsertionCommand.h:63 +#, fuzzy +msgid "Change all to &Key %1..." +msgstr "Muuda helisti&kuks %1..." + +#: ../src/commands/notation/KeyInsertionCommand.h:67 +#: ../src/commands/notation/MultiKeyInsertionCommand.h:65 +msgid "Add &Key Change..." +msgstr "Lisa helisti&ku muutus..." + +#: ../src/commands/notation/RestoreStemsCommand.h:49 +#, fuzzy +msgid "&Restore Stems" +msgstr "Taasta a&rvutatud noodivarred" + +#: ../src/commands/notation/MakeNotesViableCommand.h:55 +#: ../src/commands/notation/MakeRegionViableCommand.h:52 +msgid "Tie Notes at &Barlines" +msgstr "" + +#: ../src/commands/notation/AddSlashesCommand.h:46 +msgid "Slashes" +msgstr "" + +#: ../src/commands/notation/ChangeSlurPositionCommand.h:51 +msgid "Slur &Above" +msgstr "" + +#: ../src/commands/notation/ChangeSlurPositionCommand.h:51 +msgid "Slur &Below" +msgstr "" + +#: ../src/commands/notation/NormalizeRestsCommand.h:54 +msgid "&Normalize Rests" +msgstr "&Normaliseeri pausid" + +#: ../src/commands/notation/TextChangeCommand.cpp:41 +#, fuzzy +msgid "Edit Text" +msgstr "Sündmuse redigeerimine" + +#: ../src/commands/notation/RemoveMarksCommand.h:49 +#, fuzzy +msgid "&Remove All Marks" +msgstr "Eemalda kõik märgised" + +#: ../src/commands/notation/AutoBeamCommand.h:52 +#, fuzzy +msgid "&Auto-Beam" +msgstr "Automaatne salvestamine" + +#: ../src/commands/notation/UntieNotesCommand.h:49 +#, fuzzy +msgid "&Untie" +msgstr " Üksus" + +#: ../src/commands/notation/AddMarkCommand.cpp:48 +msgid "S&forzando" +msgstr "S&forzando" + +#: ../src/commands/notation/AddMarkCommand.cpp:50 +msgid "Sta&ccato" +msgstr "Sta&ccato" + +#: ../src/commands/notation/AddMarkCommand.cpp:52 +msgid "R&inforzando" +msgstr "R&inforzando" + +#: ../src/commands/notation/AddMarkCommand.cpp:54 +msgid "T&enuto" +msgstr "T&enuto" + +#: ../src/commands/notation/AddMarkCommand.cpp:56 +msgid "Tri&ll" +msgstr "Tri&ller" + +#: ../src/commands/notation/AddMarkCommand.cpp:58 +msgid "Trill &with Line" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:60 +#, fuzzy +msgid "Trill Line" +msgstr "Tri&ller" + +#: ../src/commands/notation/AddMarkCommand.cpp:62 +msgid "&Turn" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:64 +msgid "&Accent" +msgstr "&Aktsent" + +#: ../src/commands/notation/AddMarkCommand.cpp:66 +msgid "&Staccatissimo" +msgstr "&Staccatissimo" + +#: ../src/commands/notation/AddMarkCommand.cpp:68 +msgid "&Marcato" +msgstr "&Marcato" + +#: ../src/commands/notation/AddMarkCommand.cpp:70 +msgid "&Pause" +msgstr "&Paus" + +#: ../src/commands/notation/AddMarkCommand.cpp:72 +msgid "&Up-Bow" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:74 +msgid "&Down-Bow" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:76 +msgid "Mo&rdent" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:78 +#, fuzzy +msgid "Inverted Mordent" +msgstr "Lisa sündmus" + +#: ../src/commands/notation/AddMarkCommand.cpp:80 +msgid "Long Mordent" +msgstr "" + +#: ../src/commands/notation/AddMarkCommand.cpp:82 +#, fuzzy +msgid "Lon&g Inverted Mordent" +msgstr "A&kordi lisamise režiim" + +#: ../src/commands/notation/AddMarkCommand.cpp:84 +msgid "&%1%2" +msgstr "&%1%2" + +#: ../src/commands/notation/AddMarkCommand.cpp:89 +#, c-format +msgid "Add %1" +msgstr "Lisa %1" + +#: ../src/commands/notation/ResetDisplacementsCommand.h:49 +#, fuzzy +msgid "Restore Positions" +msgstr "Taasta a&rvutatud noodivarred" + +#: ../src/commands/notation/IncrementDisplacementsCommand.h:52 +#, fuzzy +msgid "Fine Reposition" +msgstr "Kursori asukoht" + +#: ../src/commands/notation/RestoreTiesCommand.h:49 +#, fuzzy +msgid "&Restore Tie Positions" +msgstr "Taasta a&rvutatud noodivarred" + +#: ../src/commands/notation/ChangeTiePositionCommand.h:47 +msgid "Tie &Above" +msgstr "" + +#: ../src/commands/notation/ChangeTiePositionCommand.h:47 +msgid "Tie &Below" +msgstr "" + +#: ../src/commands/notation/KeyInsertionCommand.h:65 +msgid "Change to &Key %1..." +msgstr "Muuda helisti&kuks %1..." + +#: ../src/commands/notation/RemoveFingeringMarksCommand.h:49 +#, fuzzy +msgid "&Remove Fingerings" +msgstr "&Eemalda märgis" + +#: ../src/commands/notation/BreakCommand.h:49 +#, fuzzy +msgid "&Unbeam" +msgstr " Üksus" + +#: ../src/commands/notation/UnGraceCommand.h:48 +msgid "Ung&race" +msgstr "" + +#: ../src/commands/notation/AddFingeringMarkCommand.cpp:45 +#, fuzzy +msgid "Add Other &Fingering..." +msgstr "Decrescendo lisamine..." + +#: ../src/commands/notation/AddFingeringMarkCommand.cpp:47 +#, fuzzy +msgid "Add Fingering &0 (Thumb)" +msgstr "Decrescendo lisamine..." + +#: ../src/commands/notation/AddFingeringMarkCommand.cpp:49 +#, fuzzy, c-format +msgid "Add Fingering &%1" +msgstr "Decrescendo lisamine..." + +#: ../src/document/io/HydrogenXMLHandler.cpp:277 +msgid " imported from Hydrogen " +msgstr "" + +#: ../src/document/io/LilyPondExporter.cpp:404 +msgid "" +"LilyPond does not allow spaces or backslashes in filenames.\n" +"\n" +"Would you like to use\n" +"\n" +" %1\n" +"\n" +" instead?" +msgstr "" + +#: ../src/document/io/LilyPondExporter.cpp:2054 +msgid "warning: overlong bar truncated here" +msgstr "" + +#: ../src/document/io/LilyPondExporter.cpp:2060 +msgid "warning: bar too short, padding with rests" +msgstr "" + +#: ../src/document/MultiViewCommandHistory.cpp:318 +msgid "Nothing to undo" +msgstr "Pole midagi tagasi võtta" + +#: ../src/document/MultiViewCommandHistory.cpp:320 +msgid "Nothing to redo" +msgstr "Pole midagi uuesti teha" + +#: ../src/document/MultiViewCommandHistory.cpp:328 +#: ../src/document/MultiViewCommandHistory.cpp:372 +#, c-format +msgid "Und&o %1" +msgstr "V&õta tagasi %1" + +#: ../src/document/MultiViewCommandHistory.cpp:330 +#: ../src/document/MultiViewCommandHistory.cpp:374 +#, c-format +msgid "Re&do %1" +msgstr "&Tee uuesti %1" + +#: ../src/document/RosegardenGUIDoc.cpp:328 +msgid "" +"The current file has been modified.\n" +"Do you want to save it?" +msgstr "" +"Käesolevat faili on muudetud.\n" +"Kas salvestada see?" + +#: ../src/document/RosegardenGUIDoc.cpp:480 +#, c-format +msgid "" +"_n: Delete the 1 audio file recorded during the unsaved session?\n" +"Delete the %n audio files recorded during the unsaved session?" +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:501 +msgid "" +"The following audio files were recorded during this session but have been " +"unloaded\n" +"from the audio file manager, and so are no longer in use in the document you " +"are saving.\n" +"\n" +"You may want to clean up these files to save disk space.\n" +"\n" +"Please select any you wish to delete permanently from the hard disk.\n" +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:517 +#, c-format +msgid "" +"_n: About to delete 1 audio file permanently from the hard disk." +"
                      There will be no way to recover this file.
                      Are you sure?
                      \n" +"\n" +"About to delete %n audio files permanently from the hard disk.
                      There " +"will be no way to recover these files.
                      Are you sure?
                      " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:580 +msgid "Can't open file '%1'" +msgstr "Faili '%1' pole võimalik avada." + +#: ../src/document/RosegardenGUIDoc.cpp:585 +msgid "Reading file..." +msgstr "Faili lugemine..." + +#: ../src/document/RosegardenGUIDoc.cpp:603 +#, fuzzy +msgid "Could not open Rosegarden file" +msgstr "See pole Rosegarden-4 fail" + +#: ../src/document/RosegardenGUIDoc.cpp:641 +msgid "Error when parsing file '%1': \"%2\"" +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:689 +msgid "Generating audio previews..." +msgstr "Audio eelvaatluste genereerimine..." + +#: ../src/document/RosegardenGUIDoc.cpp:721 +msgid "Merge" +msgstr "Liida" + +#: ../src/document/RosegardenGUIDoc.cpp:1605 +msgid "File load cancelled" +msgstr "Faili laadimine katkestatud" + +#: ../src/document/RosegardenGUIDoc.cpp:1625 +msgid "" +"

                      Audio and plugins not available

                      This composition uses audio files " +"or plugins, but Rosegarden is currently running without audio because the " +"JACK audio server was not available on startup.

                      Please exit " +"Rosegarden, start the JACK audio server and re-start Rosegarden if you wish " +"to load this complete composition.

                      WARNING: If you re-save this " +"composition, all audio and plugin data and settings in it will be lost.

                      " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1628 +msgid "" +"

                      Audio and plugins not available

                      This composition uses audio files " +"or plugins, but you are running a version of Rosegarden that was compiled " +"without audio support.

                      WARNING: If you re-save this composition " +"from this version of Rosegarden, all audio and plugin data and settings in " +"it will be lost.

                      " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1665 +msgid "" +"

                      Incorrect audio sample rate

                      This composition contains audio files " +"that were recorded or imported with the audio server running at a different " +"sample rate (%1 Hz) from the current JACK server sample rate (%2 Hz).

                      Rosegarden will play this composition at the correct speed, but any " +"audio files in it will probably sound awful.

                      Please consider re-" +"starting the JACK server at the correct rate (%3 Hz) and re-loading this " +"composition before you do any more work with it.

                      " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1675 +msgid "" +"

                      Inconsistent audio sample rates

                      This composition contains audio " +"files at more than one sample rate.

                      Rosegarden will play them at the " +"correct speed, but any audio files that were recorded or imported at rates " +"different from the current JACK server sample rate (%1 Hz) will probably " +"sound awful.

                      Please see the audio file manager dialog for more " +"details, and consider resampling any files that are at the wrong rate.

                      " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1676 +#, fuzzy +msgid "Inconsistent sample rates" +msgstr "Instrumendi parameetrid" + +#: ../src/document/RosegardenGUIDoc.cpp:1690 +msgid "" +"

                      Plugins not found

                      The following audio plugins could not be loaded:" +"

                        " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1698 +msgid "
                      • %1 (from %2)
                      • " +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:1712 +msgid "" +"This file contains one or more old element types that are now deprecated.\n" +"Support for these elements may disappear in future versions of Rosegarden.\n" +"We recommend you re-save this file from this version of Rosegarden to ensure " +"that it can still be re-loaded in future versions." +msgstr "" + +#: ../src/document/RosegardenGUIDoc.cpp:2207 +msgid "Insert Recorded MIDI" +msgstr "Lisa salvestatud MIDI" + +#: ../src/document/RosegardenGUIDoc.cpp:2560 +msgid "%1 (recorded)" +msgstr "" + +#: ../src/document/RoseXmlHandler.cpp:442 +msgid "" +"This file was written by Rosegarden %1, and it uses\n" +"a different file format that cannot be read by this version." +msgstr "" + +#: ../src/document/RoseXmlHandler.cpp:452 +msgid "" +"This file was written by Rosegarden %1, which is more recent than this " +"version.\n" +"There may be some incompatibilities with the file format." +msgstr "" + +#: ../src/document/RoseXmlHandler.cpp:1687 +#, fuzzy +msgid "Loading plugins..." +msgstr "Pluginate nummerdamine..." + +#: rc.cpp:6 rc.cpp:144 +#, fuzzy, no-c-format +msgid "Se&gment" +msgstr "Seg&mendid" + +#: rc.cpp:9 rc.cpp:84 rc.cpp:147 rc.cpp:303 +#, fuzzy, no-c-format +msgid "Edit &With" +msgstr "Sõnade redigeerimine" + +#: rc.cpp:12 rc.cpp:21 rc.cpp:30 rc.cpp:39 rc.cpp:345 +#, no-c-format +msgid "Actions Toolbar" +msgstr "Tegevuste tööriistariba" + +#: rc.cpp:15 rc.cpp:33 rc.cpp:129 rc.cpp:285 +#, fuzzy, no-c-format +msgid "Time Toolbar" +msgstr "Noodivõtmete tööriistariba" + +#: rc.cpp:18 rc.cpp:36 rc.cpp:57 rc.cpp:63 rc.cpp:120 rc.cpp:243 rc.cpp:342 +#, no-c-format +msgid "Transport Toolbar" +msgstr "Transpordi tööriistariba" + +#: rc.cpp:24 rc.cpp:42 rc.cpp:123 rc.cpp:348 +#, fuzzy, no-c-format +msgid "Zoom Toolbar" +msgstr "Näita &suurenduse tööriistariba" + +#: rc.cpp:45 rc.cpp:60 rc.cpp:99 rc.cpp:228 rc.cpp:327 +#, fuzzy, no-c-format +msgid "T&ransport" +msgstr "Transponeerimine" + +#: rc.cpp:51 +#, fuzzy, no-c-format +msgid "Number of Stereo &Inputs" +msgstr "JACK audio sisendite arv" + +#: rc.cpp:54 +#, fuzzy, no-c-format +msgid "&Number of Submasters" +msgstr "JACK audio sisendite arv" + +#: rc.cpp:66 +#, no-c-format +msgid "&Import" +msgstr "&Impordi" + +#: rc.cpp:69 +#, no-c-format +msgid "&Merge" +msgstr "Ü&henda" + +#: rc.cpp:72 +#, no-c-format +msgid "&Export" +msgstr "&Ekspordi" + +#: rc.cpp:75 rc.cpp:141 rc.cpp:297 +#, fuzzy, no-c-format +msgid "&Composition" +msgstr "Kursori asukoht" + +#: rc.cpp:78 +#, no-c-format +msgid "&Studio" +msgstr "&Stuudio" + +#: rc.cpp:81 +#, fuzzy, no-c-format +msgid "Se&gments" +msgstr "Seg&mendid" + +#: rc.cpp:90 +#, no-c-format +msgid "Trac&ks" +msgstr "&Rajad" + +#: rc.cpp:93 +#, fuzzy, no-c-format +msgid "Set &Instrument" +msgstr "Sea instrument" + +#: rc.cpp:102 rc.cpp:234 rc.cpp:333 +#, fuzzy, no-c-format +msgid "&Toolbars" +msgstr "Noodivõtmete tööriistariba" + +#: rc.cpp:105 rc.cpp:237 rc.cpp:336 +#, fuzzy, no-c-format +msgid "&Rulers" +msgstr "Näita &joonlaudu" + +#: rc.cpp:111 rc.cpp:240 rc.cpp:339 +#, no-c-format +msgid "Tools Toolbar" +msgstr "Tööriistade tööriistariba" + +#: rc.cpp:114 +#, no-c-format +msgid "Tracks Toolbar" +msgstr "Radade tööriistariba" + +#: rc.cpp:117 +#, no-c-format +msgid "Editors Toolbar" +msgstr "Redaktori tööriistariba" + +#: rc.cpp:135 +#, fuzzy, no-c-format +msgid "&Layout Mode" +msgstr "Paigutus" + +#: rc.cpp:138 rc.cpp:294 +#, fuzzy, no-c-format +msgid "Add Event Ruler" +msgstr "Sündmuste filter" + +#: rc.cpp:150 +#, fuzzy, no-c-format +msgid "N&ote" +msgstr "&Noodid" + +#: rc.cpp:153 +#, fuzzy, no-c-format +msgid "Mar&ks" +msgstr "&Rajad" + +#: rc.cpp:156 +#, fuzzy, no-c-format +msgid "&Ornaments" +msgstr "Seg&mendid" + +#: rc.cpp:159 +#, fuzzy, no-c-format +msgid "&Fingerings" +msgstr "Decrescendo lisamine..." + +#: rc.cpp:162 +#, fuzzy, no-c-format +msgid "S&lashes" +msgstr "Kõik failid" + +#: rc.cpp:165 rc.cpp:219 +#, no-c-format +msgid "&Accidentals" +msgstr "&Juhuslikud märgid" + +#: rc.cpp:168 +#, fuzzy, no-c-format +msgid "&Phrase" +msgstr "&Kustuta" + +#: rc.cpp:171 +#, fuzzy, no-c-format +msgid "Slur &Position" +msgstr "Kursori asukoht" + +#: rc.cpp:174 +#, fuzzy, no-c-format +msgid "Tie &Position" +msgstr "Kursori asukoht" + +#: rc.cpp:177 +#, fuzzy, no-c-format +msgid "&Octaves" +msgstr "Oktav &alla" + +#: rc.cpp:180 rc.cpp:306 +#, no-c-format +msgid "Ad&just" +msgstr "" + +#: rc.cpp:183 +#, fuzzy, no-c-format +msgid "R&ests" +msgstr "&Pausid" + +#: rc.cpp:186 rc.cpp:213 +#, no-c-format +msgid "&Notes" +msgstr "&Noodid" + +#: rc.cpp:189 rc.cpp:309 +#, fuzzy, no-c-format +msgid "&Quantize" +msgstr "Kvantimine" + +#: rc.cpp:195 rc.cpp:315 +#, fuzzy, no-c-format +msgid "Trans&pose" +msgstr "Transponeerimine" + +#: rc.cpp:198 rc.cpp:318 +#, no-c-format +msgid "Convert" +msgstr "" + +#: rc.cpp:201 +#, fuzzy, no-c-format +msgid "&Fine Positioning" +msgstr "Kursori asukoht" + +#: rc.cpp:204 +#, fuzzy, no-c-format +msgid "Fine Ti&ming" +msgstr "Decrescendo lisamine..." + +#: rc.cpp:207 +#, fuzzy, no-c-format +msgid "&Visibility" +msgstr "Kiirus:" + +#: rc.cpp:216 +#, no-c-format +msgid "&Rests" +msgstr "&Pausid" + +#: rc.cpp:222 +#, no-c-format +msgid "&Clefs" +msgstr "&Võtmed" + +#: rc.cpp:225 rc.cpp:324 +#, no-c-format +msgid "Local &Cursor" +msgstr "" + +#: rc.cpp:246 +#, no-c-format +msgid "Notes Toolbar" +msgstr "Nootide tööriistariba" + +#: rc.cpp:249 +#, no-c-format +msgid "Rests Toolbar" +msgstr "Pauside tööriistariba" + +#: rc.cpp:252 +#, no-c-format +msgid "Clefs Toolbar" +msgstr "Noodivõtmete tööriistariba" + +#: rc.cpp:255 +#, no-c-format +msgid "Accidentals Toolbar" +msgstr "Juhuslike märkide tööriistriba" + +#: rc.cpp:258 +#, no-c-format +msgid "Group Toolbar" +msgstr "Gruppide tööriistariba" + +#: rc.cpp:261 +#, fuzzy, no-c-format +msgid "Marks Toolbar" +msgstr "Radade tööriistariba" + +#: rc.cpp:264 +#, fuzzy, no-c-format +msgid "Meta Toolbar" +msgstr "Näita m&eta tööriistariba" + +#: rc.cpp:267 +#, fuzzy, no-c-format +msgid "Layout Toolbar" +msgstr "Näita &paigutuse tööriistariba" + +#: rc.cpp:270 rc.cpp:351 +#, fuzzy, no-c-format +msgid "Control Ruler actions" +msgstr "Audiofailide tegevused" + +#: rc.cpp:273 rc.cpp:354 +#, fuzzy, no-c-format +msgid "Property Ruler actions" +msgstr "Audiofailide tegevused" + +#: rc.cpp:276 +#, fuzzy, no-c-format +msgid "&Action" +msgstr "Suund" + +#: rc.cpp:279 +#, fuzzy, no-c-format +msgid "General Toolbar" +msgstr "Gruppide tööriistariba" + +#: rc.cpp:291 +#, fuzzy, no-c-format +msgid "&Grid" +msgstr " Võre: " + +#: rc.cpp:300 +#, fuzzy, no-c-format +msgid "&Segment" +msgstr "Seg&mendid" + +#: rc.cpp:361 +#, no-c-format +msgid "Hide additional controls" +msgstr "" + +#: rc.cpp:365 +#, no-c-format +msgid "Panic Button" +msgstr "Paanika nupp" + +#: rc.cpp:368 +#, no-c-format +msgid "Resets all MIDI devices if you've got stuck notes" +msgstr "Lähtestab kõik MIDI seadmed kui mõni noot on hangunud" + +#: rc.cpp:375 +#, no-c-format +msgid "Provides a metronome click for you to play along with" +msgstr "" + +#: rc.cpp:378 +#, no-c-format +msgid "Shows MIDI activity in and out of Rosegarden" +msgstr "" + +#: rc.cpp:381 +#, no-c-format +msgid "IN" +msgstr "IN" + +#: rc.cpp:384 +#, no-c-format +msgid "OUT" +msgstr "OUT" + +#: rc.cpp:387 rc.cpp:390 +#, no-c-format +msgid "NO EVENTS" +msgstr "NO EVENTS" + +#: rc.cpp:397 +#, no-c-format +msgid "Record either MIDI or audio" +msgstr "MIDI või audio salvestamine" + +#: rc.cpp:401 +#, no-c-format +msgid "Loop" +msgstr "Kordus" + +#: rc.cpp:404 +#, no-c-format +msgid "Turn on and off the loop markers (if set)" +msgstr "" + +#: rc.cpp:411 +#, no-c-format +msgid "Mutes all but the currently selected track" +msgstr "Vaigistab kõik rajad peale aktiivse" + +#: rc.cpp:415 +#, no-c-format +msgid "Start loop or range here" +msgstr "" + +#: rc.cpp:419 +#, no-c-format +msgid "End loop or range here" +msgstr "" + +#: rc.cpp:422 +#, no-c-format +msgid "SIG" +msgstr "" + +#: rc.cpp:425 +#, fuzzy, no-c-format +msgid "DIV" +msgstr "IV" + +#: rc.cpp:428 +#, no-c-format +msgid "/16" +msgstr "" + +#: rc.cpp:431 +#, no-c-format +msgid "TEMPO" +msgstr "" + +#: rc.cpp:434 +#, no-c-format +msgid "END" +msgstr "" + +#: rc.cpp:437 +#, no-c-format +msgid "BAR" +msgstr "" + +#: rc.cpp:441 +#, no-c-format +msgid "Switch between real time, musical time, and frame count" +msgstr "" + +#: rc.cpp:445 +#, no-c-format +msgid "Show additional controls" +msgstr "" + +#: rc.cpp:449 +#, no-c-format +msgid "Rewind" +msgstr "Tagasi kerimine" + +#: rc.cpp:452 +#, no-c-format +msgid "Moves the current pointer position back one bar." +msgstr "Liigutab kursori asukoha ühe takti võrra tagasi." + +#: rc.cpp:456 +#, no-c-format +msgid "Rewind to beginning" +msgstr "Tagasikerimine algusesse" + +#: rc.cpp:459 +#, no-c-format +msgid "" +"Moves the pointer position to the start of the composition. (This may mean " +"going forwards if the pointer is currently before the start.)" +msgstr "" +"Liigutab kursori kompositsiooni algusese. (See võib tähendada edasi " +"liigutamist kui kursor asub eespool algust.)" + +#: rc.cpp:463 +#, no-c-format +msgid "Play/Pause" +msgstr "Esita/paus" + +#: rc.cpp:466 +#, no-c-format +msgid "" +"Plays from the current pointer position, or pauses playback if already in " +"progress." +msgstr "" +"Mahamängimine alates kursori asukohast või paus kui mahamängimine on " +"aktiivne." + +#: rc.cpp:473 +#, no-c-format +msgid "Stops playback or recording." +msgstr "Peatab mahamängimise või salvestamise." + +#: rc.cpp:477 +#, no-c-format +msgid "Fast forward" +msgstr "Edasi kerimine" + +#: rc.cpp:480 +#, no-c-format +msgid "Moves the current pointer position forwards one bar." +msgstr "Liigutab aktiivse kursori ühe takti võrra edasi." + +#: rc.cpp:484 +#, no-c-format +msgid "Fast forward to end" +msgstr "Kiire kerimine lõppu" + +#: rc.cpp:487 +#, no-c-format +msgid "" +"Moves the pointer position to the end of the composition. (This may mean " +"going backwards if the pointer is already beyond the end.)" +msgstr "" +"Liigutab kursori kompositsiooni lõppu. (See võib tähendada tagasi liikumist " +"kui kursor on juba lõpust üle.)" + +#: rc.cpp:491 +#, no-c-format +msgid "Display time to end" +msgstr "Näita aega lõpuni" + +#: ../docs/en/tips.cpp:3 +msgid "" +"

                        To configure a track to play using a particular instrument:

                        \n" +"  * click on the track label and hold a moment
                        \n" +"  * select an output device
                        \n" +"  * select one of that device's available instruments (#1 - #16)" +"
                        \n" +"  * adjust that instrument's output channel, program, bank, and\n" +"controllers via the instrument parameters box\n" +msgstr "" + +#: ../docs/en/tips.cpp:13 +msgid "" +"

                        ...that Rosegarden has an autosave feature?

                        \n" +"You can select your autosave interval from Settings->Configure\n" +"Rosegarden.

                        \n" +"When something goes awry, such as a power outage or a Rosegarden crash\n" +"(unfortunately, it happens...) simply load the file you were working on, and " +"you'll be given the\n" +"option to load the autosaved version, or the unmodified original.

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:23 +msgid "" +"

                        \n" +"...that you can save the current document as your default studio by using\n" +"Composition -> Studio -> Save Current Document as Default Studio?\n" +msgstr "" + +#: ../docs/en/tips.cpp:30 +msgid "" +"

                        ...that your default studio is a complete Rosegarden composition that " +"gets\n" +"loaded every time you create a new document or import a MIDI file?

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:36 +msgid "" +"

                        ...that your default studio can contain instrument assignments, document " +"properties, LilyPond headers,\n" +"and many other things?

                        The default studio is a complete Rosegarden " +"composition, so it can contain anything that you may wish to have available " +"in each\n" +"new document you create.

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:43 +msgid "" +"

                        ...that Rosegarden will detect and create a default connection for ALSA " +"soft\n" +"synth applications that are started after Rosegarden is already running?\n" +msgstr "" + +#: ../docs/en/tips.cpp:49 +msgid "" +"

                        ...that you can make your default studio override that in every " +"Rosegarden composition you load?

                        If your studio setup does not change " +"very often, and you would prefer for\n" +"the settings in your default studio to take precedence over whatever\n" +"studio is saved with any files you happen to load, you can make your studio " +"the default for everything using Settings -> Configure Rosegarden ->\n" +"MIDI -> Always use default studio when loading files.

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:57 +msgid "" +"

                        If you have accidentally recorded a segment so short that it does not\n" +"appear on the canvas, which you can only hear during subsequent recording\n" +"sessions, you can gain access to it by using Composition -> Change\n" +"Composition Start and End and then setting the composition to start at a " +"negative number.

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:65 +msgid "" +"

                        ...that if you place a note at the wrong pitch using the notation or " +"matrix editor, you can move it one semitone at a time with the up and down " +"arrow keys on your keyboard?

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:70 +msgid "" +"

                        ...that you can toggle stem directions in the notation editor by " +"selecting\n" +"one or more notes and using Ctrl-PageUp and Ctrl-PageDown?

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:76 +msgid "" +"

                        ...that you can change the accidental used for a note in the notation " +"editor (without changing the pitch of the note) by selecting\n" +"it and using the up and down arrow keys with both Ctrl and Shift pressed?\n" +msgstr "" + +#: ../docs/en/tips.cpp:82 ../docs/en/tips.cpp:93 +msgid "" +"

                        ...that you can hold down the Shift key while repositioning segments on " +"the\n" +"segment canvas in order to avoid the \"snap-to\" effect and exert finer " +"control?

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:88 +msgid "" +"

                        ...that you can use the arrow tool to draw, move, and resize segments and " +"events as well as to select them?

                        Drag a segment or event block to " +"move it, drag the right edge of a block to resize it, and drag with the " +"middle mouse button pressed to draw a new segment or event.

                        (Of " +"course, the dedicated draw, move and resize tools are still quicker for " +"repeated operations.)

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:99 +msgid "" +"

                        ...that you can hold down the Shift key while repositioning or resizing " +"events in the\n" +"matrix view in order to avoid the \"snap-to\" effect and exert finer control?" +"

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:105 +msgid "" +"

                        ...that you can edit multiple segments on multiple tracks simultaneously " +"in\n" +"the notation editor? Simply select the segments, then use Edit -> Open " +"in Notation Editor.

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:111 +msgid "" +"

                        ...that Rosegarden can export files for use by LilyPond, the high-quality " +"score typesetting system?

                        \n" +"From the File menu, navigate to Export -> Export LilyPond File

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:117 +msgid "" +"

                        ...that Rosegarden can print via LilyPond, the high-quality score " +"typesetting system?

                        \n" +"From the File menu, navigate to Preview with LilyPond. The " +"file\n" +"will be exported, rendered, and a preview will appear in KPDF, or one of\n" +"several other PDF viewers, where it can then be printed as well.

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:125 +msgid "" +"

                        ...that if you use the quantizer from within the notation view, you can " +"tell it to quantize only the timing used for notation -- making it possible " +"to have good looking notation and a human MIDI performance?

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:130 +msgid "" +"

                        ...that you can change segment labels using the controls on the Segment " +"Parameters box\n" +"in the main window?

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:136 +msgid "" +"

                        ...that the number of tracks in new documents is based on the contents " +"of\n" +"your autoload.rg file?\n" +"

                        \n" +"Whether you prefer to start with three tracks or 43, create a document that\n" +"contains the desired number of tracks, plus any other studio or document " +"properties settings\n" +"you wish to configure, and use Composition -> Studio -> Save Current " +"Document as Default\n" +"Studio to make this your new default.

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:147 +msgid "" +"

                        ...that you can change the name of a track by double clicking on the " +"label? (The\n" +"label must be visible for this to work.)

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:153 +msgid "" +"

                        ...that you can configure what happens when you double-click on a segment?" +"

                        Go to Settings -> Configure Rosegarden and choose your " +"preferred editing window under the Behaviour tab.

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:158 +msgid "" +"

                        ...that Rosegarden is being developed as a community effort with\n" +"contributions from around the world?

                        \n" +"The four most active developers live in London (England), Cannes, " +"Barcelona,\n" +"and... Christiansburg? (Christiansburg is a town of about 50,000 in\n" +"southwestern Virginia, USA.)

                        \n" +"We have had contributors from elsewhere in the US, UK, Spain, Mexico, " +"Argentina, Germany,\n" +"Sweden, Russia, Japan, Finland, and Italy, just to name a few...

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:169 +msgid "" +"

                        ...that Rosegarden is available in Spanish, French, German, Russian, " +"Welsh, Swedish, Italian and Estonian\n" +"translations? (Just to name a few.)

                        \n" +"If you're interested in translating Rosegarden to another language, drop us " +"a\n" +"line at rosegarden-devel@lists.sourceforge.net.

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:177 +msgid "" +"

                        ...that you can change the total number of bars in the composition via\n" +"Composition -> Change Composition Start and End?

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:183 +msgid "" +"

                        ...that you can see the difference between performance and display " +"duration\n" +"of duration-quantized notes in the notation editor?

                        \n" +"Use Settings -> Show Raw Note Ruler to turn on this handy\n" +"feature.

                        \n" +"Note that this feature does not work in page layout view.

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:192 +msgid "" +"

                        ...that you can add tempo and time-signature changes by double-clicking " +"on the values displayed in the transport window or tempo rulers?

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:197 +msgid "" +"

                        ...that the transport window can display musical time, sample frame " +"count, and a visual metronome as well as real time?

                        Just click on the " +"small button at the extreme top left of the window.

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:202 +msgid "" +"

                        ...that you can select all notes of a particular pitch in the matrix " +"view, by shift-clicking on that pitch on the piano keyboard at the left?" +"

                        If you shift-click-drag, you can select whole ranges too.

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:207 +msgid "" +"

                        ...that you can set a loop in the main window by clicking-and-dragging on " +"the time ruler with Shift pressed?

                        (If the ruler isn't visible, use " +"Settings -> Show Rulers.)

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:212 +msgid "" +"

                        ...that if you're editing a section in the matrix or notation view, you " +"can\n" +"set that section to loop while you edit it?

                        Select it and use " +"Tools ->\n" +"Local Cursor -> Set Loop to Selection, then hit Play.



                        \n" +"This feature does not work quite as well for compositions that include " +"sampled\n" +"audio.\n" +msgstr "" + +#: ../docs/en/tips.cpp:221 +msgid "" +"

                        ...if you have more than one note or controller event at the same time, " +"you\n" +"can use the [ and ] keys to flip the stack of events around on the " +"controller\n" +"and velocity rulers in order to bring the item you wish to adjust into\n" +"focus.

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:229 +msgid "" +"

                        ...that the notation view shows you notes using their display duration, " +"while the\n" +"matrix allows you to edit their performance duration?

                        \n" +"Be careful with tied notes in the matrix. It is not apparent that they " +"are\n" +"tied, and if you split up a pair of tied notes, subsequent notation views " +"will\n" +"be confused and unhappy. This is an old bug that has been on our TODO list\n" +"for years. Sorry about that, folks. Patches welcome.\n" +"

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:240 +msgid "" +"

                        If you're working with a human performance and you need to insert some " +"new\n" +"notes, these new notes will sound for their entire written duration. To " +"blend\n" +"these new notes into a human performance, select them, then use Adjust -> " +"Interpret... \n" +"from the notation view to interpret any marks and massage their " +"performance\n" +"durations to something less mechanical.

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:249 +msgid "" +"

                        ...that Rosegarden can export certain things to LilyPond that it cannot " +"yet\n" +"display within its own native interface?

                        These new directives can be " +"inserted\n" +"via the T text insert tool in the notation view.

                        \n" +"Load the example files\n" +"lilypond-alternative-endings.rg and lilypond-directives.rg for " +"a\n" +"demonstration of how to use the new exportable directives.

                        \n" +"Use File -> Preview with\n" +"LilyPond to see what they look like on the exported page.

                        \n" +"Be sure to turn on\n" +"Settings -> Show LilyPond Directives and Show Annotations " +"within\n" +"the notation view.

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:264 +msgid "" +"

                        ...that Rosegarden has track parameters allowing you to Create " +"segments with: certain\n" +"properties by default?

                        You can pre-select the clef, transposition, " +"colour, and specify\n" +"the highest and lowest playable notes (notes outside this range display in\n" +"red by default). Then draw a segment with the pencil, or record one, and " +"any\n" +"new segments created on this track will take these properties as segment\n" +"parameters.

                        \n" +"These parameters do not apply to audio tracks.

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:275 +msgid "" +"

                        ...that Rosegarden has a database of preset parameters describing more " +"than 300\n" +"musical instruments from the real world, grouped into several convenient\n" +"categories?

                        Each preset contains a clef, transposition, and playable " +"range\n" +"suggestions for both amateur and professional players.

                        Click the\n" +"Load button in the new track parameters box to get started! (If " +"you\n" +"do not see a Load button, be sure your parameter panel is set for\n" +"tabbed mode, rather than stacked mode.)

                        (Special thanks to " +"Magnus\n" +"Johansson for assembling this extraordinary database.)

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:287 +msgid "" +"

                        ...that when exporting to Lilypond, you can merge tracks that have the " +"same name onto a single staff?

                        For example, if there are three voices " +"in a single part, write each\n" +"voice as an independent segment/staff, each on a separate track. Give all\n" +"three tracks the same name, and select [x] Merge tracks that have the " +"same\n" +"name from the options dialog that appears when you export to, or " +"preview\n" +"with LilyPond.

                        \n" +"The tracks must have a non-default name for this to work.

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:297 +msgid "" +" \t \n" +"

                        ...that you can use the mouse wheel to scroll up and down, scroll left " +"and right, and zoom in and out?

                        Just roll the wheel to scroll up or " +"down. Hold Alt as well to scroll left or right, or hold Ctrl to zoom in and " +"out.

                        \t \n" +msgstr "" + +#: ../docs/en/tips.cpp:303 +msgid "" +" \t \n" +"

                        ...that you can time-stretch an audio segment -- stretching or squashing " +"a\n" +"sample to a different duration without changing its pitch -- just by\n" +"dragging its right edge with the Ctrl key pressed?

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:311 +msgid "" +" \t \n" +"

                        ...that you can add audio to your Rosegarden composition just by dragging " +"an audio file from your file manager and dropping it on the Rosegarden " +"segment canvas? (Make sure you drop it on an audio track!)

                        You can " +"also drop audio files from Rosegarden's audio file manager window onto the " +"segment canvas, and from other programs onto the audio file manager.

                        \n" +msgstr "" + +#: ../docs/en/tips.cpp:317 +msgid "" +" \t \n" +"

                        ...that you can set the tempo to match the duration of an audio segment " +"if you know it's an exact number of bars or beats long?

                        Just select " +"the audio segment and use Composition -> Tempo and Time Signature -> Set " +"Tempo to Audio Segment Duration.

                        \n" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:1 +msgid "Feta Pixmaps" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:2 ../data/fonts/mappings/fonts.cpp:7 +#, fuzzy +msgid "GNU Lilypond" +msgstr "Lilypond 2.0+" + +#: ../data/fonts/mappings/fonts.cpp:3 ../data/fonts/mappings/fonts.cpp:8 +msgid "Copyright (c) 1997--2003 Han-Wen Nienhuys and Jan Nieuwenhuizen" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:4 ../data/fonts/mappings/fonts.cpp:9 +#: ../data/fonts/mappings/fonts.cpp:14 ../data/fonts/mappings/fonts.cpp:19 +#: ../data/fonts/mappings/fonts.cpp:24 ../data/fonts/mappings/fonts.cpp:29 +#: ../data/fonts/mappings/fonts.cpp:34 ../data/fonts/mappings/fonts.cpp:39 +#: ../data/fonts/mappings/fonts.cpp:44 ../data/fonts/mappings/fonts.cpp:49 +#: ../data/fonts/mappings/fonts.cpp:54 +msgid "Chris Cannam" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:5 ../data/fonts/mappings/fonts.cpp:40 +msgid "pixmap" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:6 +msgid "Feta" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:10 ../data/fonts/mappings/fonts.cpp:15 +#: ../data/fonts/mappings/fonts.cpp:20 ../data/fonts/mappings/fonts.cpp:25 +#: ../data/fonts/mappings/fonts.cpp:30 ../data/fonts/mappings/fonts.cpp:35 +#: ../data/fonts/mappings/fonts.cpp:45 ../data/fonts/mappings/fonts.cpp:50 +#: ../data/fonts/mappings/fonts.cpp:55 +#, fuzzy +msgid "scalable" +msgstr "Väärtus" + +#: ../data/fonts/mappings/fonts.cpp:11 +msgid "Fughetta" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:12 +msgid "" +"Created by Blake Hodgetts; freely redistributable. See http://www.efn.org/" +"~bch/aboutfonts.html" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:13 +msgid "Copyright 1995-1999 Blake Hodgetts" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:16 +msgid "Inkpen" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:17 +msgid "Inkpen is part of Sibelius, but other fonts may use the same mappings." +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:18 ../data/fonts/mappings/fonts.cpp:28 +msgid "Copyright Sibelius Software Ltd" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:21 +#, fuzzy +msgid "Maestro" +msgstr "Metronoom" + +#: ../data/fonts/mappings/fonts.cpp:22 +msgid "Maestro is part of Finale, but other fonts use the same mappings." +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:23 ../data/fonts/mappings/fonts.cpp:33 +#, fuzzy +msgid "Copyright Coda Inc" +msgstr "Autoriõigus:" + +#: ../data/fonts/mappings/fonts.cpp:27 +msgid "Opus is part of Sibelius, but other fonts may use the same mappings." +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:31 +msgid "Petrucci" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:32 +msgid "Petrucci is part of Finale, but other fonts use the same mappings." +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:36 +msgid "RG21" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:37 +#, fuzzy +msgid "Rosegarden 2.1" +msgstr "Rosegarden" + +#: ../data/fonts/mappings/fonts.cpp:38 +msgid "Copyright (c) 1994--2001 Chris Cannam" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:41 +#, fuzzy +msgid "Sonata" +msgstr " Font: " + +#: ../data/fonts/mappings/fonts.cpp:42 +#, fuzzy +msgid "Adobe" +msgstr "Audio" + +#: ../data/fonts/mappings/fonts.cpp:43 +#, fuzzy +msgid "Copyright Adobe Inc" +msgstr "Autoriõigus:" + +#: ../data/fonts/mappings/fonts.cpp:46 +msgid "Steinberg" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:47 +msgid "The Steinberg Notation font is part of Cubase." +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:48 +#, fuzzy +msgid "Copyright Steinberg Inc" +msgstr "Autoriõigus:" + +#: ../data/fonts/mappings/fonts.cpp:51 +msgid "Xinfonia" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:52 +msgid "xemo.org" +msgstr "" + +#: ../data/fonts/mappings/fonts.cpp:53 +msgid "Copyright 2001-2003 Xemus Software LLC" +msgstr "" + +#: ../data/styles/styles.cpp:1 +msgid "Classical" +msgstr "" + +#: ../data/styles/styles.cpp:2 +#, fuzzy +msgid "Cross" +msgstr "Vali..." + +#: ../data/styles/styles.cpp:3 +#, fuzzy +msgid "Mensural" +msgstr "Üldine" + +#: ../data/styles/styles.cpp:4 +#, fuzzy +msgid "Triangle" +msgstr "Triool" + +#, fuzzy +#~ msgid "Set Quick Marker" +#~ msgstr "Kustuta märgis" + +#, fuzzy +#~ msgid "LilyPond previews not available" +#~ msgstr "Lilypond'i ekpordi seadistused" + +#, fuzzy +#~ msgid "Audio file importer not available" +#~ msgstr "Audiofailide asukoht:" + +#~ msgid " Triplet" +#~ msgstr " Triool" + +#~ msgid "Marker name " +#~ msgstr "Märgise nimi " + +#, fuzzy +#~ msgid "Time Signature font" +#~ msgstr "Taktimõõt" + +#, fuzzy +#~ msgid "Halving speed..." +#~ msgstr "Faili salvestamine..." + +#, fuzzy +#~ msgid "Doubling speed..." +#~ msgstr "Valiku kustutamine..." + +#, fuzzy +#~ msgid "Make &Grace Notes" +#~ msgstr "Märgise nimi " + +#, fuzzy +#~ msgid "Change Te&mpo..." +#~ msgstr "Muuda segmendi värvi..." + +#, fuzzy +#~ msgid "&Restore Computed Accidentals" +#~ msgstr "Taasta a&rvutatud noodivarred" + +#, fuzzy +#~ msgid "LilyPond export/preview options" +#~ msgstr "Lilypond'i ekpordi seadistused" + +#, fuzzy +#~ msgid "LilyPond 2.6" +#~ msgstr "Lilypond 2.0+" + +#, fuzzy +#~ msgid "LilyPond 2.8" +#~ msgstr "Lilypond 2.0+" + +#, fuzzy +#~ msgid "LilyPond 2.12" +#~ msgstr "Lilypond 2.0+" + +#~ msgid "Export Document Properties as \\header block" +#~ msgstr "Dokumendi omadused eksporditakse \\header plokiks" + +#, fuzzy +#~ msgid "prime" +#~ msgstr "Aeg:" + +#, fuzzy +#~ msgid " and 1 octave" +#~ msgstr "Oktavi võrra üles" + +#, fuzzy +#~ msgid " and %1 octaves" +#~ msgstr "Oktavi võrra üles" + +#, fuzzy +#~ msgid "Transpose by Interval" +#~ msgstr "Transponeerimine" + +#, fuzzy +#~ msgid "Manage Files Associated with A&udio Segments" +#~ msgstr "A&udiosegmentide manageerimine" + +#, fuzzy +#~ msgid "&Add Multiple Tracks..." +#~ msgstr "Lis&a rajad..." + +#, fuzzy +#~ msgid "Split Segments at Time" +#~ msgstr "Näita &segmentide parameetreid" + +#, fuzzy +#~ msgid "Split Segment at Time" +#~ msgstr "Näita &segmentide parameetreid" + +#, fuzzy +#~ msgid "Add Multiple Tracks" +#~ msgstr "&Kustuta rada" + +#~ msgid "Event List" +#~ msgstr "Sündmuste nimekiri" + +#~ msgid "External Editors" +#~ msgstr "Välised redaktorid" + +#, fuzzy +#~ msgid "Enable auto-save" +#~ msgstr "Automaatne salvestamine" + +#~ msgid "Auto-save" +#~ msgstr "Automaatne salvestamine" + +#~ msgid "Show detailed status" +#~ msgstr "Näita detailset staatust" + +#~ msgid "JACK command (including path as necessary)" +#~ msgstr "JACK käsk (ka rada, kui vajalik)" + +#, fuzzy +#~ msgid "Audio file read buffer" +#~ msgstr "Audiofailide asukoht:" + +#, fuzzy +#~ msgid "Audio file write buffer" +#~ msgstr "Audiofailide asukoht:" + +#, fuzzy +#~ msgid "Per-file limit for cacheable audio files" +#~ msgstr "Audiofaili valimine" + +#, fuzzy +#~ msgid "20 msec" +#~ msgstr "msek:" + +#, fuzzy +#~ msgid "5 sec" +#~ msgstr "msek:" + +#, fuzzy +#~ msgid "per file" +#~ msgstr "Faili avamine" + +#, fuzzy +#~ msgid "Low latency" +#~ msgstr "Latents" + +#, fuzzy +#~ msgid "Record and Mix" +#~ msgstr "Salvestavad seadmed" + +#~ msgid "JACK transport mode" +#~ msgstr "JACK transpordi režiim" + +#~ msgid "Synchronisation" +#~ msgstr "Sünkroniseerimine" + +#, fuzzy +#~ msgid "%1 msec" +#~ msgstr "%1 ms" + +#, fuzzy +#~ msgid "%1 sec" +#~ msgstr "%1 ms" + +#, fuzzy +#~ msgid "%1 KB" +#~ msgstr "%1 ms" + +#, fuzzy +#~ msgid "%1 MB" +#~ msgstr "%1 ms" + +#, fuzzy +#~ msgid "Other fonts" +#~ msgstr "Muu" + +#~ msgid "Sequencer" +#~ msgstr "Sekventser" + +#~ msgid "Sequencer Settings" +#~ msgstr "Sekventseri seadistused" + +#, fuzzy +#~ msgid "Fade in" +#~ msgstr "Eestpoolt lugemine (millisekundites)" + +#, fuzzy +#~ msgid "Range" +#~ msgstr "Triool" + +#, fuzzy +#~ msgid "High: ---" +#~ msgstr "Kõrge" + +#, fuzzy +#~ msgid " ms" +#~ msgstr "%1 ms" + +#, fuzzy +#~ msgid "&Fretboard" +#~ msgstr "Keri &edasi" + +#, fuzzy +#~ msgid "Restore &Computed Positions" +#~ msgstr "Taasta a&rvutatud noodivarred" + +#, fuzzy +#~ msgid "&Tempo and Time Signature" +#~ msgstr "Ava sündmuse redaktoris" + +#, fuzzy +#~ msgid "&Split..." +#~ msgstr "&Tükelda" + +#, fuzzy +#~ msgid "&Editor Tools" +#~ msgstr "Redaktori tööriistariba" + +#, fuzzy +#~ msgid "&Beams" +#~ msgstr "Biit" + +#, fuzzy +#~ msgid "&Indications" +#~ msgstr "Suund" + +#~ msgid "S&tem Direction" +#~ msgstr "Noodivar&te suund" + +#, fuzzy +#~ msgid "&Clear" +#~ msgstr "Noodivõti" + +#, fuzzy +#~ msgid "C&ancel" +#~ msgstr "Kanal" + +#, fuzzy +#~ msgid "Toggle &Mode" +#~ msgstr "täisnoot" + +#, fuzzy +#~ msgid "Scale" +#~ msgstr "Väärtus" + +#, fuzzy +#~ msgid "Modifier" +#~ msgstr "&Muuda märgist" + +#, fuzzy +#~ msgid "&New" +#~ msgstr "Uus" + +#, fuzzy +#~ msgid "Fingering" +#~ msgstr "Decrescendo lisamine..." + +#, fuzzy +#~ msgid "LilyPond 2.4" +#~ msgstr "Lilypond 2.0+" + +#~ msgid "Paper size to use in \\paper block" +#~ msgstr "Paberi suurus (kasutatakse plokis \\paper)" + +#, fuzzy +#~ msgid "LilyPond font size" +#~ msgstr "Lilypondi fondi suurus" + +#~ msgid "Do not export muted tracks" +#~ msgstr "Vaigistatud radasid ei ekspordita" + +#~ msgid "&Select" +#~ msgstr "&Vali" + +#, fuzzy +#~ msgid "%1 (%2.%3s)" +#~ msgstr "Aeg: %1 (%2.%3s)" + +#, fuzzy +#~ msgid "%1 (%2): %3" +#~ msgstr "&%1%2" + +#~ msgid "Getting sound driver status..." +#~ msgstr "Helidraiveri staatuse info hankimine..." + +#, fuzzy +#~ msgid "Cannot add file %1: %2" +#~ msgstr "Faili %1 pole võimalik avada" + +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Lõppväärtus" + +#~ msgid "from:" +#~ msgstr "kust:" + +#~ msgid "to:" +#~ msgstr "kuhu:" + +#~ msgid "unlimited" +#~ msgstr "piiramatu" + +#~ msgid "Number:" +#~ msgstr "Number:" + +#~ msgid "Value:" +#~ msgstr "Väärtus:" + +#, fuzzy +#~ msgid "Wheel Events" +#~ msgstr "Muuda sündmuste suurust" + +#~ msgid "Amount:" +#~ msgstr "Kogus:" + +#, fuzzy +#~ msgid "Pitch from" +#~ msgstr "Helikõrgus" + +#, fuzzy +#~ msgid "Pitch to" +#~ msgstr "Helikõrgus" + +#, fuzzy +#~ msgid "High: %1" +#~ msgstr "Kõrge" + +#, fuzzy +#~ msgid "&Velocity" +#~ msgstr "Kiirus:" + +#~ msgid "Time: %1" +#~ msgstr "Aeg: %1" + +#, fuzzy +#~ msgid "Recording Channel:" +#~ msgstr "Faili lugemine..." + +#, fuzzy +#~ msgid "Finnish translation" +#~ msgstr "Sünkroniseerimine" + +#, fuzzy +#~ msgid "Segment & Instrument Parameters" +#~ msgstr "Näita &instrumentide parameetreid" + +#, fuzzy +#~ msgid "Pre&view Lilypond file..." +#~ msgstr "Lilypond faili eksport..." + +#, fuzzy +#~ msgid "Show Se&gment and Instrument Parameters" +#~ msgstr "Näita &instrumentide parameetreid" + +#, fuzzy +#~ msgid "&Split or Join" +#~ msgstr "&Tükeldamine vaikuse kohalt" + +#~ msgid "Lilypond 1.6 or 1.8" +#~ msgstr "Lilypond 1.6 või 1.8" + +#, fuzzy +#~ msgid "Lilypond 2.0" +#~ msgstr "Lilypond 2.0+" + +#, fuzzy +#~ msgid "You can't yet resize an audio segment!" +#~ msgstr "Audiosegmente ei saa ühendada" + +#, fuzzy +#~ msgid " 1 event selected " +#~ msgstr " %1 sündmus%2 valitud " + +#, fuzzy +#~ msgid "%1 - 1 Segment - %2" +#~ msgstr "Kestvus" + +#, fuzzy +#~ msgid "1 Input" +#~ msgstr "%1 trioolid" + +#, fuzzy +#~ msgid "1 Submaster" +#~ msgstr "Näita &joonlaudu" + +#, fuzzy +#~ msgid "1 pixel" +#~ msgstr "%1 piksel" + +#, fuzzy +#~ msgid "%1 - Segment - Notation" +#~ msgstr "Kestvus" + +#, fuzzy +#~ msgid "%1 on 1 track" +#~ msgstr "Oktavi võrra alla" + +#, fuzzy +#~ msgid "Set Tempo" +#~ msgstr "Globaalse tempo seadmine" + +#, fuzzy +#~ msgid "Modify Tempo" +#~ msgstr "Muuda nooti" + +#, fuzzy +#~ msgid "is currently" +#~ msgstr "Aktiivne" + +#, fuzzy +#~ msgid "PitchRuler" +#~ msgstr "Helikõrgus" + +#, fuzzy +#~ msgid "&Delete" +#~ msgstr "&Kustuta" + +#, fuzzy +#~ msgid "Stop" +#~ msgstr "&Stopp" + +#, fuzzy +#~ msgid "Copy" +#~ msgstr "Autoriõigus:" + +#, fuzzy +#~ msgid "Default" +#~ msgstr "" + +#, fuzzy +#~ msgid "Delete All" +#~ msgstr "Vali &kõik" + +#, fuzzy +#~ msgid "Add" +#~ msgstr "..." + +#, fuzzy +#~ msgid "No" +#~ msgstr "Noot" + +#, fuzzy +#~ msgid "&Copy" +#~ msgstr "&Stopp" + +#, fuzzy +#~ msgid "&Paste" +#~ msgstr "&Paus" + +#, fuzzy +#~ msgid "About" +#~ msgstr "Kogus:" + +#, fuzzy +#~ msgid "Configure" +#~ msgstr "Rosegarden" + +#, fuzzy +#~ msgid "Untitled" +#~ msgstr "" + +#, fuzzy +#~ msgid "&View" +#~ msgstr "Aeg:" + +#, fuzzy +#~ msgid "&Tools" +#~ msgstr "Noodivõtmete tööriistariba" + +#~ msgid "Tracks to add" +#~ msgstr "Lisatavate radade arv" + +#~ msgid "%1 pixels" +#~ msgstr "%1 pikslit" + +#, fuzzy +#~ msgid "Re&label" +#~ msgstr "&Nimeta ümber..." + +#~ msgid "Start Value" +#~ msgstr "Algväärtus" + +#~ msgid "End Value" +#~ msgstr "Lõppväärtus" + +#, fuzzy +#~ msgid "Audio record level" +#~ msgstr "Lisa salvestav seade" + +#, fuzzy +#~ msgid "Rec" +#~ msgstr "Salvesta" + +#, fuzzy +#~ msgid "Default timing: " +#~ msgstr "Vaikesamm" + +#, fuzzy +#~ msgid "Minutes of audio recording:" +#~ msgstr "Audio salvestamise aeg minutites" + +#~ msgid "Show Tip of the &Day" +#~ msgstr "Näita &päeva nõuandeid" + +#, fuzzy +#~ msgid "&Quantize Notes" +#~ msgstr "Kvantimise tüüp:" + +#~ msgid "Default proportion" +#~ msgstr "Vaikeproportsioonid" + +#~ msgid "MMC transport mode" +#~ msgstr "MMC transpordi režiim" + +#~ msgid "Sending MIDI panic..." +#~ msgstr "MIDI paanika saatmine..." + +#~ msgid "Can't determine free disk space." +#~ msgstr "Vaba kettaruumi pole võimalik kindlaks teha." + +#~ msgid "Couldn't extract disk space information." +#~ msgstr "Ketta kasutuse kohta pole võimalik infot hankida." + +#~ msgid "Audio File actions" +#~ msgstr "Audiofailide tegevused" + +#~ msgid "Remove Audio File" +#~ msgstr "Eemalda audiofail" + +#~ msgid "Directory doesn't exist." +#~ msgstr "Kataloogi ei eksisteeri." + +#, fuzzy +#~ msgid "Wheel" +#~ msgstr "Ratas" + +#~ msgid "Playback (in ms)" +#~ msgstr "Mahamängimine (millisekundites)" + +#~ msgid "" +#~ "Sequencer command line options\n" +#~ " (takes effect only from next restart)" +#~ msgstr "" +#~ "Sekventseri käsurea võtmed\n" +#~ " (rakendatakse järgmisel käivitamisel)" + +#~ msgid "Clear down all Rosegarden sequencer processes at restart" +#~ msgstr "Käivitamisel puhastatakse kõik Rosegardeni sekventseri protsessid" + +#~ msgid "Manage MIDI Devices..." +#~ msgstr "MIDI seadmete haldamine..." + +#~ msgid "" +#~ "*.mid *.midi|Standard MIDI files\n" +#~ "*|All files" +#~ msgstr "" +#~ "*.mid *.midi|Standard MIDI failid\n" +#~ "*|Kõik failid" diff --git a/po/eu.po b/po/eu.po new file mode 100644 index 0000000..be24229 --- /dev/null +++ b/po/eu.po @@ -0,0 +1,12021 @@ +# translation of en.po to basque +# This file is distributed under the same license as the PACKAGE package. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. +# +# +# David Garca-Abad, 2007. +msgid "" +msgstr "" +"Project-Id-Version: eu\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-04-24 18:19-0400\n" +"PO-Revision-Date: 2007-07-21 00:06+0100\n" +"Last-Translator: David Garca-Abad\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/gui/dialogs/RescaleDialog.cpp:51 rc.cpp:192 rc.cpp:312 +#, no-c-format +msgid "Rescale" +msgstr "Eskala Aldatu" + +#: ../src/gui/dialogs/RescaleDialog.cpp:56 +msgid "Duration of selection" +msgstr "Selekzioaren iraupena" + +#: ../src/gui/dialogs/RescaleDialog.cpp:62 +msgid "Adjust times of following events accordingly" +msgstr "Doitu gertaeren denborak gainjartzeak eta hutsuneak sortu gabe" + +#: ../src/gui/dialogs/PitchDialog.cpp:45 +#: ../src/gui/dialogs/RescaleDialog.cpp:72 +#: ../src/gui/dialogs/TimeDialog.cpp:51 ../src/gui/dialogs/TimeDialog.cpp:68 +#: ../src/gui/studio/BankEditorDialog.cpp:109 +msgid "Reset" +msgstr "Hasieratu" + +#: ../src/commands/segment/SegmentSplitByPitchCommand.cpp:46 +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:46 +msgid "Split by Pitch" +msgstr "Zatitu tonuaren arabera" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:54 +msgid "Starting split pitch" +msgstr "Zatiketaren Hasierako Tonua" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:57 +msgid "Range up and down to follow music" +msgstr "Mugitu gora eta behera musika jarraitzeko" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:63 +msgid "Duplicate non-note events" +msgstr "Bikoiztu notak ez diren gertaerak" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:66 +msgid "Clef handling:" +msgstr "Klabeen kudeaketa:" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:69 +msgid "Leave clefs alone" +msgstr "Klabeak dauden bezala utzi" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:70 +msgid "Guess new clefs" +msgstr "Klabe berriak asmatu" + +#: ../src/gui/dialogs/SplitByPitchDialog.cpp:71 +msgid "Use treble and bass clefs" +msgstr "Soprano eta Baxu klabeak erabili" + +#: ../src/gui/dialogs/DocumentConfigureDialog.cpp:64 +msgid "Document Properties" +msgstr "Dokumentuaren Propietateak" + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:45 +#: ../src/gui/editors/notation/NotationView.cpp:6048 +msgid "Make Ornament" +msgstr "Apaindura Sortu" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:183 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:179 +#: ../src/gui/dialogs/EventEditDialog.cpp:128 +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:49 +#: ../src/gui/studio/DeviceEditorDialog.cpp:74 +#: ../src/gui/studio/NameSetEditor.cpp:72 +#: ../src/gui/widgets/ColourTable.cpp:51 +msgid "Name" +msgstr "Izena" + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:51 +msgid "" +"The name is used to identify both the ornament\n" +"and the triggered segment that stores\n" +"the ornament's notes." +msgstr "" +"Bai apaindura eta baita apainduraren notak ere\n" +"dauzkan aktibatutako segmentua identifikatzeko\n" +"erabiltzen da izena." + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:54 +msgid "Name: " +msgstr "Izena: " + +#: ../src/gui/dialogs/MakeOrnamentDialog.cpp:57 +#: ../src/gui/editors/eventlist/EventView.cpp:717 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:92 +msgid "Base pitch" +msgstr "Oinarrizko altuera(tonua)" + +#: ../src/gui/dialogs/TextEventDialog.cpp:57 +#: ../src/gui/editors/eventlist/EventView.cpp:140 +msgid "Text" +msgstr "Testua" + +#: ../src/gui/dialogs/TextEventDialog.cpp:66 +msgid "Specification" +msgstr "Espezifikazioa" + +#: ../src/gui/dialogs/TextEventDialog.cpp:68 +msgid "Preview" +msgstr "Aurrebista" + +#: ../src/gui/dialogs/TextEventDialog.cpp:72 +msgid "Text: " +msgstr "Testua: " + +#: ../src/gui/dialogs/TextEventDialog.cpp:79 +msgid "Style: " +msgstr "Estiloa: " + +#: ../src/gui/dialogs/TextEventDialog.cpp:90 +msgid "Dynamic" +msgstr "Dinamika" + +#: ../src/gui/dialogs/TextEventDialog.cpp:93 +msgid "Direction" +msgstr "Norabidea" + +#: ../src/gui/dialogs/TextEventDialog.cpp:96 +msgid "Local Direction" +msgstr "Norabide Lokala" + +#: ../src/gui/dialogs/TempoDialog.cpp:63 +#: ../src/gui/dialogs/TextEventDialog.cpp:99 +#: ../src/gui/editors/tempo/TempoView.cpp:91 +msgid "Tempo" +msgstr "Tenpoa" + +#: ../src/gui/dialogs/TextEventDialog.cpp:102 +msgid "Local Tempo" +msgstr "Tenpo Lokala" + +#: ../src/gui/dialogs/TextEventDialog.cpp:105 +msgid "Lyric" +msgstr "Letra" + +#: ../src/gui/dialogs/TextEventDialog.cpp:108 +#: ../src/gui/editors/notation/NotationView.cpp:4242 +msgid "Chord" +msgstr "Akordea" + +#: ../src/gui/dialogs/TextEventDialog.cpp:111 +msgid "Annotation" +msgstr "Anotazioa" + +#: ../src/gui/dialogs/TextEventDialog.cpp:114 +msgid "LilyPond Directive" +msgstr "LilyPonderako jarraibidea" + +#: ../src/gui/dialogs/TextEventDialog.cpp:138 +msgid "Verse: " +msgstr "" + +#: ../src/gui/dialogs/TextEventDialog.cpp:148 +msgid "Dynamic: " +msgstr "Dinamika: " + +#: ../src/gui/dialogs/TextEventDialog.cpp:152 +msgid "ppp" +msgstr "ppp" + +#: ../src/gui/dialogs/TextEventDialog.cpp:153 +msgid "pp" +msgstr "pp" + +#: ../src/gui/dialogs/TextEventDialog.cpp:154 +msgid "p" +msgstr "p" + +#: ../src/gui/dialogs/TextEventDialog.cpp:155 +msgid "mp" +msgstr "mp" + +#: ../src/gui/dialogs/TextEventDialog.cpp:156 +msgid "mf" +msgstr "mf" + +#: ../src/gui/dialogs/TextEventDialog.cpp:157 +msgid "f" +msgstr "f" + +#: ../src/gui/dialogs/TextEventDialog.cpp:158 +msgid "ff" +msgstr "ff" + +#: ../src/gui/dialogs/TextEventDialog.cpp:159 +msgid "fff" +msgstr "fff" + +#: ../src/gui/dialogs/TextEventDialog.cpp:160 +msgid "rfz" +msgstr "rfz" + +#: ../src/gui/dialogs/TextEventDialog.cpp:161 +msgid "sf" +msgstr "sf" + +#: ../src/gui/dialogs/TextEventDialog.cpp:165 +msgid "Direction: " +msgstr "Norabidea:" + +#: ../src/gui/dialogs/TextEventDialog.cpp:174 +msgid " ," +msgstr " ," + +#: ../src/gui/dialogs/TextEventDialog.cpp:175 +msgid "D.C. al Fine" +msgstr "D.C. al Fine" + +#: ../src/gui/dialogs/TextEventDialog.cpp:176 +msgid "D.S. al Fine" +msgstr "D.S. al Fine" + +#: ../src/gui/dialogs/TextEventDialog.cpp:177 +msgid "Fine" +msgstr "Fine" + +#: ../src/gui/dialogs/TextEventDialog.cpp:178 +msgid "D.S. al Coda" +msgstr "D.S. al Coda" + +#: ../src/gui/dialogs/TextEventDialog.cpp:179 +msgid "to Coda" +msgstr "to Coda" + +#: ../src/gui/dialogs/TextEventDialog.cpp:180 +msgid "Coda" +msgstr "Coda" + +#: ../src/gui/dialogs/TextEventDialog.cpp:184 +msgid "Local Direction: " +msgstr "Norabide Lokala: " + +#: ../src/gui/dialogs/TextEventDialog.cpp:188 +msgid "accel." +msgstr "accel." + +#: ../src/gui/dialogs/TextEventDialog.cpp:189 +msgid "ritard." +msgstr "ritard." + +#: ../src/gui/dialogs/TextEventDialog.cpp:190 +msgid "ralletando" +msgstr "ralletando" + +#: ../src/gui/dialogs/TextEventDialog.cpp:191 +msgid "a tempo" +msgstr "a tempo" + +#: ../src/gui/dialogs/TextEventDialog.cpp:192 +msgid "legato" +msgstr "legato" + +#: ../src/gui/dialogs/TextEventDialog.cpp:193 +msgid "simile" +msgstr "simile" + +#: ../src/gui/dialogs/TextEventDialog.cpp:194 +msgid "pizz." +msgstr "pizz." + +#: ../src/gui/dialogs/TextEventDialog.cpp:195 +msgid "arco" +msgstr "arco" + +#: ../src/gui/dialogs/TextEventDialog.cpp:196 +msgid "non vib." +msgstr "non vib." + +#: ../src/gui/dialogs/TextEventDialog.cpp:197 +msgid "sul pont." +msgstr "sul pont." + +#: ../src/gui/dialogs/TextEventDialog.cpp:198 +#: ../src/gui/dialogs/TextEventDialog.cpp:200 +msgid "sul tasto" +msgstr "sul tasto" + +#: ../src/gui/dialogs/TextEventDialog.cpp:199 +msgid "con legno" +msgstr "con legno" + +#: ../src/gui/dialogs/TextEventDialog.cpp:201 +msgid "sul G" +msgstr "sul G" + +#: ../src/gui/dialogs/TextEventDialog.cpp:202 +msgid "ordinario" +msgstr "arrunta" + +#: ../src/gui/dialogs/TextEventDialog.cpp:203 +msgid "Muta in " +msgstr "Muta in " + +#: ../src/gui/dialogs/TextEventDialog.cpp:204 +msgid "volti subito " +msgstr "volti subito " + +#: ../src/gui/dialogs/TextEventDialog.cpp:205 +msgid "soli" +msgstr "soli" + +#: ../src/gui/dialogs/TextEventDialog.cpp:206 +msgid "div." +msgstr "div." + +#: ../src/gui/dialogs/TextEventDialog.cpp:210 +msgid "Tempo: " +msgstr "Tenpoa: " + +#: ../src/gui/dialogs/TextEventDialog.cpp:214 +#: ../src/gui/dialogs/TextEventDialog.cpp:238 +msgid "Grave" +msgstr "Grave" + +#: ../src/gui/dialogs/TextEventDialog.cpp:215 +#: ../src/gui/dialogs/TextEventDialog.cpp:239 +msgid "Adagio" +msgstr "Adagio" + +#: ../src/gui/dialogs/TextEventDialog.cpp:216 +#: ../src/gui/dialogs/TextEventDialog.cpp:240 +msgid "Largo" +msgstr "Largo" + +#: ../src/gui/dialogs/TextEventDialog.cpp:217 +#: ../src/gui/dialogs/TextEventDialog.cpp:241 +msgid "Lento" +msgstr "Lento" + +#: ../src/gui/dialogs/TextEventDialog.cpp:218 +#: ../src/gui/dialogs/TextEventDialog.cpp:242 +msgid "Andante" +msgstr "Andante" + +#: ../src/gui/dialogs/TextEventDialog.cpp:219 +#: ../src/gui/dialogs/TextEventDialog.cpp:243 +msgid "Moderato" +msgstr "Moderato" + +#: ../src/gui/dialogs/TextEventDialog.cpp:220 +#: ../src/gui/dialogs/TextEventDialog.cpp:244 +msgid "Allegretto" +msgstr "Allegretto" + +#: ../src/gui/dialogs/TextEventDialog.cpp:221 +#: ../src/gui/dialogs/TextEventDialog.cpp:245 +msgid "Allegro" +msgstr "Allegro" + +#: ../src/gui/dialogs/TextEventDialog.cpp:222 +#: ../src/gui/dialogs/TextEventDialog.cpp:246 +msgid "Vivace" +msgstr "Vivace" + +#: ../src/gui/dialogs/TextEventDialog.cpp:223 +#: ../src/gui/dialogs/TextEventDialog.cpp:247 +msgid "Presto" +msgstr "Presto" + +#: ../src/gui/dialogs/TextEventDialog.cpp:224 +#: ../src/gui/dialogs/TextEventDialog.cpp:248 +msgid "Prestissimo" +msgstr "Prestissimo" + +#: ../src/gui/dialogs/TextEventDialog.cpp:225 +#: ../src/gui/dialogs/TextEventDialog.cpp:249 +msgid "Maestoso" +msgstr "Maestoso" + +#: ../src/gui/dialogs/TextEventDialog.cpp:226 +#: ../src/gui/dialogs/TextEventDialog.cpp:250 +msgid "Sostenuto" +msgstr "Sostenuto" + +#: ../src/gui/dialogs/TextEventDialog.cpp:227 +#: ../src/gui/dialogs/TextEventDialog.cpp:251 +msgid "Tempo Primo" +msgstr "Tempo Primo" + +#: ../src/gui/dialogs/TextEventDialog.cpp:234 +msgid "Local Tempo: " +msgstr "Tenpo Lokala: " + +#: ../src/gui/dialogs/TextEventDialog.cpp:255 +msgid "Directive: " +msgstr "Norabidea: " + +#: ../src/gui/dialogs/TextEventDialog.cpp:312 +msgid "Example" +msgstr "Adibidea" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:65 +msgid "Event Filter" +msgstr "Gertaeren Iragazkia" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:86 +msgid "Note Events" +msgstr "Nota Gertaerak" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:90 +msgid "lowest:" +msgstr "Baxuena" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:93 +msgid "highest:" +msgstr "Altuena" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:96 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:141 +#: ../src/gui/widgets/PitchChooser.cpp:53 +msgid "Pitch:" +msgstr "Altuera:" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:99 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:163 +msgid "Velocity:" +msgstr "Abiadura:" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:102 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:129 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:257 +msgid "Duration:" +msgstr "Iraupena:" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:107 +#: ../src/gui/dialogs/EventFilterDialog.cpp:114 +#: ../src/gui/dialogs/EventFilterDialog.cpp:121 +msgid "include" +msgstr "barne hartu" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:108 +#: ../src/gui/dialogs/EventFilterDialog.cpp:115 +#: ../src/gui/dialogs/EventFilterDialog.cpp:122 +msgid "exclude" +msgstr "kanpoan utzi" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:136 +#: ../src/gui/dialogs/EventFilterDialog.cpp:155 +#: ../src/gui/editors/eventlist/EventView.cpp:172 +#: ../src/gui/editors/eventlist/EventView.cpp:179 +#: ../src/gui/editors/eventlist/EventView.cpp:186 +msgid "edit" +msgstr "editatu" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:141 +#: ../src/gui/dialogs/EventFilterDialog.cpp:157 +msgid "choose a pitch using a staff" +msgstr "elegir una altura de nota usando partitura" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:182 +#: ../src/gui/dialogs/EventFilterDialog.cpp:188 +msgid "longest" +msgstr "luzeena" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:200 +msgid "Include all" +msgstr "Dena barne hartu" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:203 +msgid "Include entire range of values" +msgstr "Barne hartu balioen tarde osoa" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:206 +msgid "Exclude all" +msgstr "Dena kanpoan utzi" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:209 +msgid "Exclude entire range of values" +msgstr "Balioen tarte osoa kanpoan utzi" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:233 +#: ../src/gui/dialogs/EventFilterDialog.cpp:234 +#, fuzzy +msgid "shortest" +msgstr "motzena" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:333 +#, fuzzy +msgid "Lowest pitch" +msgstr "Altuerarik txikiena:" + +#: ../src/gui/dialogs/EventFilterDialog.cpp:343 +#, fuzzy +msgid "Highest pitch" +msgstr "Altuerarik handiena:" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:56 +#: ../src/gui/editors/notation/NotationView.cpp:1619 +#: ../src/gui/editors/notation/NotationView.cpp:6088 +msgid "Use Ornament" +msgstr "Apaindura Erabili" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:260 +#: ../src/gui/configuration/NotationConfigurationPage.h:64 +#: ../src/gui/configuration/NotationConfigurationPage.h:65 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:63 +msgid "Notation" +msgstr "Partitura" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:68 +msgid "Display as: " +msgstr "Honela erakutsi: " + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:84 +msgid "Trill" +msgstr "Trinoa" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:84 +msgid "Trill with line" +msgstr "Trinoa lerroarekin" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:84 +msgid "Trill line only" +msgstr "Trinoaren lerroa bakarrik" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:85 +msgid "Turn" +msgstr "Grupeto" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:85 +msgid "Mordent" +msgstr "Mordente" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:85 +msgid "Inverted mordent" +msgstr "Mordente Inbertitua" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:86 +msgid "Long mordent" +msgstr "Mordente luzea" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:86 +msgid "Long inverted mordent" +msgstr "Mordente luze inbertitua" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:94 +msgid "Text mark" +msgstr "Testuaren marka" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:98 +msgid " Text: " +msgstr " Testua: " + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:104 +msgid "Performance" +msgstr "Interpretazioa" + +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:109 +msgid "Perform using triggered segment: " +msgstr "Interpretatu aktibatutako segmentua erabiliz: " + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:75 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:123 +msgid "Perform with timing: " +msgstr "Ondoko konpas-neurriarekin interpretatu: " + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:81 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:129 +msgid "As stored" +msgstr "Gordetzen den bezala" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:82 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:130 +msgid "Truncate if longer than note" +msgstr "Moztu nota baino luzeago baldin bada" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:83 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:131 +msgid "End at same time as note" +msgstr "Bukatu notaren aldi berean" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:84 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:132 +msgid "Stretch or squash segment to note duration" +msgstr "Tenkatu edo konprimitu segmentua notaren iraupenaren arabera" + +#: ../src/gui/dialogs/TriggerSegmentDialog.cpp:86 +#: ../src/gui/dialogs/UseOrnamentDialog.cpp:134 +msgid "Adjust pitch to note" +msgstr "Doitu tonua notaren arabera" + +#: ../src/gui/dialogs/PitchPickerDialog.cpp:40 +msgid "Pitch Selector" +msgstr "Notaren Altueraren Aukeratzailea" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:44 +msgid "Audio Segment Duration" +msgstr "Audio Segmentuaren Iraupena" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:50 +msgid "The selected audio segment contains:" +msgstr "Hautatutako audio segmentuak ondokoa dauka barruan:" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:59 +msgid "beat(s)" +msgstr "Pultsua(k)" + +#: ../src/gui/dialogs/BeatsBarsDialog.cpp:60 +msgid "bar(s)" +msgstr "konpasa(k)" + +#: ../src/gui/dialogs/TupletDialog.cpp:51 +msgid "Tuplet" +msgstr "Multzo Irregularra" + +#: ../src/gui/dialogs/TupletDialog.cpp:58 +msgid "New timing for tuplet group" +msgstr "Konpas-neurri berria multzo irregularrerako" + +#: ../src/gui/dialogs/TupletDialog.cpp:76 +msgid "Play " +msgstr "Jo" + +#: ../src/gui/dialogs/TupletDialog.cpp:98 +msgid "in the time of " +msgstr "Ondokoaren denboran " + +#: ../src/gui/dialogs/TupletDialog.cpp:104 +msgid "Timing is already correct: update display only" +msgstr "Konpas-neurria zuzena da dagoeneko: irudikapena eguneratu" + +#: ../src/gui/dialogs/TupletDialog.cpp:114 +msgid "Timing calculations" +msgstr "Konpas-neurriaren kalkuluak" + +#: ../src/gui/dialogs/TupletDialog.cpp:120 +msgid "Selected region:" +msgstr "Hautatutako eremua:" + +#: ../src/gui/dialogs/TupletDialog.cpp:129 +msgid "Group with current timing:" +msgstr "Taldekatu oraingo konpas-neurriarekin:" + +#: ../src/gui/dialogs/TupletDialog.cpp:135 +msgid "Group with new timing:" +msgstr "Taldekatu konpas-neurri berriarekin:" + +#: ../src/gui/dialogs/TupletDialog.cpp:141 +msgid "Gap created by timing change:" +msgstr "Konpas-neurriaren aldaketak sortutako hutsunea:" + +#: ../src/gui/dialogs/TupletDialog.cpp:149 +msgid "Unchanged at end of selection:" +msgstr "Hautatutakoaren bukaeran aldaketarik gabe:" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:63 rc.cpp:372 +#, no-c-format +msgid "Metronome" +msgstr "Metronomoa" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:77 +msgid "Metronome Instrument" +msgstr "Metronomoaren Instrumentoa" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:82 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:150 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:183 +#: ../src/gui/studio/DeviceEditorDialog.cpp:73 +#: ../src/gui/studio/DeviceManagerDialog.cpp:105 +#: ../src/gui/studio/DeviceManagerDialog.cpp:163 +#: ../src/gui/studio/RemapInstrumentDialog.cpp:66 +msgid "Device" +msgstr "dispositiboa" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:101 +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:89 +#: ../src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp:215 +#: ../src/gui/studio/DeviceEditorDialog.cpp:195 +#: ../src/gui/studio/DeviceEditorDialog.cpp:218 +#: ../src/gui/studio/DeviceEditorDialog.cpp:230 +#: ../src/gui/studio/DeviceManagerDialog.cpp:196 +#: ../src/gui/studio/DeviceManagerDialog.cpp:440 +#: ../src/gui/studio/DeviceManagerDialog.cpp:452 +msgid "No connection" +msgstr "Konexiorik gabe" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:112 +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:111 +#: ../src/gui/editors/parameters/InstrumentParameterBox.cpp:53 +#: ../src/gui/editors/parameters/SegmentParameterBox.cpp:1209 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:159 +#: ../src/gui/general/PresetHandlerDialog.cpp:92 +#: ../src/gui/studio/MidiMixerWindow.cpp:204 +#: ../src/gui/studio/RemapInstrumentDialog.cpp:67 +msgid "Instrument" +msgstr "Instrumentoa" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:118 +msgid "Beats" +msgstr "Pultsuak" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:184 +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:123 +msgid "Resolution" +msgstr "Bereizmena" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:309 +#: ../src/gui/configuration/NotationConfigurationPage.cpp:139 +#: ../src/gui/dialogs/LilyPondOptionsDialog.cpp:205 +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:125 +#: ../src/gui/editors/matrix/MatrixView.cpp:2132 +#: ../src/gui/editors/notation/NotationView.cpp:1582 +#: ../src/gui/widgets/QuantizeParameters.cpp:128 +#: ../src/gui/widgets/QuantizeParameters.cpp:301 +msgid "None" +msgstr "Ezer Ez" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:126 +msgid "Bars only" +msgstr "Konpasak bakarrik" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:127 +msgid "Bars and beats" +msgstr "Konpasak eta pultsuak" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:128 +msgid "Bars, beats, and divisions" +msgstr "Konpasak, pultsuak eta zatiketak" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:132 +msgid "Bar velocity" +msgstr "Konpasaren abiadura" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:139 +msgid "Beat velocity" +msgstr "Pultsuaren abiadura" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:146 +msgid "Sub-beat velocity" +msgstr "Azpi-pultsuaren abiadura" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:155 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:324 +msgid "Pitch" +msgstr "Altuera" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:160 +msgid "for Bar" +msgstr "Konpas bakoitzeko" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:161 +msgid "for Beat" +msgstr "Pultsu bakoitzeko" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:162 +msgid "for Sub-beat" +msgstr "Azpi-pultsu bakoitzeko" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:166 +msgid "Metronome Activated" +msgstr "Metronomoa Aktibatuta" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:167 +msgid "Playing" +msgstr "Jotzen" + +#: ../src/gui/dialogs/ManageMetronomeDialog.cpp:168 +msgid "Recording" +msgstr "Grabatzen" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:46 +msgid "Choose Text Encoding" +msgstr "Hautatu Testu Kodifikatzaile bat" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:50 +msgid "" +"\n" +"This file contains text in an unknown language encoding.\n" +"\n" +"Please select one of the following estimated text encodings\n" +"for use with the text in this file:\n" +msgstr "" +"\n" +"Artxibo honek kodifikazio hizkuntza ezezagun bateko testua dauka.\n" +"\n" +"Mesedez, hautatu ondoko testu kodifikazio estimatuetako bat artxibo honetan " +"dagoen testuarekin erabiltzeko\n" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:61 +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:77 +msgid "Japanese Shift-JIS" +msgstr "Japanese Shift-JIS" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:62 +msgid "Unicode variable-width" +msgstr "Unicode variable-width" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:63 +msgid "Western Europe" +msgstr "Western Europe" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:64 +msgid "Western Europe + Euro" +msgstr "Western Europe + Euro" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:65 +msgid "Eastern Europe" +msgstr "Eastern Europe" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:66 +msgid "Southern Europe" +msgstr "Southern Europe" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:67 +msgid "Northern Europe" +msgstr "Northern Europe" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:68 +msgid "Cyrillic" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:69 +msgid "Arabic" +msgstr "Arabic" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:70 +msgid "Greek" +msgstr "Greek" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:71 +msgid "Hebrew" +msgstr "Hebrew" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:72 +msgid "Turkish" +msgstr "Turkish" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:73 +msgid "Nordic" +msgstr "Nordic" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:74 +msgid "Thai" +msgstr "Thai" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:75 +msgid "Baltic" +msgstr "" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:76 +msgid "Celtic" +msgstr "Celtic" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:78 +msgid "Traditional Chinese" +msgstr "Traditional Chinese" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:79 +msgid "Simplified Chinese" +msgstr "Simplified Chinese" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:80 +msgid "Russian" +msgstr "Russian" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:81 +msgid "Ukrainian" +msgstr "Ukrainian" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:82 +msgid "Tamil" +msgstr "Tamil" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:117 +#, c-format +msgid "Microsoft Code Page %1" +msgstr "Microsoft Code Page %1" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:123 +#: ../src/gui/editors/matrix/MatrixView.cpp:1490 +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: ../src/gui/dialogs/IdentifyTextCodecDialog.cpp:142 +msgid "" +"\n" +"Example text from file:" +msgstr "" +"\n" +"Artxiboan dagoen testuaren adibidea:" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:59 +#: ../src/gui/editors/tempo/TempoView.cpp:92 +msgid "Time Signature" +msgstr "Konpasaren neurria" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:82 +msgid "Time signature" +msgstr "Konpasaren neurria" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:116 +msgid "Time where signature takes effect" +msgstr "Aldaketak eragina daukan denbora" + +#: ../src/gui/dialogs/KeySignatureDialog.cpp:83 +#: ../src/gui/dialogs/TempoDialog.cpp:128 +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:129 +#: ../src/gui/general/PresetHandlerDialog.cpp:101 +msgid "Scope" +msgstr "Esparrua" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:141 +#, c-format +msgid "Insertion point is at start of measure %1." +msgstr "Txertatze puntua %1 konpasaren hasieran dago" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:145 +#, c-format +msgid "Insertion point is in the middle of measure %1." +msgstr "Txertatze puntua %1 konpasaren erdian dago." + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:150 +msgid "Insertion point is at start of composition." +msgstr "Txertatze puntu konposizioaren hasieran dago" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:155 +msgid "Start measure %1 here" +msgstr "Hasi %1 konpasa hemen" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:159 +#, fuzzy, c-format +msgid "Change time from start of measure %1" +msgstr "Denbora aldatu %1 konpasaren hasieratik" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:166 +#, c-format +msgid "Time change will take effect at the start of measure %1." +msgstr "Denbora aldaketak eragina edukiko du %1 konpasaren hasieran." + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:176 +#, fuzzy +msgid "Hide the time signature" +msgstr "Konpasaren neurria ezkutatu" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:181 +#, fuzzy +msgid "Hide the affected bar lines" +msgstr "Konpasen barretan notak gehitu, etab." + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:186 +msgid "Show as common time" +msgstr "Denbora orokor gisa erakutsi" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:191 +msgid "Correct the durations of following measures" +msgstr "Ondoko konpasen iraupena zuzendu" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:280 +msgid "Display as common time" +msgstr "Denbora orokor gisa erakutsi" + +#: ../src/gui/dialogs/TimeSignatureDialog.cpp:284 +msgid "Display as cut common time" +msgstr "Ebaketa denbora orokor gisa erakutsi" + +#: ../src/gui/dialogs/ConfigureDialog.cpp:66 +msgid "Configure Rosegarden" +msgstr "Rosegarden Konfiguratu" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:53 +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:61 +#, fuzzy +msgid "Edit Marker" +msgstr "Mar&katzaileak Editatu..." + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:78 +msgid "Marker Time" +msgstr "Markatzailearen Denbora" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:94 +msgid "Marker Properties" +msgstr "Markatzailearen Propietateak" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:100 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:554 +msgid "Text:" +msgstr "Testua:" + +#: ../src/gui/dialogs/MarkerModifyDialog.cpp:104 +#: ../src/gui/editors/segment/ControlParameterEditDialog.cpp:85 +msgid "Description:" +msgstr "Deskribapena:" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:46 +msgid "Merge File" +msgstr "Artxiboa Nahastu" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:53 +msgid "Merge new file " +msgstr "Artxibo berria nahastu " + +#: ../src/gui/dialogs/FileMergeDialog.cpp:56 +msgid "At start of existing composition" +msgstr "Existitzen den konposizio baten hasieran" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:57 +msgid "From end of existing composition" +msgstr "Existitzen den konposizio baten bukaeratik" + +#: ../src/gui/dialogs/FileMergeDialog.cpp:61 +msgid "The file has different time signatures or tempos." +msgstr "Artxiboak konpas-neurri edo tenpo ezberdinak dauzka." + +#: ../src/gui/dialogs/FileMergeDialog.cpp:62 +msgid "Import these as well" +msgstr "Hauek ere inportatu" + +#: ../src/gui/configuration/GeneralConfigurationPage.cpp:171 +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:44 +msgid "Sequencer status" +msgstr "Sekuenziadorearen egoera" + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:48 +msgid "Sequencer status:" +msgstr "Sekuenziadorearen egoera:" + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:50 +msgid "Status not available." +msgstr "Ez dago egoera jakiterik." + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:57 +msgid "Sequencer is not running or is not responding." +msgstr "Sekuenziadorea ez dago martxan edo ez du erantzuten." + +#: ../src/gui/dialogs/ShowSequencerStatusDialog.cpp:64 +msgid "Sequencer is not returning a valid status report." +msgstr "Sekuenziadoreak ez du bueltatzen egoera-txosten baliozko bat." + +#: ../src/gui/dialogs/AddTracksDialog.cpp:46 +#, fuzzy +msgid "Add Tracks" +msgstr "&Pista Gehitu" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:54 +msgid "How many tracks do you want to add?" +msgstr "Zenbat pista nahi dituzu gehitu?" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:62 +#, fuzzy +msgid "Add tracks" +msgstr "Pista guztiak" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:64 +msgid "At the top" +msgstr "" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:65 +#, fuzzy +msgid "Above the current selected track" +msgstr "Hautatutakoa izan ezik, gainerako pistak mututzen ditu" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:66 +#, fuzzy +msgid "Below the current selected track" +msgstr "Hautatutakoa izan ezik, gainerako pistak mututzen ditu" + +#: ../src/gui/dialogs/AddTracksDialog.cpp:67 +msgid "At the bottom" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:75 +msgid "Event Properties" +msgstr "Gertaeraren Propietateak" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:81 +msgid "Event type:" +msgstr "Gertaera Mota" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:117 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:251 +#: ../src/gui/editors/segment/MarkerEditor.cpp:97 +msgid "Absolute time:" +msgstr "Denbora Absolutua:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:156 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:323 +msgid "Controller name:" +msgstr "Kontroladorearen izena:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:157 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:530 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:562 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:563 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:602 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:631 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:267 +#: ../src/gui/editors/segment/ControlEditorDialog.cpp:269 +#: ../src/gui/editors/segment/MarkerEditor.cpp:279 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:272 +#: ../src/gui/studio/AudioMixerWindow.cpp:388 +#: ../src/gui/studio/AudioMixerWindow.cpp:519 +#: ../src/gui/studio/AudioMixerWindow.cpp:683 +#: ../src/gui/studio/AudioMixerWindow.cpp:722 +#: ../src/gui/studio/AudioMixerWindow.cpp:904 +#: ../src/gui/studio/SynthPluginManagerDialog.cpp:121 +msgid "" +msgstr "" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:174 +msgid "Meta string:" +msgstr "Meta Katea:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:179 +msgid "Load data" +msgstr "Datuak kargatu" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:181 +msgid "Save data" +msgstr "Datuak gorde" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:192 +msgid "Notation Properties" +msgstr "Partituraren edizioaren propietateak" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:198 +msgid "Lock to changes in performed values" +msgstr "Interpretatutako baloreen aldaketen arabera jokatu" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:205 +msgid "Notation time:" +msgstr "Notazioaren denbora:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:217 +msgid "Notation duration:" +msgstr "Notazioaren iraupena:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:283 +msgid "Note pitch:" +msgstr "Notaren altuera:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:291 +msgid "Note velocity:" +msgstr "Notaren Abiadura:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:317 +msgid "Controller number:" +msgstr "Kontroladorearen zenbakia:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:326 +msgid "Controller value:" +msgstr "Kontroladorearen balorea:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:354 +msgid "Key pitch:" +msgstr "Notaren altuera:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:362 +msgid "Key pressure:" +msgstr "Teklaren presioa:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:390 +msgid "Channel pressure:" +msgstr "Kanalaren presioa:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:418 +msgid "Program change:" +msgstr "Programa aldaketa:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:461 +msgid "Data length:" +msgstr "Datuen tamaina:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:462 +msgid "Data:" +msgstr "Datuak:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:480 +msgid "Pitchbend MSB:" +msgstr "MSB Tonu inflexioa:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:488 +msgid "Pitchbend LSB:" +msgstr "LSB Tonu inflexioa:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:523 +msgid "Indication:" +msgstr "Adierazpena:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:553 +msgid "Text type:" +msgstr "Testu mota:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:596 +msgid "Clef type:" +msgstr "Klabe mota:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:625 +msgid "Key name:" +msgstr "Klabearen izena:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:674 +msgid "Unsupported event type:" +msgstr "Jasota ez dagoen gertaera mota:" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:931 +msgid "Edit Event Time" +msgstr "Editatu Gertaeraren Denbora" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:943 +msgid "Edit Event Notation Time" +msgstr "Editatu Gertaeraren Notazio Denbora" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:955 +msgid "Edit Duration" +msgstr "Iraupena Editatu" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:968 +msgid "Edit Notation Duration" +msgstr "Notazioaren Iraupena Editatu" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:981 +msgid "Edit Pitch" +msgstr "Altuera Editatu" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:991 +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:1016 +msgid "*.syx|System exclusive files (*.syx)" +msgstr "*.syx|Sistemaren artxibo esklusiboak (*.syx)" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:992 +msgid "Load System Exclusive data in File" +msgstr "Sistema Esklusiboaren datuak Artxibora Kargatu" + +#: ../src/gui/dialogs/SimpleEventEditDialog.cpp:1017 +msgid "Save System Exclusive data to..." +msgstr "(Non) Gorde Sistema Esklusiboaren Datuak..." + +#: ../src/gui/dialogs/FileLocateDialog.cpp:46 +msgid "Locate audio file" +msgstr "Audio artxiboa bilatu" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:50 +msgid "&Skip" +msgstr "&Jauzi Egin" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:51 +msgid "Skip &All" +msgstr "Jauzi Egin &Guztietan" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:52 +msgid "&Locate" +msgstr "&Kokatu" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:57 +msgid "" +"Can't find file \"%1\".\n" +"Would you like to try and locate this file or skip it?" +msgstr "" +"Ezin da \"%1\" artxiboa aurkitu.\n" +"Nahi duzu artxibo hau bilatzen saiatu edo aurrera jarraitu?" + +#: ../src/gui/dialogs/FileLocateDialog.cpp:71 +msgid "" +"%1|Requested file (%2)\n" +"*.wav|WAV files (*.wav)" +msgstr "" +"%1|Eskatutako artxiboa (%2)\n" +"*.wav|WAV artxiboak (*.wav) " + +#: ../src/gui/dialogs/FileLocateDialog.cpp:74 +msgid "Select an Audio File" +msgstr "Hautatu Audio Artxibo bat" + +#: ../src/gui/dialogs/ClefDialog.cpp:53 ../src/gui/dialogs/ClefDialog.cpp:62 +#: ../src/gui/dialogs/ClefDialog.cpp:79 ../src/gui/dialogs/ClefDialog.cpp:90 +#: ../src/gui/editors/parameters/TrackParameterBox.cpp:278 +msgid "Clef" +msgstr "Klabea" + +#: ../src/gui/dialogs/ClefDialog.cpp:65 +msgid "Existing notes following clef change" +msgstr "Klabe aldaketa baten ondoren dauden notak" + +#: ../src/gui/dialogs/ClefDialog.cpp:71 +msgid "Lower clef" +msgstr "Klabe baxuagoa" + +#: ../src/gui/dialogs/ClefDialog.cpp:77 +msgid "Up an Octave" +msgstr "Oktaba bat Igo" + +#: ../src/gui/dialogs/ClefDialog.cpp:84 +msgid "Down an Octave" +msgstr "Oktaba bat Jaitsi" + +#: ../src/gui/dialogs/ClefDialog.cpp:88 +msgid "Higher clef" +msgstr "Klabe zorrotzagoa" + +#: ../src/gui/dialogs/ClefDialog.cpp:96 +#: ../src/gui/dialogs/KeySignatureDialog.cpp:152 +msgid "Maintain current pitches" +msgstr "Oraingo tonuak mantendu" + +#: ../src/gui/dialogs/ClefDialog.cpp:99 +msgid "Transpose into appropriate octave" +msgstr "Transposatu dagokion oktabara" + +#: ../src/gui/dialogs/ClefDialog.cpp:231 +msgid "%1 down an octave" +msgstr "%1 beheko oktaba batera" + +#: ../src/gui/dialogs/ClefDialog.cpp:234 +msgid "%1 down two octaves" +msgstr "%1 bi oktaba behera" + +#: ../src/gui/dialogs/ClefDialog.cpp:237 +msgid "%1 up an octave" +msgstr "%1 goiko oktaba batera" + +#: ../src/gui/dialogs/ClefDialog.cpp:240 +msgid "%1 up two octaves" +msgstr "%1 bi oktaba gora" + +#: ../src/gui/dialogs/ClefDialog.cpp:249 +msgid "Treble" +msgstr "Sopranoa" + +#: ../src/gui/dialogs/ClefDialog.cpp:251 +msgid "French violin" +msgstr "" + +#: ../src/gui/dialogs/ClefDialog.cpp:253 +msgid "Soprano" +msgstr "Sopranoa" + +#: ../src/gui/dialogs/ClefDialog.cpp:255 +#, fuzzy +msgid "Mezzo-soprano" +msgstr "Sopranoa" + +#: ../src/gui/dialogs/ClefDialog.cpp:257 +msgid "Alto" +msgstr "Altoa" + +#: ../src/gui/dialogs/ClefDialog.cpp:259 +msgid "Tenor" +msgstr "Tenorra" + +#: ../src/gui/dialogs/ClefDialog.cpp:261 +#, fuzzy +msgid "C-baritone" +msgstr "Aldaketa" + +#: ../src/gui/dialogs/ClefDialog.cpp:263 +#, fuzzy +msgid "F-baritone" +msgstr "Aldaketa" + +#: ../src/gui/dialogs/ClefDialog.cpp:265 +msgid "Bass" +msgstr "Baxua" + +#: ../src/gui/dialogs/ClefDialog.cpp:267 +#, fuzzy +msgid "Sub-bass" +msgstr "fa" + +#: ../src/gui/dialogs/CountdownDialog.cpp:52 +msgid "Recording..." +msgstr "Grabatzen..." + +#: ../src/gui/dialogs/CountdownDialog.cpp:60 +msgid "Recording time remaining: " +msgstr "Grabaketari gelditzen zaion denbora: " + +#: ../src/gui/dialogs/CountdownDialog.cpp:120 +msgid "Just how big is your hard disk?" +msgstr "Zein da zure disko gogorraren tamaina?" + +#: ../src/gui/dialogs/CountdownDialog.cpp:154 +msgid "Recording beyond end of composition: " +msgstr "Grabatzen konposizioaren bukaeraz haraindi:" + +#: ../src/gui/dialogs/IntervalDialog.cpp:52 +msgid "Specify Interval" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:58 +msgid "Reference note:" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:59 +#, fuzzy +msgid "Target note:" +msgstr "beltza" + +#: ../src/gui/dialogs/IntervalDialog.cpp:68 +#: ../src/gui/dialogs/IntervalDialog.cpp:315 +msgid "a perfect unison" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:76 +msgid "Effect on Key" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:77 +#, fuzzy +msgid "Transpose within key" +msgstr "Tonalitate honetara transposatu" + +#: ../src/gui/dialogs/IntervalDialog.cpp:79 +#, fuzzy +msgid "Change key for selection" +msgstr "Hautatutakoaren bukaeran aldaketarik gabe:" + +#: ../src/gui/dialogs/IntervalDialog.cpp:89 +msgid "" +"Adjust segment transposition in opposite direction (maintain audible pitch)" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:190 +#: ../src/gui/dialogs/IntervalDialog.cpp:220 +msgid "a diminished" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:192 +#: ../src/gui/dialogs/IntervalDialog.cpp:222 +msgid "an augmented" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:194 +#: ../src/gui/dialogs/IntervalDialog.cpp:224 +msgid "a doubly diminished" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:196 +#: ../src/gui/dialogs/IntervalDialog.cpp:226 +msgid "a doubly augmented" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:198 +#: ../src/gui/dialogs/IntervalDialog.cpp:228 +msgid "a triply diminished" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:200 +#: ../src/gui/dialogs/IntervalDialog.cpp:230 +msgid "a triply augmented" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:202 +msgid "a quadruply diminished" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:204 +#: ../src/gui/dialogs/IntervalDialog.cpp:232 +msgid "a quadruply augmented" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:206 +#: ../src/gui/dialogs/IntervalDialog.cpp:234 +msgid "a perfect" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:208 +#: ../src/gui/dialogs/IntervalDialog.cpp:236 +msgid "an (unknown, %1)" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:216 +#, fuzzy +msgid "a minor" +msgstr "Menor" + +#: ../src/gui/dialogs/IntervalDialog.cpp:218 +#, fuzzy +msgid "a major" +msgstr "Maior" + +#: ../src/gui/dialogs/IntervalDialog.cpp:239 +#, fuzzy +msgid "an (unknown)" +msgstr "Ezezaguna" + +#: ../src/gui/dialogs/IntervalDialog.cpp:248 +#: ../src/gui/dialogs/IntervalDialog.cpp:251 +#, fuzzy +msgid "%1 octave" +msgstr "%1 goiko oktaba batera" + +#: ../src/gui/dialogs/IntervalDialog.cpp:254 +msgid "%1 unison" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:258 +#, fuzzy +msgid "%1 second" +msgstr "%1 seg" + +#: ../src/gui/dialogs/IntervalDialog.cpp:261 +#, fuzzy +msgid "%1 third" +msgstr "%1 tick" + +#: ../src/gui/dialogs/IntervalDialog.cpp:264 +#, fuzzy +msgid "%1 fourth" +msgstr "%1 bemol" + +#: ../src/gui/dialogs/IntervalDialog.cpp:267 +#, fuzzy +msgid "%1 fifth" +msgstr "%1 bemol" + +#: ../src/gui/dialogs/IntervalDialog.cpp:270 +#, fuzzy +msgid "%1 sixth" +msgstr "%1 (zatituta)" + +#: ../src/gui/dialogs/IntervalDialog.cpp:273 +#, fuzzy +msgid "%1 seventh" +msgstr "%1 seg" + +#: ../src/gui/dialogs/IntervalDialog.cpp:276 +#: ../src/gui/studio/DeviceManagerDialog.cpp:329 +#: ../src/gui/studio/DeviceManagerDialog.cpp:363 +#, c-format +msgid "%1" +msgstr "%1" + +#: ../src/gui/dialogs/IntervalDialog.cpp:287 +msgid "" +"_n: up 1 octave and %1\n" +"up %n octaves and %1" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:291 +#, c-format +msgid "" +"_n: up 1 octave\n" +"up %n octaves" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:295 +#, fuzzy, c-format +msgid "up %1" +msgstr "Sub %1" + +#: ../src/gui/dialogs/IntervalDialog.cpp:303 +msgid "" +"_n: down 1 octave and %1\n" +"down %n octaves and %1" +msgstr "" + +#: ../src/gui/dialogs/IntervalDialog.cpp:307 +#, fuzzy, c-format +msgid "" +"_n: down 1 octave\n" +"down %n octaves" +msgstr "" +"_n: %1 pista batean\n" +"%1 %n pista -tan" + +#: ../src/gui/dialogs/IntervalDialog.cpp:311 +#, fuzzy, c-format +msgid "down %1" +msgstr "Baxua: %1" + +#: ../src/gui/dialogs/EventEditDialog.cpp:81 +msgid "Intrinsics" +msgstr "Intrintsekoak" + +#: ../src/gui/dialogs/EventEditDialog.cpp:85 +msgid "Event type: " +msgstr "Gertaera mota" + +#: ../src/gui/dialogs/EventEditDialog.cpp:91 +msgid "Absolute time: " +msgstr "Denbora absolutua: " + +#: ../src/gui/dialogs/EventEditDialog.cpp:101 +msgid "Duration: " +msgstr "Iraupena: " + +#: ../src/gui/dialogs/EventEditDialog.cpp:114 +msgid "Sub-ordering: " +msgstr "Azpi-antolamendua: " + +#: ../src/gui/dialogs/EventEditDialog.cpp:125 +msgid "Persistent properties" +msgstr "Propietate iraunkorrak" + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:169 +#: ../src/gui/dialogs/EventEditDialog.cpp:133 +#: ../src/gui/studio/BankEditorDialog.cpp:129 +#: ../src/gui/studio/DeviceEditorDialog.cpp:75 +msgid "Type" +msgstr "Mota" + +#: ../src/gui/configuration/HeadersConfigurationPage.cpp:184 +#: ../src/gui/dialogs/EventEditDialog.cpp:135 +#: ../src/gui/dialogs/EventParameterDialog.cpp:89 +#: ../src/gui/dialogs/EventParameterDialog.cpp:93 +#: ../src/gui/dialogs/EventParameterDialog.cpp:115 +msgid "Value" +msgstr "Baloreak" + +#: ../src/gui/dialogs/EventEditDialog.cpp:155 +msgid "Non-persistent properties" +msgstr "Propietate ez iraunkorrak" + +#: ../src/gui/dialogs/EventEditDialog.cpp:156 +msgid "These are cached values, lost if the event is modified." +msgstr "Balore hauek katxean daude eta " + +#: ../src/gui/dialogs/EventEditDialog.cpp:170 +msgid "Name " +msgstr "Izena " + +#: ../src/gui/dialogs/EventEditDialog.cpp:172 +msgid "Type " +msgstr "Mota " + +#: ../src/gui/dialogs/EventEditDialog.cpp:174 +msgid "Value " +msgstr "Balorea " + +#: ../src/gui/dialogs/EventEditDialog.cpp:188 +msgid "Make persistent" +msgstr "Iraunkorra bihurtu" + +#: ../src/gui/dialogs/EventEditDialog.cpp:292 +msgid "Delete this property" +msgstr "Propietate hau ezabatu" + +#: ../src/gui/dialogs/EventEditDialog.cpp:433 +msgid "" +"Are you sure you want to delete the \"%1\" property?\n" +"\n" +"Removing necessary properties may cause unexpected behavior." +msgstr "" +"Ziur zaude \"%1\" propietatea ezabatu nahi izateaz?\n" +"\n" +"Beharrezkoak diren propietateak ezabatzeak ustekabeko ondorioak eduki " +"ditzake." + +#: ../src/gui/dialogs/EventEditDialog.cpp:436 +#: ../src/gui/dialogs/EventEditDialog.cpp:469 +msgid "Edit Event" +msgstr "Gertaera Editatu" + +#: ../src/gui/dialogs/EventEditDialog.cpp:465 +msgid "" +"Are you sure you want to make the \"%1\" property persistent?\n" +"\n" +"This could cause problems if it overrides a different computed value later " +"on." +msgstr "" +"Ziur zaude \"%1\" propietatea iraunkor bihurtu nahi izateaz?\n" +"\n" +"Honek arazoak sortu ditzake aurrerago modu ezberdin batean kalkulatutako " +"balore batekin ordezkatzen bada." + +#: ../src/gui/dialogs/EventEditDialog.cpp:470 +msgid "Make &Persistent" +msgstr "&Iraunkorra Bihurtu" + +#: ../src/gui/dialogs/PasteNotationDialog.cpp:52 +msgid "Paste type" +msgstr "Mota itsatsi" + +#: ../src/gui/dialogs/PasteNotationDialog.cpp:72 +msgid "Make this the default paste type" +msgstr "Bihurtu hau itsasteko modu lehenetsia" + +#: ../src/gui/dialogs/LyricEditDialog.cpp:53 +msgid "Edit Lyrics" +msgstr "Letra Editatu" + +#: ../src/gui/dialogs/LyricEditDialog.cpp:62 +msgid "Lyrics for this segment" +msgstr "Letra segmentu honetarako" + +#: ../src/gui/dialogs/LyricEditDialog.cpp:70 +#, fuzzy +msgid "Add Verse" +msgstr "&Decrescendoa Gehitu..." + +#: ../src/gui/dialogs/LyricEditDialog.cpp:84 +#: ../src/gui/dialogs/LyricEditDialog.cpp:106 +#, c-format +msgid "Verse %1" +msgstr "" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:59 +msgid "Import from Device..." +msgstr "Dispositibotik Inportatu..." + +#: ../src/gui/application/RosegardenGUIApp.cpp:2163 +#: ../src/gui/application/RosegardenGUIApp.cpp:2229 +#: ../src/gui/application/RosegardenGUIApp.cpp:7780 +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:87 +#: ../src/sound/AudioFileManager.cpp:664 +#, c-format +msgid "Cannot download file %1" +msgstr "Ezin da %1 artxiboa jaitsi" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:99 +#, c-format +msgid "Cannot open file %1" +msgstr "Ezin da %1 artxiboa ireki" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:106 +#, c-format +msgid "No devices found in file %1" +msgstr "Ez dago dispositiborik %1 artxiboan" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:113 +msgid "Source device" +msgstr "Iturri-dispositiboa" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:118 +msgid "Import from: " +msgstr "(Nondik) Inportatu: " + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:140 +#: ../src/gui/studio/DeviceEditorDialog.cpp:148 +#, c-format +msgid "Device %1" +msgstr "%1 Dispositiboa" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:155 +msgid "Import banks" +msgstr "Bankuak inportatu" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:156 +msgid "Import key mappings" +msgstr "Teklatuaren mapak inportatu" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:157 +msgid "Import controllers" +msgstr "Kontroladoreak inportatu" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:160 +msgid "Import device name" +msgstr "Inportatutako dispositiboaren izena" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:166 +msgid "Bank import behavior" +msgstr "Bankuen inportazio-jokabidea" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:168 +msgid "Merge banks" +msgstr "Bankuak nahasi" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:169 +msgid "Overwrite banks" +msgstr "Bankuak gainidatzi" + +#: ../src/gui/dialogs/ImportDeviceDialog.cpp:367 +msgid "Bank %1:%2" +msgstr "%1 %2 bankua" + +#: ../src/commands/segment/SegmentSplitByRecordingSrcCommand.cpp:42 +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:48 +msgid "Split by Recording Source" +msgstr "Zatitu Grabaketa Iturriaren Arabera" + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:53 +msgid "Recording Source" +msgstr "Grabaketa Iturria" + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:57 +msgid "Channel:" +msgstr "Kanala:" + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:64 +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:75 +msgid "any" +msgstr "(edozein) " + +#: ../src/gui/dialogs/SplitByRecordingSrcDialog.cpp:69 +msgid "Device:" +msgstr "Dispositiboa " + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:46 +msgid "Select Unused Audio Files" +msgstr "Hautatu Audio Artxibo Ez Erabiliak" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:53 +#: ../src/gui/editors/segment/PlayListView.cpp:36 +msgid "File name" +msgstr "Artxiboaren izena" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:54 +msgid "File size" +msgstr "Artxiboaren tamaina" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:55 +msgid "Last modified date" +msgstr "Azkenengo aldaketaren data" + +#: ../src/gui/dialogs/UnusedAudioSelectionDialog.cpp:60 +msgid " (not found) " +msgstr "(ez aurkitua)" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:105 +msgid "Audio File Manager" +msgstr "Audio Artxiboen Kudeatzailea" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:126 +msgid "" +"* Some audio files are encoded at a sample rate different from that of the " +"JACK audio server.\n" +"Rosegarden will play them at the correct speed, but they will sound " +"terrible.\n" +"Please consider resampling such files externally, or adjusting the sample " +"rate of the JACK server." +msgstr "" +"* Audio artxibo batzuk JACK audio zerbitzariaren laginketa-maiztasuna ez " +"denbatean kodifikatuta daude.\n" +"Rosegardenek abiadura egokian joko ditu, baina oso gaizki entzungodira.\n" +"Mesedez, kontsideratu ezazu horrelako artxiboak kanpotik birsanpleatzea " +"edoJACK zerbitzariaren laginketa-maiztasuna doitzea." + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:132 +msgid "&Add Audio File..." +msgstr "Audio Artxiboa &Gehitu " + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:135 +msgid "&Unload Audio File" +msgstr "Audio Artxiboa &Deskargatu" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:140 +msgid "&Play Preview" +msgstr "Aurrebista &Jo" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:151 +msgid "&Insert into Selected Audio Track" +msgstr "&Txertatu Hautatutako Audio Pistan" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:155 +msgid "Unload &all Audio Files" +msgstr "Audio Artxibo g&uztiak Deskargatu" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:159 +msgid "Unload all &Unused Audio Files" +msgstr "Ez erabilitako Audio Artxibo guztiak D&eskargatu" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:163 +msgid "&Delete Unused Audio Files..." +msgstr "Ez Erabilitako Audio Artxibo Guztiak E&zabatu" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:167 +msgid "&Export Audio File..." +msgstr "Audio Artxiboa E&sportatu... " + +#: ../src/gui/configuration/DocumentMetaConfigurationPage.cpp:173 +#: ../src/gui/dialogs/AudioManagerDialog.cpp:180 +#: ../src/gui/editors/segment/TriggerSegmentManager.cpp:91 +msgid "Duration" +msgstr "Iraupena" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:181 +msgid "Envelope" +msgstr "Inguratzailea" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:182 +msgid "Sample rate" +msgstr "Laginketa-maiztasuna" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:183 +msgid "Channels" +msgstr "Kanalak" + +#: ../src/gui/dialogs/AudioManagerDialog.cpp:282 +msgid "" +msgstr "